summaryrefslogtreecommitdiffstats
path: root/src/util/enums.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Misc. typosluz.paz2018-01-081-1/+1
| | | Found via `codespell`
* Cleanup pass on documentation that was dumping garbage into doxygen output.Jon A. Cruz2011-10-251-13/+13
| | | (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)
* fix combo enum, to handle enums of all types (not only the ones that range ↵Johan B. C. Engelen2008-07-161-17/+34
| | | | | from 0..10) (bzr r6333)
* add extra note of importance to EnumDataConverter and add is_valid_id methodJohan B. C. Engelen2008-02-061-1/+8
| | | (bzr r4671)
* Add commentary to warn about how to initialize translatable enumsJohan B. C. Engelen2007-08-301-0/+6
| | | (bzr r3625)
* Filter effects dialog:Nicholas Bishop2007-07-161-0/+10
| | | | | | * Made a lot of strings translatable * Fixed the filter primitive input settings to work more like other ComboBoxEnums. (bzr r3253)
* Filter effects:Nicholas Bishop2007-07-141-0/+93
* 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)