summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
authoram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-08-01 13:23:42 +0000
committeram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-08-01 13:23:42 +0000
commit286d54a4705e56567a68cf6dabfa3ce64ac162d6 (patch)
tree021bff63e2e4f77383a6c95dc5b0dc54ea45e90e /shemov.cpp
parent68ee8c0796a663ec87b913da33d48cf5481ddb35 (diff)
downloadSheMov-286d54a4705e56567a68cf6dabfa3ce64ac162d6.tar.gz
SheMov-286d54a4705e56567a68cf6dabfa3ce64ac162d6.tar.bz2
SheMov-286d54a4705e56567a68cf6dabfa3ce64ac162d6.zip
-finished properties dialog
-start mplayer detached from FileSystemWidget git-svn-id: file:///var/svn/repos2/shemov/trunk@397 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'shemov.cpp')
-rw-r--r--shemov.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/shemov.cpp b/shemov.cpp
index f631f3e..4dc03b7 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -230,6 +230,9 @@ void SheMov::createActions(){
mAddMovieManuallyA = new QAction(tr("Add movie manually..."), this);
mAVWidget->fileView()->addAction(mAddMovieManuallyA);
connect(mAddMovieManuallyA, SIGNAL(triggered()), mAVWidget, SLOT(addMovie()));
+ mPropertiesA = new QAction(tr("Properties..."), this);
+ mAVWidget->fileView()->addAction(mPropertiesA);
+ connect(mPropertiesA, SIGNAL(triggered()), mAVWidget, SLOT(properties()));
}
void SheMov::createMenus(){
@@ -264,6 +267,7 @@ void SheMov::createMenus(){
mEditArchiveMenu = new QMenu(tr("&Edit archive"), this);
mEditArchiveMenu->addAction(mEditArchiveFileA);
mEditArchiveMenu->addAction(mEditArchiveCoverA);
+ mEditArchiveMenu->addAction(mPropertiesA);
menuBar()->addMenu(fileMenu);
mEditFSMenuA = menuBar()->addMenu(mEditFSMenu);