summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/mainwindow.cpp
authortille <tille>2002-06-29 23:23:09 (UTC)
committer tille <tille>2002-06-29 23:23:09 (UTC)
commit0f179c0cc471b659b30dec4762c9c36678063f31 (patch) (unidiff)
tree5350dc3b1c05991953011d01ad19cb12414abc1a /noncore/apps/confedit/mainwindow.cpp
parenteb02223de534d315bfdcb0d521719c2d2e9a7235 (diff)
downloadopie-0f179c0cc471b659b30dec4762c9c36678063f31.zip
opie-0f179c0cc471b659b30dec4762c9c36678063f31.tar.gz
opie-0f179c0cc471b659b30dec4762c9c36678063f31.tar.bz2
revert
Diffstat (limited to 'noncore/apps/confedit/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/mainwindow.cpp47
1 files changed, 30 insertions, 17 deletions
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
@@ -38,9 +38,6 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) :
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
@@ -58,10 +55,6 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) :
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&) ) );
@@ -76,6 +69,22 @@ 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
81MainWindow::~MainWindow() 90MainWindow::~MainWindow()
@@ -151,18 +160,22 @@ void MainWindow::saveConfFile()
151 _fileItem->save(); 160 _fileItem->save();
152} 161}
153 162
163void MainWindow::revertConfFile()
164{
165 if (!_fileItem) return;
166 _fileItem->revert();
167}
168
154void MainWindow::showPopup() 169void 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}