]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileName.h
Work around qt bug that prevents the glyph LATIN CAPITAL LETTER SHARP S from being...
[lyx.git] / src / support / FileName.h
index e1b732d9571964751acd66f5b4b52bc371dcd9b1..6744db1834206c0a8eb3abedb81432d6261c3ede 100644 (file)
@@ -169,15 +169,6 @@ public:
        */
        void changeExtension(std::string const & extension);
 
-       /** Guess the file format name (as in Format::name()) from contents.
-        Normally you don't want to use this directly, but rather
-        Formats::getFormatFromFile().
-        */
-       std::string guessFormatFromContents() const;
-
-       /// check for zipped file
-       bool isZippedFile() const;
-
        static FileName fromFilesystemEncoding(std::string const & name);
        /// (securely) create a temporary file with the given mask.
        /// \p mask must be in filesystem encoding, if it contains a
@@ -290,19 +281,13 @@ public:
        std::string
        mangledFileName(std::string const & dir = empty_string()) const;
 
-       /// \return true if the file is compressed.
-       bool isZipped() const;
        /// \return the absolute file name without its .gz, .z, .Z extension
-       std::string unzippedFilename() const;
+       std::string unzippedFileName() const;
 
 private:
        /// Records whether we should save (or export) the filename as a relative
        /// or absolute path.
        bool save_abs_path_;
-       /// Cache for isZipped() because zippedFile() is expensive
-       mutable bool zipped_;
-       /// Is zipped_ valid?
-       mutable bool zipped_valid_;
 };