wx.1.txt
changeset 4 3ecde21e0834
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wx.1.txt	Wed Dec 31 12:09:04 2008 +0100
@@ -0,0 +1,17 @@
+wxWindow: Mother of all visible GUI objects
+wxFrame: A wm window (not a simple wxWindow) resizable by the user, with a title bar
+wxDialog: Similar to wxFrame, but can be modal.
+wxPanel: A wxWindow where the controls (other wxWindows) are placed. Like a
+Dialog placeable *not only* in a new wm window.
+
+Sizers
+==========
+Any wxWindow can have a sizer: wxWindow::SetSizer().
+
+Features:
+- Border: pixels around each internal control
+- Minimal Size: set by each internal control
+- Alignment:
+- Stretch factor: (specified as 'proportion' to some sizers)
+  - 0 : always minimum space for each control.
+  - >1 : proportional size related to the sum of all control stretch factors.