Some more Motif work; included utils.h in fileconf.cpp (for wxGetHomeDir or something)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-09-22 21:15:56 +00:00
parent dcf40a56e7
commit 16c1f7f345
37 changed files with 2086 additions and 302 deletions

13
docs/motif/changes.txt Normal file
View File

@@ -0,0 +1,13 @@
wxMotif CHANGES
---------------
21/9/98
-------
Julian:
- Made makefiles for wxMotif source directory and minimal sample.
- First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
wxMenu, wxMenuItem, wxMenuBar

73
docs/motif/todo.txt Normal file
View File

@@ -0,0 +1,73 @@
wxMotif TODO
------------
Updated: 21/9/98
-------------------------------o-------------------------
- wxDCs
- wxBitmap, wxIcon, wxCursor, wxPalette. What about XPMs, can we assume
libxpm exists and use that? What about PNGs? Can we use gdk
as per wxGTK? Probably not.
- wxRegion
- Bitmap versions of widgets (wxBitmapButton etc.)
- wxCheckBoxList
- Remaining common widgets (wxListBox, wxRadioBox, wxRadioButton, wxChoice,
wxGauge, wxComboBox etc.). Use combobox.c code as bundled in wxWin 1.68.
- wxTextCtrl text file loading and saving.
- Scrolling in wxWindow.
- A generic version of wxNotebook that can be used in wxMotif and
other toolkits that don't have a native control. Perhaps use wxTab as a
starting point.
- MDI classes: use existing Motif widgets for this.
- Miscellaneous classes e.g. wxJoystick (identical to GTK's one for
Linux)
- Dialogs e.g. wxFileSelector. Use a native Motif wxMessageBox.
Some others need tidying, such as the colour and font selectors.
- Write generic wxDirDialog (directory selector).
- Use generic wxTreeCtrl, wxListCtrl: enhance these.
- Write a better generic wxToolBar class than wxToolBarSimple.
- Optimize colour management so we don't get clashes when e.g.
Netscape is running.
- Print/preview framework in print.cpp (see wxGTK's).
- Colour and font setting in widgets.
- wxSystemSettings
- wxTimer
- wxThread (hopefully, similar to wxGTK)
- Copy and paste, drag and drop. Use a standard X drag
and drop standard - see http://www.cco.caltech.edu/~jafl/xdnd/
- Optimize screen refresh for non-native widgets, e.g. wxWindow
created with Create(), using technique in flicker patch for 1.68
(see JACS for latest patch).
- Enhance event handling such that you override e.g. left-click
and unless you call the base OnMouseEvent, the click won't be
sent to the button. Required for Dialog Editor.
- Write makefiles for all samples.
- Create some samples for testing.
- Get Dialog Editor working under Motif.