From: Peter Penz Date: Sat, 14 Apr 2007 16:50:51 +0000 (+0000) Subject: allow to turn on/off the places panel by the menu X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/b72bd12276b3ae794c942b0dcfca02332677b335 allow to turn on/off the places panel by the menu svn path=/trunk/KDE/kdebase/apps/; revision=653936 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index d621b3ffc..a6d584d37 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1265,7 +1265,6 @@ void DolphinMainWindow::setupDockWidgets() SidebarPage* infoWidget = new InfoSidebarPage(infoDock); infoDock->setWidget(infoWidget); - infoDock->toggleViewAction()->setText(i18n("Show Information Panel")); actionCollection()->addAction("show_info_panel", infoDock->toggleViewAction()); @@ -1273,7 +1272,7 @@ void DolphinMainWindow::setupDockWidgets() connectSidebarPage(infoWidget); // setup "Tree View" - QDockWidget* treeViewDock = new QDockWidget(i18n("Folders")); // TODO: naming? + QDockWidget* treeViewDock = new QDockWidget(i18n("Folders")); treeViewDock->setObjectName("treeViewDock"); treeViewDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); TreeViewSidebarPage* treeWidget = new TreeViewSidebarPage(treeViewDock); @@ -1297,6 +1296,10 @@ void DolphinMainWindow::setupDockWidgets() KFilePlacesView *listView = new KFilePlacesView(placesDock); placesDock->setWidget(listView); listView->setModel(DolphinSettings::instance().placesModel()); + + placesDock->toggleViewAction()->setText(i18n("Show Places Panel")); + actionCollection()->addAction("show_places_panel", placesDock->toggleViewAction()); + addDockWidget(Qt::LeftDockWidgetArea, placesDock); connect(listView, SIGNAL(urlChanged(KUrl)), this, SLOT(changeUrl(KUrl))); diff --git a/src/dolphinui.rc b/src/dolphinui.rc index 17edc1aa7..a6cfa18c7 100644 --- a/src/dolphinui.rc +++ b/src/dolphinui.rc @@ -50,7 +50,7 @@ Panels - +