diff options
author | Arno <am@disconnect.de> | 2014-02-07 03:31:24 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2014-02-07 03:31:24 +0100 |
commit | 3ac6968ebaf087aeb4bb3deeb1ded2bbbd54dfa5 (patch) | |
tree | e9cf1265bee25dc6ef26b8f441f6070dd46a01d2 /shemov.cpp | |
parent | e0b8f04b18ababa819e2e0f019c76dcca971b51a (diff) | |
download | SheMov-3ac6968ebaf087aeb4bb3deeb1ded2bbbd54dfa5.tar.gz SheMov-3ac6968ebaf087aeb4bb3deeb1ded2bbbd54dfa5.tar.bz2 SheMov-3ac6968ebaf087aeb4bb3deeb1ded2bbbd54dfa5.zip |
Update status bar from ArchiveBrowser
Update item selection count and selected size in statusBar.
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -82,6 +82,8 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla qApp->processEvents(); ArchiveBrowser *mArchiveBrowser = new ArchiveBrowser; mTab->addTab(mArchiveBrowser, tr("Archive Browser")); + connect(mArchiveBrowser, SIGNAL(sizeChanged(qint64)), this, SLOT(setSize(qint64))); + connect(mArchiveBrowser, SIGNAL(itemCountChanged(int)), this, SLOT(updateSelectedCount(int))); //newmoviewizard + dbanalyzer + newpicsdialog splash.showMessage(tr("Creating misc. Dialogs..."), Qt::AlignHCenter, Qt::yellow); |