2017-10-02 16:18:40 +00:00
|
|
|
#include "SdbDock.h"
|
|
|
|
#include "ui_SdbDock.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QDebug>
|
2017-04-13 15:14:02 +00:00
|
|
|
#include <QTreeWidget>
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
SdbDock::SdbDock(QWidget *parent) :
|
|
|
|
QDockWidget(parent),
|
2017-03-29 10:18:37 +00:00
|
|
|
ui(new Ui::SdbDock)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-11-19 12:56:10 +00:00
|
|
|
|
|
|
|
path = "";
|
|
|
|
|
|
|
|
connect(Core(), SIGNAL(refreshAll()), this, SLOT(reload()));
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
void SdbDock::reload(QString _path)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-11-19 12:56:10 +00:00
|
|
|
if (!_path.isNull())
|
|
|
|
{
|
|
|
|
path = _path;
|
|
|
|
}
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->lineEdit->setText(path);
|
|
|
|
/* insert root sdb keyvalue pairs */
|
|
|
|
|
|
|
|
ui->treeWidget->clear();
|
|
|
|
QList<QString> keys;
|
|
|
|
/* key-values */
|
2017-10-09 18:08:35 +00:00
|
|
|
keys = CutterCore::getInstance()->sdbListKeys(path);
|
2017-04-09 19:55:06 +00:00
|
|
|
foreach (QString key, keys)
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
QTreeWidgetItem *tempItem = new QTreeWidgetItem();
|
|
|
|
tempItem->setText(0, key);
|
2017-10-09 18:08:35 +00:00
|
|
|
tempItem->setText(1, CutterCore::getInstance()->sdbGet(path, key));
|
2017-03-29 10:18:37 +00:00
|
|
|
tempItem->setFlags(Qt::ItemIsSelectable | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled | Qt::ItemIsDragEnabled | Qt::ItemIsEditable);
|
|
|
|
ui->treeWidget->insertTopLevelItem(0, tempItem);
|
|
|
|
}
|
|
|
|
ui->treeWidget->resizeColumnToContents(0);
|
|
|
|
ui->treeWidget->resizeColumnToContents(1);
|
|
|
|
/* namespaces */
|
2017-10-09 18:08:35 +00:00
|
|
|
keys = CutterCore::getInstance()->sdbList(path);
|
2017-03-29 10:18:37 +00:00
|
|
|
keys.append("..");
|
2017-04-09 19:55:06 +00:00
|
|
|
foreach (QString key, keys)
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
QTreeWidgetItem *tempItem = new QTreeWidgetItem();
|
2017-04-09 19:55:06 +00:00
|
|
|
tempItem->setText(0, key + "/");
|
2017-03-29 10:18:37 +00:00
|
|
|
tempItem->setText(1, "");
|
|
|
|
ui->treeWidget->insertTopLevelItem(0, tempItem);
|
|
|
|
}
|
|
|
|
ui->treeWidget->resizeColumnToContents(0);
|
|
|
|
ui->treeWidget->resizeColumnToContents(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SdbDock::on_treeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column)
|
|
|
|
{
|
|
|
|
QString newpath;
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
if (column == 0)
|
|
|
|
{
|
|
|
|
if (item->text(0) == "../")
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
int idx = path.lastIndexOf("/");
|
2017-04-09 19:55:06 +00:00
|
|
|
if (idx != -1)
|
|
|
|
{
|
|
|
|
newpath = path.mid(0, idx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
newpath = "";
|
|
|
|
}
|
2017-04-09 19:55:06 +00:00
|
|
|
reload(newpath);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else if (item->text(0).indexOf("/") != -1)
|
|
|
|
{
|
|
|
|
if (path != "")
|
|
|
|
{
|
|
|
|
newpath = path + "/" + item->text(0).replace("/", "");
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
2017-04-09 19:55:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
newpath = path + item->text(0).replace("/", "");
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
2017-04-09 19:55:06 +00:00
|
|
|
// enter directory
|
|
|
|
reload(newpath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//__alert ("TODO: change value");
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
SdbDock::~SdbDock() {}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
void SdbDock::on_lockButton_clicked()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ui->lockButton->isChecked())
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
this->setAllowedAreas(Qt::NoDockWidgetArea);
|
2017-06-15 09:53:10 +00:00
|
|
|
ui->lockButton->setIcon(QIcon(":/lock"));
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->setAllowedAreas(Qt::AllDockWidgetAreas);
|
2017-06-15 09:53:10 +00:00
|
|
|
ui->lockButton->setIcon(QIcon(":/unlock"));
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SdbDock::on_treeWidget_itemChanged(QTreeWidgetItem *item, int column)
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
__alert(item->text(column));
|
2017-03-29 10:18:37 +00:00
|
|
|
// El nuevo valor esta en:
|
|
|
|
// item->text(column)
|
|
|
|
// ya sabras tu que hacer con el :P
|
|
|
|
}
|