summaryrefslogtreecommitdiffstats
path: root/searchdialog.h
Commit message (Collapse)AuthorAgeFilesLines
* Make it compile with qt6Arno2022-04-161-1/+1
| | | | | | | *BIG FAT WARNING* Took me a while to figure it out, but the database connection only works with MINGW64 instead of MINGW32! With the latter loading the SQL Plugin fails! That said, off to brighter shores :)
* Fix clang warnings in search*Arno2018-12-091-1/+1
|
* Remove ClearAndSelectFirstArno2018-06-131-1/+0
| | | | | Slowed down startup by minutes! Dunno why, don't really care. If you need the search dialog, wait for it then :)
* Clear search data on new searchArno2018-02-031-1/+1
| | | | mDataV wasn't cleared. Fix it!
* Add filenames when searching for actorsArno2018-02-021-0/+1
|
* Implement context menu for search resultsArno2018-02-021-2/+3
| | | | | | Subclass QTreeView to show a custom context menu. Since the depth of some items is > 1, add an option to expand and collapse a node recursively.
* Add CTRL+S shortcut for SearchDialogArno2018-02-021-0/+3
| | | | | If in FileWidget, show and raise SearchDialog on CTRL+s, hide it on CTRL +x. Show busy cursor while searching.
* Implement actor search in SearchDialogArno2018-02-021-1/+4
|
* Read and write settings for SearchDialogArno2018-02-021-0/+3
|
* Get genres for search dataArno2018-02-021-1/+2
|
* Show actors in SearchDialogArno2018-02-021-0/+2
| | | | | | | This should have been two commits, really. One for the actors, and another one for the icon helper. Helper::icon returns an QIcon with a circle in bg color and the char c.
* Implement Filename search in SearchDialogArno2018-02-021-3/+3
|
* Implement a useful searchArno2018-02-011-0/+34
Display Title and Filename search as non-modal dialog, so one can compare Files and Database. For now only Title search is implemented. Filename search does nothing (yet).