~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/ui/widget/notebook-page.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 */
 
11
 
 
12
#ifndef INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
 
13
#define INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
 
14
 
 
15
#include <gtkmm/box.h>
 
16
#include <gtkmm/frame.h>
 
17
#include <gtkmm/table.h>
 
18
 
 
19
namespace Inkscape {
 
20
namespace UI {
 
21
namespace Widget {
 
22
 
 
23
class NotebookPage : public Gtk::VBox
 
24
{
 
25
public:
 
26
    NotebookPage();
 
27
    NotebookPage(int n_rows, int n_columns, bool expand=false, bool fill=false, guint padding=0);
 
28
 
 
29
    Gtk::Table& table() { return _table; }
 
30
 
 
31
protected:
 
32
    Gtk::Table _table;
 
33
};
 
34
 
 
35
} // namespace Widget
 
36
} // namespace UI
 
37
} // namespace Inkscape
 
38
 
 
39
#endif // INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H
 
40
 
 
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 :