Difference between revisions of "User Interface Modules"
Jump to navigation
Jump to search
Romain2Boss (talk | contribs) |
Romain2Boss (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
== Dialogs == | == Dialogs == | ||
See [[Dialog]]. | |||
== Widgets == | == Widgets == | ||
Line 93: | Line 14: | ||
* [[Class Inkscape::UI::Widget::SpinSlider]]: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment | * [[Class Inkscape::UI::Widget::SpinSlider]]: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment | ||
* ... | * ... | ||
Also a proposal for a [[Color Entry Widget|Color Entry]]. | |||
== src/ui/tools == | == src/ui/tools == |
Latest revision as of 11:21, 25 August 2013
Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the src/ui directory.
Dialogs
See Dialog.
Widgets
Widgets are implemented in src/ui/widget.
- Class Inkscape::UI::Widget::ColorPreview: A simple color preview widget, mainly used within a picker button
- Class Inkscape::UI::Widget::ProgressPannel
- Class Inkscape::UI::Widget::SpinButton: Widget that allows entry of simple math expressions (also units, when linked with UnitMenu), and allows entry of both '.' and ',' for the decimal, even when in numeric mode
- Class Inkscape::UI::Widget::SpinSlider: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment
- ...
Also a proposal for a Color Entry.
src/ui/tools
- ...
Toolbars
A toolbar is a set of graphical widgets put around the canvas to provide actions on objects, canvas or documents.
See Toolbar page for more informations.
Menu
See Menu.