]> git.saurik.com Git - wxWidgets.git/blob - src/msw/wince/tbarwce.cpp
Added wxDialog::GetToolBar for PocketPC
[wxWidgets.git] / src / msw / wince / tbarwce.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/wince/tbarwce.cpp
3 // Purpose: wxToolBar for Windows CE
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2003-07-12
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "tbarwce.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/frame.h"
33 #include "wx/log.h"
34 #include "wx/intl.h"
35 #include "wx/dynarray.h"
36 #include "wx/settings.h"
37 #include "wx/bitmap.h"
38 #include "wx/dcmemory.h"
39 #include "wx/control.h"
40 #endif
41
42 // Use the WinCE-specific toolbar only if we're either compiling
43 // with a WinCE earlier than 4, or we wish to emulate a PocketPC-style UI
44 #if wxUSE_TOOLBAR && wxUSE_TOOLBAR_NATIVE && (_WIN32_WCE < 400 || defined(__POCKETPC__) || defined(__SMARTPHONE__))
45
46 #include "wx/toolbar.h"
47
48 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
49 #include "malloc.h"
50 #endif
51
52 #include "wx/msw/private.h"
53 #include <windows.h>
54 #include <windowsx.h>
55 #include <tchar.h>
56 #include <ole2.h>
57 #include <shellapi.h>
58 #include <commctrl.h>
59 #if defined(WINCE_WITHOUT_COMMANDBAR)
60 #include <aygshell.h>
61 #endif
62 #include "wx/msw/wince/missing.h"
63
64 #include "wx/msw/winundef.h"
65
66 #if !defined(__SMARTPHONE__)
67
68 ///////////// This implementation is for PocketPC.
69 ///////////// See later for the Smartphone dummy toolbar class.
70
71 // ----------------------------------------------------------------------------
72 // Event table
73 // ----------------------------------------------------------------------------
74
75 IMPLEMENT_DYNAMIC_CLASS(wxToolMenuBar, wxToolBar)
76
77 BEGIN_EVENT_TABLE(wxToolMenuBar, wxToolBar)
78 END_EVENT_TABLE()
79
80 // ----------------------------------------------------------------------------
81 // private classes
82 // ----------------------------------------------------------------------------
83
84 class wxToolMenuBarTool : public wxToolBarToolBase
85 {
86 public:
87 wxToolMenuBarTool(wxToolBar *tbar,
88 int id,
89 const wxString& label,
90 const wxBitmap& bmpNormal,
91 const wxBitmap& bmpDisabled,
92 wxItemKind kind,
93 wxObject *clientData,
94 const wxString& shortHelp,
95 const wxString& longHelp)
96 : wxToolBarToolBase(tbar, id, label, bmpNormal, bmpDisabled, kind,
97 clientData, shortHelp, longHelp)
98 {
99 m_nSepCount = 0;
100 m_bitmapIndex = -1;
101 }
102
103 wxToolMenuBarTool(wxToolBar *tbar, wxControl *control)
104 : wxToolBarToolBase(tbar, control)
105 {
106 m_nSepCount = 1;
107 m_bitmapIndex = -1;
108 }
109
110 virtual void SetLabel(const wxString& label)
111 {
112 if ( label == m_label )
113 return;
114
115 wxToolBarToolBase::SetLabel(label);
116
117 // we need to update the label shown in the toolbar because it has a
118 // pointer to the internal buffer of the old label
119 //
120 // TODO: use TB_SETBUTTONINFO
121 }
122
123 // set/get the number of separators which we use to cover the space used by
124 // a control in the toolbar
125 void SetSeparatorsCount(size_t count) { m_nSepCount = count; }
126 size_t GetSeparatorsCount() const { return m_nSepCount; }
127
128 void SetBitmapIndex(int idx) { m_bitmapIndex = idx; }
129 int GetBitmapIndex() const { return m_bitmapIndex; }
130
131 private:
132 size_t m_nSepCount;
133 int m_bitmapIndex;
134 };
135
136
137 // ============================================================================
138 // implementation
139 // ============================================================================
140
141 // ----------------------------------------------------------------------------
142 // wxToolBarTool
143 // ----------------------------------------------------------------------------
144
145 wxToolBarToolBase *wxToolMenuBar::CreateTool(int id,
146 const wxString& label,
147 const wxBitmap& bmpNormal,
148 const wxBitmap& bmpDisabled,
149 wxItemKind kind,
150 wxObject *clientData,
151 const wxString& shortHelp,
152 const wxString& longHelp)
153 {
154 return new wxToolMenuBarTool(this, id, label, bmpNormal, bmpDisabled, kind,
155 clientData, shortHelp, longHelp);
156 }
157
158 wxToolBarToolBase *wxToolMenuBar::CreateTool(wxControl *control)
159 {
160 return new wxToolMenuBarTool(this, control);
161 }
162
163 // ----------------------------------------------------------------------------
164 // wxToolBar construction
165 // ----------------------------------------------------------------------------
166
167 void wxToolMenuBar::Init()
168 {
169 wxToolBar::Init();
170
171 m_nButtons = 0;
172 m_menuBar = NULL;
173 }
174
175 bool wxToolMenuBar::Create(wxWindow *parent,
176 wxWindowID id,
177 const wxPoint& pos,
178 const wxSize& size,
179 long style,
180 const wxString& name,
181 wxMenuBar* menuBar)
182 {
183 // common initialisation
184 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
185 return false;
186
187 // MSW-specific initialisation
188 if ( !MSWCreateToolbar(pos, size, menuBar) )
189 return false;
190
191 // set up the colors and fonts
192 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR));
193 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
194
195 return true;
196 }
197
198 bool wxToolMenuBar::MSWCreateToolbar(const wxPoint& WXUNUSED(pos), const wxSize& WXUNUSED(size), wxMenuBar* menuBar)
199 {
200 SetMenuBar(menuBar);
201 if (m_menuBar)
202 m_menuBar->SetToolBar(this);
203
204 #if defined(WINCE_WITHOUT_COMMANDBAR)
205 // Create the menubar.
206 SHMENUBARINFO mbi;
207
208 memset (&mbi, 0, sizeof (SHMENUBARINFO));
209 mbi.cbSize = sizeof (SHMENUBARINFO);
210 mbi.hwndParent = (HWND) GetParent()->GetHWND();
211 #ifdef __SMARTPHONE__
212 mbi.nToolBarId = 5002;
213 #else
214 mbi.nToolBarId = 5000;
215 #endif
216 mbi.nBmpId = 0;
217 mbi.cBmpImages = 0;
218 mbi.dwFlags = 0 ; // SHCMBF_EMPTYBAR;
219 mbi.hInstRes = wxGetInstance();
220
221 if (!SHCreateMenuBar(&mbi))
222 {
223 wxFAIL_MSG( _T("SHCreateMenuBar failed") );
224 return false;
225 }
226
227 SetHWND((WXHWND) mbi.hwndMB);
228 #else
229 HWND hWnd = CommandBar_Create(wxGetInstance(), (HWND) GetParent()->GetHWND(), GetId());
230 SetHWND((WXHWND) hWnd);
231 #endif
232
233 // install wxWidgets window proc for this window
234 SubclassWin(m_hWnd);
235
236 if (menuBar)
237 menuBar->Create();
238
239 return true;
240 }
241
242 void wxToolMenuBar::Recreate()
243 {
244 // TODO
245 }
246
247 wxToolMenuBar::~wxToolMenuBar()
248 {
249 if (GetMenuBar())
250 GetMenuBar()->SetToolBar(NULL);
251 }
252
253 // Return HMENU for the menu associated with the commandbar
254 WXHMENU wxToolMenuBar::GetHMenu()
255 {
256 #if defined(__HANDHELDPC__)
257 return 0;
258 #else
259 if (GetHWND())
260 {
261 return (WXHMENU) (HMENU)::SendMessage((HWND) GetHWND(), SHCMBM_GETMENU, (WPARAM)0, (LPARAM)0);
262 }
263 else
264 return 0;
265 #endif
266 }
267
268 // ----------------------------------------------------------------------------
269 // adding/removing tools
270 // ----------------------------------------------------------------------------
271
272 bool wxToolMenuBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
273 {
274 // nothing special to do here - we really create the toolbar buttons in
275 // Realize() later
276 tool->Attach(this);
277
278 return true;
279 }
280
281 bool wxToolMenuBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool)
282 {
283 // the main difficulty we have here is with the controls in the toolbars:
284 // as we (sometimes) use several separators to cover up the space used by
285 // them, the indices are not the same for us and the toolbar
286
287 // first determine the position of the first button to delete: it may be
288 // different from pos if we use several separators to cover the space used
289 // by a control
290 wxToolBarToolsList::compatibility_iterator node;
291 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
292 {
293 wxToolBarToolBase *tool2 = node->GetData();
294 if ( tool2 == tool )
295 {
296 // let node point to the next node in the list
297 node = node->GetNext();
298
299 break;
300 }
301
302 if ( tool2->IsControl() )
303 {
304 pos += ((wxToolMenuBarTool *)tool2)->GetSeparatorsCount() - 1;
305 }
306 }
307
308 // now determine the number of buttons to delete and the area taken by them
309 size_t nButtonsToDelete = 1;
310
311 // get the size of the button we're going to delete
312 RECT r;
313 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT, pos, (LPARAM)&r) )
314 {
315 wxLogLastError(_T("TB_GETITEMRECT"));
316 }
317
318 int width = r.right - r.left;
319
320 if ( tool->IsControl() )
321 {
322 nButtonsToDelete = ((wxToolMenuBarTool *)tool)->GetSeparatorsCount();
323
324 width *= nButtonsToDelete;
325 }
326
327 // do delete all buttons
328 m_nButtons -= nButtonsToDelete;
329 while ( nButtonsToDelete-- > 0 )
330 {
331 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, pos, 0) )
332 {
333 wxLogLastError(wxT("TB_DELETEBUTTON"));
334
335 return false;
336 }
337 }
338
339 tool->Detach();
340
341 // and finally reposition all the controls after this button (the toolbar
342 // takes care of all normal items)
343 for ( /* node -> first after deleted */ ; node; node = node->GetNext() )
344 {
345 wxToolBarToolBase *tool2 = node->GetData();
346 if ( tool2->IsControl() )
347 {
348 int x;
349 wxControl *control = tool2->GetControl();
350 control->GetPosition(&x, NULL);
351 control->Move(x - width, wxDefaultCoord);
352 }
353 }
354
355 return true;
356 }
357
358 bool wxToolMenuBar::Realize()
359 {
360 const size_t nTools = GetToolsCount();
361 if ( nTools == 0 )
362 {
363 // nothing to do
364 return true;
365 }
366
367 #if 0
368 // delete all old buttons, if any
369 for ( size_t pos = 0; pos < m_nButtons; pos++ )
370 {
371 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, 0, 0) )
372 {
373 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
374 }
375 }
376 #endif // 0
377
378 bool lastWasRadio = false;
379 wxToolBarToolsList::Node* node;
380 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
381 {
382 wxToolMenuBarTool *tool = (wxToolMenuBarTool*) node->GetData();
383
384 TBBUTTON buttons[1] ;
385
386 TBBUTTON& button = buttons[0];
387
388 wxZeroMemory(button);
389
390 bool isRadio = false;
391 switch ( tool->GetStyle() )
392 {
393 case wxTOOL_STYLE_CONTROL:
394 button.idCommand = tool->GetId();
395 // fall through: create just a separator too
396
397 case wxTOOL_STYLE_SEPARATOR:
398 button.fsState = TBSTATE_ENABLED;
399 button.fsStyle = TBSTYLE_SEP;
400 break;
401
402 case wxTOOL_STYLE_BUTTON:
403
404 if ( HasFlag(wxTB_TEXT) )
405 {
406 const wxString& label = tool->GetLabel();
407 if ( !label.empty() )
408 {
409 button.iString = (int)label.c_str();
410 }
411 }
412
413 const wxBitmap& bmp = tool->GetNormalBitmap();
414
415 wxBitmap bmpToUse = bmp;
416
417 if (bmp.GetWidth() < 16 || bmp.GetHeight() < 16 || bmp.GetMask() != NULL)
418 {
419 wxMemoryDC memDC;
420 wxBitmap b(16,16);
421 memDC.SelectObject(b);
422 memDC.SetBackground(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)));
423 memDC.Clear();
424 int x = (16 - bmp.GetWidth())/2;
425 int y = (16 - bmp.GetHeight())/2;
426 memDC.DrawBitmap(bmp, x, y, true);
427 memDC.SelectObject(wxNullBitmap);
428
429 bmpToUse = b;
430 tool->SetNormalBitmap(b);
431 }
432
433 int n = 0;
434 if ( bmpToUse.Ok() )
435 {
436 n = ::CommandBar_AddBitmap( (HWND) GetHWND(), NULL, (int) (HBITMAP) bmpToUse.GetHBITMAP(),
437 1, 16, 16 );
438 }
439
440 button.idCommand = tool->GetId();
441 button.iBitmap = n;
442
443 if ( tool->IsEnabled() )
444 button.fsState |= TBSTATE_ENABLED;
445 if ( tool->IsToggled() )
446 button.fsState |= TBSTATE_CHECKED;
447
448 switch ( tool->GetKind() )
449 {
450 case wxITEM_RADIO:
451 button.fsStyle = TBSTYLE_CHECKGROUP;
452
453 if ( !lastWasRadio )
454 {
455 // the first item in the radio group is checked by
456 // default to be consistent with wxGTK and the menu
457 // radio items
458 button.fsState |= TBSTATE_CHECKED;
459
460 tool->Toggle(true);
461 }
462
463 isRadio = true;
464 break;
465
466 case wxITEM_CHECK:
467 button.fsStyle = TBSTYLE_CHECK;
468 break;
469
470 default:
471 wxFAIL_MSG( _T("unexpected toolbar button kind") );
472 // fall through
473
474 case wxITEM_NORMAL:
475 button.fsStyle = TBSTYLE_BUTTON;
476 }
477 break;
478 }
479
480 BOOL bRc = ::CommandBar_AddButtons( (HWND) GetHWND(), 1, buttons );
481
482 wxASSERT_MSG( bRc, wxT("Could not add toolbar button."));
483
484 lastWasRadio = isRadio;
485 }
486
487 return true;
488 }
489
490 bool wxToolMenuBar::MSWCommand(WXUINT WXUNUSED(cmd), WXWORD id)
491 {
492 wxToolBarToolBase *tool = FindById((int)id);
493 if ( !tool )
494 {
495 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
496 event.SetEventObject(this);
497 event.SetId(id);
498 event.SetInt(id);
499
500 return GetEventHandler()->ProcessEvent(event);
501 }
502
503 if ( tool->CanBeToggled() )
504 {
505 LRESULT state = ::SendMessage(GetHwnd(), TB_GETSTATE, id, 0);
506 tool->Toggle((state & TBSTATE_CHECKED) != 0);
507 }
508
509 bool toggled = tool->IsToggled();
510
511 // avoid sending the event when a radio button is released, this is not
512 // interesting
513 if ( !tool->CanBeToggled() || tool->GetKind() != wxITEM_RADIO || toggled )
514 {
515 // OnLeftClick() can veto the button state change - for buttons which
516 // may be toggled only, of couse
517 if ( !OnLeftClick((int)id, toggled) && tool->CanBeToggled() )
518 {
519 // revert back
520 toggled = !toggled;
521 tool->SetToggle(toggled);
522
523 ::SendMessage(GetHwnd(), TB_CHECKBUTTON, id, MAKELONG(toggled, 0));
524 }
525 }
526
527 return true;
528 }
529
530 #else
531
532 ////////////// For Smartphone
533
534 // ----------------------------------------------------------------------------
535 // Event table
536 // ----------------------------------------------------------------------------
537
538 IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxToolBarBase)
539
540 BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
541 END_EVENT_TABLE()
542
543 wxToolBarToolBase *wxToolBar::CreateTool(int id,
544 const wxString& label,
545 const wxBitmap& bmpNormal,
546 const wxBitmap& bmpDisabled,
547 wxItemKind kind,
548 wxObject *clientData,
549 const wxString& shortHelp,
550 const wxString& longHelp)
551 {
552 return new wxToolBarToolBase(this, id, label, bmpNormal, bmpDisabled, kind,
553 clientData, shortHelp, longHelp);
554 }
555
556 wxToolBarToolBase *wxToolBar::CreateTool(wxControl *control)
557 {
558 return new wxToolBarToolBase(this, control);
559 }
560
561 bool wxToolBar::Create(wxWindow *parent,
562 wxWindowID WXUNUSED(id),
563 const wxPoint& WXUNUSED(pos),
564 const wxSize& WXUNUSED(size),
565 long style,
566 const wxString& name)
567 {
568 // TODO: we may need to make this a dummy hidden window to
569 // satisfy other parts of wxWidgets.
570
571 parent->AddChild(this);
572
573 SetWindowStyle(style);
574 SetName(name);
575
576 return true;
577 }
578
579 // ----------------------------------------------------------------------------
580 // adding/removing tools
581 // ----------------------------------------------------------------------------
582
583 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
584 {
585 tool->Attach(this);
586 return true;
587 }
588
589 bool wxToolBar::DoDeleteTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
590 {
591 tool->Detach();
592 return true;
593 }
594
595 wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y)) const
596 {
597 return NULL;
598 }
599
600 // ----------------------------------------------------------------------------
601 // tool state
602 // ----------------------------------------------------------------------------
603
604 void wxToolBar::DoEnableTool(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(enable))
605 {
606 }
607
608 void wxToolBar::DoToggleTool(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
609 {
610 }
611
612 void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
613 {
614 wxFAIL_MSG( _T("not implemented") );
615 }
616
617 #endif
618 // !__SMARTPHONE__
619
620
621
622 #endif // wxUSE_TOOLBAR && Win95
623