]> git.lyx.org Git - lyx.git/blobdiff - src/Format.h
* de/UserGuide: some translation work.
[lyx.git] / src / Format.h
index 445c11b024965e93b80876c5b111f70919a7b727..07a9c1b9f9ab612cd91ff6c08c762eb30cef2747 100644 (file)
@@ -34,6 +34,8 @@ public:
                document = 1,
                /// Set if this format can contain vector graphics.
                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 +78,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_;