]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QPrefs.h
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / QPrefs.h
index 51df03d5672376edfd3b84f1237e1349eedb25bf..cddf96836199dae514bd4af7a0ee68651352e575 100644 (file)
 #ifndef QPREFS_H
 #define QPREFS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+
+#include "converter.h"
+#include "format.h"
 
 #include "Qt2Base.h"
 #include "ControlPrefs.h"
 
+#include <vector>
+
 class QPrefsDialog;
 
 class QPrefs
@@ -29,16 +31,25 @@ public:
        friend class QPrefsDialog;
 
        QPrefs();
+
 private:
        /// Apply changes
        virtual void apply();
+
        /// update (do we need this?)
        virtual void update_contents();
 
        /// build the dialog
        virtual void build_dialog();
+
+       /// languages
+       std::vector<string> lang_;
+
+       /// converters
+       Converters converters_;
+
+       /// formats
+       Formats formats_;
 };
 
 #endif // QPREFS_H