]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GTableCreate.h
Display accelerator (binding) labels in menus.
[lyx.git] / src / frontends / gtk / GTableCreate.h
1 // -*- C++ -*-
2 /**
3  * \file GTableCreate.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Huang Ying
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GTABLE_CREATE_H
13 #define GTABLE_CREATE_H
14
15 #include "GViewBase.h"
16
17 #include "ControlTabularCreate.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlTableCreate;
23
24 class GTableCreate : public GViewCB<ControlTabularCreate, GViewGladeB> {
25 public:
26         GTableCreate(Dialog & parent);
27 private:
28         virtual void apply();
29         virtual void doBuild();
30         virtual void update() {};
31         Gtk::SpinButton * rows_;
32         Gtk::SpinButton * columns_;
33 };
34
35 } // namespace frontend
36 } // namespace lyx
37
38 #endif