author | llornkcor <llornkcor> | 2002-09-22 13:22:51 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-22 13:22:51 (UTC) |
commit | 0816ba0c42df8074d698b60041993dbda5591e27 (patch) (side-by-side diff) | |
tree | c8688bedc4bf5a87e967b0ede8218997dbdd4071 | |
parent | 2778d4b110b6b9106da568eb10568af18e482900 (diff) | |
download | opie-0816ba0c42df8074d698b60041993dbda5591e27.zip opie-0816ba0c42df8074d698b60041993dbda5591e27.tar.gz opie-0816ba0c42df8074d698b60041993dbda5591e27.tar.bz2 |
delete button so I dont have to explain so much about the hold-menu delete
-rw-r--r-- | noncore/applets/notesapplet/notes.cpp | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp index a4aa093..cc5245c 100644 --- a/noncore/applets/notesapplet/notes.cpp +++ b/noncore/applets/notesapplet/notes.cpp @@ -85,7 +85,7 @@ NotesControl::NotesControl( QWidget *parent, const char *name ) edited=false; doPopulate=true; QVBoxLayout *vbox = new QVBoxLayout( this,0, -1, "Vlayout" ); - QHBoxLayout *hbox = new QHBoxLayout( this ); + QHBoxLayout *hbox = new QHBoxLayout( this, 0, -1, "HLayout" ); view = new QMultiLineEdit(this, "OpieNotesView"); @@ -108,6 +108,11 @@ NotesControl::NotesControl( QWidget *parent, const char *name ) newButton= new QPushButton( this, "newButton" ); newButton->setText(tr("New")); hbox->addWidget( newButton); + + deleteButton= new QPushButton( this, "deleteButton" ); + deleteButton->setText(tr("Delete")); + hbox->addWidget( deleteButton); + vbox->addItem(hbox); connect( box, SIGNAL( mouseButtonPressed( int, QListBoxItem *, const QPoint&)), @@ -117,6 +122,7 @@ 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())); populateBox(); load(); setCaption("Notes"); @@ -124,8 +130,11 @@ NotesControl::NotesControl( QWidget *parent, const char *name ) } 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 ); @@ -152,6 +161,7 @@ void NotesControl::slotDeleteButton() { } populateBox(); } +} void NotesControl::slotNewButton() { if(edited) save(); @@ -247,13 +257,14 @@ void NotesControl::save() { oldDocName=docname; edited=false; - } qDebug("save"); if (doPopulate) populateBox(); } cfg.writeEntry( "LastDoc",oldDocName ); cfg.write(); + + } } void NotesControl::populateBox() { @@ -275,9 +286,9 @@ void NotesControl::populateBox() { void NotesControl::load() { + if(!loaded) { Config cfg("Notes"); cfg.setGroup("Docs"); - if(!loaded) { QString lastDoc=cfg.readEntry( "LastDoc",""); DocLnk nf; nf.setType("text/plain"); @@ -286,10 +297,10 @@ void NotesControl::load() { loadDoc(nf); loaded=true; oldDocName=lastDoc; - } cfg.writeEntry( "LastDoc",oldDocName ); cfg.write(); } +} void NotesControl::load(const QString & file) { qDebug("loading "+file); @@ -349,6 +360,7 @@ void NotesApplet::mousePressEvent( QMouseEvent *) { vc->doPopulate=true; vc->populateBox(); vc->doPopulate=false; + vc->loaded=false; vc->load(); // this->setFocus(); |