File: watchfolderadd.cpp

package info (click to toggle)
nixnote2 2.0~beta11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,448 kB
  • ctags: 7,058
  • sloc: cpp: 68,338; java: 1,096; sh: 834; makefile: 27
file content (158 lines) | stat: -rw-r--r-- 4,774 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*********************************************************************************
NixNote - An open-source client for the Evernote service.
Copyright (C) 2013 Randy Baumgarte

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
***********************************************************************************/

#include "watchfolderadd.h"
#include "sql/filewatchertable.h"
#include "sql/notebooktable.h"
#include "watcher/filewatcher.h"
#include "sql/configstore.h"

#include <QFileDialog>
#include <QDir>

WatchFolderAdd::WatchFolderAdd(qint32 lid, QWidget *parent) :
    QDialog(parent)
{
    mainLayout = new QVBoxLayout();
    okClicked = false;
    fileDialog = new QFileDialog(this);
    QString dir = QDir::home().absolutePath();
    bool includeSubdirs = false;
    qint32 notebookLid = 0;
    FileWatcher::ScanType type = FileWatcher::ImportKeep;
    this->lid = lid;
    if (lid > 0) {
        FileWatcherTable ft(global.db);
        ft.get(lid, dir, type, notebookLid, includeSubdirs);
    }


    okButton = new QPushButton(this);
    okButton->setText(tr("OK"));
    connect(okButton, SIGNAL(clicked()), this, SLOT(onClicked()));

    cancelButton = new QPushButton(this);
    cancelButton->setText(tr("Cancel"));
    connect(cancelButton, SIGNAL(clicked()), this, SLOT(onCancel()));

    folderButton = new QPushButton(this);
    folderButton->setText(tr("Directory"));
    connect(folderButton, SIGNAL(clicked()), this, SLOT(folderButtonClicked()));

    directory = new QLabel(this);
    directory->setText(dir);


    keep = new QComboBox(this);
    keep->addItem(tr("Keep"),"keep");
    keep->addItem(tr("Delete"),"delete");
    if (type == FileWatcher::ImportKeep)
        keep->setCurrentIndex(0);
    else
        keep->setCurrentIndex(1);

    subdirs = new QCheckBox(this);
    subdirs->setChecked(includeSubdirs);

    books = new QComboBox(this);
    NotebookTable ntable(global.db);
    QList<qint32> lids;
    ntable.getAll(lids);
    for (int i=0; i<lids.size(); i++) {
        Notebook n;
        ntable.get(n, lids[i]);
        books->addItem(n.name, lids[i]);
        if (lids[i] == notebookLid)
            books->setCurrentIndex(i);
    }
    books->model()->sort(0);


    grid = new QGridLayout();
    grid->addWidget(directory,0,1);
    grid->addWidget(folderButton,0,0);
    grid->addWidget(new QLabel(tr("Notebook")),1,0);
    grid->addWidget(books,1,1);
    grid->addWidget(new QLabel(tr("After import")), 2,0);
    grid->addWidget(keep,2,1);
    grid->addWidget(new QLabel(tr("Include subdirectories")),3,0);
    grid->addWidget(subdirs, 3, 1);

    buttonLayout = new QHBoxLayout();
    buttonLayout->addStretch(1);
    buttonLayout->addWidget(okButton);
    buttonLayout->addWidget(cancelButton);
    setWindowTitle(tr("Add Import Folder"));


    mainLayout->addLayout(grid);
    mainLayout->addSpacing(1);
    mainLayout->addLayout(buttonLayout);
    setLayout(mainLayout);
    this->setFont(global.getGuiFont(font()));
}



void WatchFolderAdd::onClicked() {
    okClicked = true;
    int index = books->currentIndex();
    qint32 notebookLid = books->itemData(index).toInt();
    QString folder = this->directory->text();
    FileWatcher::ScanType type = FileWatcher::ImportDelete;
    QString after = keep->itemData(keep->currentIndex()).toString();
    if (after == "keep")
        type = FileWatcher::ImportKeep;
    FileWatcherTable ft(global.db);
    if (lid <= 0) {
        ConfigStore cs(global.db);
        lid = cs.incrementLidCounter();
    } else {
        ft.expunge(lid);
    }
    ft.addEntry(lid, folder, type, notebookLid, subdirs->isChecked());
    close();
}



void WatchFolderAdd::onCancel() {
    okClicked = false;
    close();
}


void WatchFolderAdd::itemSelected() {
    okButton->setEnabled(true);
}


void WatchFolderAdd::folderButtonClicked() {
    QDir dir;
    fileDialog->setDirectory(dir.homePath()+"/");
    fileDialog->setFileMode(QFileDialog::DirectoryOnly);
    connect(fileDialog, SIGNAL(fileSelected(QString)), this, SLOT(folderSelected(QString)));
    fileDialog->exec();
}


void WatchFolderAdd::folderSelected(QString f) {
    directory->setText(f);
}