author | tille <tille> | 2002-06-29 23:23:09 (UTC) |
---|---|---|
committer | tille <tille> | 2002-06-29 23:23:09 (UTC) |
commit | 0f179c0cc471b659b30dec4762c9c36678063f31 (patch) (unidiff) | |
tree | 5350dc3b1c05991953011d01ad19cb12414abc1a | |
parent | eb02223de534d315bfdcb0d521719c2d2e9a7235 (diff) | |
download | opie-0f179c0cc471b659b30dec4762c9c36678063f31.zip opie-0f179c0cc471b659b30dec4762c9c36678063f31.tar.gz opie-0f179c0cc471b659b30dec4762c9c36678063f31.tar.bz2 |
revert
-rw-r--r-- | noncore/apps/confedit/listviewitemconf.h | 1 | ||||
-rw-r--r-- | noncore/apps/confedit/listviewitemconffile.cpp | 30 | ||||
-rw-r--r-- | noncore/apps/confedit/listviewitemconffile.h | 2 | ||||
-rw-r--r-- | noncore/apps/confedit/mainwindow.cpp | 47 | ||||
-rw-r--r-- | noncore/apps/confedit/mainwindow.h | 10 |
5 files changed, 71 insertions, 19 deletions
diff --git a/noncore/apps/confedit/listviewitemconf.h b/noncore/apps/confedit/listviewitemconf.h index 5837625..c6e60ba 100644 --- a/noncore/apps/confedit/listviewitemconf.h +++ b/noncore/apps/confedit/listviewitemconf.h | |||
@@ -24,8 +24,9 @@ public: | |||
24 | 24 | ||
25 | int getType(); | 25 | int getType(); |
26 | virtual void displayText() = 0; | 26 | virtual void displayText() = 0; |
27 | virtual void changed(); | 27 | virtual void changed(); |
28 | bool isChanged() {return _changed;}; | ||
28 | virtual void unchanged(); | 29 | virtual void unchanged(); |
29 | 30 | ||
30 | protected: | 31 | protected: |
31 | int _type; | 32 | int _type; |
diff --git a/noncore/apps/confedit/listviewitemconffile.cpp b/noncore/apps/confedit/listviewitemconffile.cpp index 858726d..b075063 100644 --- a/noncore/apps/confedit/listviewitemconffile.cpp +++ b/noncore/apps/confedit/listviewitemconffile.cpp | |||
@@ -72,11 +72,34 @@ void ListViewItemConfFile::parseFile() | |||
72 | groupItem->insertItem( item ); | 72 | groupItem->insertItem( item ); |
73 | } | 73 | } |
74 | } | 74 | } |
75 | confFile.close(); | 75 | confFile.close(); |
76 | unchanged(); | ||
76 | setExpandable( _valid ); | 77 | setExpandable( _valid ); |
77 | } | 78 | } |
78 | 79 | ||
80 | |||
81 | void ListViewItemConfFile::revert() | ||
82 | { | ||
83 | if (_changed) | ||
84 | { | ||
85 | parseFile(); | ||
86 | }else{ | ||
87 | QString backup = confFileInfo->absFilePath()+"~"; | ||
88 | QFile conf(confFileInfo->absFilePath()); | ||
89 | QFile back(backup); | ||
90 | |||
91 | if (!back.open(IO_ReadOnly)) return; | ||
92 | if (!conf.open(IO_WriteOnly)) return; | ||
93 | |||
94 | #define SIZE 124 | ||
95 | char buf[SIZE]; | ||
96 | while (int c = back.readBlock(buf, SIZE) ) conf.writeBlock(buf,c); | ||
97 | conf.close(); | ||
98 | back.close(); | ||
99 | } | ||
100 | } | ||
101 | |||
79 | void ListViewItemConfFile::save() | 102 | void ListViewItemConfFile::save() |
80 | { | 103 | { |
81 | if (!_changed) return; | 104 | if (!_changed) return; |
82 | QString backup = confFileInfo->absFilePath()+"~"; | 105 | QString backup = confFileInfo->absFilePath()+"~"; |
@@ -100,7 +123,12 @@ void ListViewItemConfFile::save() | |||
100 | { | 123 | { |
101 | ((ListViewItemConfigEntry*)it)->save(t); | 124 | ((ListViewItemConfigEntry*)it)->save(t); |
102 | } | 125 | } |
103 | conf.close(); | 126 | conf.close(); |
104 | qDebug("no saveing yet..."); | ||
105 | unchanged(); | 127 | unchanged(); |
106 | } | 128 | } |
129 | |||
130 | |||
131 | bool ListViewItemConfFile::revertable() | ||
132 | { | ||
133 | return _changed || QFile(confFileInfo->absFilePath()+"~").exists(); | ||
134 | } \ No newline at end of file | ||
diff --git a/noncore/apps/confedit/listviewitemconffile.h b/noncore/apps/confedit/listviewitemconffile.h index d89b19c..ae23eab 100644 --- a/noncore/apps/confedit/listviewitemconffile.h +++ b/noncore/apps/confedit/listviewitemconffile.h | |||
@@ -24,9 +24,11 @@ public: | |||
24 | ~ListViewItemConfFile(); | 24 | ~ListViewItemConfFile(); |
25 | void parseFile(); | 25 | void parseFile(); |
26 | QString fileName(); | 26 | QString fileName(); |
27 | virtual void displayText(); | 27 | virtual void displayText(); |
28 | bool revertable(); | ||
28 | void save(); | 29 | void save(); |
30 | void revert(); | ||
29 | protected: | 31 | protected: |
30 | private: | 32 | private: |
31 | bool _valid; | 33 | bool _valid; |
32 | QFileInfo *confFileInfo; | 34 | QFileInfo *confFileInfo; |
diff --git a/noncore/apps/confedit/mainwindow.cpp b/noncore/apps/confedit/mainwindow.cpp index 47d9518..77b91f6 100644 --- a/noncore/apps/confedit/mainwindow.cpp +++ b/noncore/apps/confedit/mainwindow.cpp | |||
@@ -37,11 +37,8 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
37 | QMainWindow( parent, name, f ), _currentItem(0), _fileItem(0) | 37 | QMainWindow( parent, name, f ), _currentItem(0), _fileItem(0) |
38 | { | 38 | { |
39 | setCaption( tr("Conf File Editor") ); | 39 | setCaption( tr("Conf File Editor") ); |
40 | 40 | ||
41 | popupTimer = new QTimer(this); | ||
42 | popupMenu = new QPopupMenu(this); | ||
43 | |||
44 | QWidget *mainWidget = new QWidget(this); | 41 | QWidget *mainWidget = new QWidget(this); |
45 | setCentralWidget( mainWidget); | 42 | setCentralWidget( mainWidget); |
46 | 43 | ||
47 | QGridLayout *mainLayout = new QGridLayout( mainWidget ); | 44 | QGridLayout *mainLayout = new QGridLayout( mainWidget ); |
@@ -57,12 +54,8 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
57 | 54 | ||
58 | connect(settingList, SIGNAL( pressed(QListViewItem*) ), | 55 | connect(settingList, SIGNAL( pressed(QListViewItem*) ), |
59 | this, SLOT(setCurrent(QListViewItem*))); | 56 | this, SLOT(setCurrent(QListViewItem*))); |
60 | 57 | ||
61 | connect( popupTimer, SIGNAL(timeout()), | ||
62 | this, SLOT(showPopup()) ); | ||
63 | connect( settingList, SIGNAL( clicked( QListViewItem* ) ), | ||
64 | this, SLOT( stopTimer( QListViewItem* ) ) ); | ||
65 | 58 | ||
66 | connect( editor->LineEditGroup, SIGNAL( textChanged(const QString&) ), | 59 | connect( editor->LineEditGroup, SIGNAL( textChanged(const QString&) ), |
67 | SLOT( groupChanged(const QString&) ) ); | 60 | SLOT( groupChanged(const QString&) ) ); |
68 | connect( editor->LineEditKey, SIGNAL( textChanged(const QString&) ), | 61 | connect( editor->LineEditKey, SIGNAL( textChanged(const QString&) ), |
@@ -75,8 +68,24 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
75 | void MainWindow::makeMenu() | 68 | void MainWindow::makeMenu() |
76 | { | 69 | { |
77 | 70 | ||
78 | 71 | ||
72 | popupTimer = new QTimer(this); | ||
73 | popupMenuFile = new QPopupMenu(this); | ||
74 | |||
75 | popupActionSave = new QAction( tr("Save"),QString::null, 0, this, 0 ); | ||
76 | popupActionSave->addTo( popupMenuFile ); | ||
77 | connect( popupActionSave, SIGNAL( activated() ), | ||
78 | this , SLOT( saveConfFile() ) ); | ||
79 | popupActionRevert = new QAction( tr("Revert"),QString::null, 0, this, 0 ); | ||
80 | popupActionRevert->addTo( popupMenuFile ); | ||
81 | connect( popupActionRevert, SIGNAL( activated() ), | ||
82 | this , SLOT( revertConfFile() ) ); | ||
83 | |||
84 | connect( popupTimer, SIGNAL(timeout()), | ||
85 | this, SLOT(showPopup()) ); | ||
86 | connect( settingList, SIGNAL( clicked( QListViewItem* ) ), | ||
87 | this, SLOT( stopTimer( QListViewItem* ) ) ); | ||
79 | } | 88 | } |
80 | 89 | ||
81 | MainWindow::~MainWindow() | 90 | MainWindow::~MainWindow() |
82 | { | 91 | { |
@@ -150,19 +159,23 @@ void MainWindow::saveConfFile() | |||
150 | if (!_fileItem) return; | 159 | if (!_fileItem) return; |
151 | _fileItem->save(); | 160 | _fileItem->save(); |
152 | } | 161 | } |
153 | 162 | ||
163 | void MainWindow::revertConfFile() | ||
164 | { | ||
165 | if (!_fileItem) return; | ||
166 | _fileItem->revert(); | ||
167 | } | ||
168 | |||
154 | void MainWindow::showPopup() | 169 | void MainWindow::showPopup() |
155 | { | 170 | { |
156 | qDebug("showPopup"); | 171 | qDebug("showPopup"); |
157 | if (!_fileItem) return; | 172 | if (_fileItem) |
158 | popupMenu->clear(); | 173 | { |
159 | 174 | popupActionSave->setEnabled(_fileItem->isChanged()); | |
160 | QAction *popupAction; | 175 | popupActionRevert->setEnabled(_fileItem->revertable()); |
161 | popupAction = new QAction( tr("Save"),QString::null, 0, this, 0 ); | 176 | popupMenuFile->popup( QCursor::pos() ); |
162 | popupAction->addTo( popupMenu ); | 177 | }else if(_currentItem->isChanged()) |
163 | connect( popupAction, SIGNAL( activated() ), | 178 | { |
164 | this , SLOT( saveConfFile() ) ); | ||
165 | |||
166 | 179 | ||
167 | popupMenu->popup( QCursor::pos() ); | 180 | } |
168 | } | 181 | } |
diff --git a/noncore/apps/confedit/mainwindow.h b/noncore/apps/confedit/mainwindow.h index b015dac..e0dc0b0 100644 --- a/noncore/apps/confedit/mainwindow.h +++ b/noncore/apps/confedit/mainwindow.h | |||
@@ -40,16 +40,24 @@ public slots: | |||
40 | void valueChanged(const QString&); | 40 | void valueChanged(const QString&); |
41 | void showPopup(); | 41 | void showPopup(); |
42 | void stopTimer( QListViewItem* ); | 42 | void stopTimer( QListViewItem* ); |
43 | void saveConfFile(); | 43 | void saveConfFile(); |
44 | void revertConfFile(); | ||
44 | 45 | ||
45 | private: | 46 | private: |
46 | ListViewConfDir *settingList; | 47 | ListViewConfDir *settingList; |
47 | EditWidget *editor; | 48 | EditWidget *editor; |
48 | ListViewItemConfigEntry *_currentItem; | 49 | ListViewItemConfigEntry *_currentItem; |
49 | ListViewItemConfFile *_fileItem; | 50 | ListViewItemConfFile *_fileItem; |
50 | QTimer *popupTimer; | 51 | QTimer *popupTimer; |
51 | QPopupMenu *popupMenu; | 52 | QPopupMenu *popupMenuFile; |
53 | QPopupMenu *popupMenuEntry; | ||
54 | QAction *popupActionSave; | ||
55 | QAction *popupActionRevert; | ||
56 | QAction *popupActionDelete; | ||
57 | QAction *popupActionNew; | ||
58 | //QAction *popupAction; | ||
59 | //QAction *popupAction; | ||
52 | 60 | ||
53 | void makeMenu(); | 61 | void makeMenu(); |
54 | }; | 62 | }; |
55 | 63 | ||