X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fxforms%2FFormUrl.h;h=23c984d75ffff884c9e6d1fff6259233507b5c82;hb=3e39bef2c13125023f3b72532d90575bbe307335;hp=02b8a1e37205efcb4e18573a60ecb97accc6e61b;hpb=db47e6bc7773b26f0f74c37a02df496c17eff444;p=lyx.git diff --git a/src/frontends/xforms/FormUrl.h b/src/frontends/xforms/FormUrl.h index 02b8a1e372..23c984d75f 100644 --- a/src/frontends/xforms/FormUrl.h +++ b/src/frontends/xforms/FormUrl.h @@ -1,12 +1,10 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file xforms/FormUrl.h + * Copyright 2000-2001 the LyX Team + * Read the file COPYING * - * LyX, The Document Processor - * - * Copyright 2000 The LyX Team. - * - * ====================================================== + * \author Angus Leeming, a.leeming@ic.ac.uk */ #ifndef FORMURL_H @@ -16,40 +14,27 @@ #pragma interface #endif -#include "FormCommand.h" +#include "FormBase.h" + +class ControlUrl; struct FD_form_url; -/** This class provides an XForms implementation of the FormUrl Dialog. +/** This class provides an XForms implementation of the Url Dialog. */ -class FormUrl : public FormCommand, public noncopyable { +class FormUrl : public FormCB > { public: - /**@name Constructors and Destructors */ - //@{ /// - FormUrl(LyXView *, Dialogs *); - /// - ~FormUrl(); - //@} + FormUrl(ControlUrl &); private: - /**@name Slot Methods */ - //@{ - /// - virtual void update(); - /// Apply from dialog - void apply(); - /// - virtual void input( long ) {}; + /// Apply from dialog (modify or create inset) + virtual void apply(); /// Build the dialog - void build(); - /// - virtual FL_FORM * const form() const; - /// + virtual void build(); + /// Update dialog before showing it + virtual void update(); + /// Filter the inputs on callback from xforms FD_form_url * build_url(); - //@} - - /// Real GUI implementation. - FD_form_url * dialog_; }; -#endif +#endif // FORMURL_H