Code

text markup; use gradient preview for gradient fills or strokes
[inkscape.git] / src / ui / widget / licensor.h
1 /** \file
2  * \brief Widget for specifying a document's license; part of document
3  * preferences dialog.
4  *
5  * Authors:
6  *   Ralf Stephan <ralf@ark.in-berlin.de>
7  *
8  * Copyright (C) 2005 Authors
9  *
10  * Released under GNU GPL.  Read the file 'COPYING' for more information.
11  */
13 #ifndef INKSCAPE_UI_WIDGET_LICENSOR__H
14 #define INKSCAPE_UI_WIDGET_LICENSOR__H
16 #include <gtkmm/box.h>
18 class SPDocument;
20 namespace Gtk {
21     class Tooltips;
22 }
24 namespace Inkscape {
25     namespace UI {
26         namespace Widget {
28 class EntityEntry;
29 class Registry;
32 class Licensor : public Gtk::VBox {
33 public:
34     Licensor();
35     virtual ~Licensor();
36     void init (Gtk::Tooltips&, Registry&);
37     void update (SPDocument *doc);
39 protected: 
40     EntityEntry          *_eentry;
41 };
44 } // namespace Widget
45 } // namespace UI
46 } // namespace Inkscape
48 #endif // INKSCAPE_UI_WIDGET_LICENSOR__H
50 /*
51   Local Variables:
52   mode:c++
53   c-file-style:"stroustrup"
54   c-file-offsets:((innamespace . 0)(inline-open . 0))
55   indent-tabs-mode:nil
56   fill-column:99
57   End:
58 */
59 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :