2001-06-26 17:09:16 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/generic/accel.h
|
|
|
|
// Purpose: wxAcceleratorTable class
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 17:09:16 -04: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 12:51:14 -04:00
|
|
|
wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
|
2001-06-26 17:09:16 -04:00
|
|
|
virtual ~wxAcceleratorTable();
|
|
|
|
|
2006-10-08 17:56:55 -04:00
|
|
|
bool Ok() const { return IsOk(); }
|
|
|
|
bool IsOk() const;
|
2001-06-26 17:09:16 -04: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 18:11:46 -05:00
|
|
|
protected:
|
|
|
|
// ref counting code
|
|
|
|
virtual wxObjectRefData *CreateRefData() const;
|
|
|
|
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
|
|
|
|
|
2001-06-26 17:09:16 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_GENERIC_ACCEL_H_
|
|
|
|
|