From ef40f0d781c904723d7842fc8be8f7dbad0614da Mon Sep 17 00:00:00 2001 From: llornkcor Date: Tue, 24 Sep 2002 01:53:27 +0000 Subject: added delete confirm to button --- diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp index cc5245c..81864c6 100644 --- a/noncore/applets/notesapplet/notes.cpp +++ b/noncore/applets/notesapplet/notes.cpp @@ -112,7 +112,7 @@ NotesControl::NotesControl( QWidget *parent, const char *name ) deleteButton= new QPushButton( this, "deleteButton" ); deleteButton->setText(tr("Delete")); hbox->addWidget( deleteButton); - + vbox->addItem(hbox); connect( box, SIGNAL( mouseButtonPressed( int, QListBoxItem *, const QPoint&)), @@ -122,44 +122,55 @@ NotesControl::NotesControl( QWidget *parent, const char *name ) connect(view,SIGNAL( textChanged() ), this, SLOT(slotViewEdited() ) ); connect(newButton, SIGNAL(clicked()), this, SLOT(slotNewButton())); - connect(deleteButton, SIGNAL(clicked()), this, SLOT(slotDeleteButton())); + connect(deleteButton, SIGNAL(clicked()), this, SLOT(slotDeleteButtonClicked())); + populateBox(); load(); setCaption("Notes"); // parent->setFocus(); } +void NotesControl::slotDeleteButtonClicked() { + switch ( QMessageBox::warning(this,tr("Delete?"),tr("Do you really want to
delete this note ?") + ,tr("Yes"),tr("No"),0,1,1) ) { + case 0: + slotDeleteButton(); + break; + }; +} + void NotesControl::slotDeleteButton() { QString selectedText = box->currentText(); qDebug("deleting "+selectedText); if( !selectedText.isEmpty()) { - Config cfg("Notes"); - cfg.setGroup("Docs"); - int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); - QString entryName, entryName2;; - for ( int i = 0; i < noOfFiles; i++ ) { - entryName.sprintf( "File%i", i + 1 ); - if(selectedText == cfg.readEntry( entryName )) { - qDebug("removing %s, %d", selectedText.latin1(), i); - for ( int j = i; j < noOfFiles; j++ ) { - entryName.sprintf( "File%i", i + 1 ); - entryName2.sprintf( "File%i", i + 2 ); - QString temp = cfg.readEntry(entryName2); - qDebug("move "+temp); - cfg.writeEntry(entryName, temp); - i++; + + Config cfg("Notes"); + cfg.setGroup("Docs"); + int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); + QString entryName, entryName2;; + for ( int i = 0; i < noOfFiles; i++ ) { + entryName.sprintf( "File%i", i + 1 ); + if(selectedText == cfg.readEntry( entryName )) { + qDebug("removing %s, %d", selectedText.latin1(), i); + for ( int j = i; j < noOfFiles; j++ ) { + entryName.sprintf( "File%i", i + 1 ); + entryName2.sprintf( "File%i", i + 2 ); + QString temp = cfg.readEntry(entryName2); + qDebug("move "+temp); + cfg.writeEntry(entryName, temp); + i++; + } + cfg.writeEntry("NumberOfFiles", noOfFiles-1 ); + entryName.sprintf( "File%i", noOfFiles ); + cfg.removeEntry(entryName); + cfg.write(); + DocLnk nf(selectedText); + nf.removeFiles(); } - cfg.writeEntry("NumberOfFiles", noOfFiles-1 ); - entryName.sprintf( "File%i", noOfFiles ); - cfg.removeEntry(entryName); - cfg.write(); - DocLnk nf(selectedText); - nf.removeFiles(); } - } - populateBox(); + populateBox(); } } diff --git a/noncore/applets/notesapplet/notes.h b/noncore/applets/notesapplet/notes.h index c589f81..473a89a 100644 --- a/noncore/applets/notesapplet/notes.h +++ b/noncore/applets/notesapplet/notes.h @@ -54,6 +54,7 @@ private: void load(const QString&); private slots: void slotDeleteButton(); + void slotDeleteButtonClicked(); void slotNewButton(); void boxPressed(int, QListBoxItem *, const QPoint&); void showMenu(); -- cgit v0.9.0.2