diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/doc/dev/kexi_guidelines.txt | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/doc/dev/kexi_guidelines.txt')
-rw-r--r-- | kexi/doc/dev/kexi_guidelines.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/kexi/doc/dev/kexi_guidelines.txt b/kexi/doc/dev/kexi_guidelines.txt new file mode 100644 index 00000000..7c2dfaba --- /dev/null +++ b/kexi/doc/dev/kexi_guidelines.txt @@ -0,0 +1,35 @@ +PROPOSAL: Generic Guidlines For Kexi Development + +Jaroslaw Staniek +started: 2003-06-25 + +Idea 1 +Add tests for command line-only operations using kexiDB library. +These tests can be later turned to command line options for Kexi what will allow non +GUI operations o databases/projects. + +Idea 2 +Look at QSQL module from QT. E.g. there is efficient cursor feature (it works quite good with mysql). +We have KexiDBRecordSet instead, but this is just the same thing. +In fact many KexiDB features are compatible with QSQL. +Focus on: +- avoid loading all result data to client memory (fetch some records instead) +- avoid blocking operations (do asynchronously as many things as possible) +- avoid memory copying (at low level try to store original char* data instead of QString, + convert to QString only on data displaying) + +Idea 3 +Directories layout: +dialogs/ ++-altertable/ ++-datatable/ ++-queryeditor/ ++-sqleditor + +widgets/ ++-tableview/ ++-datatableview/ + +Idea 4 +Classes naming guidelines: +'Dialog' suffix for all classes |