// -*- C++ -*- /** * \file FormNote.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Martin Vermeer * * Full author contact details are available in file CREDITS. */ #ifndef FORMNOTE_H #define FORMNOTE_H #include "FormDialogView.h" class ControlNote; struct FD_note; /** This class provides an XForms implementation of the Note Dialog. */ class FormNote : public FormController > { public: /// Constructor FormNote(Dialog &); private: /// virtual void apply(); /// Build the dialog virtual void build(); /// Update dialog before showing it virtual void update(); /// std::vector ids_; /// std::vector gui_names_; }; #endif // FORMNOTE_H