1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
Package: qbankmanager
This package is a simple finance manager, intended for the
AqBanking library.
Therefore it works with the German HBCI (Home Banking Computer
Interface) protocol, OFX DirectConnect and other banking backends.
Homepage: http://sourceforge.net/projects/aqbanking
Requirements: gwenhywfar, aqbanking, qt library.
----------------
Notes on porting to Qt-4:
The Qt4 library will be available as GPL on Linux *and* Windows, which
means this online banking programm can be available on windows as
well, which is a GOOD THING!
But qt4 is not at all source compatible to qt3, see
http://doc.trolltech.com/4.0/porting4.html. Trolltech provides a tool
for the necessary class renaming, called "qt3to4". This package
already has the necessary make rules ("make qt4-port") for calling
that tool on all source files, if the qt4 library has been detected at
configure time. I.e. if you want to use this package in qt4, do the
following two steps:
1. Call ./configure with the proper QTDIR, qt3_libs and qt3_includes
2. Call "make qt4-port"
3. As usual "make"
An example for ./configure is this, where $QTDIR has been set to
/my/qt4/dir beforehand:
./configure --enable-maintainer-mode --enable-debug --prefix=/my/prefix QTDIR=$QTDIR qt3_libs="-L$QTDIR/lib -lQtCore -lQtGui -lQt3Support" qt3_includes="-I$QTDIR/include -I$QTDIR/include/Qt -I$QTDIR/include/QtCore -I$QTDIR/include/QtGui -I$QTDIR/include/Qt3Support"
or on Windows/mingw32
./configure -C --enable-maintainer-mode --enable-debug QTDIR=$QTDIR qt3_libs="-L$QTDIR/bin -lQtCore4 -lQtGui4 -lQt3Support4" qt3_includes="-I$QTDIR/include -I$QTDIR/include/Qt -I$QTDIR/include/QtCore -I$QTDIR/include/QtGui -I$QTDIR/include/Qt3Support" --with-gwen-dir=/c/Programme/gwenhywfar --with-aqbanking-dir=/c/Programme/aqbanking
-- 2005-02-09, cstim
---------------
Notes on documentation in data/home
===================================
This folder contains a subfolder for each supported locale. There are some
fix files which must be provided for every locale:
- first.html.in
This file is shown when the user starts QBankManager for the very first
time.
- update.html.in
This file is shown when the user starts QBankManager for the first time
after updating QBankManager
- index.html.in
This is the default page used for display if none of the above files
apply.
The special folder "c" is used if there is no folder for the currently
active locale.
Please note that these files are processed by the configure script, so any
variable provided by the configure.ac script can be used in these files.
The remaining content of the folders is totally up to the writer of these
files, so please feel free to submit any data you like ;-)
Any HTML file may contain links. Some special links are caught by the
intro viewer. Links starting with "cmd://" are special commands.
The following commands are recognized:
cmd://setup
-----------
Calls the setup dialog.
cmd://page(NAME)
----------------
This switches from the IntroView to the view whose name is given within the
brackets. The following names are accepted so far:
- IntroView (doesn't make sense to call this, but there it is anyway)
- AccountView (account list view)
- TransferView (transfers)
- PayeeView (payees)
- ReportView (reports page)
- JobView (outbox)
|