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
|
// krazy:excludeall=qclasses
/*
* Copyright (C) 2006 Dirk Stoecker <kde@dstoecker.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation;
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "kdirwatchtest_gui.h"
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kdirwatch.h>
#include <QtCore/QDate>
#include <QtGui/QDialog>
#include <QtCore/QDir>
#include <QtGui/QApplication>
#include <QtGui/QLabel>
#include <QtGui/QLayout>
#include <QtGui/QLineEdit>
#include <QtGui/QPushButton>
#include <QtGui/QTextBrowser>
int main(int argc, char **argv)
{
KAboutData about(QByteArray("KDirWatchTest_GUI"), QByteArray(), ki18n("KDirWatchTest_GUI"),
QByteArray("0.1"),
ki18n("KDirWatchTest_GUI"), KAboutData::License_LGPL,
ki18n("(C) 2006 Dirk Stoecker"), KLocalizedString(), QByteArray(),
QByteArray("kde@dstoecker.de"));
about.addAuthor( ki18n("Dirk Stoecker"), KLocalizedString(), QByteArray("kde@dstoecker.de") );
KCmdLineArgs::init(argc, argv, &about);
QApplication app(argc, argv);
KDirWatchTest_GUI *mainWin = new KDirWatchTest_GUI();
mainWin->show();
return app.exec();
}
KDirWatchTest_GUI::KDirWatchTest_GUI() : QWidget()
{
QPushButton *e,*f;
QVBoxLayout *lay = new QVBoxLayout(this);
lay->setMargin( 0 );
lay->addWidget(l1 = new QLineEdit( "Test 1", this));
lay->addWidget(l2 = new QLineEdit( "Test 2", this));
lay->addWidget(l3 = new QLineEdit( "Test 3", this));
lay->addWidget(m_eventBrowser = new QTextBrowser(this));
lay->addWidget(d = new QLineEdit( "Status", this));
lay->addWidget(e = new QPushButton("new file", this));
lay->addWidget(f = new QPushButton("delete file", this));
dir = QDir::currentPath();
file = dir + "/testfile_kdirwatchtest_gui";
w1 = new KDirWatch();
w1->setObjectName("w1");
w2 = new KDirWatch();
w2->setObjectName("w2");
w3 = new KDirWatch();
w3->setObjectName("w3");
connect(w1, SIGNAL(dirty(const QString &)), this, SLOT(slotDir1(const QString &)));
connect(w2, SIGNAL(dirty(const QString &)), this, SLOT(slotDir2(const QString &)));
connect(w3, SIGNAL(dirty(const QString &)), this, SLOT(slotDir3(const QString &)));
w1->addDir(dir);
w2->addDir(dir);
w3->addDir(dir);
KDirWatch* w4 = new KDirWatch(this);
w4->setObjectName("w4");
w4->addDir(dir, KDirWatch::WatchFiles|KDirWatch::WatchSubDirs);
connect(w1, SIGNAL(dirty(const QString &)), this, SLOT(slotDirty(const QString &)));
connect(w1, SIGNAL(created(const QString &)), this, SLOT(slotCreated(const QString &)));
connect(w1, SIGNAL(deleted(const QString &)), this, SLOT(slotDeleted(const QString &)));
KDirWatch* w5 = new KDirWatch(this);
w5->setObjectName("w5");
w5->addFile(file);
connect(w5, SIGNAL(dirty(const QString &)), this, SLOT(slotDirty(const QString &)));
connect(w5, SIGNAL(created(const QString &)), this, SLOT(slotCreated(const QString &)));
connect(w5, SIGNAL(deleted(const QString &)), this, SLOT(slotDeleted(const QString &)));
lay->addWidget(new QLabel("Directory = " + dir, this));
lay->addWidget(new QLabel("File = " + file, this));
connect(e, SIGNAL(clicked()), this, SLOT(slotNewClicked()));
connect(f, SIGNAL(clicked()), this, SLOT(slotDeleteClicked()));
setMinimumWidth(800);
setMinimumHeight(400);
}
void KDirWatchTest_GUI::slotDir1(const QString &a)
{
l1->setText("Test 1 changed " + a + " at " + QTime::currentTime().toString());
}
void KDirWatchTest_GUI::slotDir2(const QString &a)
{
// This used to cause bug #119341, fixed now
#if 1
w2->stopDirScan(a.toLatin1().constData());
w2->restartDirScan(a.toLatin1().constData());
#endif
l2->setText("Test 2 changed " + a + " at " + QTime::currentTime().toString());
}
void KDirWatchTest_GUI::slotDir3(const QString &a)
{
l3->setText("Test 3 changed " + a + " at " + QTime::currentTime().toString());
}
void KDirWatchTest_GUI::slotDeleteClicked()
{
remove(file.toLatin1().constData());
d->setText("Delete clicked at " + QTime::currentTime().toString());
}
void KDirWatchTest_GUI::slotNewClicked()
{
fclose(fopen(file.toLatin1().constData(), "wb"));
d->setText("New clicked at " + QTime::currentTime().toString());
}
void KDirWatchTest_GUI::slotDirty(const QString& path)
{
m_eventBrowser->append( "Dirty(" + sender()->objectName() + "): " + path + '\n' );
}
void KDirWatchTest_GUI::slotCreated(const QString& path)
{
m_eventBrowser->append( "Created(" + sender()->objectName() + "): " + path + '\n' );
}
void KDirWatchTest_GUI::slotDeleted(const QString& path)
{
m_eventBrowser->append( "Deleted(" + sender()->objectName() + "): " + path + '\n' );
}
#include "kdirwatchtest_gui.moc"
|