| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add new widget "image" which allows to display an image file | Patrick Storz | 2019-08-31 | 1 | -1/+5 |
| | | | | | | | | | | * The node's content is the file path. Absolute paths should work, the preferred way is to specify a relative path, though, which will be interpreted relatively to the .inx file's location * The attributes "width/height" allows to override the native size of the image. | ||||
| * | Add new widget "spacer" which adds an empty space between widgets | Patrick Storz | 2019-08-31 | 1 | -1/+4 |
| | | | | | | | | The attribute "size" allows to define the spacing in px. The special value "expand" can be used to make the spacer consume all available space in the parent. | ||||
| * | Add new widget "separator" which draws a line between widgets | Patrick Storz | 2019-08-31 | 1 | -1/+4 |
| | | |||||
| * | Add new widgets "hbox" and "vbox" for layouting purposes | Patrick Storz | 2019-08-31 | 1 | -2/+7 |
| | | |||||
| * | Make sure we have get_widget() | Patrick Storz | 2019-08-31 | 1 | -1/+4 |
| | | |||||
| * | Remove completely unused "doc" and "node" parameters | Patrick Storz | 2019-08-31 | 1 | -2/+2 |
| | | |||||
| * | Re-implement get_param() locally using get_widgets() | Patrick Storz | 2019-08-31 | 1 | -1/+1 |
| | | |||||
| * | Inherit destructor and recursively delete all widgets | Patrick Storz | 2019-08-31 | 1 | -0/+4 |
| | | | | | let's hope this works as expected... | ||||
| * | Make parameter string generation a job of Inkscape::Extension | Patrick Storz | 2019-08-31 | 1 | -0/+8 |
| | | | | | | For this take a first step towards properly tracking children of each parameter and provide functions to look up all widgets. | ||||
| * | Switch Inkscape::Extension to use InxWidgets instead of InxParameters | Patrick Storz | 2019-08-31 | 1 | -0/+25 |
| | | |||||
| * | Add WidgetLabel replacing the former ParamDescription | Patrick Storz | 2019-08-31 | 1 | -1/+12 |
| | | | | | | | | This improves consistency, as "description" parameter were not actually parameters with a value that could be modified or saved. The old syntax is deprecated but still supported for now. | ||||
| * | Create new InxWidget base class for extension widgets. | Patrick Storz | 2019-08-31 | 1 | -0/+111 |
