diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-18 10:36:46 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-18 10:36:46 -0500 |
commit | eea17de71ca7198bb3e463b730c534090496fc7c (patch) | |
tree | 8e15684f575934a97d5e10008bde201177ac83c6 /src-qt5/desktop-utils/lumina-archiver/MainUI.h | |
parent | Commit some more work on the new input device framework. Got the properties g... (diff) | |
download | lumina-eea17de71ca7198bb3e463b730c534090496fc7c.tar.gz lumina-eea17de71ca7198bb3e463b730c534090496fc7c.tar.bz2 lumina-eea17de71ca7198bb3e463b730c534090496fc7c.zip |
Add a couple new features to lumina-archiver:
1) Add the ability to extract only the selected item from an archive
2) Add better status reporting on archive interactions
Changelog=yes
Diffstat (limited to 'src-qt5/desktop-utils/lumina-archiver/MainUI.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-archiver/MainUI.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.h b/src-qt5/desktop-utils/lumina-archiver/MainUI.h index 09207aa3..bb462a7d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.h +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.h @@ -44,13 +44,14 @@ private slots: void addDirs(); void remFiles(); void extractFiles(); + void extractSelection(); void ViewFile(QTreeWidgetItem *it); void UpdateTree(); //Backend Handling void ProcStarting(); - void ProcFinished(); + void ProcFinished(bool, QString); void ProcUpdate(int percent, QString txt); }; |