]> git.lyx.org Git - lyx.git/blobdiff - src/Author.h
Disable changebar checkbox if show changes in output is off
[lyx.git] / src / Author.h
index 108a701e825300144ede07a05a032d6e36040e8e..b498655aa020fdb6aff53b1fceefdba110e77221 100644 (file)
@@ -24,7 +24,8 @@ public:
        ///
        Author() : used_(false), buffer_id_(0) {};
        ///
-       Author(docstring const & name, docstring const & email);
+       Author(docstring const & name, docstring const & email,
+              docstring const & initials);
        /// For when the \author line is missing (#9854)
        Author(int buffer_id);
        ///
@@ -32,6 +33,8 @@ public:
        ///
        docstring email() const { return email_; }
        ///
+       docstring initials() const { return initials_; }
+       ///
        docstring nameAndEmail() const;
        ///
        int bufferId() const { return buffer_id_; }
@@ -53,6 +56,8 @@ private:
        docstring name_;
        /// The author's email address
        docstring email_;
+       /// The author's initials
+       docstring initials_;
        ///
        mutable bool used_;
        /// The id of the author in the lyx-file