summaryrefslogtreecommitdiffstats
path: root/kexi/doc
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/doc')
-rw-r--r--kexi/doc/dev/TODO-Kexi-js4
-rw-r--r--kexi/doc/dev/kexi_guidelines.txt4
-rw-r--r--kexi/doc/dev/naming_conventions.txt4
-rw-r--r--kexi/doc/dev/sqlite_issues.txt2
4 files changed, 7 insertions, 7 deletions
diff --git a/kexi/doc/dev/TODO-Kexi-js b/kexi/doc/dev/TODO-Kexi-js
index 90b7d5f6..378e6b36 100644
--- a/kexi/doc/dev/TODO-Kexi-js
+++ b/kexi/doc/dev/TODO-Kexi-js
@@ -344,7 +344,7 @@ HINT: removing Qt::WStaticContents from KexiTableView ctor fixed repaint problem
- KTextEdit doesn't allow to set custom cursor (also in Qt Designer)
- support for multiple widgets selection in the property editor (requires changes to kexiproperty)
- handle older and newer formats in FormIO::loadFormFromDom()
-- TDEAcceleratorManager::setNoAccel(QWidget*) - use it in data mode,
+- TDEAcceleratorManager::setNoAccel(TQWidget*) - use it in data mode,
define "auto accels" form's property and if it's false
- find a way to create more meaningfull default names for widgets than button1, button2.
Maybe convert widget text (if available) using string2Identifier()?
@@ -375,7 +375,7 @@ HINT: removing Qt::WStaticContents from KexiTableView ctor fixed repaint problem
- tab widget: add color property for setting particular tab
- add a Scratchpad as in QtDesigner4, allows to drag&drop widgets between forms...
- Use RESET clause for TQ_PROPERTY, eg. RESET unsetPalette for paletteBackgroundColor.
- Then, use bool QMetaProperty::reset ( QObject * o ) const to reset property value in the propeditor.
+ Then, use bool QMetaProperty::reset ( TQObject * o ) const to reset property value in the propeditor.
- Autoforms: allow to define groups of fields so the fileds can be displayed with nice groupo boxes.
(e.g. http://www.glom.org/screenshots/glom_data_details.png)
This definition shgould be made during table design, so we can reuse groupping information also in
diff --git a/kexi/doc/dev/kexi_guidelines.txt b/kexi/doc/dev/kexi_guidelines.txt
index 7c2dfaba..cb1ea7b2 100644
--- a/kexi/doc/dev/kexi_guidelines.txt
+++ b/kexi/doc/dev/kexi_guidelines.txt
@@ -15,8 +15,8 @@ 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)
+- avoid memory copying (at low level try to store original char* data instead of TQString,
+ convert to TQString only on data displaying)
Idea 3
Directories layout:
diff --git a/kexi/doc/dev/naming_conventions.txt b/kexi/doc/dev/naming_conventions.txt
index 8d34f97a..7c167a77 100644
--- a/kexi/doc/dev/naming_conventions.txt
+++ b/kexi/doc/dev/naming_conventions.txt
@@ -97,8 +97,8 @@ to recognise who marked given fragment.
4. Indentation
4.1 We can use the rule as in the rest of KDE code.
example:
- QString objectName(); //wrong
- QString objectName(); //ok
+ TQString objectName(); //wrong
+ TQString objectName(); //ok
rule: dont use tabs between words.
4.2 To avoid many indentation levels, we can use:
diff --git a/kexi/doc/dev/sqlite_issues.txt b/kexi/doc/dev/sqlite_issues.txt
index 9e9ebf56..d6a96236 100644
--- a/kexi/doc/dev/sqlite_issues.txt
+++ b/kexi/doc/dev/sqlite_issues.txt
@@ -72,7 +72,7 @@ These checks should be made in KexiDB SQLite engine driver. In fact for each dri
should be allocated for given query independently from the same field allocated for table schema.
The first field object can disallow editing while the latter can allow editing (because it is
component of regular table).
- B) Also add method for QString KexiDB::Field that returns i18n'd message about the reasons
+ B) Also add method for TQString KexiDB::Field that returns i18n'd message about the reasons
of disallowing for editing given field in a context of given query.