]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/accel.h
Make Smartphone buildable with current flags.
[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#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "accel.h"
17#endif
18
19// ----------------------------------------------------------------------------
20// the accel table has all accelerators for a given window or menu
21// ----------------------------------------------------------------------------
22
23class WXDLLEXPORT wxAcceleratorTable : public wxObject
24{
25public:
26 // default ctor
27 wxAcceleratorTable() : wxObject() { }
28
29 // copy ctor
30 wxAcceleratorTable(const wxAcceleratorTable& accel) : wxObject(accel) { Ref(accel); }
31
32 // load from .rc resource (Windows specific)
33 wxAcceleratorTable(const wxString& resource);
34
35 // initialize from array
36 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
37
38 wxAcceleratorTable& operator=(const wxAcceleratorTable& accel)
39 {
40 if ( *this != accel )
41 Ref(accel);
42 return *this;
43 }
44
45 bool operator==(const wxAcceleratorTable& accel) const;
46 bool operator!=(const wxAcceleratorTable& accel) const
47 { return !(*this == accel); }
48
49 bool Ok() const;
50 void SetHACCEL(WXHACCEL hAccel);
51 WXHACCEL GetHACCEL() const;
52
53 // translate the accelerator, return true if done
54 bool Translate(wxWindow *window, WXMSG *msg) const;
55
56private:
57 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
58};
59
60#endif
61 // _WX_ACCEL_H_