]> git.saurik.com Git - wxWidgets.git/blame - src/msw/accel.cpp
Removed floor() references
[wxWidgets.git] / src / msw / accel.cpp
CommitLineData
110f3205
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: accel.cpp
3// Purpose: wxAcceleratorTable
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "accel.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24#include <stdio.h>
25#include "wx/setup.h"
2432b92d 26#include "wx/window.h"
110f3205
JS
27#endif
28
110f3205
JS
29#include "wx/msw/accel.h"
30
48d1144b
JS
31#include "wx/msw/private.h"
32
110f3205
JS
33#if !USE_SHARED_LIBRARIES
34IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
35#endif
36
37class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData
38{
39 friend class WXDLLEXPORT wxAcceleratorTable;
40public:
41 wxAcceleratorRefData(void);
42 ~wxAcceleratorRefData(void);
43
44 inline HACCEL GetHACCEL() const { return m_hAccel; }
45protected:
46 HACCEL m_hAccel;
47 bool m_ok;
48};
49
50#define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
51
52wxAcceleratorRefData::wxAcceleratorRefData()
53{
54 m_ok = FALSE;
55 m_hAccel = 0;
56}
57
58wxAcceleratorRefData::~wxAcceleratorRefData()
59{
60 if (m_hAccel)
61 {
1e6d9499 62 // This function not available in WIN16
57c208c5 63#if !defined(__WIN16__) && !defined(__TWIN32__)
110f3205 64 DestroyAcceleratorTable((HACCEL) m_hAccel);
1e6d9499 65#endif
110f3205
JS
66 }
67 m_hAccel = 0 ;
68}
69
70wxAcceleratorTable::wxAcceleratorTable()
71{
72 m_refData = NULL;
73}
74
75wxAcceleratorTable::~wxAcceleratorTable()
76{
77}
78
79// Load from .rc resource
80wxAcceleratorTable::wxAcceleratorTable(const wxString& resource)
81{
82 m_refData = new wxAcceleratorRefData;
83
84 HACCEL hAccel =
57c208c5 85#if defined(__WIN32__) && !defined(__TWIN32__)
110f3205
JS
86#ifdef UNICODE
87 ::LoadAcceleratorsW(wxGetInstance(), (const char *)resource);
88#else
89 ::LoadAcceleratorsA(wxGetInstance(), (const char *)resource);
90#endif
91#else
92 ::LoadAccelerators(wxGetInstance(), (const char *)resource);
93#endif
94 M_ACCELDATA->m_hAccel = hAccel;
95 M_ACCELDATA->m_ok = (hAccel != 0);
96}
97
98extern int wxCharCodeWXToMSW(int id, bool *isVirtual);
99
100// Create from an array
8870c26e 101#if !defined(__WIN16__) && !defined(__TWIN32__)
252eb8fd 102wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[])
110f3205 103{
1e6d9499 104 // Not available in WIN16
110f3205
JS
105 m_refData = new wxAcceleratorRefData;
106
107 ACCEL* arr = new ACCEL[n];
108 int i;
109 for (i = 0; i < n; i++)
110 {
111 BYTE fVirt = 0;
112 if (entries[i].m_flags & wxACCEL_ALT)
113 fVirt |= FALT;
114 if (entries[i].m_flags & wxACCEL_SHIFT)
115 fVirt |= FSHIFT;
116 if (entries[i].m_flags & wxACCEL_CTRL)
117 fVirt |= FCONTROL;
118
119 bool isVirtual;
120 WORD key = wxCharCodeWXToMSW(entries[i].m_keyCode, & isVirtual);
121 fVirt |= FVIRTKEY;
122
123 WORD cmd = entries[i].m_command;
124
125 arr[i].fVirt = fVirt;
126 arr[i].key = key;
127 arr[i].cmd = cmd;
128 }
129
130 M_ACCELDATA->m_hAccel = ::CreateAcceleratorTable(arr, n);
131 delete[] arr;
132
133 M_ACCELDATA->m_ok = (M_ACCELDATA->m_hAccel != 0);
134}
8870c26e
JS
135#else
136wxAcceleratorTable::wxAcceleratorTable(int WXUNUSED(n), const wxAcceleratorEntry WXUNUSED(entries)[])
137{
138}
139#endif
110f3205
JS
140
141bool wxAcceleratorTable::Ok(void) const
142{
143 return (M_ACCELDATA && (M_ACCELDATA->m_ok));
144}
145
146void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel)
147{
148 if (!M_ACCELDATA)
149 m_refData = new wxAcceleratorRefData;
150
151 M_ACCELDATA->m_hAccel = (HACCEL) hAccel;
152}
153
154WXHACCEL wxAcceleratorTable::GetHACCEL() const
155{
156 if (!M_ACCELDATA)
157 return 0;
158 return (WXHACCEL) M_ACCELDATA->m_hAccel;
159}
160