summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/newaccount.h
authormickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
committer mickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
commit7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77 (patch) (side-by-side diff)
treee76604c6af3da9c19b69dcdcf8105d58bac63f71 /noncore/apps/qashmoney/newaccount.h
parentcd2d50799e087fad5b56df9d7fe9aa572a313e64 (diff)
downloadopie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.zip
opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.gz
opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.bz2
opie-qashmoney is now unsupported
Diffstat (limited to 'noncore/apps/qashmoney/newaccount.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/newaccount.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/noncore/apps/qashmoney/newaccount.h b/noncore/apps/qashmoney/newaccount.h
deleted file mode 100755
index f8235d5..0000000
--- a/noncore/apps/qashmoney/newaccount.h
+++ b/dev/null
@@ -1,87 +0,0 @@
-#ifndef NEWACCOUNT_H
-#define NEWACCOUNT_H
-
-#include <qbuttongroup.h>
-#include <qcombobox.h>
-#include <qlineedit.h>
-#include <qpushbutton.h>
-#include <qradiobutton.h>
-#include <qlayout.h>
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qhbox.h>
-#include <qcheckbox.h>
-
-#include "account.h"
-#include "preferences.h"
-#include "currency.h"
-
-class NewAccount : public QDialog
- {
- Q_OBJECT
-
- public:
- NewAccount ( QWidget *parent = 0, const char *name = 0, bool modal = TRUE );
- ~NewAccount();
-
- QLabel *namelabel;
- QHBox *accountbox;
- QLineEdit* accountname;
- QPushButton* descriptionbutton;
-
- QHBox *datebox;
- QLabel *datelabel;
- QLineEdit* startdate;
- QPushButton* datebutton;
-
- QCheckBox* childcheckbox;
-
- QLabel *childlabel;
- QComboBox *childbox;
-
- QLabel *balancelabel;
- QHBox *balancebox;
- QLineEdit* accountbalance;
- QPushButton* balancecalculator;
-
- QLabel *creditlimitlabel;
- QHBox *creditlimitbox;
- QLineEdit* creditlimit;
- QPushButton* creditlimitcalculator;
-
- Currency *currencybox;
-
- QLabel *typelabel;
- QComboBox* accounttype;
-
- QGridLayout *layout;
-
- int getDay ();
- int getMonth ();
- int getYear ();
- QString getDescription ();
- void setDescription ( QString );
-
- // When a user edits an account and edits the date, this flag
- // is set to TRUE adding the new date to the account. Otherwise,
- // the old date is used for the edited account. This prevents a date
- // from reverting to 0/0/0 if the date is not edited
- bool getDateEdited ();
-
- public slots:
- void showChildPulldownMenu();
- void hideChildPulldownMenu();
- void showCalculator();
- void showCreditLimitCalculator ();
- void activateCreditLimit ( int );
- void showCalendar ();
- void addAccountDescription ();
-
- private:
- int index, year, month, day, currencypreference;
- QString accountdescription;
- bool dateedited;
-};
-
-#endif
-