]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCharacter.h
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / GuiCharacter.h
index 09e9507db04b07a58552deb016500d41cdd5f98c..40da643dffd3b7045eb7bf563154ddc14dfcf8b7 100644 (file)
@@ -4,6 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
+ * \author Angus Leeming
  * \author Edwin Leuven
  * \author John Levon
  *
 #ifndef GUICHARACTER_H
 #define GUICHARACTER_H
 
-#include "GuiDialogView.h"
-#include "ControlCharacter.h"
+#include "GuiDialog.h"
 #include "ui_CharacterUi.h"
+#include "Font.h"
 
-#include <QDialog>
+#include <QAction>
 
-#include <vector>
+#include <utility>
+
+#ifdef IGNORE
+#undef IGNORE
+#endif
 
 namespace lyx {
 namespace frontend {
 
-class GuiCharacter;
+enum FontDeco {
+       ///
+       IGNORE,
+       ///
+       UNDERBAR,
+       ///
+       STRIKEOUT,
+       ///
+       XOUT,
+       ///
+       UULINE,
+       ///
+       UWAVE,
+       ///
+       INHERIT,
+       ///
+       NONE
+};
+
+typedef std::pair<QString, FontFamily> FamilyPair;
+typedef std::pair<QString, FontFamily> FamilyPair;
+typedef std::pair<QString, FontSeries> SeriesPair;
+typedef std::pair<QString, FontShape>  ShapePair;
+typedef std::pair<QString, FontSize>   SizePair;
+typedef std::pair<QString, FontDeco>  BarPair;
+typedef std::pair<QString, QString>    LanguagePair;
 
-class GuiCharacterDialog : public QDialog, public Ui::CharacterUi {
+class GuiCharacter : public GuiDialog, public Ui::CharacterUi
+{
        Q_OBJECT
+
 public:
-       GuiCharacterDialog(GuiCharacter * form);
-protected:
-       void closeEvent(QCloseEvent * e);
-private:
-       GuiCharacter * form_;
+       GuiCharacter(GuiView & lv);
+
 protected Q_SLOTS:
        void change_adaptor();
-};
+       void on_emphCB_clicked();
+       void on_nounCB_clicked();
+       void on_nospellcheckCB_clicked();
+       void resetToDefault();
+       void resetToNoChange();
+       void checkRestoreDefaults();
 
-
-class GuiCharacter : public GuiView<GuiCharacterDialog>
-{
-public:
-       friend class GuiCharacterDialog;
-
-       GuiCharacter(Dialog &);
-       /// parent controller
-       ControlCharacter & controller()
-       { return static_cast<ControlCharacter &>(this->getController()); }
-       /// parent controller
-       ControlCharacter const & controller() const
-       { return static_cast<ControlCharacter const &>(this->getController()); }
 private:
-       /// Apply changes
-       virtual void apply();
-       /// update
-       virtual void update_contents();
-       /// build the dialog
-       virtual void build_dialog();
-
-       std::vector<FamilyPair> family;
-       std::vector<SeriesPair> series;
-       std::vector<ShapePair>  shape;
-       std::vector<SizePair>   size;
-       std::vector<BarPair>    bar;
-       std::vector<ColorPair>  color;
-       std::vector<LanguagePair> language;
+       /// \name Dialog inherited methods
+       //@{
+       void applyView();
+       void updateContents();
+       bool initialiseParams(std::string const & data);
+       void clearParams() {}
+       void dispatchParams();
+       bool isBufferDependent() const { return true; }
+       FuncCode getLfun() const { return LFUN_TEXTSTYLE_UPDATE; }
+       void saveSession(QSettings & settings) const;
+       void restoreSession();
+       //@}
+
+       ///
+       void paramsToDialog(Font const & font);
+       ///
+       void setBar(FontInfo & fi, FontDeco val);
+       ///
+       void setStrike(FontInfo & fi, FontDeco val);
+
+       QList<FamilyPair> family;
+       QList<SeriesPair> series;
+       QList<ShapePair>  shape;
+       QList<SizePair>   size;
+       QList<BarPair>    bar;
+       QList<BarPair>    strike;
+       QList<ColorCode> color;
+       QList<LanguagePair> language;
+
+       ///
+       Font font_;
+       ///
+       bool emph_;
+       ///
+       bool noun_;
+       ///
+       bool nospellcheck_;
+
+       ///
+       QAction * resetdefault_ = new QAction(this);
+       ///
+       QAction * resetnochange_ = new QAction(this);
 };
 
 } // namespace frontend