]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/accel.h
avoid warnings C4311/4312 when building with MSVC >= 7 (patch 1414052)
[wxWidgets.git] / include / wx / msw / accel.h
CommitLineData
110f3205 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: wx/msw/accel.h
110f3205
JS
3// Purpose: wxAcceleratorTable class
4// Author: Julian Smart
5// Modified by:
6// Created: 31/7/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
110f3205
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ACCEL_H_
13#define _WX_ACCEL_H_
14
c50f1fb9
VZ
15// ----------------------------------------------------------------------------
16// the accel table has all accelerators for a given window or menu
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxAcceleratorTable : public wxObject
110f3205 20{
110f3205 21public:
1e6feb95 22 // default ctor
a21d4ad1 23 wxAcceleratorTable() : wxObject() { }
110f3205 24
1e6feb95 25 // copy ctor
4dddb8a2 26 wxAcceleratorTable(const wxAcceleratorTable& accel) : wxObject(accel) { Ref(accel); }
1e6feb95
VZ
27
28 // load from .rc resource (Windows specific)
29 wxAcceleratorTable(const wxString& resource);
30
31 // initialize from array
32 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
110f3205 33
a21d4ad1
VZ
34 wxAcceleratorTable& operator=(const wxAcceleratorTable& accel)
35 {
36 if ( *this != accel )
37 Ref(accel);
38 return *this;
39 }
110f3205 40
a21d4ad1 41 bool operator==(const wxAcceleratorTable& accel) const;
1e6feb95
VZ
42 bool operator!=(const wxAcceleratorTable& accel) const
43 { return !(*this == accel); }
c50f1fb9
VZ
44
45 bool Ok() const;
110f3205
JS
46 void SetHACCEL(WXHACCEL hAccel);
47 WXHACCEL GetHACCEL() const;
c50f1fb9 48
77c46f00 49 // translate the accelerator, return true if done
c50f1fb9 50 bool Translate(wxWindow *window, WXMSG *msg) const;
110f3205 51
1e6feb95
VZ
52private:
53 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
54};
110f3205
JS
55
56#endif
57 // _WX_ACCEL_H_