]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/accel.h
WinCE build fix (we need default constructor).
[wxWidgets.git] / include / wx / msw / accel.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/msw/accel.h
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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ACCEL_H_
13#define _WX_ACCEL_H_
14
15// ----------------------------------------------------------------------------
16// the accel table has all accelerators for a given window or menu
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxAcceleratorTable : public wxObject
20{
21public:
22 // default ctor
23 wxAcceleratorTable() : wxObject() { }
24
25 // copy ctor
26 wxAcceleratorTable(const wxAcceleratorTable& accel) : wxObject(accel) { Ref(accel); }
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[]);
33
34 wxAcceleratorTable& operator=(const wxAcceleratorTable& accel)
35 {
36 if ( *this != accel )
37 Ref(accel);
38 return *this;
39 }
40
41 bool operator==(const wxAcceleratorTable& accel) const;
42 bool operator!=(const wxAcceleratorTable& accel) const
43 { return !(*this == accel); }
44
45 bool Ok() const;
46 void SetHACCEL(WXHACCEL hAccel);
47 WXHACCEL GetHACCEL() const;
48
49 // translate the accelerator, return true if done
50 bool Translate(wxWindow *window, WXMSG *msg) const;
51
52private:
53 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
54};
55
56#endif
57 // _WX_ACCEL_H_