]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/Parser.h
Implement Hungarian quotation marks style (#12040)
[features.git] / src / tex2lyx / Parser.h
index ca0a917f43ee967f81809a58fdea2386d3190029..d28036710e9e4503f2538f0b6cbe2b85afa20612 100644 (file)
@@ -67,7 +67,8 @@ enum {
        FLAG_OPTION     = 1 << 11, //  read [...] style option
        FLAG_BRACED     = 1 << 12, //  read {...} style argument
        FLAG_CELL       = 1 << 13, //  read table cell
-       FLAG_TABBING    = 1 << 14  //  We are inside a tabbing environment
+       FLAG_TABBING    = 1 << 14,  //  We are inside a tabbing environment
+       FLAG_RDELIM     = 1 << 15,  //  next right delimiter ends the parsing
 };
 
 
@@ -126,7 +127,8 @@ public:
        iparserdocstream(idocstream & is) : is_(is) {}
 
        /// Like std::istream::operator bool()
-       operator bool() const { return s_.empty() ? is_ : true; }
+       /// Do not convert is_ implicitly to bool, since that is forbidden in C++11.
+       explicit operator bool() const { return s_.empty() ? !is_.fail() : true; }
 
        /// change the encoding of the input stream to \p e (iconv name)
        void setEncoding(std::string const & e);
@@ -137,7 +139,7 @@ public:
 
        // add to the list of characters to read before actually reading
        // the stream
-       void putback(docstring s);
+       void putback(const docstring &s);
 
        /// Like std::istream::get()
        iparserdocstream & get(char_type &c);
@@ -172,7 +174,7 @@ class Parser {
        Parser & operator=(Parser const & p);
 public:
        ///
-       Parser(idocstream & is);
+       Parser(idocstream & is, std::string const & fixedenc);
        ///
        Parser(std::string const & s);
        ///
@@ -185,7 +187,7 @@ public:
 
        /// change the encoding of the input stream according to \p encoding
        /// (latex name) and package \p package
-       bool setEncoding(std::string const & encoding, int const & package);
+       bool setEncoding(std::string const & encoding, int package);
        /// change the encoding of the input stream to \p encoding (iconv name)
        bool setEncoding(std::string const & encoding);
        /// get the current iconv encoding of the input stream
@@ -212,7 +214,7 @@ public:
        void dump() const;
 
        /// Does an optional argument follow after the current token?
-       bool hasOpt();
+       bool hasOpt(std::string const & l = "[");
        ///
        typedef std::pair<bool, std::string> Arg;
        /*!
@@ -220,7 +222,7 @@ public:
         * If \p allow_escaping is true, a right delimiter escaped by a
         * backslash does not count as delimiter, but is included in the
         * argument.
-        * \returns wether an argument was found in \p Arg.first and the
+        * \returns whether an argument was found in \p Arg.first and the
         * argument in \p Arg.second. \see getArg().
         */
        Arg getFullArg(char left, char right, bool allow_escaping = true);
@@ -231,7 +233,7 @@ public:
         * argument.
         * \returns the argument (without \p left and \p right) or the empty
         * string if the next non-space token is not \p left. Use
-        * getFullArg() if you need to know wether there was an empty
+        * getFullArg() if you need to know whether there was an empty
         * argument or no argument at all.
         */
        std::string getArg(char left, char right, bool allow_escaping = true);
@@ -239,7 +241,8 @@ public:
         * Like getOpt(), but distinguishes between a missing argument ""
         * and an empty argument "[]".
         */
-       std::string getFullOpt(bool keepws = false);
+       std::string getFullOpt(bool keepws = false,
+                              char left = '[', char right = ']');
        /*!
         * \returns getArg('[', ']') including the brackets or the
         * empty string if there is no such argument.
@@ -256,6 +259,8 @@ public:
         * empty string if there is no such argument.
         */
        std::string getFullParentheseArg();
+       /// Check if we have a list preamble
+       bool hasListPreamble(std::string const & itemcmd);
        /*!
         * \returns the contents of the environment \p name.
         * <tt>\begin{name}</tt> must be parsed already, <tt>\end{name}</tt>
@@ -275,6 +280,11 @@ public:
         * This function is designed to parse verbatim commands.
         */
        std::string const plainCommand(char left, char right, std::string const & name);
+       /*
+        * Returns everything before the main command argument.
+        * This is where the LaTeXParam value of a layout is output.
+        */
+       std::string const getCommandLatexParam();
        /*
         * Basically the same as plainEnvironment() but the parsing is
         * stopped at string \p end_string. Contrary to the other
@@ -285,7 +295,7 @@ public:
         * found and the member \p second is the value. If \p
         * allow_linebreak is false, then the parsing is limited to one line
         */
-       Arg verbatimStuff(std::string const & end_string, 
+       Arg verbatimStuff(std::string const & end_string,
                          bool allow_linebreak = true);
        /*
         * \returns the contents of the environment \p name.
@@ -300,7 +310,7 @@ public:
        ///
        std::string verbatimOption();
        ///
-       void error(std::string const & msg);
+       void error(std::string const & msg) const;
        /// The previous token.
        Token const prev_token() const;
        /// The current token.
@@ -324,7 +334,7 @@ public:
        /// Is any further input pending()? This is not like
        /// std::istream::good(), which returns true if all available input
        /// was read, and the next attempt to read would return EOF.
-       bool good();
+       bool good() const;
        /// resets the parser to initial state
        void reset();
 
@@ -351,10 +361,12 @@ private:
        std::string encoding_iconv_;
        ///
        CatCode theCatcode_[256];
-       //
+       ///
        cat_type theCatcodesType_;
-       //
+       ///
        cat_type curr_cat_;
+       ///
+       bool fixed_enc_;
 };