]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/window.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/window.h
3 // Purpose: wxWindow class
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
19 // [at least] some version of Windows send extra mouse move messages after
20 // a mouse click or a key press - to temporarily fix this problem, set the
23 // a better solution should be found later...
24 #define wxUSE_MOUSEEVENT_HACK 0
26 // ---------------------------------------------------------------------------
27 // wxWindow declaration for Palm
28 // ---------------------------------------------------------------------------
30 class WXDLLEXPORT wxWindowPalm
: public wxWindowBase
33 wxWindowPalm() { Init(); }
35 wxWindowPalm(wxWindow
*parent
,
37 const wxPoint
& pos
= wxDefaultPosition
,
38 const wxSize
& size
= wxDefaultSize
,
40 const wxString
& name
= wxPanelNameStr
)
43 Create(parent
, id
, pos
, size
, style
, name
);
46 virtual ~wxWindowPalm();
48 bool Create(wxWindow
*parent
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
53 const wxString
& name
= wxPanelNameStr
);
55 // implement base class pure virtuals
56 virtual void SetTitle( const wxString
& title
);
57 virtual wxString
GetTitle() const;
62 virtual bool Show( bool show
= true );
63 virtual bool Enable( bool enable
= true );
65 virtual void SetFocus();
66 virtual void SetFocusFromKbd();
68 virtual bool Reparent(wxWindowBase
*newParent
);
70 virtual void WarpPointer(int x
, int y
);
72 virtual void Refresh( bool eraseBackground
= true,
73 const wxRect
*rect
= NULL
);
74 virtual void Update();
75 virtual void Freeze();
78 virtual bool SetCursor( const wxCursor
&cursor
);
79 virtual bool SetFont( const wxFont
&font
);
81 virtual int GetCharHeight() const;
82 virtual int GetCharWidth() const;
83 virtual void GetTextExtent(const wxString
& string
,
85 int *descent
= (int *) NULL
,
86 int *externalLeading
= (int *) NULL
,
87 const wxFont
*theFont
= (const wxFont
*) NULL
)
90 #if wxUSE_MENUS_NATIVE
91 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
92 #endif // wxUSE_MENUS_NATIVE
94 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
95 int range
, bool refresh
= true );
96 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
97 virtual int GetScrollPos( int orient
) const;
98 virtual int GetScrollThumb( int orient
) const;
99 virtual int GetScrollRange( int orient
) const;
100 virtual void ScrollWindow( int dx
, int dy
,
101 const wxRect
* rect
= (wxRect
*) NULL
);
103 virtual bool ScrollLines(int lines
);
104 virtual bool ScrollPages(int pages
);
106 #if wxUSE_DRAG_AND_DROP
107 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
108 #endif // wxUSE_DRAG_AND_DROP
110 // Accept files for dragging
111 virtual void DragAcceptFiles(bool accept
);
113 #ifndef __WXUNIVERSAL__
114 // Native resource loading (implemented in src/Palm/nativdlg.cpp)
115 // FIXME: should they really be all virtual?
116 virtual bool LoadNativeDialog(wxWindow
* parent
, wxWindowID
& id
);
117 virtual bool LoadNativeDialog(wxWindow
* parent
, const wxString
& name
);
118 wxWindow
* GetWindowChild1(wxWindowID id
);
119 wxWindow
* GetWindowChild(wxWindowID id
);
120 #endif // __WXUNIVERSAL__
123 // install and deinstall a system wide hotkey
124 virtual bool RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
);
125 virtual bool UnregisterHotKey(int hotkeyId
);
126 #endif // wxUSE_HOTKEY
128 // implementation from now on
129 // --------------------------
134 virtual WXWINHANDLE
GetWinHandle() const { return m_handle
; }
135 virtual WXWidget
GetHandle() const { return GetWinHandle(); }
140 void OnEraseBackground(wxEraseEvent
& event
);
141 void OnPaint(wxPaintEvent
& event
);
144 wxWindow
*FindItem(long id
) const;
145 wxWindow
*FindItemByWinHandle(WXWINHANDLE handle
, bool controlOnly
= false) const;
147 // Palm only: true if this control is part of the main control
148 virtual bool ContainsWinHandle(WXWINHANDLE
WXUNUSED(handle
)) const { return false; };
150 // translate wxWidgets style flags for this control into the Windows style
151 // and optional extended style for the corresponding native control
153 // this is the function that should be overridden in the derived classes,
154 // but you will mostly use PalmGetCreateWindowFlags() below
155 virtual WXDWORD
PalmGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const ;
157 // get the Palm window flags corresponding to wxWidgets ones
159 // the functions returns the flags (WS_XXX) directly and puts the ext
160 // (WS_EX_XXX) flags into the provided pointer if not NULL
161 WXDWORD
PalmGetCreateWindowFlags(WXDWORD
*exflags
= NULL
) const
162 { return PalmGetStyle(GetWindowStyle(), exflags
); }
164 // translate wxWidgets coords into Windows ones suitable to be passed to
167 // returns true if non default coords are returned, false otherwise
168 bool PalmGetCreateWindowCoords(const wxPoint
& pos
,
171 int& w
, int& h
) const;
173 // creates the window of specified Windows class with given style, extended
174 // style, title and geometry (default values
176 // returns true if the window has been created, false if creation failed
177 bool PalmCreate(const wxChar
*wclass
,
178 const wxChar
*title
= NULL
,
179 const wxPoint
& pos
= wxDefaultPosition
,
180 const wxSize
& size
= wxDefaultSize
,
182 WXDWORD exendedStyle
= 0);
184 #ifndef __WXUNIVERSAL__
185 // Create an appropriate wxWindow from a WinHandle
186 virtual wxWindow
* CreateWindowFromWinHandle(wxWindow
* parent
, WXWINHANDLE handle
);
188 // Make sure the window style reflects the WinHandle style (roughly)
189 virtual void AdoptAttributesFromWinHandle();
190 #endif // __WXUNIVERSAL__
192 // Setup background and foreground colours correctly
193 virtual void SetupColours();
195 // ------------------------------------------------------------------------
196 // internal handlers for Palm messages: all handlers return a boolean value:
197 // true means that the handler processed the event and false that it didn't
198 // ------------------------------------------------------------------------
200 // scroll event (both horizontal and vertical)
201 virtual bool PalmOnScroll(int orientation
, WXWORD nSBCode
,
202 WXWORD pos
, WXWINHANDLE control
);
204 // virtual function for implementing internal idle
206 virtual void OnInternalIdle() ;
210 WXWINHANDLE m_handle
;
213 WXFORMPTR
GetFormPtr();
214 void SetFormPtr(WXFORMPTR FormPtr
);
216 // additional (Palm specific) flags
217 bool m_mouseInWindow
:1;
218 bool m_lastKeydownProcessed
:1;
220 // the size of one page for scrolling
224 #if wxUSE_MOUSEEVENT_HACK
225 // the coordinates of the last mouse event and the type of it
228 int m_lastMouseEvent
;
229 #endif // wxUSE_MOUSEEVENT_HACK
231 WXHMENU m_hMenu
; // Menu, if any
233 // implement the base class pure virtuals
234 virtual void DoClientToScreen( int *x
, int *y
) const;
235 virtual void DoScreenToClient( int *x
, int *y
) const;
236 virtual void DoGetPosition( int *x
, int *y
) const;
237 virtual void DoGetSize( int *width
, int *height
) const;
238 virtual void DoGetClientSize( int *width
, int *height
) const;
239 virtual void DoSetSize(int x
, int y
,
240 int width
, int height
,
241 int sizeFlags
= wxSIZE_AUTO
);
242 virtual void DoSetClientSize(int width
, int height
);
244 virtual void DoCaptureMouse();
245 virtual void DoReleaseMouse();
247 // move the window to the specified location and resize it: this is called
248 // from both DoSetSize() and DoSetClientSize() and would usually just call
249 // ::MoveWindow() except for composite controls which will want to arrange
250 // themselves inside the given rectangle
251 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
254 virtual void DoSetToolTip( wxToolTip
*tip
);
256 // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in
257 // comctl32.dll in our code -- see the function body for more info)
258 bool HandleTooltipNotify(WXUINT code
,
260 const wxString
& ttip
);
261 #endif // wxUSE_TOOLTIPS
264 // common part of all ctors
267 // the (non-virtual) handlers for the events
268 bool HandleMove(int x
, int y
);
269 bool HandleMoving(wxRect
& rect
);
270 bool HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
);
272 // list of disabled children before last call to our Disable()
273 wxWindowList
*m_childrenDisabled
;
275 // number of calls to Freeze() minus number of calls to Thaw()
276 unsigned int m_frozenness
;
278 DECLARE_DYNAMIC_CLASS(wxWindowPalm
)
279 DECLARE_NO_COPY_CLASS(wxWindowPalm
)
280 DECLARE_EVENT_TABLE()
283 // ----------------------------------------------------------------------------
285 // ----------------------------------------------------------------------------
287 // notice that this hash must be defined after wxWindow declaration as it
288 // needs to "see" its dtor and not just forward declaration
291 // pseudo-template WinHandle <-> wxWindow hash table
292 WX_DECLARE_HASH(wxWindowPalm
, wxWindowList
, wxWinHashTable
);
294 extern wxWinHashTable
*wxWinHandleHash
;