// -*- C++ -*- /** * \file QRef.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * * Full author contact details are available in file CREDITS. */ #ifndef QREF_H #define QREF_H #include "QDialogView.h" #include "ui/RefUi.h" #include #include class QListWidgetItem; class QCloseEvent; namespace lyx { namespace frontend { class QRef; class QRefDialog : public QDialog, public Ui::QRefUi { Q_OBJECT public: QRefDialog(QRef * form); virtual void show(); public Q_SLOTS: void changed_adaptor(); void gotoClicked(); void refHighlighted(QListWidgetItem *); void selectionChanged(); void refSelected(QListWidgetItem *); void sortToggled(bool); void updateClicked(); protected Q_SLOTS: void reset_dialog(); protected: void closeEvent(QCloseEvent * e); private: QRef * form_; }; class ControlRef; // full qualification because qt4 has also a ControlRef type class QRef : public QController > { public: friend class QRefDialog; QRef(Dialog &); protected: virtual bool isValid(); private: /// apply changes virtual void apply(); /// build dialog virtual void build_dialog(); /// update dialog virtual void update_contents(); /// is name allowed for this ? bool nameAllowed(); /// is type allowed for this ? bool typeAllowed(); /// go to current reference void gotoRef(); /// set go back button void setGoBack(); /// set goto ref button void setGotoRef(); /// re-enter references void redoRefs(); /// update references void updateRefs(); /// sort or not persistent state bool sort_; /// went to a reference ? bool at_ref_; /// the last reference entered or examined QString last_reference_; /// store the buffer settings int restored_buffer_; /// the references std::vector refs_; }; } // namespace frontend } // namespace lyx #endif // QREF_H