author | mickeyl <mickeyl> | 2004-11-04 10:33:04 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-11-04 10:33:04 (UTC) |
commit | 7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77 (patch) (unidiff) | |
tree | e76604c6af3da9c19b69dcdcf8105d58bac63f71 | |
parent | cd2d50799e087fad5b56df9d7fe9aa572a313e64 (diff) | |
download | opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.zip opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.gz opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.bz2 |
opie-qashmoney is now unsupported
72 files changed, 0 insertions, 340 deletions
diff --git a/noncore/apps/qashmoney/arm.sh b/noncore/apps/qashmoney/arm.sh deleted file mode 100755 index efecfcd..0000000 --- a/noncore/apps/qashmoney/arm.sh +++ b/dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | CROSSCOMPILE=/opt/Embedix/tools | ||
3 | QPEDIR=/opt/Qtopia/sharp | ||
4 | QTDIR=/opt/Qtopia/sharp | ||
5 | PATH=$QTDIR/bin:$QPEDIR/bin:$CROSSCOMPILE/bin:$PATH:$QPEDIR/tmake/bin | ||
6 | TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-sharp-g++/ | ||
7 | LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH: | ||
8 | INCPATH=$INCPATH:/usr/include | ||
9 | export QPEDIR QTDIR PATH LD_LIBRARY_PATH TMAKEPATH PS1 INCPATH | ||
10 | echo "Altered environment for Sharp Zaurus Development ARM" | ||
diff --git a/noncore/apps/qashmoney/config.in b/noncore/apps/qashmoney/config.in deleted file mode 100644 index 094f845..0000000 --- a/noncore/apps/qashmoney/config.in +++ b/dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | config QASHMONEY | ||
2 | boolean "opie-qashmoney (money manager)" | ||
3 | default "n" | ||
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBSQLITE_DEP | ||
diff --git a/noncore/apps/qashmoney/install/CONTROL/opie-qashmoney.control b/noncore/apps/qashmoney/install/CONTROL/opie-qashmoney.control deleted file mode 100755 index 41a6973..0000000 --- a/noncore/apps/qashmoney/install/CONTROL/opie-qashmoney.control +++ b/dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | Package: opie-qashmoney | ||
2 | Files: bin/qashmoney pics/qashmoney/* pics/qashmoney/flags/* apps/Applications/qashmoney.desktop | ||
3 | Priority: optional | ||
4 | Version: $QPE_VERSION$EXTRAVERSION | ||
5 | Architecture: arm | ||
6 | Maintainer: Allen Forsythe allen@qashmoney.org | ||
7 | Section: Applications | ||
8 | Description: QashMoney provides an intuitive and fast way to keep track of your accounts and budgets. | ||
diff --git a/noncore/apps/qashmoney/install/CONTROL/postinst b/noncore/apps/qashmoney/install/CONTROL/postinst deleted file mode 100755 index 034c5ac..0000000 --- a/noncore/apps/qashmoney/install/CONTROL/postinst +++ b/dev/null | |||
@@ -1,124 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # This renames all the old zmoney files if they are present | ||
4 | if [ -f $HOME/zmoneyaccounts.db ] | ||
5 | then | ||
6 | mv $HOME/zmoneyaccounts.db $HOME/qmaccounts.db | ||
7 | fi | ||
8 | if [ -f $HOME/zmoneytransactions.db ] | ||
9 | then | ||
10 | mv $HOME/zmoneytransactions.db $HOME/qmtransactions.db | ||
11 | fi | ||
12 | if [ -f $HOME/zmoneymemory.db ] | ||
13 | then | ||
14 | mv $HOME/zmoneymemory.db $HOME/qmmemory.db | ||
15 | fi | ||
16 | if [ -f $HOME/zmoneypreferences.db ] | ||
17 | then | ||
18 | mv $HOME/zmoneypreferences.db $HOME/qmpreferences.db | ||
19 | fi | ||
20 | if [ -f $HOME/zmoneytransfers.db ] | ||
21 | then | ||
22 | mv $HOME/zmoneytransfers.db $HOME/qmtransfers.db | ||
23 | fi | ||
24 | |||
25 | # This section makes a new directory in the $HOME/Applications | ||
26 | # directory so QashMoney files will be automatically backed up. | ||
27 | # Links from the $HOME directory are made to the actual files because | ||
28 | # SQLite seems to want only a filename rather than a directory | ||
29 | |||
30 | # Make the Applications directory if its not there | ||
31 | if [ ! -d $HOME/Applications ] | ||
32 | then | ||
33 | mkdir $HOME/Applications | ||
34 | fi | ||
35 | |||
36 | # Make the qashmoney directory | ||
37 | if [ ! -d $HOME/Applications/qashmoney ] | ||
38 | then | ||
39 | mkdir $HOME/Applications/qashmoney | ||
40 | fi | ||
41 | |||
42 | # Move all the database files to the temporary directory | ||
43 | # if they are present and are not symbolic links | ||
44 | if [ -f $HOME/qmbudgets.db ] && [ ! -L $HOME/qmbudgets.db ] | ||
45 | then | ||
46 | mv $HOME/qmbudgets.db /tmp | ||
47 | fi | ||
48 | |||
49 | if [ -f $HOME/qmaccounts.db ] && [ ! -L $HOME/qmaccounts.db ] | ||
50 | then | ||
51 | mv $HOME/qmaccounts.db /tmp | ||
52 | fi | ||
53 | |||
54 | if [ -f $HOME/qmmemory.db ] && [ ! -L $HOME/qmmemory.db ] | ||
55 | then | ||
56 | mv $HOME/qmmemory.db /tmp | ||
57 | fi | ||
58 | |||
59 | if [ -f $HOME/qmpreferences.db ] && [ ! -L $HOME/qmpreferences.db ] | ||
60 | then | ||
61 | mv $HOME/qmpreferences.db /tmp | ||
62 | fi | ||
63 | |||
64 | if [ -f $HOME/qmtransactions.db ] && [ ! -L $HOME/qmtransactions.db ] | ||
65 | then | ||
66 | mv $HOME/qmtransactions.db /tmp | ||
67 | fi | ||
68 | |||
69 | if [ -f $HOME/qmtransfers.db ] && [ ! -L $HOME/qmtransfers.db ] | ||
70 | then | ||
71 | mv $HOME/qmtransfers.db /tmp | ||
72 | fi | ||
73 | |||
74 | # Move all db files from /tmp directory to their final resting place | ||
75 | if [ ! -f $HOME/Applications/qashmoney/qmbudgets.db ] | ||
76 | then | ||
77 | mv /tmp/qmbudgets.db $HOME/Applications/qashmoney | ||
78 | fi | ||
79 | if [ ! -f $HOME/Applications/qashmoney/qmaccounts.db ] | ||
80 | then | ||
81 | mv /tmp/qmaccounts.db $HOME/Applications/qashmoney | ||
82 | fi | ||
83 | if [ ! -f $HOME/Applications/qashmoney/qmmemory.db ] | ||
84 | then | ||
85 | mv /tmp/qmmemory.db $HOME/Applications/qashmoney | ||
86 | fi | ||
87 | if [ ! -f $HOME/Applications/qashmoney/qmpreferences.db ] | ||
88 | then | ||
89 | mv /tmp/qmpreferences.db $HOME/Applications/qashmoney | ||
90 | fi | ||
91 | if [ ! -f $HOME/Applications/qashmoney/qmtransactions.db ] | ||
92 | then | ||
93 | mv /tmp/qmtransactions.db $HOME/Applications/qashmoney | ||
94 | fi | ||
95 | if [ ! -f $HOME/Applications/qashmoney/qmtransfers.db ] | ||
96 | then | ||
97 | mv /tmp/qmtransfers.db $HOME/Applications/qashmoney | ||
98 | fi | ||
99 | |||
100 | # If by chance there are any db files or links in the $HOME directory | ||
101 | #delete them | ||
102 | rm -rf $HOME/qmbudgets.db | ||
103 | rm -rf $HOME/qmaccounts.db | ||
104 | rm -rf $HOME/qmmemory.db | ||
105 | rm -rf $HOME/qmpreferences.db | ||
106 | rm -rf $HOME/qmtransactions.db | ||
107 | rm -rf $HOME/qmtransfers.db | ||
108 | |||
109 | # Create symbolic links for the $HOME to the $HOME/Applications/qashmoney | ||
110 | # directory | ||
111 | ln -s $HOME/Applications/qashmoney/qmbudgets.db $HOME/qmbudgets.db | ||
112 | ln -s $HOME/Applications/qashmoney/qmaccounts.db $HOME/qmaccounts.db | ||
113 | ln -s $HOME/Applications/qashmoney/qmmemory.db $HOME/qmmemory.db | ||
114 | ln -s $HOME/Applications/qashmoney/qmpreferences.db $HOME/qmpreferences.db | ||
115 | ln -s $HOME/Applications/qashmoney/qmtransactions.db $HOME/qmtransactions.db | ||
116 | ln -s $HOME/Applications/qashmoney/qmtransfers.db $HOME/qmtransfers.db | ||
117 | |||
118 | # Remove all .db files that remain in the /tmp directory | ||
119 | rm -rf /tmp/qmbudgets.db | ||
120 | rm -rf /tmp/qmaccounts.db | ||
121 | rm -rf /tmp/qmmemory.db | ||
122 | rm -rf /tmp/qmpreferences.db | ||
123 | rm -rf /tmp/qmtransactions.db | ||
124 | rm -rf /tmp/qmtransfers.db | ||
diff --git a/noncore/apps/qashmoney/install/CONTROL/preinst b/noncore/apps/qashmoney/install/CONTROL/preinst deleted file mode 100755 index f812bfc..0000000 --- a/noncore/apps/qashmoney/install/CONTROL/preinst +++ b/dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | #/bin/sh | ||
2 | |||
3 | # If by some small chance a tmp directory is not present | ||
4 | # create it | ||
5 | if [ ! -d /tmp ] | ||
6 | then | ||
7 | mkdir /tmp | ||
8 | fi | ||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/apps/Applications/qashmoney.desktop b/noncore/apps/qashmoney/install/opt/QtPalmtop/apps/Applications/qashmoney.desktop deleted file mode 100755 index e144c5d..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/apps/Applications/qashmoney.desktop +++ b/dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | [Desktop Entry] | ||
2 | Comment=QashMoney, budget software for the Z | ||
3 | Exec=qashmoney | ||
4 | Icon=qashmoney.png | ||
5 | Name=QashMoney | ||
6 | Terminal=false | ||
7 | Type=Application | ||
8 | Name[pt]=Gestor Dinheiro | ||
9 | Name[pt_BR]=Gestor Dinheiro | ||
10 | Comment[pt]=Gestor de Dinheiro | ||
11 | Comment[pt_BR]=Gestor de Dinheiro \ No newline at end of file | ||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/bin/qashmoney b/noncore/apps/qashmoney/install/opt/QtPalmtop/bin/qashmoney deleted file mode 100755 index ec6ee2a..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/bin/qashmoney +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/accountpreferenceswindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/accountpreferenceswindow.png deleted file mode 100755 index e37580f..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/accountpreferenceswindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/budgetwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/budgetwindow.png deleted file mode 100755 index e42d52a..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/budgetwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/datepreferenceswindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/datepreferenceswindow.png deleted file mode 100755 index 7ae6821..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/datepreferenceswindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editaccountwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editaccountwindow.png deleted file mode 100755 index e0bbdcb..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editaccountwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editbudgetwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editbudgetwindow.png deleted file mode 100755 index 6645487..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/editbudgetwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/mainwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/mainwindow.png deleted file mode 100755 index c8a88c2..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/mainwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/memorywindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/memorywindow.png deleted file mode 100755 index df40275..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/memorywindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newaccountwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newaccountwindow.png deleted file mode 100755 index d0e4664..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newaccountwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newbudgetwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newbudgetwindow.png deleted file mode 100755 index 1fe4bbe..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newbudgetwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newlineitemwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newlineitemwindow.png deleted file mode 100755 index 66c7b13..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newlineitemwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newtransactionwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newtransactionwindow.png deleted file mode 100755 index c011235..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/newtransactionwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/qashmoney.html b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/qashmoney.html deleted file mode 100755 index 40bfe27..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/qashmoney.html +++ b/dev/null | |||
@@ -1,153 +0,0 @@ | |||
1 | <html> | ||
2 | |||
3 | <head> | ||
4 | |||
5 | <title>QashMoney Help</title> | ||
6 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | ||
7 | |||
8 | </head> | ||
9 | |||
10 | <body> | ||
11 | <center><b>QashMoney</b></center> | ||
12 | |||
13 | <br><center>Welcome to QashMoney help. This file should help you get started | ||
14 | using QashMoney quickly! </center> | ||
15 | |||
16 | <br><center><b>Main Window</b></center> | ||
17 | |||
18 | <br>When you start the application, the Main Window will appear. This window | ||
19 | consists of account buttons and the account display which shows you the account | ||
20 | names and balances for each account. Parent accounts are to the left | ||
21 | and child accounts are indented. By default, child accounts contribute | ||
22 | to the balance of their respective parents. Parent accounts are used only for viewing | ||
23 | transactions for the child accounts beneath them as well as deleting and clearing/reseting | ||
24 | transactions in those child accounts. As such, parent accounts with child accounts will | ||
25 | not accept transactions. | ||
26 | |||
27 | <p><b>NOTE:</b> The columns in the account and transaction display windows default to a reasonable but | ||
28 | static width. You can press in between the columns and drag to resize them to your liking and QashMoney will remember | ||
29 | these widths. | ||
30 | |||
31 | <center><br><img src="mainwindow.png" ></center> | ||
32 | |||
33 | <br><img src="/opt/QtPalmtop/pics/new.png"> Press this button to add a new account to the list. | ||
34 | |||
35 | <br><img src="/opt/QtPalmtop/pics/edit.png"> Press this button to edit the name, description, | ||
36 | and currency that has been assigned to the account. The other parameters of the account are not editable. | ||
37 | |||
38 | <br><img src="/opt/QtPalmtop/pics/delete.png"> Press this button to delete an account that you've added. When you | ||
39 | delete a child account, all of its transactions will also be deleted so be careful with this. You can only delete a parent | ||
40 | account if it has no child accounts. | ||
41 | |||
42 | <br><img src="/opt/QtPalmtop/pics/transfer.png"> Press this button to transfer money between accounts. This is a toggle button | ||
43 | and will stay down when you press it. Next, select two accounts from the account list. These will become the accounts | ||
44 | between which funds are transferred. The money is transferred from the account you tap first and transferred to the account you tap second. | ||
45 | A popup dialog will appear after you tap two accounts and looks like this: | ||
46 | |||
47 | <center><br><img src="transferwindow.png" ></center> | ||
48 | |||
49 | <br>To complete the transfer, enter the date and amount. Check the cleared check box to set this transfer cleared. | ||
50 | |||
51 | <br><br><center><b>Add Account</b></center> | ||
52 | |||
53 | <br><center><img src="newaccountwindow.png"></center> | ||
54 | |||
55 | <br>Use the Add Account dialog to add accounts. The initial | ||
56 | balance may be typed in manually or you can push the calculator to enter | ||
57 | the amount with the stylus. Next, select the currency pulldown menu to choose | ||
58 | the currency for this account. If currency support is disabled, this box will be disabled. | ||
59 | You'll notice that the date line is disabled. Dates may only | ||
60 | be entered by pressing the calendar button and selecting the date. Today's date is put into the | ||
61 | calendar entry line by default. If you select this to a child account, | ||
62 | a pulldown menu will appear so you can select its parent account. Using the Type | ||
63 | pulldown menu, you may select any type of equity or liability account. If you choose a | ||
64 | liability account, you may also type in a credit limit for the account. Press the button next to | ||
65 | the account name box to enter a description of the account. To cancel the account addition, | ||
66 | click the X button. Otherwise, press OK to complete the account addition. | ||
67 | |||
68 | <br><br><center><b>Transaction Window</b></center> | ||
69 | |||
70 | <br><center><img src="transactionwindow.png"></center> | ||
71 | |||
72 | <br>To see the transactions for each account, highlight the | ||
73 | account and press the Transactions tab, this will display the transaction | ||
74 | window, the account name you've selected, the account balance and several | ||
75 | transaction buttons. If you've selected a child account or a parent account with no | ||
76 | children, the transaction window will contain three columns for date, transaction name, | ||
77 | and amount. A fourth column identifying the account for each transaction will be added | ||
78 | if you choose to view a parent account with children. Entering text in the "Limit" box will | ||
79 | display items that begin with the text in the box. Text in this box does not effect transfers. | ||
80 | |||
81 | <br><br><img src="/opt/QtPalmtop/pics/new.png"> New Transaction | ||
82 | |||
83 | <br><img src="/opt/QtPalmtop/pics/edit.png"> Edit Transaction. Use this button to edit transactions. | ||
84 | Just select the transaction you want to edit and the appropriate window will appear. You cannot edit transfers | ||
85 | from this window (yet). You must delete transfers and then reenter them in the account display. | ||
86 | |||
87 | <br><img src="/opt/QtPalmtop/pics/delete.png"> Delete Transaction. This also deletes a transfer if one is selected. | ||
88 | |||
89 | <br><img src="/opt/QtPalmtop/pics/redo.png"> Clear or Reset Transaction. Use this button to clear transactions. | ||
90 | If an uncleared transaction is selected, it will be cleared. If a cleared transaction is selected, it will be reset. This functions | ||
91 | identically for transfers. If you prefer not to see cleared transactions, the transaction you clear will disappear from the | ||
92 | transaction window. If however, you are showing cleared transactions, cleared transactions will appear red rather than black differentiating | ||
93 | them from the non-cleared transactions. | ||
94 | |||
95 | <br><img src="/opt/QtPalmtop/pics/info.png"> Transaction Information. If you've entered notes about a transaction, select the transaction and | ||
96 | press this button to see the notes. | ||
97 | |||
98 | <br><br><center><b>Add Transaction</b></center> | ||
99 | |||
100 | <br><center><img src="newtransactionwindow.png"></center> | ||
101 | |||
102 | <br>Use this dialog to enter new transactions. Enter the transaction name, transaction number, amount, and date. | ||
103 | Each transaction defaults to a non-cleared debit transaction. If you want to clear the transaction right away, check | ||
104 | the <b>Cleared</b> checkbox. If you want to make this a deposit (credit) to the account, check the <b>Credit</b> checkbox. Press the | ||
105 | button next to Transaction Name to enter a description of this transaction. The budget and line item buttons at the bottom allow you to | ||
106 | add this transaction to budgets you have set up. The budget button defaults to <b>None.</b> If you don't want the add this transaction to | ||
107 | any budget, leave this as is. Otherwise, select the budget and then a line item from that budget to add the transaction. These buttons will | ||
108 | be disabled unless you've set up budgets. | ||
109 | |||
110 | <br><br><center><b>Budgets</b></center> | ||
111 | |||
112 | <br><center><img src="budgetwindow.png"></center> | ||
113 | |||
114 | <br>QashMoney's newest addition, this tab allows you to set up multiple budgets with different currencies then add any transaction from any account to any budget. | ||
115 | At the top of the budget display, a menu system allows you to add, edit, and delete budgets and line items within each budget. Using the <b>Change</b> item | ||
116 | under <b>Date</b> menu, you can change the date range for which you want to view budgets. Currently, you can view budgets by year and by month. The | ||
117 | budgeted and actual amounts will change appropriately for the view you select. Like the column sizes in the accounts and transaction windows. Drag these to | ||
118 | the size you want and QashMoney will remember them. | ||
119 | |||
120 | <p><center><b>Preferences Menu</b></center> | ||
121 | |||
122 | <br>The preferences menus (currently) allow you to change the date format, determine whether cleared transactions are shown in the | ||
123 | transaction window, and to enable currenct support. Just tap the respective menu items to see the dialog for each preference. These dialogs are self explanatory | ||
124 | and look like this: | ||
125 | |||
126 | <center><br><img src="datepreferenceswindow.png" ></center> | ||
127 | |||
128 | <center><br><img src="accountpreferenceswindow.png" ></center> | ||
129 | |||
130 | <center><br><img src="transactionpreferenceswindow.png" ></center> | ||
131 | |||
132 | <br>Defaults are provided for each preference. | ||
133 | |||
134 | <br><center><b>Utilities Menu</b></center> | ||
135 | |||
136 | <br>Using the utlities menu and the memory window, you can add, delete, or edit memory items. These will be presented | ||
137 | in an easy to use pulldown menu when entering transactions. | ||
138 | |||
139 | <br><br><center><img src="memorywindow.png"></center> | ||
140 | |||
141 | <br><img src="/opt/QtPalmtop/pics/new.png"> New Memory Item. Press this button to add a new memory to the list. | ||
142 | This button is also used to add an edited item ( see below ). | ||
143 | |||
144 | <br><br><img src="/opt/QtPalmtop/pics/edit.png"> Edit Memory Item. Select an item in the memory | ||
145 | item window then press this button to edit it. The item will be added to the line editor below the | ||
146 | button and deleted from the list. You must press the new button to add it back to | ||
147 | the list whether you edit it or not. Otherwise it will be lost. | ||
148 | |||
149 | <br><img src="/opt/QtPalmtop/pics/delete.png"> Delete Memory Item. Press this button to delete a memory | ||
150 | item after selecting it in the memory item window. | ||
151 | |||
152 | </body> | ||
153 | </html> | ||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionpreferenceswindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionpreferenceswindow.png deleted file mode 100755 index 7b183b3..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionpreferenceswindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionwindow.png deleted file mode 100755 index 3f25a0a..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transactionwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transferwindow.png b/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transferwindow.png deleted file mode 100755 index 13bbe0a..0000000 --- a/noncore/apps/qashmoney/install/opt/QtPalmtop/help/html/transferwindow.png +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmaccounts.db b/noncore/apps/qashmoney/install/tmp/qmaccounts.db deleted file mode 100755 index 4073a3b..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmaccounts.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmbudgets.db b/noncore/apps/qashmoney/install/tmp/qmbudgets.db deleted file mode 100755 index d798f0c..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmbudgets.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmmemory.db b/noncore/apps/qashmoney/install/tmp/qmmemory.db deleted file mode 100755 index 32a4994..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmmemory.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmpreferences.db b/noncore/apps/qashmoney/install/tmp/qmpreferences.db deleted file mode 100755 index 111da3a..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmpreferences.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmtransactions.db b/noncore/apps/qashmoney/install/tmp/qmtransactions.db deleted file mode 100755 index f90d579..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmtransactions.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/install/tmp/qmtransfers.db b/noncore/apps/qashmoney/install/tmp/qmtransfers.db deleted file mode 100755 index 2f4ccbd..0000000 --- a/noncore/apps/qashmoney/install/tmp/qmtransfers.db +++ b/dev/null | |||
Binary files differ | |||
diff --git a/noncore/apps/qashmoney/make_x86 b/noncore/apps/qashmoney/make_x86 deleted file mode 100755 index fe1874d..0000000 --- a/noncore/apps/qashmoney/make_x86 +++ b/dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | # Use this script to automatically make the x86 version | ||
2 | # of QashMoney. The x86.sh file must be in this folder | ||
3 | # for it to work. | ||
4 | |||
5 | # Clean the directory | ||
6 | if [ -e Makefile ] | ||
7 | then | ||
8 | make clean | ||
9 | rm Makefile | ||
10 | fi | ||
11 | |||
12 | # set the environment variables for the x86 environment | ||
13 | echo "Setting environment variables..." | ||
14 | source x86.sh | ||
15 | |||
16 | # Make the new Makefile | ||
17 | echo "Making the new Makefile..." | ||
18 | tmake -o Makefile qashmoney.pro | ||
19 | |||
20 | # Make the program | ||
21 | echo "Making the program..." | ||
22 | make | ||
diff --git a/noncore/apps/qashmoney/.cvsignore b/noncore/unsupported/qashmoney/.cvsignore index e737538..e737538 100644 --- a/noncore/apps/qashmoney/.cvsignore +++ b/noncore/unsupported/qashmoney/.cvsignore | |||
diff --git a/noncore/apps/qashmoney/CHANGES b/noncore/unsupported/qashmoney/CHANGES index a3ac224..a3ac224 100755 --- a/noncore/apps/qashmoney/CHANGES +++ b/noncore/unsupported/qashmoney/CHANGES | |||
diff --git a/noncore/apps/qashmoney/LICENSE b/noncore/unsupported/qashmoney/LICENSE index 421cfb2..421cfb2 100755 --- a/noncore/apps/qashmoney/LICENSE +++ b/noncore/unsupported/qashmoney/LICENSE | |||
diff --git a/noncore/apps/qashmoney/README b/noncore/unsupported/qashmoney/README index ef004f7..ef004f7 100755 --- a/noncore/apps/qashmoney/README +++ b/noncore/unsupported/qashmoney/README | |||
diff --git a/noncore/apps/qashmoney/TODO b/noncore/unsupported/qashmoney/TODO index c85b0d2..c85b0d2 100755 --- a/noncore/apps/qashmoney/TODO +++ b/noncore/unsupported/qashmoney/TODO | |||
diff --git a/noncore/apps/qashmoney/account.cpp b/noncore/unsupported/qashmoney/account.cpp index f21598e..f21598e 100755 --- a/noncore/apps/qashmoney/account.cpp +++ b/noncore/unsupported/qashmoney/account.cpp | |||
diff --git a/noncore/apps/qashmoney/account.h b/noncore/unsupported/qashmoney/account.h index 5bad4a1..5bad4a1 100755 --- a/noncore/apps/qashmoney/account.h +++ b/noncore/unsupported/qashmoney/account.h | |||
diff --git a/noncore/apps/qashmoney/accountdisplay.cpp b/noncore/unsupported/qashmoney/accountdisplay.cpp index 046d997..046d997 100755 --- a/noncore/apps/qashmoney/accountdisplay.cpp +++ b/noncore/unsupported/qashmoney/accountdisplay.cpp | |||
diff --git a/noncore/apps/qashmoney/accountdisplay.h b/noncore/unsupported/qashmoney/accountdisplay.h index 6d67b9b..6d67b9b 100755 --- a/noncore/apps/qashmoney/accountdisplay.h +++ b/noncore/unsupported/qashmoney/accountdisplay.h | |||
diff --git a/noncore/apps/qashmoney/budget.cpp b/noncore/unsupported/qashmoney/budget.cpp index 2cec329..2cec329 100755 --- a/noncore/apps/qashmoney/budget.cpp +++ b/noncore/unsupported/qashmoney/budget.cpp | |||
diff --git a/noncore/apps/qashmoney/budget.h b/noncore/unsupported/qashmoney/budget.h index f82e048..f82e048 100755 --- a/noncore/apps/qashmoney/budget.h +++ b/noncore/unsupported/qashmoney/budget.h | |||
diff --git a/noncore/apps/qashmoney/budgetdisplay.cpp b/noncore/unsupported/qashmoney/budgetdisplay.cpp index b83eb46..b83eb46 100755 --- a/noncore/apps/qashmoney/budgetdisplay.cpp +++ b/noncore/unsupported/qashmoney/budgetdisplay.cpp | |||
diff --git a/noncore/apps/qashmoney/budgetdisplay.h b/noncore/unsupported/qashmoney/budgetdisplay.h index a4e806c..a4e806c 100755 --- a/noncore/apps/qashmoney/budgetdisplay.h +++ b/noncore/unsupported/qashmoney/budgetdisplay.h | |||
diff --git a/noncore/apps/qashmoney/calculator.cpp b/noncore/unsupported/qashmoney/calculator.cpp index 2c92103..2c92103 100755 --- a/noncore/apps/qashmoney/calculator.cpp +++ b/noncore/unsupported/qashmoney/calculator.cpp | |||
diff --git a/noncore/apps/qashmoney/calculator.h b/noncore/unsupported/qashmoney/calculator.h index 56dc1bc..56dc1bc 100755 --- a/noncore/apps/qashmoney/calculator.h +++ b/noncore/unsupported/qashmoney/calculator.h | |||
diff --git a/noncore/apps/qashmoney/currency.cpp b/noncore/unsupported/qashmoney/currency.cpp index 20412a7..20412a7 100755 --- a/noncore/apps/qashmoney/currency.cpp +++ b/noncore/unsupported/qashmoney/currency.cpp | |||
diff --git a/noncore/apps/qashmoney/currency.h b/noncore/unsupported/qashmoney/currency.h index 08bb3c1..08bb3c1 100755 --- a/noncore/apps/qashmoney/currency.h +++ b/noncore/unsupported/qashmoney/currency.h | |||
diff --git a/noncore/apps/qashmoney/datepicker.cpp b/noncore/unsupported/qashmoney/datepicker.cpp index 7997c0b..7997c0b 100755 --- a/noncore/apps/qashmoney/datepicker.cpp +++ b/noncore/unsupported/qashmoney/datepicker.cpp | |||
diff --git a/noncore/apps/qashmoney/datepicker.h b/noncore/unsupported/qashmoney/datepicker.h index 67e63e9..67e63e9 100755 --- a/noncore/apps/qashmoney/datepicker.h +++ b/noncore/unsupported/qashmoney/datepicker.h | |||
diff --git a/noncore/apps/qashmoney/main.cpp b/noncore/unsupported/qashmoney/main.cpp index f86be89..f86be89 100755 --- a/noncore/apps/qashmoney/main.cpp +++ b/noncore/unsupported/qashmoney/main.cpp | |||
diff --git a/noncore/apps/qashmoney/memory.cpp b/noncore/unsupported/qashmoney/memory.cpp index b5155b3..b5155b3 100755 --- a/noncore/apps/qashmoney/memory.cpp +++ b/noncore/unsupported/qashmoney/memory.cpp | |||
diff --git a/noncore/apps/qashmoney/memory.h b/noncore/unsupported/qashmoney/memory.h index 6e8ae46..6e8ae46 100755 --- a/noncore/apps/qashmoney/memory.h +++ b/noncore/unsupported/qashmoney/memory.h | |||
diff --git a/noncore/apps/qashmoney/memorydialog.cpp b/noncore/unsupported/qashmoney/memorydialog.cpp index ba11540..ba11540 100755 --- a/noncore/apps/qashmoney/memorydialog.cpp +++ b/noncore/unsupported/qashmoney/memorydialog.cpp | |||
diff --git a/noncore/apps/qashmoney/memorydialog.h b/noncore/unsupported/qashmoney/memorydialog.h index 3491823..3491823 100755 --- a/noncore/apps/qashmoney/memorydialog.h +++ b/noncore/unsupported/qashmoney/memorydialog.h | |||
diff --git a/noncore/apps/qashmoney/newaccount.cpp b/noncore/unsupported/qashmoney/newaccount.cpp index 5932182..5932182 100755 --- a/noncore/apps/qashmoney/newaccount.cpp +++ b/noncore/unsupported/qashmoney/newaccount.cpp | |||
diff --git a/noncore/apps/qashmoney/newaccount.h b/noncore/unsupported/qashmoney/newaccount.h index f8235d5..f8235d5 100755 --- a/noncore/apps/qashmoney/newaccount.h +++ b/noncore/unsupported/qashmoney/newaccount.h | |||
diff --git a/noncore/apps/qashmoney/newtransaction.cpp b/noncore/unsupported/qashmoney/newtransaction.cpp index 87b7f7e..87b7f7e 100755 --- a/noncore/apps/qashmoney/newtransaction.cpp +++ b/noncore/unsupported/qashmoney/newtransaction.cpp | |||
diff --git a/noncore/apps/qashmoney/newtransaction.h b/noncore/unsupported/qashmoney/newtransaction.h index db3a5ad..db3a5ad 100755 --- a/noncore/apps/qashmoney/newtransaction.h +++ b/noncore/unsupported/qashmoney/newtransaction.h | |||
diff --git a/noncore/apps/qashmoney/preferencedialogs.cpp b/noncore/unsupported/qashmoney/preferencedialogs.cpp index b83c957..b83c957 100755 --- a/noncore/apps/qashmoney/preferencedialogs.cpp +++ b/noncore/unsupported/qashmoney/preferencedialogs.cpp | |||
diff --git a/noncore/apps/qashmoney/preferencedialogs.h b/noncore/unsupported/qashmoney/preferencedialogs.h index 88281b8..88281b8 100755 --- a/noncore/apps/qashmoney/preferencedialogs.h +++ b/noncore/unsupported/qashmoney/preferencedialogs.h | |||
diff --git a/noncore/apps/qashmoney/preferences.cpp b/noncore/unsupported/qashmoney/preferences.cpp index 880807a..880807a 100755 --- a/noncore/apps/qashmoney/preferences.cpp +++ b/noncore/unsupported/qashmoney/preferences.cpp | |||
diff --git a/noncore/apps/qashmoney/preferences.h b/noncore/unsupported/qashmoney/preferences.h index 38579ad..38579ad 100755 --- a/noncore/apps/qashmoney/preferences.h +++ b/noncore/unsupported/qashmoney/preferences.h | |||
diff --git a/noncore/apps/qashmoney/qashmoney.cpp b/noncore/unsupported/qashmoney/qashmoney.cpp index 1455eb0..1455eb0 100755 --- a/noncore/apps/qashmoney/qashmoney.cpp +++ b/noncore/unsupported/qashmoney/qashmoney.cpp | |||
diff --git a/noncore/apps/qashmoney/qashmoney.h b/noncore/unsupported/qashmoney/qashmoney.h index f2c456c..f2c456c 100755 --- a/noncore/apps/qashmoney/qashmoney.h +++ b/noncore/unsupported/qashmoney/qashmoney.h | |||
diff --git a/noncore/apps/qashmoney/qashmoney.pro b/noncore/unsupported/qashmoney/qashmoney.pro index faa898b..faa898b 100755 --- a/noncore/apps/qashmoney/qashmoney.pro +++ b/noncore/unsupported/qashmoney/qashmoney.pro | |||
diff --git a/noncore/apps/qashmoney/transaction.cpp b/noncore/unsupported/qashmoney/transaction.cpp index d008a4f..d008a4f 100755 --- a/noncore/apps/qashmoney/transaction.cpp +++ b/noncore/unsupported/qashmoney/transaction.cpp | |||
diff --git a/noncore/apps/qashmoney/transaction.h b/noncore/unsupported/qashmoney/transaction.h index 3df43a8..3df43a8 100755 --- a/noncore/apps/qashmoney/transaction.h +++ b/noncore/unsupported/qashmoney/transaction.h | |||
diff --git a/noncore/apps/qashmoney/transactiondisplay.cpp b/noncore/unsupported/qashmoney/transactiondisplay.cpp index 0b94d62..0b94d62 100755 --- a/noncore/apps/qashmoney/transactiondisplay.cpp +++ b/noncore/unsupported/qashmoney/transactiondisplay.cpp | |||
diff --git a/noncore/apps/qashmoney/transactiondisplay.h b/noncore/unsupported/qashmoney/transactiondisplay.h index 594776a..594776a 100755 --- a/noncore/apps/qashmoney/transactiondisplay.h +++ b/noncore/unsupported/qashmoney/transactiondisplay.h | |||
diff --git a/noncore/apps/qashmoney/transfer.cpp b/noncore/unsupported/qashmoney/transfer.cpp index ae1b748..ae1b748 100755 --- a/noncore/apps/qashmoney/transfer.cpp +++ b/noncore/unsupported/qashmoney/transfer.cpp | |||
diff --git a/noncore/apps/qashmoney/transfer.h b/noncore/unsupported/qashmoney/transfer.h index cec3386..cec3386 100755 --- a/noncore/apps/qashmoney/transfer.h +++ b/noncore/unsupported/qashmoney/transfer.h | |||
diff --git a/noncore/apps/qashmoney/transferdialog.cpp b/noncore/unsupported/qashmoney/transferdialog.cpp index 7a12fbf..7a12fbf 100755 --- a/noncore/apps/qashmoney/transferdialog.cpp +++ b/noncore/unsupported/qashmoney/transferdialog.cpp | |||
diff --git a/noncore/apps/qashmoney/transferdialog.h b/noncore/unsupported/qashmoney/transferdialog.h index dd55879..dd55879 100755 --- a/noncore/apps/qashmoney/transferdialog.h +++ b/noncore/unsupported/qashmoney/transferdialog.h | |||