lyx_mirror/src/frontends/xforms/FormUrl.h
Jean-Marc Lasgouttes c9dbe4fd82 Cleanup patches for xforms (Angus) and KDE (John)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1148 a592a061-630c-0410-9148-cb99ea01b6c8
2000-10-24 13:13:59 +00:00

48 lines
1002 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
* ======================================================
*/
#ifndef FORMURL_H
#define FORMURL_H
#ifdef __GNUG__
#pragma interface
#endif
#include "FormInset.h"
struct FD_form_url;
/** This class provides an XForms implementation of the FormUrl Dialog.
*/
class FormUrl : public FormCommand {
public:
///
FormUrl(LyXView *, Dialogs *);
///
~FormUrl();
private:
/// Connect signals etc. Set form's max size.
virtual void connect();
/// Build the dialog
virtual void build();
/// Update dialog before showing it
virtual void update();
/// Apply from dialog (modify or create inset)
virtual void apply();
/// Pointer to the actual instantiation of the xform's form
virtual FL_FORM * form() const;
///
FD_form_url * build_url();
/// Real GUI implementation.
FD_form_url * dialog_;
};
#endif