diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2019-06-05 19:34:19 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2019-06-05 19:34:19 +0000 |
| commit | 346e764345e1fbf877307313cd4779874dfd3ed9 (patch) | |
| tree | d5c326e85f752a1cd54301bc19592d90d9445e51 /src/ui/view | |
| parent | Merge changes (diff) | |
| parent | Finish TextToolbar migration (diff) | |
| download | inkscape-346e764345e1fbf877307313cd4779874dfd3ed9.tar.gz inkscape-346e764345e1fbf877307313cd4779874dfd3ed9.zip | |
Merge branch 'text-toolbar-migration'
Diffstat (limited to 'src/ui/view')
| -rw-r--r-- | src/ui/view/edit-widget-interface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/view/edit-widget-interface.h b/src/ui/view/edit-widget-interface.h index 1bbbbc8bd..eb3e33bb5 100644 --- a/src/ui/view/edit-widget-interface.h +++ b/src/ui/view/edit-widget-interface.h @@ -17,7 +17,8 @@ #include <2geom/point.h> namespace Gtk { -class Window; + class Toolbar; + class Window; } namespace Glib { @@ -132,15 +133,14 @@ struct EditWidgetInterface /// Temporarily block signals and update rotation display virtual void updateRotation() = 0; + virtual Gtk::Toolbar* get_toolbar_by_name(const Glib::ustring&) = 0; + /// In auxiliary toolbox, set focus to widget having specific id virtual void setToolboxFocusTo (const gchar *) = 0; /// In auxiliary toolbox, set value of adjustment with specific id virtual void setToolboxAdjustmentValue (const gchar *, double) = 0; - /// In auxiliary toolbox, select one of the "select one" options (usually radio toggles) - virtual void setToolboxSelectOneValue (const gchar *, gint) = 0; - /// In auxiliary toolbox, return true if specific togglebutton is active virtual bool isToolboxButtonActive (gchar const*) = 0; |
