]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GView.h
make it compile again
[lyx.git] / src / frontends / gtk / GView.h
index ce0c3be837a753b5a93fe1a61b9e2c84810a6640..655cdb4646b4cf99424d900efe6623f2a480deaf 100644 (file)
@@ -35,14 +35,14 @@ public:
                Center
        };
 
-       GView(Gui & owner);
+       GView();
        ~GView();
 
        Gtk::Box & getBox(Position pos);
 
        virtual void prohibitInput() const;
        virtual void allowInput() const;
-       virtual void message(std::string const &);
+       virtual void message(lyx::docstring const &);
 
        bool on_delete_event(GdkEventAny * event);
        void focusWorkArea() { workArea_->grab_focus(); }
@@ -50,16 +50,21 @@ public:
 
        /// show busy cursor
        virtual void busy(bool) const;
+
+       ///
+       Toolbars::ToolbarPtr makeToolbar(ToolbarBackend::Toolbar const & tbb);
+
        /// clear any temporary message and replace with current status
        virtual void clearMessage();
 
        // returns true if this view has the focus.
        virtual bool hasFocus() const;
+       ///
+       void updateStatusBar();
 
 private:
-       void showViewState();
        bool onFocusIn(GdkEventFocus * event);
-       virtual void setWindowTitle(std::string const & t, std::string const & it);
+       virtual void setWindowTitle(lyx::docstring const & t, lyx::docstring const & it);
 
        // The top-most box containing all other boxes.
        Gtk::VBox top_box_;