]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCharacter.h
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiCharacter.h
index e2d87b96e962d156d9887b396328304d7410d95f..bf5d92fb90a1412d761b135838245740dd67a509 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "GuiDialog.h"
 #include "ui_CharacterUi.h"
-#include "frontend_helpers.h" // for LanguagePair
+#include "qt_helpers.h" // for LanguagePair
 #include "Font.h"
 
 #include <vector>
@@ -39,10 +39,10 @@ enum FontState {
        INHERIT
 };
 
-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, 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, ColorCode> ColorPair;
 
@@ -51,13 +51,12 @@ class GuiCharacter : public GuiDialog, public Ui::CharacterUi
        Q_OBJECT
 
 public:
-       GuiCharacter(LyXView & lv);
+       GuiCharacter(GuiView & lv);
 
 protected Q_SLOTS:
        void change_adaptor();
 
 private:
-       void closeEvent(QCloseEvent * e);
        /// Apply changes
        void applyView();
        /// update
@@ -83,13 +82,13 @@ private:
        kb_action getLfun() const { return LFUN_FONT_FREE_UPDATE; }
 
        ///
-       void setFamily(Font::FONT_FAMILY);
+       void setFamily(FontFamily);
        ///
-       void setSeries(Font::FONT_SERIES);
+       void setSeries(FontSeries);
        ///
-       void setShape(Font::FONT_SHAPE);
+       void setShape(FontShape);
        ///
-       void setSize(Font::FONT_SIZE);
+       void setSize(FontSize);
        ///
        void setBar(FontState);
        ///
@@ -98,13 +97,13 @@ private:
        void setLanguage(std::string const &);
 
        ///
-       Font::FONT_FAMILY getFamily() const;
+       FontFamily getFamily() const;
        ///
-       Font::FONT_SERIES getSeries() const;
+       FontSeries getSeries() const;
        ///
-       Font::FONT_SHAPE getShape() const;
+       FontShape getShape() const;
        ///
-       Font::FONT_SIZE getSize() const;
+       FontSize getSize() const;
        ///
        FontState getBar() const;
        ///