File: TODO

package info (click to toggle)
gambas3 3.1.1-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 44,632 kB
  • sloc: ansic: 94,949; cpp: 76,426; sh: 19,667; makefile: 1,180; cs: 342; perl: 184; xml: 34
file content (83 lines) | stat: -rw-r--r-- 2,948 bytes parent folder | download
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
TODO list: always incomplete :-)
--------------------------------

COMPILER

- Compilation error must always indicate the column, not sometimes only the line.
- Warn for unused local or private variables.

INTERPRETER

- A special syntax to make variable writable once only (for controls variables).
- Add global parameters for each component. Or no, a global configuration repository, to
  tell, for example, which socket the mysql component must use...
- Make objects printable, with a "_print" hidden method or something else.
- Make objects writable and readable to streams.
- Perl regexp with the MATCH operator.
- Type mismatch error: print the mismatched values.
- Special runtime debugging commands for dumping all the variables for example.
- A new debugging compilation option to only put line number information in the output files.
- If project compilation version < compiler version then => compile all
- Catch kill signal to remove temporary files.
- Sorting two or more arrays at the same time.
- MOD with floats.
- Make the error information associated with the current stack frame.
- Timer.TimeLeft.
- OPEN ... LOCK. True lock while reading/writing a file.
- select() system call can fail if a watched file descriptor is in error. But how can I know
  the offending file descritor? Maybe by using poll() instead.

DEBUGGER

- Add/Remove a breakpoint without pausing the program!

DEVELOPMENT ENVIRONMENT

- Bookmarks in editor.
- Manage Object properties in IDE.
- Make a visual control clipboard.
- Generates an index control->component to suggest components for missing controls.
- Be able to open a .tar.gz project, and compress it back when the project is closed.
- Conditional breakpoints.
- Define a control order somewhere for the toolbox.
- An option to interpret "." and "," when reading float in a CSV import.
- Class template files.
- Redesign the source code navigator (F2 and SHIFT+F2).
- TODO / FIXME keywords in a tab.

GUI RELATED STUFF

- Deleting a currently expanding item in TreeView crashes.
- ValueBox.Value should be visible in the IDE.
- GridView automatic column resizing by code in gb.gtk, and in gb.qt.
- Moveable tabs.
- ListView and GridView selection interface should be the same.
- More clever vertical toolbar.

DESKTOP COMPONENT

- Detect an already running application.

DATABASE COMPONENT

- Add Views support in database component.
- Changeable client Charset in database driver.
- Returns the number of records affected by a query.
- A new database driver model.
- Copy a result line into another one.
- Use SAVEPOINT in postgresql to simulate nested transactions.

DOCUMENTATION WIKI

- Mass rename command.
- Fix last changes: only those in one language.
- A documentation page to explain the Gambas syntax.
- User comments on documentation pages.

NETWORK COMPONENT

- Do a big cleanup.

COMPONENTS

- Put version number in *.component files, and use it when making dependencies in the IDE.