summaryrefslogtreecommitdiffstats
path: root/torrentwidget.h
Commit message (Collapse)AuthorAgeFilesLines
* Show first file in TorrentWidgetHEADmasterArno2022-04-161-2/+2
| | | | When a torrent file is parseable, show the first filename in the view.
* Remove useless ProgressBarArno2018-06-131-3/+0
| | | | No need for the ProgressBar in the status line any more...
* Clean up TorrentWidgetArno2018-02-031-3/+0
| | | | | Get rid of Q_FOREARCH, use type safe connect syntax, remove members that don't have to be members, the usual.
* Add free space widget to status barArno2016-11-271-1/+3
| | | | Red is used, green is free, obviously...
* Selections, selections...Arno2016-10-031-0/+3
| | | | | Remember selected items after refreshing the torrent view. Also correctly! select the first torrent on startup.
* Add function guessSubtitleArno2016-10-011-0/+2
| | | | | Guess the subtitle from the torrent filename. It's more or less an arbitrary set of strings and regexes that can't be configured.
* Give feedback on gathering dataArno2016-09-221-0/+4
| | | | | | | Use the ProgressBar when gathering torrent data from a directory with many entries. Sprinkle processEvents() here and there to show the progress.
* Fix sorting in TorrentWidgetArno2016-09-171-1/+1
| | | | Sort files by DateTime instead of string comparison.
* Always select and set current first rowArno2016-09-161-0/+1
|
* Add Help menuArno2016-09-051-1/+0
| | | | Doesn't really help at all, just 2 about dialogs.
* Use enums in TorrentWidgetArno2016-09-051-0/+4
| | | | Revamp gatherData() to use Enums for colums, roles and data.
* Fix keyboard naviagtion for TorrentWidget tooArno2016-09-051-0/+2
| | | | For an explanation see commit eaaa0c165b83aba1227304eb1074098ac0028ae8
* Make actions localArno2016-09-051-2/+10
| | | | | Define actions in their respective Widgets instead of MainWindow and fix the menus and toolbars accordingly.
* Navigate Tabs by ALT+Left+RightArno2016-09-041-0/+1
|
* Display duration and num. of selected FilesArno2016-09-041-3/+1
| | | | | | | | When selecting files in FileWidget, calculate the total duration and display it in the status bar. Also count the selected Files and show them. Update status bar on changing tabs.
* Added copyToClipboard where applicableArno2016-08-281-0/+2
|
* Revamped ShemovCleaner to a QTabWidgetArno2016-08-201-0/+64
It's a rather large commit. After renaming ShemovCleaner to TorrentWidget, I had to recreate ShemovCleaner as MainWindow with a single Tab. Then I created QActions for everything, including a QToolBar, a QMenu and a contetext Menu. For that the button bar at the bottom had to go. Oh, and I added some icons for the actions!