2001-06-26 21:09:16 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/generic/accel.h
|
|
|
|
// Purpose: wxAcceleratorTable class
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 21:09:16 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_GENERIC_ACCEL_H_
|
|
|
|
#define _WX_GENERIC_ACCEL_H_
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxKeyEvent;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxAcceleratorTable
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxAcceleratorTable : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxAcceleratorTable();
|
2002-05-28 16:51:14 +00:00
|
|
|
wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
|
2001-06-26 21:09:16 +00:00
|
|
|
virtual ~wxAcceleratorTable();
|
|
|
|
|
2006-10-08 21:56:55 +00:00
|
|
|
bool Ok() const { return IsOk(); }
|
|
|
|
bool IsOk() const;
|
2001-06-26 21:09:16 +00:00
|
|
|
|
|
|
|
void Add(const wxAcceleratorEntry& entry);
|
|
|
|
void Remove(const wxAcceleratorEntry& entry);
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
wxMenuItem *GetMenuItem(const wxKeyEvent& event) const;
|
|
|
|
int GetCommand(const wxKeyEvent& event) const;
|
|
|
|
|
|
|
|
const wxAcceleratorEntry *GetEntry(const wxKeyEvent& event) const;
|
|
|
|
|
2002-03-10 23:11:46 +00:00
|
|
|
protected:
|
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
2001-06-26 21:09:16 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_GENERIC_ACCEL_H_
|
|
|
|
|