summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/accountdisplay.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/accountdisplay.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/accountdisplay.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/accountdisplay.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/noncore/apps/qashmoney/accountdisplay.h b/noncore/apps/qashmoney/accountdisplay.h
deleted file mode 100755
index 6d67b9b..0000000
--- a/noncore/apps/qashmoney/accountdisplay.h
+++ b/dev/null
@@ -1,54 +0,0 @@
-#ifndef ACCOUNTDISPLAY_H
-#define ACCOUNTDISPLAY_H
-
-#include <qlistview.h>
-#include <qpushbutton.h>
-#include <qlayout.h>
-#include <qtabwidget.h>
-#include <qhbox.h>
-
-class AccountDisplay : public QWidget
- {
- Q_OBJECT
-
- public:
- AccountDisplay ( QWidget *parent );
-
- QHBox *firstline;
-
- QPushButton* newaccount;
- QPushButton* editaccount;
- QPushButton* deleteaccount;
- QPushButton* transferbutton;
-
- QListView* listview;
-
- QBoxLayout *layout;
-
- void setTabs ( QWidget *newtab2, QTabWidget *newtabs );
- int getIDColumn ();
- void setToggleButton ();
-
- public slots:
- void addAccount ();
- void editAccount ();
- void deleteAccount ();
- void accountTransfer ( bool state );
- void getTransferAccounts ( QListViewItem * item );
- void disableParentsWithChildren ();
- void enableAccounts ();
-
- private slots:
- void saveColumnSize ( int column, int oldsize, int newsize );
- void setAccountExpanded ( QListViewItem *item );
- void setAccountCollapsed ( QListViewItem *item );
- void saveSortingPreference ( int column );
-
- private:
- int type, firstaccountid, secondaccountid, cleared;
- QWidget *tab2;
- QTabWidget *maintabs;
-};
-
-#endif // ACCOUNTDISPLAY_H
-