1. wxWindow::IsTopLevel() added and documented
2. wxDynamicClass() added and documented 3. first Motif fixes (doesn't compile yet) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2693 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -523,9 +523,13 @@ typedef wxUint16 wxWord;
|
||||
#define wxWANTS_CHARS 0x00040000
|
||||
|
||||
// Orientations
|
||||
#define wxHORIZONTAL 0x01
|
||||
#define wxVERTICAL 0x02
|
||||
#define wxBOTH (wxVERTICAL|wxHORIZONTAL)
|
||||
enum wxOrientation
|
||||
{
|
||||
wxHORIZONTAL = 0x01,
|
||||
wxVERTICAL = 0x02,
|
||||
wxBOTH = (wxVERTICAL | wxHORIZONTAL)
|
||||
};
|
||||
|
||||
#define wxCENTER_FRAME 0x04 /* centering into frame rather than screen */
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user