summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2003-01-08 16:44:31 (UTC)
committer llornkcor <llornkcor>2003-01-08 16:44:31 (UTC)
commitade18a3bf5111a8ff7e43e94ca003c0dd64bc89d (patch) (unidiff)
treef5ea5e991d7e60ba642612d7ce7b0c3f9108246f
parent6f03e28e8fd89c29de7b4cf97a2f6550a5ad8832 (diff)
downloadopie-ade18a3bf5111a8ff7e43e94ca003c0dd64bc89d.zip
opie-ade18a3bf5111a8ff7e43e94ca003c0dd64bc89d.tar.gz
opie-ade18a3bf5111a8ff7e43e94ca003c0dd64bc89d.tar.bz2
fix for empty _*.txt entries when there are no other notes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/notesapplet/notes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp
index 2b25476..4e98b31 100644
--- a/noncore/applets/notesapplet/notes.cpp
+++ b/noncore/applets/notesapplet/notes.cpp
@@ -238,271 +238,271 @@ void NotesControl::slotBeamFinished(Ir *) {
238 238
239void NotesControl::boxPressed(int mouse, QListBoxItem *, const QPoint&) { 239void NotesControl::boxPressed(int mouse, QListBoxItem *, const QPoint&) {
240 switch (mouse) { 240 switch (mouse) {
241 case 1:{ 241 case 1:{
242 } 242 }
243 break; 243 break;
244 case 2: 244 case 2:
245 menuTimer.start( 500, TRUE ); 245 menuTimer.start( 500, TRUE );
246 break; 246 break;
247 }; 247 };
248} 248}
249 249
250void NotesControl::slotBoxSelected(const QString &itemString) { 250void NotesControl::slotBoxSelected(const QString &itemString) {
251 if(edited) { 251 if(edited) {
252 save(); 252 save();
253 } 253 }
254 loaded=false; 254 loaded=false;
255 edited=false; 255 edited=false;
256 load(itemString); 256 load(itemString);
257} 257}
258 258
259 259
260void NotesControl::showMenu() { 260void NotesControl::showMenu() {
261 QPopupMenu *m = new QPopupMenu(0); 261 QPopupMenu *m = new QPopupMenu(0);
262 m->insertItem( tr( "Beam Out" ), this, SLOT( slotBeamButton() )); 262 m->insertItem( tr( "Beam Out" ), this, SLOT( slotBeamButton() ));
263 m->insertItem( tr( "Search For..." ), this, SLOT( slotSearch() )); 263 m->insertItem( tr( "Search For..." ), this, SLOT( slotSearch() ));
264 m->insertItem( tr( "Toggle Maximized" ), this, SLOT( slotShowMax() )); 264 m->insertItem( tr( "Toggle Maximized" ), this, SLOT( slotShowMax() ));
265 m->insertSeparator(); 265 m->insertSeparator();
266 m->insertItem( tr( "Delete" ), this, SLOT( slotDeleteButton() )); 266 m->insertItem( tr( "Delete" ), this, SLOT( slotDeleteButton() ));
267 m->setFocus(); 267 m->setFocus();
268 m->exec( QCursor::pos() ); 268 m->exec( QCursor::pos() );
269 269
270 if(m) delete m; 270 if(m) delete m;
271} 271}
272 272
273void NotesControl::focusOutEvent ( QFocusEvent * e) { 273void NotesControl::focusOutEvent ( QFocusEvent * e) {
274 if( e->reason() == QFocusEvent::Popup) 274 if( e->reason() == QFocusEvent::Popup)
275 save(); 275 save();
276 else { 276 else {
277 if(!loaded) { 277 if(!loaded) {
278 populateBox(); 278 populateBox();
279 load(); 279 load();
280 } 280 }
281 } 281 }
282 QWidget::focusOutEvent(e); 282 QWidget::focusOutEvent(e);
283} 283}
284 284
285void NotesControl::save() { 285void NotesControl::save() {
286 Config cfg("Notes"); 286 Config cfg("Notes");
287 cfg.setGroup("Docs"); 287 cfg.setGroup("Docs");
288 if( edited) { 288 if( edited) {
289// qDebug("is edited"); 289// qDebug("is edited");
290 QString rt = view->text(); 290 QString rt = view->text();
291 if( rt.length()>1) { 291 if( rt.length()>1) {
292 QString pt = rt.simplifyWhiteSpace(); 292 QString pt = rt.simplifyWhiteSpace();
293 int i = pt.find( ' ', pt.find( ' ' )+2 ); 293 int i = pt.find( ' ', pt.find( ' ' )+2 );
294 QString docname = pt; 294 QString docname = pt;
295 if ( i > 0 ) 295 if ( i > 0 )
296 docname = pt.left(i); 296 docname = pt.left(i);
297 // remove "." at the beginning 297 // remove "." at the beginning
298 while( docname.startsWith( "." ) ) 298 while( docname.startsWith( "." ) )
299 docname = docname.mid( 1 ); 299 docname = docname.mid( 1 );
300 docname.replace( QRegExp("/"), "_" ); 300 docname.replace( QRegExp("/"), "_" );
301 // cut the length. filenames longer than that don't make sense 301 // cut the length. filenames longer than that don't make sense
302 // and something goes wrong when they get too long. 302 // and something goes wrong when they get too long.
303 if ( docname.length() > 40 ) 303 if ( docname.length() > 40 )
304 docname = docname.left(40); 304 docname = docname.left(40);
305 if ( docname.isEmpty() ) 305 if ( docname.isEmpty() )
306 docname = "Empty Text"; 306 docname = "Empty Text";
307// qDebug(docname); 307// qDebug(docname);
308 308
309 if( oldDocName != docname) { 309 if( oldDocName != docname) {
310 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); 310 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 );
311 QString entryName; 311 QString entryName;
312 entryName.sprintf( "File%i", noOfFiles + 1 ); 312 entryName.sprintf( "File%i", noOfFiles + 1 );
313 cfg.writeEntry( entryName,docname ); 313 cfg.writeEntry( entryName,docname );
314 cfg.writeEntry("NumberOfFiles", noOfFiles+1 ); 314 cfg.writeEntry("NumberOfFiles", noOfFiles+1 );
315 cfg.write(); 315 cfg.write();
316 } 316 }
317// else 317// else
318// qDebug("oldname equals docname"); 318// qDebug("oldname equals docname");
319 319
320 doc = new DocLnk(docname); 320 doc = new DocLnk(docname);
321 if(QFile(doc->linkFile()).exists()) 321 if(QFile(doc->linkFile()).exists())
322 qDebug("puppie"); 322 qDebug("puppie");
323 doc->setType("text/plain"); 323 doc->setType("text/plain");
324 doc->setName(docname); 324 doc->setName(docname);
325 QString temp = docname.replace( QRegExp(" "), "_" ); 325 QString temp = docname.replace( QRegExp(" "), "_" );
326 doc->setFile( QDir::homeDirPath()+"/notes/"+temp); 326 doc->setFile( QDir::homeDirPath()+"/notes/"+temp);
327 FileManager fm; 327 FileManager fm;
328 if ( !fm.saveFile( *doc, rt ) ) { 328 if ( !fm.saveFile( *doc, rt ) ) {
329 } 329 }
330 330
331 oldDocName=docname; 331 oldDocName=docname;
332 edited=false; 332 edited=false;
333// qDebug("save"); 333// qDebug("save");
334 if (doPopulate) 334 if (doPopulate)
335 populateBox(); 335 populateBox();
336 } 336 }
337 cfg.writeEntry( "LastDoc",oldDocName ); 337 cfg.writeEntry( "LastDoc",oldDocName );
338 cfg.write(); 338 cfg.write();
339 339
340 } 340 }
341} 341}
342 342
343void NotesControl::populateBox() { 343void NotesControl::populateBox() {
344 box->clear(); 344 box->clear();
345// qDebug("populate"); 345// qDebug("populate");
346 Config cfg("Notes"); 346 Config cfg("Notes");
347 cfg.setGroup("Docs"); 347 cfg.setGroup("Docs");
348 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); 348 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 );
349 QStringList list; 349 QStringList list;
350 QString entryName; 350 QString entryName;
351 for ( int i = 0; i < noOfFiles; i++ ) { 351 for ( int i = 0; i < noOfFiles; i++ ) {
352 entryName.sprintf( "File%i", i + 1 ); 352 entryName.sprintf( "File%i", i + 1 );
353 list.append(cfg.readEntry( entryName )); 353 list.append(cfg.readEntry( entryName ));
354 } 354 }
355 list.sort(); 355 list.sort();
356 box->insertStringList(list,-1); 356 box->insertStringList(list,-1);
357 doPopulate=false; 357 doPopulate=false;
358 update(); 358 update();
359} 359}
360 360
361void NotesControl::load() { 361void NotesControl::load() {
362 362
363 if(!loaded) { 363 if(!loaded) {
364 Config cfg("Notes"); 364 Config cfg("Notes");
365 cfg.setGroup("Docs"); 365 cfg.setGroup("Docs");
366 QString lastDoc=cfg.readEntry( "LastDoc",""); 366 QString lastDoc=cfg.readEntry( "LastDoc","notes");
367 DocLnk nf; 367 DocLnk nf;
368 nf.setType("text/plain"); 368 nf.setType("text/plain");
369 nf.setFile(lastDoc); 369 nf.setFile(lastDoc);
370 370
371 loadDoc(nf); 371 loadDoc(nf);
372 loaded=true; 372 loaded=true;
373 oldDocName=lastDoc; 373 oldDocName=lastDoc;
374 cfg.writeEntry( "LastDoc",oldDocName ); 374 cfg.writeEntry( "LastDoc",oldDocName );
375 cfg.write(); 375 cfg.write();
376 } 376 }
377} 377}
378 378
379void NotesControl::load(const QString & file) { 379void NotesControl::load(const QString & file) {
380 qDebug("loading "+file); 380 qDebug("loading "+file);
381 QString name = file; 381 QString name = file;
382 QString temp; 382 QString temp;
383 if( !QFile( QDir::homeDirPath()+"/"+file).exists() ) 383 if( !QFile( QDir::homeDirPath()+"/"+file).exists() )
384 temp = QDir::homeDirPath()+"/notes/"+ name.replace( QRegExp(" "), "_" ); 384 temp = QDir::homeDirPath()+"/notes/"+ name.replace( QRegExp(" "), "_" );
385 else 385 else
386 temp = name; 386 temp = name;
387 if(!loaded) { 387 if(!loaded) {
388 DocLnk nf; 388 DocLnk nf;
389 nf.setType("text/plain"); 389 nf.setType("text/plain");
390 nf.setFile( temp); 390 nf.setFile( temp);
391 391 if(!temp.isEmpty())
392 loadDoc(nf); 392 loadDoc(nf);
393 loaded=true; 393 loaded=true;
394 } 394 }
395// view->setFocus(); 395// view->setFocus();
396 oldDocName=file; 396 oldDocName=file;
397 Config cfg("Notes"); 397 Config cfg("Notes");
398 cfg.setGroup("Docs"); 398 cfg.setGroup("Docs");
399 cfg.writeEntry( "LastDoc",oldDocName ); 399 cfg.writeEntry( "LastDoc",oldDocName );
400 cfg.write(); 400 cfg.write();
401} 401}
402 402
403void NotesControl::loadDoc( const DocLnk &f) { 403void NotesControl::loadDoc( const DocLnk &f) {
404 FileManager fm; 404 FileManager fm;
405 QString txt; 405 QString txt;
406 if ( !fm.loadFile( f, txt ) ) { 406 if ( !fm.loadFile( f, txt ) ) {
407 qDebug("could not load file "+f.file()); 407 qDebug("could not load file "+f.file());
408 return; 408 return;
409 } 409 }
410 view->setText(txt); 410 view->setText(txt);
411} 411}
412 412
413void NotesControl::slotViewEdited() { 413void NotesControl::slotViewEdited() {
414 if(loaded) { 414 if(loaded) {
415 edited=true; 415 edited=true;
416 } 416 }
417} 417}
418 418
419 419
420void NotesControl::slotShowMax() { 420void NotesControl::slotShowMax() {
421 Config cfg("Notes"); 421 Config cfg("Notes");
422 cfg.setGroup("Options"); 422 cfg.setGroup("Options");
423 showMax=!showMax; 423 showMax=!showMax;
424 cfg.writeEntry("ShowMax", showMax); 424 cfg.writeEntry("ShowMax", showMax);
425 cfg.write(); 425 cfg.write();
426 hide(); 426 hide();
427} 427}
428 428
429void NotesControl::slotSearch() { 429void NotesControl::slotSearch() {
430 int boxCount = box->count(); 430 int boxCount = box->count();
431 for(int i=0;i< boxCount;i++) { 431 for(int i=0;i< boxCount;i++) {
432 432
433 } 433 }
434} 434}
435 435
436// void NotesControl::keyReleaseEvent( QKeyEvent *e) { 436// void NotesControl::keyReleaseEvent( QKeyEvent *e) {
437 437
438// switch ( e->state() ) { 438// switch ( e->state() ) {
439// case ControlButton: 439// case ControlButton:
440// if(e->key() == Key_C) { //copy 440// if(e->key() == Key_C) { //copy
441// qDebug("copy"); 441// qDebug("copy");
442// QClipboard *cb = QApplication::clipboard(); 442// QClipboard *cb = QApplication::clipboard();
443// QString text; 443// QString text;
444 444
445// // Copy text from the clipboard (paste) 445// // Copy text from the clipboard (paste)
446// text = cb->text(); 446// text = cb->text();
447// } 447// }
448// if(e->key() == Key_X) { //cut 448// if(e->key() == Key_X) { //cut
449// } 449// }
450// if(e->key() == Key_V) { //paste 450// if(e->key() == Key_V) { //paste
451// QClipboard *cb = QApplication::clipboard(); 451// QClipboard *cb = QApplication::clipboard();
452// QString text; 452// QString text;
453// //view 453// //view
454// cb->setText(); 454// cb->setText();
455// } 455// }
456// break; 456// break;
457// }; 457// };
458// QWidget::keyReleaseEvent(e); 458// QWidget::keyReleaseEvent(e);
459// } 459// }
460 460
461//=========================================================================== 461//===========================================================================
462 462
463NotesApplet::NotesApplet( QWidget *parent, const char *name ) 463NotesApplet::NotesApplet( QWidget *parent, const char *name )
464 : QWidget( parent, name ) { 464 : QWidget( parent, name ) {
465 setFixedHeight( 18 ); 465 setFixedHeight( 18 );
466 setFixedWidth( 14 ); 466 setFixedWidth( 14 );
467 vc = new NotesControl; 467 vc = new NotesControl;
468} 468}
469 469
470NotesApplet::~NotesApplet() { 470NotesApplet::~NotesApplet() {
471} 471}
472 472
473void NotesApplet::mousePressEvent( QMouseEvent *) { 473void NotesApplet::mousePressEvent( QMouseEvent *) {
474 if( !vc->isHidden()) { 474 if( !vc->isHidden()) {
475 vc->doPopulate=false; 475 vc->doPopulate=false;
476 vc->save(); 476 vc->save();
477 vc->close(); 477 vc->close();
478 } else { 478 } else {
479// vc = new NotesControl; 479// vc = new NotesControl;
480// QPoint curPos = mapToGlobal( rect().topLeft() ); 480// QPoint curPos = mapToGlobal( rect().topLeft() );
481 if(vc->showMax) { 481 if(vc->showMax) {
482 qDebug("show max"); 482 qDebug("show max");
483 vc->showMaximized(); 483 vc->showMaximized();
484 } else { 484 } else {
485 qDebug("no show max"); 485 qDebug("no show max");
486 QWidget *wid = QPEApplication::desktop(); 486 QWidget *wid = QPEApplication::desktop();
487 QRect rect = QApplication::desktop()->geometry(); 487 QRect rect = QApplication::desktop()->geometry();
488 vc->setGeometry( ( wid->width() / 2) - ( vc->width() / 2 ) , 28 , wid->width() -10 , 180); 488 vc->setGeometry( ( wid->width() / 2) - ( vc->width() / 2 ) , 28 , wid->width() -10 , 180);
489 vc->move ( (rect.center()/2) - (vc->rect().center()/2)); 489 vc->move ( (rect.center()/2) - (vc->rect().center()/2));
490// vc->move( (( wid->width() / 2) - ( vc->width() / 2 ))-4, 28); 490// vc->move( (( wid->width() / 2) - ( vc->width() / 2 ))-4, 28);
491 } 491 }
492 vc->show(); 492 vc->show();
493 vc->doPopulate=true; 493 vc->doPopulate=true;
494 vc->populateBox(); 494 vc->populateBox();
495 vc->doPopulate=false; 495 vc->doPopulate=false;
496 vc->loaded=false; 496 vc->loaded=false;
497 497
498 vc->load(); 498 vc->load();
499// this->setFocus(); 499// this->setFocus();
500 vc->view->setFocus(); 500 vc->view->setFocus();
501 } 501 }
502} 502}
503 503
504void NotesApplet::paintEvent( QPaintEvent* ) { 504void NotesApplet::paintEvent( QPaintEvent* ) {
505 QPainter p(this); 505 QPainter p(this);
506 p.drawPixmap( 0, 1, ( const char** ) notes_xpm ); 506 p.drawPixmap( 0, 1, ( const char** ) notes_xpm );
507} 507}
508 508