X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FApplication.h;h=d5f48ae609597f7ab0ea088fb302c92321c49470;hb=585f8b9fda48beb4454b3e568abddf8fef5e9548;hp=763bbeac679eb4a8563dc07b87f424be5f879172;hpb=377cdd5f6cc2dd67fabd0b03703d20722a9ed0ea;p=lyx.git diff --git a/src/frontends/Application.h b/src/frontends/Application.h index 763bbeac67..d5f48ae609 100644 --- a/src/frontends/Application.h +++ b/src/frontends/Application.h @@ -39,8 +39,6 @@ namespace frontend { class Clipboard; class FontLoader; -class Gui; -class LyXView; class Selection; /// The main application class @@ -59,7 +57,7 @@ initialisation should be done before the instanciation of this class. Application (this is the frontend really, should probably be renamed). | - LyXView-1 (one or more in case of split-view mode). + GuiView-1 (one or more in case of split-view mode). | | | | | | @@ -77,7 +75,7 @@ initialisation should be done before the instanciation of this class. | | | | - LyXView-2 (one or more in case of split-view mode). + GuiView-2 (one or more in case of split-view mode). | | | | | | @@ -136,14 +134,14 @@ initialisation should be done before the instanciation of this class. - etc. - 4) The Window: \c LyXView (and its qt4 specialisation \c GuiView) + 4) The Window: \c GuiView This is a full window containing a menubar, toolbars and a central - widget. A LyXView is in charge of creating and closing a View for a + widget. A GuiView is in charge of creating and closing a View for a given Buffer. In the qt4 specialisation, \c GuiView, the central widget is a tab widget. Each tab is reverved to the visualisation of one Buffer and - contains one WorkArea. In the qt4 frontend, one LyXView thus contains + contains one WorkArea. In the qt4 frontend, one GuiView thus contains multiple WorkAreas but this number can limited to one for another frontend. The idea is that the kernel should not know how a Buffer is displayed on screen; it's the frontend business. @@ -171,8 +169,6 @@ public: Application() {} /// virtual ~Application() {} - /// - virtual LyXView * currentWindow() = 0; /// LyX dispatcher: executes lyx actions and does necessary /// screen updates depending on results. @@ -189,14 +185,9 @@ public: /// virtual FuncStatus getStatus(FuncRequest const & cmd) const = 0; - /// - virtual void resetGui() = 0; - /// Load files and restore GUI Session. virtual void restoreGuiSession() = 0; - /// - virtual void hideDialogs(std::string const & name, Inset * inset) const = 0; /// virtual Buffer const * updateInset(Inset const * inset) const = 0;