diff options
| author | Bruno Dilly <bruno.dilly@gmail.com> | 2007-08-06 18:32:13 +0000 |
|---|---|---|
| committer | bdilly <bdilly@users.sourceforge.net> | 2007-08-06 18:32:13 +0000 |
| commit | f006ebdee5b2f29127a152978ac72e41f61ced33 (patch) | |
| tree | d35a9cc73d84182ad90838bcd77cda2e3574679d /src/ui/widget/preferences-widget.h | |
| parent | Add Gail and Diederik; correct Danilo's name. (diff) | |
| download | inkscape-f006ebdee5b2f29127a152978ac72e41f61ced33.tar.gz inkscape-f006ebdee5b2f29127a152978ac72e41f61ced33.zip | |
adds export to ocal feature without dialog window
(bzr r3398)
Diffstat (limited to 'src/ui/widget/preferences-widget.h')
| -rw-r--r-- | src/ui/widget/preferences-widget.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/ui/widget/preferences-widget.h b/src/ui/widget/preferences-widget.h index 361d737a8..5b6402883 100644 --- a/src/ui/widget/preferences-widget.h +++ b/src/ui/widget/preferences-widget.h @@ -3,8 +3,9 @@ * * Authors: * Marco Scholten + * Bruno Dilly <bruno.dilly@gmail.com> * - * Copyright (C) 2004, 2006 Authors + * Copyright (C) 2004, 2006, 2007 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information. */ @@ -88,6 +89,17 @@ protected: void on_changed(); }; +class PrefEntry : public Gtk::Entry +{ +public: + void init(const std::string& prefs_path, const std::string& attr, + bool mask); +protected: + std::string _prefs_path; + std::string _attr; + void on_activate(); +}; + class DialogPage : public Gtk::Table { public: |
