author | llornkcor <llornkcor> | 2002-10-20 14:04:56 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-20 14:04:56 (UTC) |
commit | b915686dd38e99df72db332e1ea0b12a0895bdb3 (patch) (side-by-side diff) | |
tree | ac5590b057da22eadc96e44eafad7f4dd27688a5 | |
parent | 6924185b50abfa448daa16a9f7cb6e532ec77ff9 (diff) | |
download | opie-b915686dd38e99df72db332e1ea0b12a0895bdb3.zip opie-b915686dd38e99df72db332e1ea0b12a0895bdb3.tar.gz opie-b915686dd38e99df72db332e1ea0b12a0895bdb3.tar.bz2 |
added ability to delete checkbook account
-rw-r--r-- | noncore/apps/checkbook/checkbook.pro | 3 | ||||
-rw-r--r-- | noncore/apps/checkbook/qcheckbook.cpp | 6 | ||||
-rw-r--r-- | noncore/apps/checkbook/qcheckbook.h | 1 | ||||
-rw-r--r-- | noncore/apps/checkbook/qcheckmainmenu.cpp | 31 | ||||
-rw-r--r-- | noncore/apps/checkbook/qcheckmainmenu.h | 1 | ||||
-rw-r--r-- | noncore/apps/checkbook/qchecknamebase.cpp | 81 | ||||
-rw-r--r-- | noncore/apps/checkbook/qchecknamebase.h | 38 |
7 files changed, 160 insertions, 1 deletions
diff --git a/noncore/apps/checkbook/checkbook.pro b/noncore/apps/checkbook/checkbook.pro index e9e2167..cf78739 100644 --- a/noncore/apps/checkbook/checkbook.pro +++ b/noncore/apps/checkbook/checkbook.pro @@ -9,4 +9,5 @@ HEADERS = config.h \ qcheckname.h \ qcheckview.h \ + qchecknamebase.h \ qrestrictedcombo.h \ qrestrictedline.h @@ -21,4 +22,5 @@ SOURCES = config.cpp \ qcheckview.cpp \ qrestrictedcombo.cpp \ + qchecknamebase.cpp \ qrestrictedline.cpp INTERFACES = qcheckdetailsbase.ui \ @@ -26,5 +28,4 @@ INTERFACES = qcheckdetailsbase.ui \ qcheckgraphbase.ui \ qcheckmmbase.ui \ - qchecknamebase.ui \ qcheckviewbase.ui INCLUDEPATH += $(OPIEDIR)/include diff --git a/noncore/apps/checkbook/qcheckbook.cpp b/noncore/apps/checkbook/qcheckbook.cpp index bb7a5ac..26caad9 100644 --- a/noncore/apps/checkbook/qcheckbook.cpp +++ b/noncore/apps/checkbook/qcheckbook.cpp @@ -92,4 +92,9 @@ void QCheckBook::newCheck(const QString &filename) } +void QCheckBook::deleteCheck(const QString &filename) +{ + qDebug("Deleting "+filename); +} + void QCheckBook::close() { @@ -137,4 +142,5 @@ void QCheckBook::initMainMenus() popup = new QPopupMenu(); popup->insertItem("&New", m_view3, SLOT(newClicked())); + popup->insertItem("&Delete", m_view3, SLOT(deleteClicked())); popup->insertItem("&Exit", this, SLOT(close())); mbar->insertItem("&File", popup); diff --git a/noncore/apps/checkbook/qcheckbook.h b/noncore/apps/checkbook/qcheckbook.h index 52c0d40..64b6628 100644 --- a/noncore/apps/checkbook/qcheckbook.h +++ b/noncore/apps/checkbook/qcheckbook.h @@ -17,4 +17,5 @@ class QCheckBook : public QMainWindow private slots: void newCheck(const QString &filename); + void deleteCheck(const QString &filename); void newGraph(); void close(); diff --git a/noncore/apps/checkbook/qcheckmainmenu.cpp b/noncore/apps/checkbook/qcheckmainmenu.cpp index 2382513..1aead88 100644 --- a/noncore/apps/checkbook/qcheckmainmenu.cpp +++ b/noncore/apps/checkbook/qcheckmainmenu.cpp @@ -73,2 +73,33 @@ void QCheckMainMenu::newClicked() } } + +void QCheckMainMenu::deleteClicked() +{ + QString checkname = lstCheckBooks->currentText(); + if (checkname.isEmpty() == false) { + switch ( QMessageBox::warning(this,tr("Delete Account"),tr("Really delete the\n") + +checkname+tr(" account?") + ,tr("Yes"),tr("No"),0,1,1) ) { + case 0: { + + QString checkdirname = QDir::homeDirPath(); + checkdirname.append("/.checkbooks"); + QDir checkdir(checkdirname); + QString checkDir=checkdirname; + + checkdirname.append("/"); + checkdirname.append(checkname); + checkdirname.append(".qcb"); + QFile file(checkdirname); + if (file.exists() == true) { + if(!file.remove()) { + QMessageBox::message(tr("Checkbook"),tr("Could not remove account")); + return; + } else + lstCheckBooks->removeItem(lstCheckBooks->currentItem()); + } + } + break; + } + } +} diff --git a/noncore/apps/checkbook/qcheckmainmenu.h b/noncore/apps/checkbook/qcheckmainmenu.h index 456d3df..24d601b 100644 --- a/noncore/apps/checkbook/qcheckmainmenu.h +++ b/noncore/apps/checkbook/qcheckmainmenu.h @@ -24,4 +24,5 @@ class QCheckMainMenu : public QCheckMMBase public slots: void newClicked(); + void deleteClicked(); }; diff --git a/noncore/apps/checkbook/qchecknamebase.cpp b/noncore/apps/checkbook/qchecknamebase.cpp new file mode 100644 index 0000000..27bebc1 --- a/dev/null +++ b/noncore/apps/checkbook/qchecknamebase.cpp @@ -0,0 +1,81 @@ +/**************************************************************************** +** Form implementation generated from reading ui file 'qchecknamebase.ui' +** +** Created: Wed Sep 18 09:40:57 2002 +** by: The User Interface Compiler (uic) +** +** WARNING! All changes made in this file will be lost! +****************************************************************************/ +#include "qchecknamebase.h" + +#include <qlabel.h> +#include <qpushbutton.h> +#include "qrestrictedline.h" +#include <qlayout.h> +#include <qvariant.h> +#include <qtooltip.h> +#include <qwhatsthis.h> + +/* + * Constructs a QCheckNameBase which is a child of 'parent', with the + * name 'name' and widget flags set to 'f' + * + * The dialog will by default be modeless, unless you set 'modal' to + * TRUE to construct a modal dialog. + */ +QCheckNameBase::QCheckNameBase( QWidget* parent, const char* name, bool modal, WFlags fl ) + : QDialog( parent, name, modal, fl ) +{ + if ( !name ) + setName( "QCheckNameBase" ); + resize( 228, 108 ); + setCaption( tr( "Check Book Name" ) ); + + TextLabel3 = new QLabel( this, "TextLabel3" ); + TextLabel3->setGeometry( QRect( 10, 5, 70, 16 ) ); + QFont TextLabel3_font( TextLabel3->font() ); + TextLabel3_font.setFamily( "BDF-helvetica" ); + TextLabel3_font.setPointSize( 19 ); + TextLabel3_font.setBold( TRUE ); + TextLabel3->setFont( TextLabel3_font ); + TextLabel3->setText( tr( "Name..." ) ); + + TextLabel4 = new QLabel( this, "TextLabel4" ); + TextLabel4->setGeometry( QRect( 10, 25, 210, 25 ) ); + TextLabel4->setText( tr( "Please name your check book.\n(limit: 15 characters):" ) ); + TextLabel4->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter | QLabel::AlignLeft ) ); + + cmdDone = new QPushButton( this, "cmdDone" ); + cmdDone->setGeometry( QRect( 75, 80, 75, 25 ) ); + cmdDone->setText( tr( "&Done" ) ); + + leText = new QRestrictedLine( this, "leText" ); + leText->setGeometry( QRect( 5, 51, 216, 25 ) ); + leText->setFocus(); +} + +/* + * Destroys the object and frees any allocated resources + */ +QCheckNameBase::~QCheckNameBase() +{ + // no need to delete child widgets, Qt does it all for us +} + +/* + * Main event handler. Reimplemented to handle application + * font changes + */ +bool QCheckNameBase::event( QEvent* ev ) +{ + bool ret = QDialog::event( ev ); + if ( ev->type() == QEvent::ApplicationFontChange ) { + QFont TextLabel3_font( TextLabel3->font() ); + TextLabel3_font.setFamily( "BDF-helvetica" ); + TextLabel3_font.setPointSize( 19 ); + TextLabel3_font.setBold( TRUE ); + TextLabel3->setFont( TextLabel3_font ); + } + return ret; +} + diff --git a/noncore/apps/checkbook/qchecknamebase.h b/noncore/apps/checkbook/qchecknamebase.h new file mode 100644 index 0000000..864ecd6 --- a/dev/null +++ b/noncore/apps/checkbook/qchecknamebase.h @@ -0,0 +1,38 @@ +/**************************************************************************** +** Form interface generated from reading ui file 'qchecknamebase.ui' +** +** Created: Wed Sep 18 09:40:11 2002 +** by: The User Interface Compiler (uic) +** +** WARNING! All changes made in this file will be lost! +****************************************************************************/ +#ifndef QCHECKNAMEBASE_H +#define QCHECKNAMEBASE_H + +#include <qvariant.h> +#include <qdialog.h> +class QVBoxLayout; +class QHBoxLayout; +class QGridLayout; +class QLabel; +class QPushButton; +class QRestrictedLine; + +class QCheckNameBase : public QDialog +{ + Q_OBJECT + +public: + QCheckNameBase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); + ~QCheckNameBase(); + + QLabel* TextLabel3; + QLabel* TextLabel4; + QPushButton* cmdDone; + QRestrictedLine* leText; + +protected: + bool event( QEvent* ); +}; + +#endif // QCHECKNAMEBASE_H |