]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/Dialog.h
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / Dialog.h
index 987211d91ff0f115dad1d9d0096782be86f9400e..7b96d65390cc35eee15587f82bb9a8b53c7ba3f1 100644 (file)
@@ -14,9 +14,9 @@
 
 #include "lfuns.h"
 
+#include <QString>
 #include <string>
 
-class QString;
 class QWidget;
 
 namespace lyx {
@@ -50,7 +50,8 @@ public:
        /// \param lv is the access point for the dialog to the LyX kernel.
        /// \param name is the identifier given to the dialog by its parent
        /// container.
-       Dialog(GuiView & lv, std::string const & name);
+       /// \param title is the window title used for decoration.
+       Dialog(GuiView & lv, QString const & name, QString const & title);
 
        virtual ~Dialog();
 
@@ -129,10 +130,7 @@ public:
        //@}
 
        /// Dialog identifier.
-       /// FIXME for Andre': Now that Dialog is entirely within qt4/
-       /// We can use QString instead in order to avoid <string> inclusion
-       /// or we can pimpl name_.
-       std::string const & name() const;
+       QString name() const { return name_; }
 
        //@{
        /** Enable the controller to initialise its data structures.
@@ -251,13 +249,18 @@ public:
        //@}
 
 protected:
+       ///
+       void setTitle(QString const & title) { title_ = title; }
+       ///
        virtual void apply();
 
 private:
        /** The Dialog's name is the means by which a dialog identifies
         *  itself to the LyXView.
         */
-       std::string const name_;
+       QString const name_;
+       ///
+       QString title_;
        ///
        GuiView * lyxview_;