            wxCmm version 0.1a Jul 2003

Classes and Methods List
========================

        Available classes and methods provided by wxCmm currentlyG
        (":" means "derived from")

    wxObject
    --------
        
                wxObject                ()
        dword   GetClassName            ()
        void    CopyObject              (dword dest)
        dword   IsKindOf                (dword ClassId) 


    wxColor : wxObject
    ------------------
        
                wxColor                 (dword r,g,b)
                wxColorRef              (dword colorRef)
                wxSystemColor           (dword colorName) 


    wxPoint : wxObject
    ------------------
                
                wxPoint                 (long x, y)


    wxSize : wxObject
    -----------------

                wxSize                  (long width, height)
        long    GetWidth                ()
        long    GetHeight               ()
        void    SetWidth                (dword width)
        void    SetHeight               (dword height)


    wxMenu : wxObject
    -----------------

                wxMenu                  ()
        void    Append                  (dword id,item)
        void    AppendSeparator         ()
        void    Check                   (dword id,check)
        dword   IsChecked               (dword id)


    wxMenuBar : wxObject
    --------------------

                wxMenuBar               ()
                wxMenuBarFromResource   (dword resourceMenuId)
        void    Append                  (dword wxMenuAddr,title)
        dword   GetMenu                 (dword pos)


    wxAcceleratorEntry
    ------------------
                
                Set                     (dword flags,keyCode,command)


    wxAcceleratorTableBase : wxObject
    ---------------------------------

                wxAcceleratorTable      (dword n,entries)
                wxAcceleratorTableFromeResource (dword id)


    wxWindow : wxObject
    -------------------

                wxWindow                ()
        void    CaptureMouse            ()
        void    Centre                  ()
        void    Clear                   ()
        void    ClientToScreen          (dword wxPointAddr)
        dword   ClientToScreenX         (dword x)
        dword   ClientToScreenY         (dword y)
        void    Destroy                 ()
        dword   GetBackgroundColor      ()
        dword   GetBackgroundColorRef   ()
        void    GetClientSize           (dword wxSizeAddr)
        dword   GetClientSizeX          ()
        dword   GetClientSizeY          ()
        dword   GetParent               ()
        void    GetPosition             (dword wxPointAddr)
        dword   GetPositionX            ()
        dword   GetPositionY            ()
        void    GetSize                 (dword wxSizeAddr)
        dword   GetSizeX                ()
        dword   GetSizeY                ()
        dword   GetTitle                ()
        dword   GetWindowStyle          ()
        dword   GetWindowStyleFlag      ()
        void    Move                    (dword x,y)
        void    MoveXY                  (dword wxPointAddr)
        void    ReleaseMouse            ()
        void    ScreenToClient          (dword wxPointAddr)
        dword   ScreenToClientX         (dword x)
        dword   ScreenToClientY         (dword y)
        void    SetAcceleratorTable     (dword wxAcceleratorTableAddr)
        void    SetBackgroundColor      (dword wxColorAddr)
        void    SetBackgroundColorRef   (dword colorRef)
        void    SetDimensions           (dword x,y,w,h)
        void    SetFocus                ()
        void    SetHWnd                 (dword hWnd)
        void    SetSize                 (dword width,height)
        void    SetSizeXY               (dword wxSizeAddr)
        void    SetTitle                (dword Title)
        void    SetWindowStyle          (dword styleFlag)
        void    SetWindowStyleFlag      (dword styleFlag)
        dword   Show                    (bool show)


    wxFrame : wxWindow
    ------------------

                wxFrame                 (dword parent,id,name)
                wxFrameFullArgs         (dword parent,id,name,pos,size,style)
        void    SetMenuBar              (dword wxMenuBarAddr)
        void    SetIconFromResource     (dword iconId)
        void    SetStatusBar            (dword wxStatusBarAddr)
        dword   CreateStatusBar         (dword number,style)
        void    SetStatusText           (dword text,i)
        void    SetStatusWidths         (dword number, aWidth)
        dword   GetStatusBar            ()


    wxDialog : wxWindow
    -------------------
        
                wxDialog                (dword parent,id,name)
                wxDialogFullArgs        (dword parent,id,name,pos,size,style)
                wxDialogFromResource    (dword parent,resourceId)
        dword   Show                    (bool show)
        dword   ShowModal               ()
        void    EndModal                (dword returnCode)
        void    SetReturnCode           (dword returnCode)
        dword   GetControlFromId        (dword id)


    wxStatusBar : wxWindow
    ----------------------

                wxStatusBar             (dword parent,id,style)
        void    SetStatusWidths         (dword number,aWidth)
        void    SetFieldsCount          (dword number,aWidth)
        void    SetStatusText           (dword text,i)


    wxControl : wxWindow
    --------------------

                wxControl               (dword parent)


    wxStaticText : wxControl
    ------------------------

                wxStaticText            (dword parent,id,label)
                wxStaticTextFullArgs    (dword parent,id,label,pos,size,style)
                wxStaticTextFromControl (dword control)
        void    SetLabel                (dword label)
        dword   GetLabel                ()


    wxButton : wxControl
    --------------------

                wxButton                (dword parent,id,label)
                wxButtonFullArgs        (dword parent,id,label,pos,size,style)
                wxButtonFromControl     (dword control)
        void    SetLabel                (dword label)
        dword   GetLabel                ()


    wxCheckBoxBase : wxControl
    --------------------------

                wxCheckBox              (dword parent,id,label)
                wxCheckBoxFullArgs      (dword parent,id,label,pos,size,style)
                wxCheckBoxFromControl   (dword control)
        int     GetValue                ()
        int     IsChecked               ()
        void    SetValue                (dword value)


	wxTextCtrl : wxControl
	----------------------

				wxTextCtrl				(dword parent,id,value)
				wxTextCtrlFullArgs		(dword parent,id,value,pos,size,style)
				wxTextCtrlFromControl	(dword control)
		void	SetValue				(dword value)
		dword	GetValue				()
		void	Clear					()
		void	AppendText				(dword text)
		void	Copy					()
		void	Cut						()
		void	Paste					()
		void	SetWindowStyle			(dword style)
		void	SetWindowStyleFlag		(dword flag)
		void	SetSelection			(dword from,to)
		void	GetSelection			(dword from,to)
		dword	GetStringSelection		()
		dword	GetInsertionPoint		()
		void	SetInsertionPoint		(dword point)
		dword	GetLastPosition			()
		void	SetInsertionPointEnd	()
		void	SetMaxLength			(dword length)
		dword	IsModified				()
		void	DiscardEdit				()
		dword	LoadFile				(dword filePath)
		dword	SaveFile				(dword filePath)
			

    wxDC : wxObject
    ---------------

                wxDC                    ()
        void    SetPen                  (dword wxPenAddr)
        void    DrawLine                (dword x1,y1,x2,y2)
        void    Blit                    (dword xdest,ydest,width,height,source,xsrc,ysrc)
        void    SetBackground           (dword wxBrushAddr)
        void    SetBackgroundColor      (dword wxColorAddr)
        void    SetBackgroundColorRef   (dword colorRef)
        void    GetSize                 (dword *x,dword *y)
        dword   GetSizeX()
        dword   GetSizeY()
        void    Clear()


    wxMemoryDC : wxDC
    -----------------
        
                wxMemoryDC              ()
        void    SelectObject            (dword wxBitmapAddr)


    wxPaintDC : wxDC
    ----------------

                wxPaintDC               (dword wxWindowAddr)


    wxClientDC : wxDC
    -----------------

                wxClientDC              (dword wxWindowAddr)


    wxWindowDC : wxDC
    -----------------
                
                wxWindowDC              (dword wxWindowAddr)


    wxGDIObject : wxObject
    ----------------------
            
                wxGDIObject             ()


    wxBrush : wxGDIObject
    ---------------------

                wxBrush                 (dword wxColorAddr,style)
                wxBrushFromColorRef     (dword colorRef,style)
        dword   GetColor                ()
        dword   GetColorRef             ()
        void    SetColor                (dword color)
        void    SetColorRef             (dword colorRef)
        dword   GetStyle                ()
        void    SetStyle                (dword style)


    wxPen : wxGDIObject
    -------------------

                wxPen                   (dword wxColorAddr,width,style)
                wxPenFromColorRef       (dword colorRef,width,style)
        dword   GetWidth                ()
        dword   GetColor                ()
        dword   GetColorRef             ()
        dword   GetStyle                ()
        void    SetWidth                (dword width)
        void    SetColor                (dword wxColorAddr)
        void    SetColorRef             (dword colorRef)
        void    SetStyle                (dword style)


    wxBitmap : wxGDIObject
    ----------------------
                
                wxBitmap                (dword data,width,height,depth)
                wxEmptyBitmap           (dword width,height)
                wxBitmapFromResource    (dword id,type)
                wxBitmapFromFile        (dword filePath,type)
        long    GetWidth                ()
        long    GetHeight               ()


    wxColorData : wxObject
    ----------------------

                wxColorData             ()
        void    SetChooseFull           (dword flag)
        dword   GetChooseFull           ()
        void    SetColor                (dword wxColorAddr)
        void    SetColorRef             (dword colorRef)
        dword   GetColor()
        dword   GetColorRef()
        void    SetCustomColor          (dword index,wxColorAddr)
        void    SetCustomColorRef       (dword index,colorRef)  
        dword   GetCustomColor          (dword index)
        dword   GetCustomColorRef       (dword index)


    wxColorDialog : wxObject
    ------------------------

                wxColorDialog           (dword parent,wxColorDataAddr)
        dword   GetColorData            ()
        dword   ShowModal               ()


    wxFileDialog : wxObject
    -----------------------

                wxFileDialog            (dword parent,message,defaultDir,defaultFile,wildcard,style)
        dword   ShowModal               ()
        dword   GetPath                 ()
        dword   GetPathDir              ()
        dword   GetFilename             ()
        void    GetFilenames            (dword stringList)
        void    SetDirectory            (dword directory)
        dword   GetDirectory            ()
        void    SetFilterIndex          (int filterIndex)
        int     GetFilterIndex          ()
        void    SetMessage              (dword message)
        dword   GetMessage              ()
        void    SetFilename             (dword setFilename)
        void    SetStyle                (dword style)
        dword   GetStyle                ()


    wxMessageDialog : wxObject
    --------------------------

                wxMessageDialog         (dword parent,message,caption,style)
        dword   ShowModal()

        dword wxMessageBox(dword parent,message,caption,style)
        ps. This is a function to use wxMessageDialog easily.


    wxList : wxObject
    -----------------

                wxList                  (dword size)
        dword   Append                  (dword object)
        dword   IndexOfFrom             (dword index, key)
        dword   IndexOf                 (dword key)
        dword   Find                    (dword key)
        dword   FindNext                (dword addr, key)
        dword   Item                    (dword index)
        dword   GetKey                  (dword index)
        dword   DeleteNode              (dword index)
        dword   Clear                   ()
        dword   GetCount                ()


    wxTimer : wxObject
    ------------------

                wxTimer                 (dword owner,id)
        void    Start                   (dword msec,oneShot)
        void    Stop                    ()


    wxEvent : wxObject
    ------------------

                wxEvent                 (dword object,message,wparam,lparam)
        dword   GetEventObject          ()
        dword   GetEventType            ()
        dword   GetId                   ()
        int     GetX                    ()
        int     GetY                    ()
        dword   LeftIsDown              ()
        dword   RightIsDown             ()
        dword   MiddleIsDown            ()
