lyx_mirror/src/frontends/gtk/GMathPanel.h
Lars Gullik Bjønnes 9122d5b2df header file reorder
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9012 a592a061-630c-0410-9148-cb99ea01b6c8
2004-09-26 18:36:07 +00:00

54 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file GMathPanel.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Huang Ying
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GMATH_PANEL_H
#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> {
public:
GMathPanel(Dialog & parent);
private:
virtual void apply() {}
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();
void onInsert(char const * what);
void onFunctionSelected();
Gtk::TreeView * functions_;
Gtk::TreeModelColumn<Glib::ustring> listCol_;
Gtk::TreeModel::ColumnRecord listCols_;
Glib::RefPtr<Gtk::ListStore> listStore_;
Glib::RefPtr<Gtk::TreeSelection> listSel_;
GXpmBtnTbl tableUp_;
GXpmBtnTbl tableDown_;
};
} // namespace frontend
} // namespace lyx
#endif