projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add create-archive.py to wx source tree.
[wxWidgets.git]
/
docs
/
univ
/
porting.txt
1
Porting wxUniversal to a new platform
2
=====================================
3
4
wxUniv relies on the low level toolkit to work. Here are the classes which
5
this toolkit has to implement to support wxUniv (roughly sorted by importance
6
inside each category):
7
8
1. System classes
9
-----------------
10
11
wxApp
12
wxEventLoop
13
wxTimer
14
wxSystemSettings
15
16
2. Window classes
17
-----------------
18
19
wxWindow
20
wxTopLevelWindow
21
wxPopupWindow
22
23
3. GDI classes
24
--------------
25
26
wxDC
27
wxBitmap
28
wxBrush
29
wxColour
30
wxCursor
31
wxFont
32
wxIcon
33
wxPalette
34
wxPen
35
wxRegion
36
37
4. Miscellaneous
38
----------------
39
40
wxClipboard
41
wxDropSourceBase
42
wxDropTarget
43