09369edfd1
* NEW: Automically edit the 'Name' property when inserting a new control in a form. * BUG: Defining the startup class correctly updates the .startup file. * BUG: The form editor takes into account the new Border and Resizable Window properties correctly now. * BUG: Form editor window frame is drawn in a more polished way. * NEW: Automatically focus on the last edited property when the form editor selection changes. * BUG: Do not hide the debug window anymore when undocking the console. [INTERPRETER] * BUG: Getting information on a not yet loaded class does not crash the debugger anymore. [GB.FORM] * NEW: Workspace.Orientation is a new property that allows to define the orientation of the Workspace tabstrip. * BUG: Fix the DatePicker button drawing routine in ValueBox. [GB.GTK] * BUG: Windows cannot get focus anymore. [GB.NET.SMTP] * NEW: Write a Content-Length header inside MIME parts. [GB.QT] * NEW: Do not automatically transform non catched key events into accelator events. * BUG: Draw.Style.Panel() works correctly now. [GB.SETTINGS] * NEW: Settings.Read and Settings.Write now always store control settings in a slot based on the parent Window name, not the top-level one. git-svn-id: svn://localhost/gambas/trunk@1332 867c0c6c-44f3-4631-809d-bfa615b0a4ec
86 lines
3 KiB
Text
86 lines
3 KiB
Text
TODO list: always incomplete :-)
|
|
--------------------------------
|
|
|
|
COMPILER
|
|
|
|
- Compilation error must indicate the column, not only the line.
|
|
|
|
INTERPRETER
|
|
|
|
/**** NEIN!
|
|
- OPTIONAL arguments should takes any expression.
|
|
- Class synonymous.
|
|
- Array[x] when x < 0 should return Array[Array.Count - x]
|
|
- NEW Collection OF String
|
|
- A ConstCopy() function for arrays, and const arrays.
|
|
****/
|
|
|
|
- A stack that can grow dynamically.
|
|
- 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.
|
|
- An expression can begin with NEW.
|
|
- 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.
|
|
- NInstr() -> Count the number of patterns.
|
|
- If project compilation version < compiler version then => compile all
|
|
- Intercept all signals in Application_Signal.
|
|
- Structure support
|
|
- Callback support
|
|
- Sorting two or more arrays at the same time.
|
|
- A special method named _attach, to be warned when the parent object changes.
|
|
- MOD with floats.
|
|
|
|
DEVELOPMENT ENVIRONMENT
|
|
|
|
- Renaming controls in the IDE renames the source code too.
|
|
- Loading a "form" component needs calling InitControl on classes that are not
|
|
member of the list of controls.
|
|
- Bookmarks in editor.
|
|
- Manage Object properties in IDE.
|
|
- Put a language code in comments, and hide them as needed by the user.
|
|
- Make a visual control clipboard.
|
|
- Load/Save in menu editor.
|
|
- Manage svn conflicts.
|
|
- Specific dependencies in the packager.
|
|
- Generates an index control->component to suggest components for missing controls.
|
|
- Transform one control to another.
|
|
|
|
GUI RELATED STUFF
|
|
|
|
- Adds automatically the extension to the file in the save file dialog.
|
|
- Deleting a currently expanding item in TreeView crashes.
|
|
- A Settings property everywhere? Mmmfff... At least for ColumnView, GridView.
|
|
- Rewrite the HSplit/VSplit layout, and use a Integer[] or a Float[].
|
|
- A MultiContainer property.
|
|
- Enhance the Action class.
|
|
- Toolbutton should be able to put their text below and beside.
|
|
- TabStrip.TextFont property.
|
|
|
|
DESKTOP COMPONENT
|
|
|
|
- Detect an already running application.
|
|
- gb.desktop kwalletmanager support. And gnome ?
|
|
|
|
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.
|
|
|
|
COMPONENTS
|
|
|
|
- State of gb.corba ?
|
|
- Put version number in *.component files, and use it when making dependencies in the IDE.
|