X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fxforms%2FFormExternal.h;h=35c39958960f655cb5a1a02d62480b589b38c16e;hb=06c830f488023d8ff5c22cccee22c4effc8f65c3;hp=ca4b2e364fd8b5ed508b090c45f6eab7909899e1;hpb=d4ee9c38b6aa45146f67658352623bcbc3e0ad9b;p=lyx.git diff --git a/src/frontends/xforms/FormExternal.h b/src/frontends/xforms/FormExternal.h index ca4b2e364f..35c3995896 100644 --- a/src/frontends/xforms/FormExternal.h +++ b/src/frontends/xforms/FormExternal.h @@ -1,114 +1,56 @@ -/** - * \file FormExternal.h - * Copyright 2001 the LyX Team - * Read the file COPYING +// -*- C++ -*- +/* This file is part of + * ====================================================== + * + * LyX, The Document Processor + * + * Copyright 2000-2001 The LyX Team. * - * \author unknown + * ====================================================== + * + * \file FormExternal.h + * \author Asger Alstrup * \author John Levon + * \author Angus Leeming, a.leeming@ic.ac.uk */ #ifndef FORMEXTERNAL_H #define FORMEXTERNAL_H -#include - #ifdef __GNUG__ #pragma interface #endif -#include "FormBaseDeprecated.h" +#include "FormBase.h" #include "insets/insetexternal.h" -#include "xformsBC.h" +class ControlExternal; struct FD_form_external; /// The class for editing External insets via a dialog -class FormExternal : public FormBaseBD { +class FormExternal : public FormCB > { public: /// - FormExternal(LyXView *, Dialogs *); - - /// Connect signals. Also perform any necessary initialisation. - virtual void connect(); - - /// Disconnect signals. Also perform any necessary housekeeping. - virtual void disconnect(); - - /// Slot launching dialog to an existing inset - void showInset(InsetExternal *); - - /// bool indicates if a buffer switch took place - virtual void updateSlot(bool); - - /// Callback function for the template drop-down - static void templateCB(FL_OBJECT *, long); - - /// Callback function for the browse button - static void browseCB(FL_OBJECT *, long); - - /// Callback function for the edit button - static void editCB(FL_OBJECT *, long); - - /// Callback function for the view button - static void viewCB(FL_OBJECT *, long); - - /// Callback function for the update production button - static void updateCB(FL_OBJECT *, long); - - /// Pointer to the actual instantiation of the xform's form - virtual FL_FORM * form() const; + FormExternal(ControlExternal &); private: - /// calculate the string to set the combo box - string const getTemplatesComboString() const; - - /// get the position in the combo for a given name - int getTemplateComboNumber(string const & name) const; - - /// get a template given its combo position - ExternalTemplate getTemplate(int i) const; + /// apply changes + void apply(); - /// change widgets on change of chosen template - void updateComboChange(); - /// build the dialog void build(); - /// the inset we're modifying - InsetExternal * inset_; - - /// the parameters - InsetExternal::InsetExternalParams params_; - /// update the dialog void update(); - /// apply changes - void apply(); - - bool input(FL_OBJECT * obj, long data); + /// Filter the inputs on callback from xforms + ButtonPolicy::SMInput input(FL_OBJECT *, long); - /// inset::hide connection. - SigC::Connection ih_; + /// + void updateComboChange(); - /// build the dialog + /// Fdesign generated method FD_form_external * build_external(); - - /// Pointer to the actual instantiation of the ButtonController. - virtual xformsBC & bc(); - - /// the dialog implementation - boost::scoped_ptr dialog_; - - /// The ButtonController - ButtonController bc_; }; - -inline -xformsBC & FormExternal::bc() -{ - return bc_; -} - #endif // FORMEXTERNAL_H