]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GMathPanel.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / GMathPanel.h
index 9669700c42c0328f68f44eb867d71c5f323223d4..67179c2a337ac930e985c7a3ff4000fad85677ee 100644 (file)
 #define GMATH_PANEL_H
 
 #include "GViewBase.h"
+#include "GXpmBtnTbl.h"
+
 #include "support/lstrings.h"
 
+
+namespace lyx {
+namespace frontend {
+
 class ControlMath;
 
-class GMathPanel : public GViewCB<ControlMath, GViewGladeB>
-{
+class GMathPanel : public GViewCB<ControlMath, GViewGladeB> {
 public:
        GMathPanel(Dialog & parent);
 private:
@@ -26,6 +31,8 @@ private:
        virtual void update() {}
        virtual void doBuild();
        void onShowDialog(char const * dialogName);
+       void onTableUpClicked(int row, int col);
+       void onTableDownClicked(int row, int col);
        void onSuperClicked();
        void onSubClicked();
        void onEquationClicked();
@@ -36,6 +43,11 @@ private:
        Gtk::TreeModel::ColumnRecord listCols_;
        Glib::RefPtr<Gtk::ListStore> listStore_;
        Glib::RefPtr<Gtk::TreeSelection> listSel_;
+       GXpmBtnTbl tableUp_;
+       GXpmBtnTbl tableDown_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif