summaryrefslogtreecommitdiffstats
path: root/mappingeditwidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make it run with Qt6Arno2022-04-151-0/+1
| | | | | | | | | This is a huge commit. Changes: * Obviously, make it compile * Make it run (only scarcely tested) * get rid of most of clang's warnings Let's see what surprises are in store...
* Make NewPicsDialog usable by keyboardArno2019-01-121-1/+15
| | | | | | | | | | | | | | Fix focus policy: only change focus between MappingTreeWidget and MappingTreeResultView. Also, block updating the selection of MappingTreeWidget when removing an item from the result view. That operation resets the result selection and by signal changes the selection of the mapping tree. The easiest way I could come up with was a member flag that is set in removeMapping and checked and cleared in resultSelectionChanged. Clearing the flag right after removing the item doesn't work, most likely because of thread affinity (just a guess, didn't check it). If it has side effects remains to be seen...
* Fix clang warning and make QPushbuttons non-membersArno2018-12-031-12/+12
|
* Add copyActor for new picsArno2018-12-031-0/+9
| | | | | | If we already have an actor, get all mappings for all pics and fill the result view. This only makes sense for actors, but should also work for other items.
* More code churnArno2018-07-201-0/+2
| | | | | Create separate files for MappingData and MappingTreeResultModel. Hopefully no functional changes.
* Just code shuffle, no functional changeArno2018-07-191-0/+167
Split up all the classes in mappingtreewidget into separate files to make editing easier.