]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
some remnaming
[lyx.git] / src / frontends / qt4 / GuiView.h
index 3f221e2b249c39059c516d93d29eba0571826289..428f9325f11b8173408ba2e90104973bb2560a7e 100644 (file)
@@ -28,28 +28,28 @@ class QDropEvent;
 class QMenu;
 class QToolBar;
 
-
 namespace lyx {
 namespace frontend {
 
-QWidget* mainWindow();
+QWidget * mainWindow();
 
 /**
  * GuiView - Qt4 implementation of LyXView
  *
  * qt4-private implementation of the main LyX window.
  *
- * Note: any QObject emits a destroyed(QObject *) Qt signal when it
- *       is deleted.This might be useful for closing other dialogs
- *       depending on a given GuiView.
+ * Note: a QObject emits a destroyed(QObject *) Qt signal when it
+ * is deleted. This might be useful for closing other dialogs
+ * depending on a given GuiView.
  */
-class GuiView : public QMainWindow, public LyXView {
+class GuiViewBase : public QMainWindow, public LyXView
+{
        Q_OBJECT
 public:
        /// create a main window of the given dimensions
-       GuiView(int id);
+       GuiViewBase(int id);
 
-       ~GuiView();
+       ~GuiViewBase();
 
        virtual void init();
        virtual void close();
@@ -73,7 +73,7 @@ public:
        void openMenu(docstring const &);
 
        /// show - display the top-level window
-       void show();
+       void showView();
 
        /// menu item has been selected
        void activated(FuncRequest const &);
@@ -98,10 +98,8 @@ public Q_SLOTS:
 protected:
        /// make sure we quit cleanly
        virtual void closeEvent(QCloseEvent * e);
-
        ///
        virtual void resizeEvent(QResizeEvent * e);
-
        ///
        virtual void moveEvent(QMoveEvent * e);