summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/listviewitemconf.cpp
Unidiff
Diffstat (limited to 'noncore/apps/confedit/listviewitemconf.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/confedit/listviewitemconf.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/noncore/apps/confedit/listviewitemconf.cpp b/noncore/apps/confedit/listviewitemconf.cpp
new file mode 100644
index 0000000..55f8422
--- a/dev/null
+++ b/noncore/apps/confedit/listviewitemconf.cpp
@@ -0,0 +1,46 @@
1/***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. *
7 * *
8 ***************************************************************************/
9
10#include "listviewitemconf.h"
11
12ListViewItemConf::ListViewItemConf(ListViewItemConf *parent)
13 : QListViewItem(parent), _changed(false)
14{
15}
16
17ListViewItemConf::ListViewItemConf(QListView *parent)
18 : QListViewItem(parent), _changed(false)
19{
20 _type = File;
21}
22
23ListViewItemConf::~ListViewItemConf()
24{
25}
26
27int ListViewItemConf::getType()
28{
29 return _type;
30}
31
32void ListViewItemConf::changed()
33{
34 _changed=true;
35 displayText();
36}
37
38void ListViewItemConf::unchanged()
39{
40 _changed=false;
41 for (QListViewItem *it = firstChild(); it!=0;it = it->nextSibling())
42 {
43 ((ListViewItemConf*)it)->unchanged();
44 }
45 displayText();
46} \ No newline at end of file