aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
committerKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
commited5ecf7ea7a482b4649e66ecb35fbc60af680684 (patch)
treeacc0fa17d228259e847f55c678db9fb0a9b50f0c /src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.gz
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.bz2
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.zip
Rearrange the Lumina source tree quite a bit:
Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp b/src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp
new file mode 100644
index 00000000..5125a48e
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-fm/BMMDialog.cpp
@@ -0,0 +1,75 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2014, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#include "BMMDialog.h"
+#include "ui_BMMDialog.h"
+
+BMMDialog::BMMDialog(QWidget *parent) : QDialog(parent), ui(new Ui::BMMDialog){
+ ui->setupUi(this); //load the designer file
+ this->setWindowIcon( LXDG::findIcon("bookmarks-organize","") );
+ ui->tool_remove->setIcon( LXDG::findIcon("edit-delete","") );
+ ui->tool_rename->setIcon( LXDG::findIcon("edit-rename","") );
+ ui->push_done->setIcon( LXDG::findIcon("dialog-ok","") );
+ connect(ui->tool_remove, SIGNAL(clicked()), this, SLOT(RemoveItem()) );
+ connect(ui->tool_rename, SIGNAL(clicked()), this, SLOT(RenameItem()) );
+ connect(ui->push_done, SIGNAL(clicked()), this, SLOT(close()) );
+}
+
+BMMDialog::~BMMDialog(){
+}
+
+void BMMDialog::loadSettings(QSettings *set){
+ settings = set; //save this pointer for later
+ //Now fill the tree with the items
+ QStringList BM = settings->value("bookmarks", QStringList()).toStringList();
+ ui->treeWidget->clear();
+ for(int i=0; i<BM.length(); i++){
+ ui->treeWidget->addTopLevelItem( new QTreeWidgetItem(BM[i].split("::::")) );
+ }
+ //Now expand to encompass all the items
+ ui->treeWidget->resizeColumnToContents(0);
+ ui->treeWidget->resizeColumnToContents(1);
+}
+// ==== PRIVATE ====
+
+// ==== PRIVATE SLOTS ====
+void BMMDialog::RemoveItem(){
+ //Get the currently selected item
+ if(ui->treeWidget->currentItem()==0){ return; } //nothing selected
+ QString item = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1);
+ //Remove it from the widget
+ delete ui->treeWidget->takeTopLevelItem( ui->treeWidget->indexOfTopLevelItem( ui->treeWidget->currentItem() ) );
+ //Remove it from the saved bookmarks
+ QStringList BM = settings->value("bookmarks",QStringList()).toStringList();
+ BM.removeAll(item);
+ settings->setValue("bookmarks",BM);
+ settings->sync();
+}
+
+void BMMDialog::RenameItem(){
+ //Get the currently selected item
+ if(ui->treeWidget->currentItem()==0){ return; } //nothing selected
+ QString olditem = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1);
+ //Prompt for the new name
+ bool ok = false;
+ QString name = QInputDialog::getText(this, tr("Rename Bookmark"), tr("Name:"), QLineEdit::Normal, olditem.section("::::",0,0), \
+ &ok, 0, Qt::ImhFormattedNumbersOnly | Qt::ImhUppercaseOnly | Qt::ImhLowercaseOnly);
+ if(!ok || name.isEmpty()){ return; } //cancelled
+ //Check if this name already exists
+ QStringList BM = settings->value("bookmarks",QStringList()).toStringList();
+ if(BM.filter(name+"::::").length() >0){
+ QMessageBox::warning(this, tr("Invalid Name"), tr("This bookmark name already exists. Please choose another.") );
+ QTimer::singleShot(0,this, SLOT(RenameItem()));
+ return;
+ }
+ //Rename it in the widget
+ ui->treeWidget->currentItem()->setText(0,name);
+ //Replace it in the saved bookmarks
+ BM.removeAll(olditem);
+ BM.append(name+"::::"+olditem.section("::::",1,3));
+ settings->setValue("bookmarks",BM);
+ settings->sync();
+} \ No newline at end of file
bgstack15