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