More progress on wxMotif, incl. wxTreeCtrl/wxListCtrl beginning to work
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -60,4 +60,18 @@ More recently:
|
||||
- Debugged DrawEllipticArc (a ! in the wrong place).
|
||||
- Added SetClippingRegion( const wxRegion& region ).
|
||||
- Added wxPoint, wxSize, wxRect versions of SetSize etc.
|
||||
- Diagnosed but not yet cured a wxTreeCtrl bug (see todo.txt).
|
||||
- Diagnosed but not yet cured a wxTreeCtrl bug (see todo.txt).
|
||||
|
||||
4/12/98
|
||||
-------
|
||||
|
||||
- Got further with wxTreeCtrl, fixing wxWindow::Refresh on the way,
|
||||
and adding Clear(const wxRect&). Mainly the scrolling to sort out now,
|
||||
and inter-line spacing.
|
||||
- Fixed some problems with wxListCtrl espec. trying to call m_mainWin
|
||||
functions when it wasn't initialised. As with the wxTreeCtrl sample,
|
||||
removed usage of wxTextCtrl as a stream (doesn't seem to agree
|
||||
with gcc) and the sample is now partially working. Some work
|
||||
on the scrollbars is required.
|
||||
- wxListCtrl assumed that one of the args to GetClientSize can be NULL:
|
||||
corrected.
|
@@ -42,9 +42,7 @@ High Priority
|
||||
- Tidy dialogs such as the colour and font selectors.
|
||||
|
||||
- Use generic wxTreeCtrl, wxListCtrl: debug and enhance these.
|
||||
wxTreeCtrl: crashes in wxImageList::Draw because it assumes
|
||||
that wxBitmap == wxIcon, which is only true in wxGTK.
|
||||
So add wxDC::DrawBitmap and use this instead.
|
||||
We're close to having these working: mostly scrolling to work out.
|
||||
|
||||
- Find out why modal dialogs give a grab warning.
|
||||
|
||||
@@ -146,3 +144,5 @@ Low Priority
|
||||
|
||||
- Get ODBC classes and sample working.
|
||||
|
||||
- Work out why wxTextCtrl doesn't work as a stream buffer under
|
||||
gcc
|
@@ -18,6 +18,7 @@ wx200doc.zip Documentation source code (not required)
|
||||
wx200hlp.zip WinHelp documentation
|
||||
wx200pdf.zip Acrobat PDF documentation
|
||||
wx200htm.zip HTML documentation
|
||||
wx200vc.zip MS VC++ 5.0 project files
|
||||
|
||||
Unarchive the required files plus any optional documentation
|
||||
files into a suitable directory such as c:\wx. Alter your
|
||||
@@ -34,6 +35,19 @@ been tested lately.
|
||||
Visual C++ 4.0/5.0/6.0 compilation
|
||||
----------------------------------
|
||||
|
||||
Using project files:
|
||||
|
||||
1. Unarchive wx200vc.zip, the VC++ 5 project makefiles.
|
||||
2. Open src/wxvc.dsp, set Debug or Release configuration, and
|
||||
compile. This will produce lib/wxvc.lib or lib/wxvc_debug.lib.
|
||||
3. Open a sample project file, choose a configuration, and compile.
|
||||
Currently only the minimal and mdi samples have project files.
|
||||
To create others, copy the .dsp/.dsw files from the minimal
|
||||
sample and globally replace 'MinimalVC' and 'minimal' with
|
||||
suitable names. Add any other required source files.
|
||||
|
||||
Using makefiles:
|
||||
|
||||
1. Change directory to wx\src\msw. Type 'nmake -f makefile.nt' to
|
||||
make the wxWindows core library.
|
||||
2. Change directory to wx\samples and type 'nmake -f makefile.nt'
|
||||
|
Reference in New Issue
Block a user