]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GTableCreate.h
WS changes
[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 namespace lyx {
18 namespace frontend {
19
20 class ControlTableCreate;
21
22 class GTableCreate : public GViewCB<ControlTabularCreate, GViewGladeB> {
23 public:
24         GTableCreate(Dialog & parent);
25 private:
26         virtual void apply();
27         virtual void doBuild();
28         virtual void update() {};
29         Gtk::SpinButton * rows_;
30         Gtk::SpinButton * columns_;
31 };
32
33 } // namespace frontend
34 } // namespace lyx
35
36 #endif