// -*- C++ -*- /** * \file FormAboutlyx.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Edwin Leuven * \author Angus Leeming * * Full author contact details are available in file CREDITS */ #ifndef FORMABOUTLYX_H #define FORMABOUTLYX_H #include "FormDialogView.h" #include class ControlAboutlyx; struct FD_aboutlyx; struct FD_aboutlyx_version; struct FD_aboutlyx_credits; struct FD_aboutlyx_license; /** This class provides an XForms implementation of the FormAboutlyx Dialog. */ class FormAboutlyx : public FormController > { public: /// FormAboutlyx(Dialog &); private: /// not needed. virtual void apply() {} /// not needed. virtual void update() {} /// Build the dialog virtual void build(); /// Real GUI implementation. boost::scoped_ptr version_; /// boost::scoped_ptr credits_; /// boost::scoped_ptr license_; }; #endif // FORMABOUTLYX_H