]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/accel.h
Applied patch which allows you to detach a stream
[wxWidgets.git] / include / wx / motif / accel.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/motif/accel.h
3// Purpose: wxAcceleratorTable class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/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#include "wx/object.h"
16#include "wx/string.h"
17#include "wx/event.h"
18
19class WXDLLEXPORT wxAcceleratorTable: public wxObject
20{
21 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
22public:
23 wxAcceleratorTable();
24 wxAcceleratorTable(const wxString& resource); // Load from .rc resource
25 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
26
27 virtual ~wxAcceleratorTable();
28
29 bool operator == (const wxAcceleratorTable& accel) const { return m_refData == accel.m_refData; }
30 bool operator != (const wxAcceleratorTable& accel) const { return m_refData != accel.m_refData; }
31
32 bool Ok() const;
33
34 // Implementation only
35 int GetCount() const;
36 wxAcceleratorEntry* GetEntries() const;
37};
38
39WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable;
40
41#endif
42// _WX_ACCEL_H_