summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/combo-enums.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix coding styleJabier Arraiza2019-06-131-4/+1
|
* Fix CI problemJabiertxof2019-06-131-1/+1
|
* Try to fix issue with focus with thomas and add also stops to combos and ↵Jabiertxof2019-06-131-1/+9
| | | | unitcombos
* Clarify licensesMax Gaukler2018-11-081-1/+2
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Add orientation and alow unsort combobox enum widgetJabier Arraiza Cenoz2016-07-291-4/+5
| | | (bzr r15017.1.12)
* Move gtkmm headers that internally re-enable deprecated gtk symbols to top. ↵Alex Valavanis2012-02-151-1/+1
| | | | | Hides many GTK deprecation errors that we can't fix in Inkscape (bzr r10982)
* Header cleaningAlex Valavanis2012-02-121-1/+3
| | | (bzr r10963)
* Cleanup pass on documentation that was dumping garbage into doxygen output.Jon A. Cruz2011-10-251-3/+7
| | | (bzr r10696)
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-1/+1
| | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* it was a very stupid idea to sort all combos without asking - this broke the ↵bulia byak2009-02-101-6/+16
| | | | | blend modes list in fill/stroke which relied on the set order of its enum (bzr r7266)
* remove debug codeJohan B. C. Engelen2009-01-241-1/+0
| | | (bzr r7166)
* sort combo enumerationsJohan B. C. Engelen2009-01-241-0/+17
| | | (bzr r7163)
* Warning cleanupJon A. Cruz2008-07-201-1/+1
| | | (bzr r6367)
* fix combo enum, to handle enums of all types (not only the ones that range ↵Johan B. C. Engelen2008-07-161-3/+3
| | | | | from 0..10) (bzr r6333)
* initialize default value to zero when it is not provided as parameter to the ↵Felipe Corr??a da Silva Sanches2008-02-191-1/+1
| | | | | combobox constructor (bzr r4782)
* * use enums to deal with displacementmap channel selectorsFelipe Corr??a da Silva Sanches2008-02-191-2/+21
| | | | | * set default values explicitly for all combobox filter settings at the filters dialog. (bzr r4781)
* Hide the Image filter effect primitive from the filter effects dialog. Files ↵Nicholas Bishop2008-01-171-0/+14
| | | | | containing that filter will still show the filter in the dialog, but the settings area warns that the filter is not yet implemented in Inkscape. (bzr r4537)
* fixing undo problems with LPE widgets. Not completely fixed yet. ↵Johan B. C. Engelen2007-09-271-1/+6
| | | | | CheckButtons still crash, and some changes are not recorded in the history (try the random parameters of curve stitching) (bzr r3809)
* Try to fix translation of LPE names.Johan B. C. Engelen2007-08-301-1/+1
| | | (bzr r3623)
* Commit LivePathEffect branch to trunk!Johan B. C. Engelen2007-08-141-0/+36
| | | | | (disabled extension/internal/bitmap/*.* in build.xml to fix compilation) (bzr r3472)
* Filter effects dialog:Nicholas Bishop2007-07-291-0/+2
| | | | | | * feMergeNodes can be deleted by clicking the input without dragging. * feMergeNodes can be added using a special empty input at the bottom of primitive. (bzr r3335)
* Filter effects dialog:Nicholas Bishop2007-07-261-4/+19
| | | | | | | | | This is a large commit that greatly simplifies the creation and use of all the filter settings in the dialog. * Added AttrWidget class to provide an interface for the settings widgets. Allows the widget to read and write to an attribute. * Modified the ComboBoxEnum, SpinSlider, and ConvolveMatrix widgets to use AttrWidget, more to follow. * Removed lots of specific filter settings code in favor of the more generic system. (bzr r3304)
* Filter effects:Nicholas Bishop2007-07-141-0/+94
* As coded by Johan Engelen, made the filter-effect-enums code more generic; the data and conversion classes are now in src/util, filter-specific data is in filter-enums.h * Improved filter_add_primitive so that default values are filled in appropriately to prevent errors or possible crashes (bzr r3241)