Difference between revisions of "User Interface Modules"

From Inkscape Wiki
Jump to navigation Jump to search
Line 79: Line 79:
=== Toolbars ===
=== Toolbars ===


Toolbars are defined in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/toolbox.cpp src/widgets/toolbox.cpp]:
* [[3D Box Toolbar]]: a toolbar to draw or edit a 3D box shape
 
* [[Calligraphy Toolbar]]: a toolbar to draw lines with calligraphics effects
* [[3D Box Toolbox]]: a toolbar to draw or edit a 3D box shape
* [[Circle/Arc Toolbar]]: a toolbar to draw or edit circles, ellipses and curves
* [[Calligraphy Toolbox]]: a toolbar to draw lines with calligraphics effects
* [[Connector Toolbar]]
* [[Circle/Arc Toolbox]]: a toolbar to draw or edit circles, ellipses and curves
* [[Dropper Toolbar]]
* [[Connector Toolbox]]
* [[Eraser Toolbar]]: a toolbar to delete objects in the workspace
* [[Dropper Toolbox]]
* [[Gradient Toolbar]]: a toolbar to edit the gradient of an object
* [[Eraser Toolbox]]: a toolbar to delete objects in the workspace
* [[LPE Toolbar]]
* [[Gradient Toolbar]]: a toolbar to edit the gradient of an object. Implementation in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/gradient-toolbar.h src/widgets/gradient-toolbar.h]
* [[Measure Toolbar]]: a toolbar to measure distance between nodes, objects...
* [[LPE Toolbox]]
* [[Node Editing Toolbar]]: a toolbar to edit nodes of a path
* [[Measure Toolbox]]: a toolbar to measure distance between nodes, objects...
* [[Paintbucket Toolbar]]: a toolbar to fill a shape with a specific color
* [[Node Editing Toolbox]]: a toolbar to edit nodes of a path
* [[Pen/Pencil Toolbar]]: a toolbar to draw straight or not-straight lines
* [[Paintbucket Toolbox]]: a toolbar to fill a shape with a specific color
* [[Rect Toolbar]]: a toolbar used to draw or edit a rectangle with or whithout rounded corners
* [[Pen/Pencil Toolbox]]: a toolbar to draw straight or not-straight lines
* [[Select Toolbar]]
* [[Rect Toolbox]]: a toolbar used to draw or edit a rectangle with or whithout rounded corners
* [[Spiral Toolbar]]: a toolbar to draw or edit a spiral
* [[Select Toolbar]]: ??. implementation in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/select-toolbar.h src/widgets/select-toolbar.h]
* [[Spray Toolbar]]: a toolbar to dupplicate an object in multiple clones with a spray effect
* [[Spiral Toolbox]]: a toolbar to draw or edit a spiral
* [[Star Toolbar]]: a toolbar to draw or edit stars and polygons shapes
* [[Spray Toolbox]]: a toolbar to dupplicate an object in multiple clones with a spray effect
* [[Text Toolbar]]: a toolbar to create or edit font properties of a text object
* [[Star Toolbox]]: a toolbar to draw or edit stars and polygons shapes
* [[Tweak Toolbar]]: a toolbar to tweak objects
* [[Text Toolbox]]: a toolbar to create or edit font properties of a text object
* [[Zoom Toolbar]]: a toolbar to zoom in, out and fit the viewing area of the workspace
* [[Tweak Toolbox]]: a toolbar to tweak objects
* [[Zoom Toolbox]]: a toolbar to zoom in, out and fit the viewing area of the workspace

Revision as of 20:41, 20 December 2011

User Interface Modules

Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the src/ui directory.

Dialogs

By extension, a dialog in Inkscape vocabulary is any type of window, i.e. a set of widgets with an OS decoration, a title...

All dialogs are in src/ui/dialog (except for old dialogs).

Dialogs that have not yet been rewritted can be found in src/dialogs.

Widgets

Widgets are implemented in src/ui/widget.

src/ui/tools

  • ...

Toolbars