2003-03-16 13:19:24 +00:00
|
|
|
Enhancements for wxWindows 3.0
|
|
|
|
==============================
|
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
This table contains the brief summary of the issues below. Priority and
|
|
|
|
Difficulty are values from 1 to 10 with 1 being the least important/difficult
|
|
|
|
and 10 the most.
|
|
|
|
|
|
|
|
Item Prio Diff
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
Namespaces 8 6
|
|
|
|
STLization 10 8
|
|
|
|
Making code exception-friendly 8 10
|
|
|
|
Native RTTI 7 7
|
|
|
|
TRUE/true 9 1
|
|
|
|
|
2003-03-16 13:19:24 +00:00
|
|
|
|
2003-03-16 10:13:20 +00:00
|
|
|
C++ Features
|
|
|
|
============
|
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- Namespaces:
|
|
|
|
We want to have all wxWindows identifiers in "wx" namespace but provide
|
|
|
|
typedefs/#defines for backwards compatibility. This can be done easily
|
|
|
|
for the classes and the only real problem are the enums as they would
|
|
|
|
all have to be duplicated at both the global scope (with "wx" prefix) and
|
|
|
|
in wx namespace (without it)
|
|
|
|
|
|
|
|
- STLization
|
|
|
|
This involves providing optional wxString implementation using std::string
|
|
|
|
and doing the same for all our containers with the exception of wxHashMap
|
|
|
|
which should simply be rewritten using templates (but keeping the old
|
|
|
|
version for backwards compatibility -- ideally wx 3.0 would still be usable
|
|
|
|
without templates, even if not all of its features would be available then)
|
|
|
|
|
|
|
|
- Exceptions
|
|
|
|
We are not going to use exceptions in wxWindows itself but our code should
|
|
|
|
become exception safe. This is a very difficult task as it means that no
|
|
|
|
resource allocations (including memory, files, whatever) should be done
|
|
|
|
without using a smart pointer-like object to store the result as it is the
|
|
|
|
only way to prevent resource leaks in presence of exceptions
|
|
|
|
|
|
|
|
- Real RTTI
|
|
|
|
Optionally use the real RTTI instead of wx emulation of it. Keep the
|
|
|
|
current stuff for backwards compatibility.
|
|
|
|
|
|
|
|
- Complete replacing TRUE/FALSE with true/false
|
|
|
|
Trivial
|
|
|
|
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
Core
|
|
|
|
====
|
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- use wxEventLoop in all builds
|
|
|
|
wxApp and wxDialog should use wxEventLoop objects (the exact class can be
|
|
|
|
customized by user code by overriding some wxApp::CreateEventLoop())
|
|
|
|
instead of duplicating the same code
|
|
|
|
|
|
|
|
- remove wxCOMPATIBILITY (1.X)
|
|
|
|
At least WXWIN_COMPATIBILITY and maybe WXWIN_COMPATIBILITY_2 code should be
|
|
|
|
removed from the library. wxDEPRECATED() should be used with everything
|
|
|
|
inside WXWIN_COMPATIBILITY_2_2. The stuff inside WXWIN_COMPATIBILITY_2_4
|
|
|
|
probably should not be deprecated (yet?) because this would give thousands
|
|
|
|
of warnings for the existing code.
|
|
|
|
|
|
|
|
- Modularization/Build System
|
|
|
|
Candidates for components:
|
|
|
|
+ contrib widgets (and maybe some of the ones currently in the core)
|
|
|
|
+ wxHTML
|
|
|
|
+ network stuff
|
|
|
|
+ printing (?)
|
|
|
|
+ ODBC classes
|
|
|
|
+ ...
|
|
|
|
|
|
|
|
- Project File Generation
|
|
|
|
We need a (GUI) tool to generate the project/makefiles for all supported
|
|
|
|
platforms/compilers. Not sure if it should be used for the library itself
|
|
|
|
(would be nice to have something like "make menuconfig" for Linux kernel
|
|
|
|
which allows you to navigate easily amon all of the configure/setup.h
|
|
|
|
options but there is a problem with distributing such tool as it can't be
|
|
|
|
compiled by the user because it is needed before the library is built) but
|
|
|
|
we definitely need it for the users makefiles.
|
|
|
|
|
|
|
|
- Properties/Member-Metadata, 2-Step Init with virtual create
|
|
|
|
TODO: still unclear what do we need exactly
|
|
|
|
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
=============
|
|
|
|
|
2003-03-16 13:16:52 +00:00
|
|
|
- The possibility of moving doc into header files with tool
|
|
|
|
support.
|
|
|
|
- Detailed review of doc accuracy.
|
2003-03-16 10:13:20 +00:00
|
|
|
- wxDC : Precise definition of default/initial state.
|
2003-03-16 13:16:52 +00:00
|
|
|
- wxDC : Pixelwise definition of operations (e.g. last point of a
|
|
|
|
line not drawn).
|
2003-03-17 16:14:01 +00:00
|
|
|
- Events:
|
|
|
|
For all controls state clearly when calling a member function results in an
|
|
|
|
event being generated and when it doesn't.
|
|
|
|
- Update the coding standards guide
|
|
|
|
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
wxEvents
|
|
|
|
========
|
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- Change Idle Handling
|
|
|
|
Current Implementation is using too many CPU cycles
|
2003-03-16 10:13:20 +00:00
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- Loose Coupling Event-Source Event-Sink
|
|
|
|
kind of the NextStep/C# very performant coupling, exposing events via
|
|
|
|
Metadata
|
2003-03-16 10:13:20 +00:00
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- Add Lazy Init of Eventtables
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
Modules/Plugins
|
|
|
|
===============
|
|
|
|
|
|
|
|
Architecture
|
|
|
|
------------
|
|
|
|
|
2003-03-16 13:16:52 +00:00
|
|
|
We aim to arrive at a lazy initializiation of modules only when they are first
|
|
|
|
needed. Dependency information between modules is needed. Dynamic Plug-In
|
|
|
|
loading and unloading must be compatible with that.
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
wxUniversal
|
|
|
|
===========
|
|
|
|
|
2003-03-16 13:16:52 +00:00
|
|
|
- Renderers within native ports.
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
wxPrinting
|
|
|
|
==========
|
|
|
|
|
2003-03-16 13:16:52 +00:00
|
|
|
- Page preflighting capabilities in order to determine number
|
|
|
|
of pages.
|
|
|
|
- Preview UI enhancement.
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
wxStaticBox
|
|
|
|
===========
|
|
|
|
|
2003-03-16 13:16:52 +00:00
|
|
|
Hide the platform problems (GTK: 'children' must be siblings) in encapsulation
|
|
|
|
in order to avoid problems on ports where the hierarchy must be
|
|
|
|
'correct'.
|
2003-03-16 10:13:20 +00:00
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
wxMiscellaneous
|
|
|
|
===============
|
2003-03-16 10:13:20 +00:00
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
- wxDC Support for point to char-position with text rendering
|
|
|
|
- wxLocale Extension (eg Currency)
|
|
|
|
- wxStreams review
|
|
|
|
- wxURL?
|
2003-03-16 10:13:20 +00:00
|
|
|
|
|
|
|
|
2003-03-17 16:14:01 +00:00
|
|
|
Version: $Id$
|