]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
Add clarifying comment
[lyx.git] / src / frontends / qt4 / GuiView.h
index c55d60bc089e4f0fe6510366b826a94dcaac8516..a864f4b52a157bf4207b2bd8a071d5a88ceedbe1 100644 (file)
@@ -146,7 +146,6 @@ public:
        /// updates the possible layouts selectable
        void updateLayoutList();
        void updateToolbars();
-       QMenu * createPopupMenu();
 
        ///
        LayoutBox * getLayoutDialog() const;
@@ -214,6 +213,8 @@ public:
 Q_SIGNALS:
        void closing(int);
        void triggerShowDialog(QString const & qname, QString const & qdata, Inset * inset);
+       // emitted when the work area or its buffer view changed
+       void bufferViewChanged();
 
 public Q_SLOTS:
        ///
@@ -231,15 +232,10 @@ private Q_SLOTS:
        ///
        void on_currentWorkAreaChanged(GuiWorkArea *);
        ///
+       void onBufferViewChanged();
+       ///
        void on_lastWorkAreaRemoved();
 
-       /// slots to change the icon size
-       void smallSizedIcons();
-       void normalSizedIcons();
-       void bigSizedIcons();
-       void hugeSizedIcons();
-       void giantSizedIcons();
-
        /// For completion of autosave or export threads.
        void processingThreadStarted();
        void processingThreadFinished();
@@ -253,6 +249,9 @@ private Q_SLOTS:
        void updateStatusBarMessage(QString const & str);
        void clearMessageText();
 
+       ///
+       void toolBarPopup(const QPoint &pos);
+
 private:
        /// Open given child document in current buffer directory.
        void openChildDocument(std::string const & filename);
@@ -462,7 +461,7 @@ private:
        QLabel * version_control_;
 
        /// Minimum zoom percentage
-       unsigned int const zoom_min = 10;
+       static unsigned int const zoom_min_ = 10;
 
 };