summaryrefslogtreecommitdiffstats
path: root/moviewidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make it run with Qt6Arno2022-04-151-12/+12
| | | | | | | | | 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...
* Fix QMatrix deprectationsArno2020-07-251-5/+5
|
* Fix deleteSeriesArno2018-12-221-8/+6
| | | | | The previous version bailed out wrongly when the file was available, but on an USB path. Fix it by using the data from the bottom model.
* Some more GUI changes to better fit dark themesArno2018-11-241-4/+4
|
* Fix toolbar in MovieWidgetArno2018-11-241-1/+4
| | | | | I missed the clear filter icon when adjusting Helper::icon for dark themes. Fix it and replace the 'X' with something nicer :)
* Dark theme GUI changesArno2018-11-241-2/+2
| | | | | | | | 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.
* Some more color fixesArno2018-11-231-5/+5
| | | | | Don't use the dark variant of hardcoded colors. The non-dark version plays well with a light theme, and even better with a dark one.
* Use palette colors where applicableArno2018-11-231-8/+8
| | | | | Don't assume we know what color ought to use. Ask the palette where applicable, but keep the modified configuration options.
* Implement delete seriesArno2018-11-091-1/+43
| | | | | | | The delete button will always delete the whole series based on the series ID, no matter the view. We'll rollback the database transaction if any file can't be deleted. Start the consistency check when that happens.
* More font fixes... :(Arno2018-09-291-2/+2
|
* Fix font usageArno2018-09-291-6/+6
| | | | Use Monospace only where applicable, mostly MD5Sum and numbers.
* Fix window titleArno2018-07-141-0/+2
| | | | for FSWidget and MovieWidget.
* Implement edit filesArno2018-05-211-1/+15
| | | | Make it possible to edit files (again).
* MovieWidget: Add global actions and refresh to the toolbarArno2018-04-051-0/+7
|
* MovieWidget: make the forward and back buttons do somethingArno2018-04-051-2/+15
| | | | Advance to the next Selection or go back to the previous one.
* MoviePropertiesDialog: actually do somethingArno2018-04-041-0/+5
| | | | | Update database on accpet() Yes, I know that some code could be shared, but I want to keep it clean.
* Fill MoviePropertiesDialog, part 1Arno2018-04-041-1/+7
|
* Implement MoviePropertiesDialogArno2018-04-041-0/+3
| | | | | Try to replace all those editing dialogs with one exhausting dialog. For now, it's just the layout. It does nothing yet.
* MovieWidget: copy assorted columns to clipboardArno2018-04-041-2/+20
|
* MovieWidget: Implement play selected for bottom viewArno2018-04-041-0/+19
|
* MovieWidget: turn bottom view into SmViewArno2018-04-041-1/+14
| | | | Also, play the movie on doubleclick if it's available.
* MovieWidget: make all items non-editableArno2018-04-041-0/+4
|
* MovieWidget: indicate if file is availableArno2018-04-041-4/+49
|
* MovieWidget: read and write settingsArno2018-04-041-0/+29
|
* MovieWidget: Add count to all selections, improve sortingArno2018-04-041-12/+24
|
* MovieWidget: Implement populateByGenresArno2018-04-031-1/+45
| | | | | Also remove Favorites from selection. Should be an option with random player, if at all.
* MovieWidget: Implement populateByActorsArno2018-04-031-8/+65
|
* MovieWidget: Make filter workArno2018-04-031-0/+7
|
* First implementation of MovieWidgetArno2018-04-031-0/+181
It's the replacement for the archive viewer thingy. Just keep it simple and stupid. For now it shows series data.