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

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/ui/widget/licensor.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
/** \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
 */
 
12
 
 
13
#ifndef INKSCAPE_UI_WIDGET_LICENSOR__H
 
14
#define INKSCAPE_UI_WIDGET_LICENSOR__H
 
15
 
 
16
#include <gtkmm/box.h>
 
17
 
 
18
class SPDocument;
 
19
 
 
20
namespace Gtk {
 
21
    class Tooltips;
 
22
}
 
23
 
 
24
namespace Inkscape {
 
25
    namespace UI {
 
26
        namespace Widget {
 
27
 
 
28
class EntityEntry;
 
29
class Registry;
 
30
 
 
31
 
 
32
class Licensor : public Gtk::VBox {
 
33
public:
 
34
    Licensor();
 
35
    virtual ~Licensor();
 
36
    void init (Gtk::Tooltips&, Registry&);
 
37
    void update (SPDocument *doc);
 
38
 
 
39
protected: 
 
40
    EntityEntry          *_eentry;
 
41
};
 
42
 
 
43
 
 
44
} // namespace Widget
 
45
} // namespace UI
 
46
} // namespace Inkscape
 
47
 
 
48
#endif // INKSCAPE_UI_WIDGET_LICENSOR__H
 
49
 
 
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 :