// -*- C++ -*- /** * \file QBox.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Jürgen Spitzmüller * \ author Martin Vermeer * * Full author contact details are available in file CREDITS. */ #ifndef QBOX_H #define QBOX_H #include "QBoxDialog.h" #include "QDialogView.h" #include namespace lyx { namespace frontend { class ControlBox; /// class QBox : public QController > { public: /// friend class QBoxDialog; /// QBox(Dialog &); /// add and remove special lengths void setSpecial(bool ibox); /// only show valid inner box items void setInnerType(bool frameless, int i); private: /// Apply changes virtual void apply(); /// update virtual void update_contents(); /// build the dialog virtual void build_dialog(); /// std::vector ids_; /// std::vector gui_names_; /// std::vector ids_spec_; /// std::vector gui_names_spec_; }; } // namespace frontend } // namespace lyx #endif // QBOX_H