Code

New widget helperclass for Gtk:Entry
[inkscape.git] / src / ui / widget / notebook-page.h
1 /**
2  * \brief Notebook Page Widget - A tabbed notebook page for dialogs.
3  *
4  * Author:
5  *   Bryce Harrington <bryce@bryceharrington.org>
6  *
7  * Copyright (C) 2004 Bryce Harrington
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
13 #define INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
15 #include <gtkmm/box.h>
16 #include <gtkmm/frame.h>
17 #include <gtkmm/table.h>
19 namespace Inkscape {
20 namespace UI {
21 namespace Widget {
23 class NotebookPage : public Gtk::VBox
24 {
25 public:
26     NotebookPage();
27     NotebookPage(int n_rows, int n_columns);
29     Gtk::Table& table() { return _table; }
31 protected:
32     Gtk::Table _table;
33 };
35 } // namespace Widget
36 } // namespace UI
37 } // namespace Inkscape
39 #endif // INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
41 /* 
42   Local Variables:
43   mode:c++
44   c-file-style:"stroustrup"
45   c-file-offsets:((innamespace . 0)(inline-open . 0))
46   indent-tabs-mode:nil
47   fill-column:99
48   End:
49 */
50 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :