]> git.lyx.org Git - lyx.git/blobdiff - src/Format.h
Compile fix for qt versions below 4.6.
[lyx.git] / src / Format.h
index 21fa27bc91801396d6a4db3102e65bfc6b4ad81b..682f8c5b478ff5420d90fea826b036b954feadc6 100644 (file)
@@ -14,6 +14,8 @@
 
 #include "support/docstring.h"
 
+#include "OutputParams.h"
+
 #include <vector>
 
 
@@ -33,7 +35,9 @@ public:
                /// Some formats are both (e.g. pdf), they have this flag set.
                document = 1,
                /// Set if this format can contain vector graphics.
-               vector = 2
+               vector = 2,
+               /// This format should  appear in the File > Export menu
+               export_menu = 4
        };
        ///
        Format(std::string const & n, std::string const & e, std::string const & p,
@@ -76,6 +80,8 @@ public:
        bool vectorFormat() const { return flags_ & vector; }
        ///
        void setFlags(int v) { flags_ = v; }
+       ///
+       bool inExportMenu() const { return flags_ & export_menu; }
 private:
        /// Internal name. Needs to be unique.
        std::string name_;
@@ -164,6 +170,11 @@ private:
        FormatList formatlist;
 };
 
+///
+std::string flavor2format(OutputParams::FLAVOR flavor);
+// Not currently used.
+// OutputParams::FLAVOR format2flavor(std::string fmt);
+
 extern Formats formats;
 
 extern Formats system_formats;