Searched defs:tooltip (Results 1 - 22 of 22) sorted by relevance

/inkscape/src/ui/widget/
H A Dbutton.cpp20 Button::Button(Glib::ustring const &label, Glib::ustring const &tooltip) argument
24 set_tooltip_text(tooltip);
27 CheckButton::CheckButton(Glib::ustring const &label, Glib::ustring const &tooltip) argument
31 set_tooltip_text(tooltip);
34 CheckButton::CheckButton(Glib::ustring const &label, Glib::ustring const &tooltip, bool active) argument
38 set_tooltip_text(tooltip);
42 RadioButton::RadioButton(Glib::ustring const &label, Glib::ustring const &tooltip) argument
46 set_tooltip_text(tooltip);
H A Dentry.cpp22 Entry::Entry( Glib::ustring const &label, Glib::ustring const &tooltip, argument
26 : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic)
H A Dtext.cpp22 Text::Text(Glib::ustring const &label, Glib::ustring const &tooltip, argument
26 : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic),
H A Drandom.cpp28 Random::Random(Glib::ustring const &label, Glib::ustring const &tooltip, argument
32 : Scalar(label, tooltip, suffix, icon, mnemonic)
38 Random::Random(Glib::ustring const &label, Glib::ustring const &tooltip, argument
43 : Scalar(label, tooltip, digits, suffix, icon, mnemonic)
49 Random::Random(Glib::ustring const &label, Glib::ustring const &tooltip, argument
59 : Scalar(label, tooltip, adjust, digits, suffix, icon, mnemonic)
H A Dlabelled.cpp25 Labelled::Labelled(Glib::ustring const &label, Glib::ustring const &tooltip, argument
44 widget->set_tooltip_text(tooltip);
75 Labelled::setTooltipText(const Glib::ustring &tooltip) argument
77 _label->set_tooltip_text(tooltip);
78 _widget->set_tooltip_text(tooltip);
H A Dcombo-enums.h189 Glib::ustring const &tooltip,
194 : Labelled(label, tooltip, new ComboBoxEnum<E>(c), suffix, icon, mnemonic)
188 LabelledComboBoxEnum( Glib::ustring const &label, Glib::ustring const &tooltip, const Util::EnumDataConverter<E>& c, Glib::ustring const &suffix = �, Glib::ustring const &icon = �, bool mnemonic = true) argument
H A Dpoint.cpp28 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, argument
32 : Labelled(label, tooltip, new Gtk::VBox(), suffix, icon, mnemonic),
41 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, argument
46 : Labelled(label, tooltip, new Gtk::VBox(), suffix, icon, mnemonic),
55 Point::Point(Glib::ustring const &label, Glib::ustring const &tooltip, argument
65 : Labelled(label, tooltip, new Gtk::VBox(), suffix, icon, mnemonic),
H A Dscalar.cpp26 Scalar::Scalar(Glib::ustring const &label, Glib::ustring const &tooltip, argument
30 : Labelled(label, tooltip, new SpinButton(), suffix, icon, mnemonic),
35 Scalar::Scalar(Glib::ustring const &label, Glib::ustring const &tooltip, argument
40 : Labelled(label, tooltip, new SpinButton(0.0, digits), suffix, icon, mnemonic),
45 Scalar::Scalar(Glib::ustring const &label, Glib::ustring const &tooltip, argument
55 : Labelled(label, tooltip, new SpinButton(adjust, 0.0, digits), suffix, icon, mnemonic),
H A Dscalar-unit.cpp25 ScalarUnit::ScalarUnit(Glib::ustring const &label, Glib::ustring const &tooltip, argument
31 : Scalar(label, tooltip, suffix, icon, mnemonic),
51 ScalarUnit::ScalarUnit(Glib::ustring const &label, Glib::ustring const &tooltip, argument
56 : Scalar(label, tooltip, suffix, icon, mnemonic),
H A Dunit-tracker.cpp139 GtkAction *UnitTracker::createAction(gchar const *name, gchar const *label, gchar const *tooltip) argument
141 EgeSelectOneAction *act1 = ege_select_one_action_new(name, label, tooltip, NULL, GTK_TREE_MODEL(_store));
/inkscape/src/widgets/
H A Dege-output-action.cpp103 const gchar *tooltip,
109 "tooltip", tooltip,
101 ege_output_action_new( const gchar *name, const gchar *label, const gchar *tooltip, const gchar *stock_id ) argument
H A Dink-action.cpp95 const gchar *tooltip,
102 "tooltip", tooltip,
309 const gchar *tooltip,
317 "tooltip", tooltip,
531 const gchar *tooltip,
538 "tooltip", tooltip,
661 const gchar *tooltip,
93 ink_action_new( const gchar *name, const gchar *label, const gchar *tooltip, const gchar *inkId, Inkscape::IconSize size ) argument
307 ink_toggle_action_new( const gchar *name, const gchar *label, const gchar *tooltip, const gchar *inkId, Inkscape::IconSize size, SPAttributeEnum attr) argument
529 ink_radio_action_new( const gchar *name, const gchar *label, const gchar *tooltip, const gchar *inkId, Inkscape::IconSize size ) argument
659 ink_tool_menu_action_new(const gchar *name, const gchar *label, const gchar *tooltip, const gchar *inkId, Inkscape::IconSize size ) argument
[all...]
H A Dfont-selector.cpp120 Glib::ustring tooltip = Glib::ustring::format(_("Font size"), " (", sp_style_get_css_unit_string(unit), ")"); local
121 gtk_widget_set_tooltip_text (fsel->size, _(tooltip.c_str()));
H A Dink-comboboxentry-action.cpp325 const gchar *tooltip,
339 "tooltip", tooltip,
553 // Can't add tooltip until icon set
681 void ink_comboboxentry_action_set_tooltip( Ink_ComboBoxEntry_Action* action, const gchar* tooltip ) {
685 gtk_widget_set_tooltip_text ( GTK_WIDGET(action->entry), tooltip);
688 gtk_widget_set_tooltip_text ( GTK_WIDGET(action->combobox), tooltip);
323 ink_comboboxentry_action_new(const gchar *name, const gchar *label, const gchar *tooltip, const gchar *stock_id, GtkTreeModel *model, gint entry_width, gint extra_width, void *cell_data_func, void *separator_func, GtkWidget *focusWidget) argument
H A Dege-adjustment-action.cpp303 const gchar *tooltip,
312 "tooltip", tooltip,
847 GValue tooltip; local
848 memset( &tooltip, 0, sizeof(tooltip) );
849 g_value_init( &tooltip, G_TYPE_STRING );
850 g_object_get_property( G_OBJECT(action), "tooltip", &tooltip ); local
851 const gchar* tipstr = g_value_get_string( &tooltip );
300 ege_adjustment_action_new( GtkAdjustment* adjustment, const gchar *name, const gchar *label, const gchar *tooltip, const gchar *stock_id, gdouble climb_rate, guint digits, Inkscape::UI::Widget::UnitTracker *unit_tracker ) argument
[all...]
H A Dege-select-one-action.cpp180 g_param_spec_int( "tooltip-column",
182 "The column of the model that holds tooltip strings",
276 const gchar *tooltip,
283 "tooltip", tooltip,
392 g_object_set( G_OBJECT(action), "tooltip-column", col, NULL );
694 "tooltip", tip,
274 ege_select_one_action_new( const gchar *name, const gchar *label, const gchar *tooltip, const gchar *stock_id, GtkTreeModel* model ) argument
H A Dtext-toolbar.cpp1207 Glib::ustring tooltip = Glib::ustring::format(_("Font size"), " (", sp_style_get_css_unit_string(unit), ")"); local
1208 ink_comboboxentry_action_set_tooltip ( fontSizeAction, tooltip.c_str());
1555 ink_comboboxentry_action_set_warning( act, warning ); // Show icon w/ tooltip if font missing
1606 Glib::ustring tooltip = Glib::ustring::format(_("Font size"), " (", sp_style_get_css_unit_string(unit), ")"); local
1610 _(tooltip.c_str()),
1852 _("Spacing between baselines (times font size)"), /* tooltip */
1891 _("Spacing between words (px)"), /* tooltip */
1922 _("Spacing between letters (px)"), /* tooltip */
1953 _("Horizontal kerning (px)"), /* tooltip */
1984 _("Vertical shift (px)"), /* tooltip */
[all...]
H A Dtoolbox.cpp1082 gchar const *label, gchar const *shortLabel, gchar const *tooltip,
1105 EgeAdjustmentAction* act = ege_adjustment_action_new( adj, name, label, tooltip, 0, climb, digits, unit_tracker );
1081 create_adjustment_action( gchar const *name, gchar const *label, gchar const *shortLabel, gchar const *tooltip, Glib::ustring const &path, gdouble def, GtkWidget *focusTarget, GObject *dataKludge, gboolean altx, gchar const *altx_mark, gdouble lower, gdouble upper, gdouble step, gdouble page, gchar const** descrLabels, gdouble const* descrValues, guint descrCount, void (*callback)(GtkAdjustment *, GObject *), Inkscape::UI::Widget::UnitTracker *unit_tracker, gdouble climb , guint digits , double factor ) argument
/inkscape/src/extension/
H A Dextension.cpp694 * added into the VBox. If there is a tooltip (non-NULL) then it
698 * @param tooltip Tooltip for the widget.
700 void addWidget(Gtk::Widget *widg, gchar const *tooltip) { argument
703 if (tooltip) {
704 widg->set_tooltip_text(_(tooltip));
/inkscape/src/ui/dialog/
H A Dtext-edit.cpp253 void TextEdit::styleButton(Gtk::RadioButton *button, gchar const *tooltip, gchar const *icon_name, Gtk::RadioButton *group_button ) argument
266 button->set_tooltip_text(tooltip);
H A Dtags.cpp144 void TagsPanel::_styleButton(Gtk::Button& btn, char const* iconName, char const* tooltip) argument
150 btn.set_tooltip_text (tooltip);
940 // The tooltip applies to the whole tree area. It would be better
941 // if the tooltip was split into parts and only applied to the
H A Dobjects.cpp233 * Stylizes a button using the given icon name and tooltip
235 void ObjectsPanel::_styleButton(Gtk::Button& btn, char const* iconName, char const* tooltip) argument
241 btn.set_tooltip_text (tooltip);

Completed in 114 milliseconds