]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCharacter.h
QDialogButtonBox for the remaining dialogs.
[lyx.git] / src / frontends / qt4 / GuiCharacter.h
index e2d87b96e962d156d9887b396328304d7410d95f..d26ca470f44d1f8c04946c23b88902c45283597a 100644 (file)
 
 #include "GuiDialog.h"
 #include "ui_CharacterUi.h"
-#include "frontend_helpers.h" // for LanguagePair
 #include "Font.h"
 
-#include <vector>
+#include <utility>
 
+#ifdef IGNORE
+#undef IGNORE
+#endif
 
 namespace lyx {
-
 namespace frontend {
 
 enum FontState {
        ///
        IGNORE,
        ///
-       EMPH_TOGGLE,
+       UNDERBAR,
+       ///
+       STRIKEOUT,
+       ///
+       XOUT,
+       ///
+       UULINE,
        ///
-       UNDERBAR_TOGGLE,
+       UWAVE,
        ///
-       NOUN_TOGGLE,
+       INHERIT,
        ///
-       INHERIT
+       NONE
 };
 
-typedef std::pair<QString, Font::FONT_FAMILY> FamilyPair;
-typedef std::pair<QString, Font::FONT_SERIES> SeriesPair;
-typedef std::pair<QString, Font::FONT_SHAPE>  ShapePair;
-typedef std::pair<QString, Font::FONT_SIZE>   SizePair;
-typedef std::pair<QString, FontState> BarPair;
-typedef std::pair<QString, ColorCode> ColorPair;
+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, FontState>  BarPair;
+typedef std::pair<QString, QString>    LanguagePair;
 
 class GuiCharacter : public GuiDialog, public Ui::CharacterUi
 {
        Q_OBJECT
 
 public:
-       GuiCharacter(LyXView & lv);
+       GuiCharacter(GuiView & lv);
 
 protected Q_SLOTS:
        void change_adaptor();
+       void on_emphCB_clicked();
+       void on_nounCB_clicked();
+       void on_nospellcheckCB_clicked();
 
 private:
-       void closeEvent(QCloseEvent * e);
-       /// Apply changes
+       /// \name Dialog inherited methods
+       //@{
        void applyView();
-       /// update
        void updateContents();
-
-       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;
-
-       ///
        bool initialiseParams(std::string const & data);
-       ///
        void clearParams() {}
-       ///
        void dispatchParams();
-       ///
        bool isBufferDependent() const { return true; }
-       ///
-       kb_action getLfun() const { return LFUN_FONT_FREE_UPDATE; }
+       FuncCode getLfun() const { return LFUN_TEXTSTYLE_UPDATE; }
+       void saveSession(QSettings & settings) const;
+       void restoreSession();
+       //@}
 
        ///
-       void setFamily(Font::FONT_FAMILY);
-       ///
-       void setSeries(Font::FONT_SERIES);
-       ///
-       void setShape(Font::FONT_SHAPE);
+       void paramsToDialog(Font const & font);
        ///
-       void setSize(Font::FONT_SIZE);
+       void setBar(FontInfo & fi, FontState val);
        ///
-       void setBar(FontState);
-       ///
-       void setColor(ColorCode);
-       ///
-       void setLanguage(std::string const &);
+       void setStrike(FontInfo & fi, FontState val);
 
-       ///
-       Font::FONT_FAMILY getFamily() const;
-       ///
-       Font::FONT_SERIES getSeries() const;
-       ///
-       Font::FONT_SHAPE getShape() const;
-       ///
-       Font::FONT_SIZE getSize() const;
-       ///
-       FontState getBar() const;
-       ///
-       ColorCode getColor() const;
-       ///
-       std::string getLanguage() const;
+       QList<FamilyPair> family;
+       QList<SeriesPair> series;
+       QList<ShapePair>  shape;
+       QList<SizePair>   size;
+       QList<BarPair>    bar;
+       QList<BarPair>    strike;
+       QList<ColorCode> color;
+       QList<LanguagePair> language;
 
-private:
        ///
        Font font_;
        ///
-       bool toggleall_;
-       /// If true the language should be reset.
-       /// If false the language of font_ is used.
-       bool reset_lang_;
+       bool emph_;
+       ///
+       bool noun_;
+       ///
+       bool nospellcheck_;
 };
 
 } // namespace frontend