Difference between revisions of "User Interface Modules"
Jump to navigation
Jump to search
Romain2Boss (talk | contribs) |
Romain2Boss (talk | contribs) |
||
(21 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/ src/ui] directory. | Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/ src/ui] directory. | ||
== Dialogs == | |||
See [[Dialog]]. | |||
== Widgets == | |||
Widgets are implemented in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/widget 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::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 Widget|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]]. | |||
[[Category:Developer Documentation]] |
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.