]> git.saurik.com Git - wxWidgets.git/blame - src/msw/accel.cpp
Ensure the tooltip has been created before enabling or setting the delay, or they...
[wxWidgets.git] / src / msw / accel.cpp
CommitLineData
110f3205 1/////////////////////////////////////////////////////////////////////////////
a21d4ad1 2// Name: msw/accel.cpp
110f3205
JS
3// Purpose: wxAcceleratorTable
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
110f3205
JS
10/////////////////////////////////////////////////////////////////////////////
11
a21d4ad1
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
a21d4ad1
VZ
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
110f3205
JS
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
a21d4ad1 24 #pragma hdrstop
110f3205
JS
25#endif
26
a21d4ad1
VZ
27#if wxUSE_ACCEL
28
110f3205 29#ifndef WX_PRECOMP
1e6feb95 30 #include "wx/window.h"
110f3205
JS
31#endif
32
1e6feb95 33#include "wx/accel.h"
110f3205 34
48d1144b
JS
35#include "wx/msw/private.h"
36
a21d4ad1
VZ
37extern WXWORD wxCharCodeWXToMSW(int id, bool *isVirtual);
38
110f3205 39IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
110f3205 40
a21d4ad1
VZ
41// ----------------------------------------------------------------------------
42// data defining wxAcceleratorTable
43// ----------------------------------------------------------------------------
44
110f3205
JS
45class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData
46{
f5851311 47 friend class WXDLLIMPEXP_FWD_CORE wxAcceleratorTable;
110f3205 48public:
c50f1fb9 49 wxAcceleratorRefData();
d3c7fc99 50 virtual ~wxAcceleratorRefData();
110f3205
JS
51
52 inline HACCEL GetHACCEL() const { return m_hAccel; }
53protected:
54 HACCEL m_hAccel;
55 bool m_ok;
22f3361e 56
c0c133e1 57 wxDECLARE_NO_COPY_CLASS(wxAcceleratorRefData);
110f3205
JS
58};
59
a21d4ad1
VZ
60// ============================================================================
61// implementation
62// ============================================================================
63
64// ----------------------------------------------------------------------------
65// wxAcceleratorRefData
66// ----------------------------------------------------------------------------
67
110f3205
JS
68#define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
69
70wxAcceleratorRefData::wxAcceleratorRefData()
71{
a21d4ad1
VZ
72 m_ok = false;
73 m_hAccel = 0;
110f3205
JS
74}
75
76wxAcceleratorRefData::~wxAcceleratorRefData()
77{
a21d4ad1
VZ
78 if (m_hAccel)
79 {
80 DestroyAcceleratorTable((HACCEL) m_hAccel);
81 }
110f3205
JS
82}
83
a21d4ad1
VZ
84// ----------------------------------------------------------------------------
85// wxAcceleratorTable
86// ----------------------------------------------------------------------------
110f3205
JS
87
88// Load from .rc resource
89wxAcceleratorTable::wxAcceleratorTable(const wxString& resource)
90{
91 m_refData = new wxAcceleratorRefData;
92
e0a050e3 93 HACCEL hAccel = ::LoadAccelerators(wxGetInstance(), resource.wx_str());
110f3205 94 M_ACCELDATA->m_hAccel = hAccel;
a21d4ad1 95 M_ACCELDATA->m_ok = hAccel != 0;
110f3205
JS
96}
97
110f3205 98// Create from an array
252eb8fd 99wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[])
110f3205
JS
100{
101 m_refData = new wxAcceleratorRefData;
102
103 ACCEL* arr = new ACCEL[n];
1e6feb95 104 for ( int i = 0; i < n; i++ )
110f3205 105 {
1e6feb95
VZ
106 int flags = entries[i].GetFlags();
107
110f3205 108 BYTE fVirt = 0;
1e6feb95
VZ
109 if ( flags & wxACCEL_ALT )
110 fVirt |= FALT | FVIRTKEY;
111 if ( flags & wxACCEL_SHIFT )
112 fVirt |= FSHIFT | FVIRTKEY;
113 if ( flags & wxACCEL_CTRL )
114 fVirt |= FCONTROL | FVIRTKEY;
110f3205
JS
115
116 bool isVirtual;
1e6feb95 117
373a5fb3 118 WORD key = wxCharCodeWXToMSW(entries[i].GetKeyCode(), &isVirtual);
2317bff2
JS
119 if (isVirtual)
120 fVirt |= FVIRTKEY;
110f3205 121
110f3205
JS
122 arr[i].fVirt = fVirt;
123 arr[i].key = key;
373a5fb3 124 arr[i].cmd = (WORD)entries[i].GetCommand();
110f3205
JS
125 }
126
127 M_ACCELDATA->m_hAccel = ::CreateAcceleratorTable(arr, n);
128 delete[] arr;
129
130 M_ACCELDATA->m_ok = (M_ACCELDATA->m_hAccel != 0);
131}
132
b7cacb43 133bool wxAcceleratorTable::IsOk() const
110f3205
JS
134{
135 return (M_ACCELDATA && (M_ACCELDATA->m_ok));
136}
137
138void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel)
139{
140 if (!M_ACCELDATA)
141 m_refData = new wxAcceleratorRefData;
142
143 M_ACCELDATA->m_hAccel = (HACCEL) hAccel;
144}
145
146WXHACCEL wxAcceleratorTable::GetHACCEL() const
147{
148 if (!M_ACCELDATA)
149 return 0;
150 return (WXHACCEL) M_ACCELDATA->m_hAccel;
151}
152
c50f1fb9
VZ
153bool wxAcceleratorTable::Translate(wxWindow *window, WXMSG *wxmsg) const
154{
155 MSG *msg = (MSG *)wxmsg;
01dba85a
JS
156 return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg);
157}
158
a21d4ad1
VZ
159#endif // wxUSE_ACCEL
160