// -*- C++ -*- /* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 2000 The LyX Team. * * ====================================================== */ #ifndef FORMINDEX_H #define FORMINDEX_H #include #include "FormInset.h" #include "xformsBC.h" #ifdef __GNUG__ #pragma interface #endif struct FD_form_index; /** This class provides an XForms implementation of the FormIndex Dialog. */ class FormIndex : public FormCommand { public: /// FormIndex(LyXView *, Dialogs *); private: /// Pointer to the actual instantiation of the ButtonController. virtual xformsBC & bc(); /// 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 xforms form virtual FL_FORM * form() const; /// FD_form_index * build_index(); /// Real GUI implementation. boost::scoped_ptr dialog_; /// The ButtonController ButtonController bc_; }; inline xformsBC & FormIndex::bc() { return bc_; } #endif