summaryrefslogtreecommitdiffstats
path: root/randomtab.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make it run with Qt6Arno2022-04-151-6/+6
| | | | | | | | | 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...
* Dark theme GUI changesArno2018-11-241-3/+3
| | | | | | | | Add icons better suited for dark themes and don't draw an ellipse around the letter when calling Helper::icon and use the theme's text color to better match the desktop theme. Just be a good tenant and respect the user's choices where applicable.
* foreach fixes for RandomTabArno2018-11-231-5/+5
|
* Use palette colors where applicableArno2018-11-231-1/+3
| | | | | Don't assume we know what color ought to use. Ask the palette where applicable, but keep the modified configuration options.
* Fix implicit conversion in RandomTabArno2018-09-291-1/+1
|
* Fix font usageArno2018-09-291-2/+6
| | | | Use Monospace only where applicable, mostly MD5Sum and numbers.
* Don't force QFont::Bold in RandomTabArno2018-09-291-2/+2
|
* Finally get rid of menuBar()!!!!Arno2018-09-291-17/+0
|
* Revamp context menu actions for RandomTabArno2018-09-291-16/+12
| | | | Make them local in setupGui()
* Add global actions to RandomTabArno2018-09-291-0/+9
|
* Make QPushButtons in RandomTab localArno2018-09-291-16/+16
| | | | While at it, convert to type-safe connect syntax.
* Play movie on doublelClick in RandomTabArno2016-11-111-0/+9
|
* Hook up Actions for RandomTabArno2016-11-111-3/+45
| | | | Create edit and context menus.
* Actually play movies!Arno2016-11-111-1/+27
| | | | | Finally do something with the random selection! Implement playAll and playSelected.
* Implement GUI elements for playing moviesArno2016-11-111-0/+19
| | | | RotzPeng! He who doeth not find the button of his choice is not worthy!
* Read and write settings / SelectionBehaviorArno2016-11-111-0/+41
| | | | | Fixing selection behavior should have been a separate commit, but well... Set it to ExtendedSelection and SelectRows.
* Energize!Arno2016-11-111-5/+165
| | | | Fill the random file view with movies.
* Setup logging facilityArno2016-11-101-5/+30
| | | | Log what we're doing in a QTextEdit below the FileView.
* Add Random file browserArno2016-11-101-0/+161
Idea: Select random movies based on a selection of genres and actors in a new tab, so you don't have the agony of choice. This is just the basic layout. The selectors are filled and the buttons are connected, but it doesn't select anything yet.