-rw-r--r-- | core/pim/notes/mainwindow.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/core/pim/notes/mainwindow.cpp b/core/pim/notes/mainwindow.cpp index d10578a..68cb28b 100644 --- a/core/pim/notes/mainwindow.cpp +++ b/core/pim/notes/mainwindow.cpp @@ -7,53 +7,83 @@ * * History: * - 2005.10.12 - started work * - 2005.10.19 - version 0.2: * - first working version * - info sent to NoteZ author and to OPIE devel * * - 2005.10.20 - version 0.3: * - load/save in UTF-8 * - load all files from Documents/text/plain * - create .txt files not .ntz - timestamp used as name * - one variable (documentsDirName) keep location of notes * - code (re)indented and converted to spaces * - variables translated to English (were in German) * - started work on beaming * + * - 2005.10.26 - version 0.4: + * - added check does Documents/text/plain exist and create it if not + * * ToDo: * - beaming * - moving to SQLite database * - category support * - searching * */ #include "mainwindow.h" #include "editwindow.h" #include <qpe/ir.h> mainWindowWidget::mainWindowWidget( QWidget *parent, const char *name, WFlags) : Opie::OPimMainWindow( "Notes", "Notes", tr( "Note" ), "notes", parent, name, WType_TopLevel | WStyle_ContextHelp ) { setCaption( tr("Notes")); notesList = new QListBox(this, "notesList"); setCentralWidget(notesList); documentsDirName = QPEApplication::documentDir() + "/text/plain/"; + + fileList.setPath(documentsDirName); + + if(!fileList.exists()) + { + fileList.setPath(QPEApplication::documentDir() + "/text/"); + + if(!fileList.exists()) + { + QString text; + + if(!fileList.mkdir(fileList.absPath())) + { + QMessageBox::critical(0, tr("i/o error"), text.sprintf(tr("Could not create directory '%s'"), fileList.absPath())); + } + else + { + fileList.setPath(documentsDirName); + + if(!fileList.mkdir(fileList.absPath())) + { + QMessageBox::critical(0, tr("i/o error"), text.sprintf(tr("Could not create directory '%s'"), fileList.absPath())); + } + } + } + } + this->selected = -1; refreshList(); QObject::connect(notesList, SIGNAL(returnPressed(QListBoxItem*)), this, SLOT(slotItemEdit())); QObject::connect(notesList, SIGNAL(doubleClicked(QListBoxItem*)), this, SLOT(slotItemEdit())); } void mainWindowWidget::deleteFile() { if( notesList->count() > 0 ) { switch (QMessageBox::warning(0, tr("Delete note"), tr("Really delete\n'") + notesList->currentText() + "'?", QMessageBox::Yes, QMessageBox::No)) { case QMessageBox::Yes: this->selected = notesList->currentItem(); |