X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FFileName.h;h=e1bc0de83d45a3b9e06e57d114a4d4eef40ec951;hb=f1ab5dfc5878bc736fd185279a0ef7a185b2d8d8;hp=269834b53695b9b7817860133137e3200f1ab5f1;hpb=b6a764eef3f042b26fe58131a2f5bd909db82990;p=lyx.git diff --git a/src/support/FileName.h b/src/support/FileName.h index 269834b536..e1bc0de83d 100644 --- a/src/support/FileName.h +++ b/src/support/FileName.h @@ -169,21 +169,12 @@ 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 /// relative path, the template file will be created in the global /// temporary directory as given by 'package().temp_dir()'. - static FileName tempName(std::string const & mask = empty_string()); + static FileName tempName(std::string const & mask); static FileName tempName(FileName const & temp_dir, std::string const & mask); @@ -203,6 +194,9 @@ public: bool hasExtension(const std::string & ext); /// path without file name FileName onlyPath() const; + /// path of parent directory + /// returns empty path for root directory + FileName parentPath() const; /// used for display in the Gui docstring displayName(int threshold = 1000) const; @@ -265,7 +259,7 @@ public: /// \param buffer_path if empty, uses `pwd` std::string relFileName(std::string const & buffer_path = empty_string()) const; /// \param buf_path if empty, uses `pwd` - std::string outputFilename(std::string const & buf_path = empty_string()) const; + std::string outputFileName(std::string const & buf_path = empty_string()) const; /** @returns a mangled representation of the absolute file name * suitable for use in the temp dir when, for example, converting @@ -290,19 +284,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_; };