summaryrefslogtreecommitdiffstats
path: root/smdialog.h
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of Helper::centerDialogArno2015-06-061-4/+1
| | | | | | It's useless if you don't use a tiling window manager. Also, now we have an empty class SmDialog. Didn't replace it yet. Maybe it's useful in the future.
* Clear command Queue before unpacking archivesArno2014-07-081-0/+1
|
* Display unpack output in DialogArno2014-07-081-0/+30
| | | | | This was a difficult one. Got lost in the Semantics of QThread once again, but just 2 days later it works :)
* Create new, empty Seriespart by contect menuArno2014-04-071-1/+22
| | | | | Preparation for drag and drop. Also make it possible to delete Seriesparts without files.
* Port to Qt5Arno2013-03-031-1/+1
| | | | | | | | * Change #include to qt5 * Fix missing QX11Info * use explicit constructor for QVariant(QColor) * use beginResetModel() and endResetModel() instead of reset(). The latter was removed. Hopefully it still works :)
* Center Dialogs on screenArno2011-08-171-0/+22
Since I'm now using a tiling window manager dialogs have to center themselves on the screen. Otherwise they end up at QPoint(0,0). Not very nice. Subclassed QDialog to SmDialog and converted all dialogs.