summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/qashmoney.h
Unidiff
Diffstat (limited to 'noncore/apps/qashmoney/qashmoney.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/qashmoney.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/apps/qashmoney/qashmoney.h b/noncore/apps/qashmoney/qashmoney.h
index cf0bd42..ec2c7ec 100755
--- a/noncore/apps/qashmoney/qashmoney.h
+++ b/noncore/apps/qashmoney/qashmoney.h
@@ -1,19 +1,20 @@
1#ifndef QASHMONEY_H 1#ifndef QASHMONEY_H
2#define QASHMONEY_H 2#define QASHMONEY_H
3 3
4#include <qpe/qpemenubar.h> 4#include <qpe/qpemenubar.h>
5#include <qpopupmenu.h> 5#include <qpopupmenu.h>
6#include <qlayout.h> 6#include <qlayout.h>
7#include <qtabwidget.h> 7#include <qtabwidget.h>
8#include <qdatetime.h>
8 9
9#include "accountdisplay.h" 10#include "accountdisplay.h"
10#include "transactiondisplay.h" 11#include "transactiondisplay.h"
11#include "budgetdisplay.h" 12#include "budgetdisplay.h"
12#include "account.h" 13#include "account.h"
13#include "preferences.h" 14#include "preferences.h"
14#include "transaction.h" 15#include "transaction.h"
15#include "transfer.h" 16#include "transfer.h"
16#include "memory.h" 17#include "memory.h"
17#include "budget.h" 18#include "budget.h"
18 19
19class QashMoney : public QWidget 20class QashMoney : public QWidget
@@ -37,25 +38,27 @@ class QashMoney : public QWidget
37 void displayDatePreferencesDialog (); 38 void displayDatePreferencesDialog ();
38 void displayTransactionPreferencesDialog (); 39 void displayTransactionPreferencesDialog ();
39 void displayAccountPreferencesDialog (); 40 void displayAccountPreferencesDialog ();
40 void displayMemoryDialog (); 41 void displayMemoryDialog ();
41 void setTransactionTab (); 42 void setTransactionTab ();
42 43
43 private slots: 44 private slots:
44 void changeTabDisplay (); 45 void changeTabDisplay ();
45 void showTransactions (); 46 void showTransactions ();
46 void enableOneTouchViewing (); 47 void enableOneTouchViewing ();
47 void disableOneTouchViewing (); 48 void disableOneTouchViewing ();
48 void toggleOneTouchViewing ( bool ); 49 void toggleOneTouchViewing ( bool );
50 void setTransactionDisplayDate ();
49 51
50 private: 52 private:
51 QVBoxLayout *layout; 53 QVBoxLayout *layout;
52 QVBoxLayout *tabslayout; 54 QVBoxLayout *tabslayout;
53 AccountDisplay *accountdisplay; 55 AccountDisplay *accountdisplay;
54 TransactionDisplay *transactiondisplay; 56 TransactionDisplay *transactiondisplay;
55 BudgetDisplay *budgetdisplay; 57 BudgetDisplay *budgetdisplay;
56 int tabheight; 58 int tabheight;
59 QDate newdate;
57 60
58 }; 61 };
59 62
60#endif 63#endif
61 64