summaryrefslogtreecommitdiffstats
path: root/searchdialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix MD5sum search in SearchDialogArno2024-11-091-4/+3
| | | | | Include files in the quest for md5sums, not only files_origin. While at it, fix some constness warnings in the very same file.
* Make it run with Qt6Arno2022-04-151-5/+5
| | | | | | | | | 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 Origin MD5sums searchableArno2021-05-281-0/+17
| | | | | First, add a QAction to copy the MD5sum from FSWidget to Clipboard. Then enhance the SearchDialog to support MD5sums from files_origin *only*.
* Select and expand in SearchDialogArno2020-11-221-0/+6
| | | | | | | When searching for actors, select the first item in the list and expand everything. For some strange reason QTreeView::expand or QTreeView::setExpanded does not work, so I grab the big hammer and expand all.
* Implement delete actor from search dialogArno2020-07-291-4/+44
| | | | | | | The context menu item is only enabled if the actor has no children, ie. no genres associated. Since naming is hard, also rename some slots to more descriptive names.
* Add refresh actors in search dialogArno2020-07-291-1/+26
| | | | | Make it possible to call it by context menu and hook it up to deleteSeries.
* Delete seriesparts from search dialogArno2020-07-291-2/+41
| | | | | Allow to delete seriesparts without files to be deleted from the search dialog.
* Add collapse and expand all to SearchDialogArno2020-07-291-2/+16
| | | | | Thought about using QSignalMapper for this, but that would be too convoluted, thus the inline functions.
* Read and write settings for search dialogArno2020-07-251-4/+34
|
* Implement search for subtitlesArno2020-07-251-2/+52
|
* Open movie properties dialog on doubleclickArno2020-07-251-0/+16
| | | | | When searching for actors, show a MoviePropertiesDialog instead of expanding the item.
* Get series and files for actor when searchingArno2020-07-251-0/+63
|
* Add genres to actor in enhanced search dialogArno2020-07-251-0/+23
| | | | Get all genres for the current actor and add them as child.
* Implement actor searchArno2020-07-251-0/+31
|
* Layout for enhanced search dialogArno2020-07-251-29/+90
| | | | | Add Actor and Title search. This commit only makes visual changes and moves some code around. The search itself is not implemented yet.
* Resurrect search dialogArno2018-11-241-87/+69
| | | | | Add it to the global menu and make it accessible by CTRL+f when the focus is on the main window.
* Bring SearchDialog into the 21st centuryArno2018-11-231-6/+6
| | | | The usual... nullptr warnings, connect syntax.
* Select search term and focus QLineEditArno2015-01-251-0/+6
| | | | selectAll() on search term and focus it when showing the search dialog
* New: search dialogArno2015-01-241-0/+159