1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: accel.h
|
|
|
|
// Purpose: wxAcceleratorTable class
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) AUTHOR
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_ACCEL_H_
|
|
|
|
#define _WX_ACCEL_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "accel.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/string.h"
|
2001-07-06 20:21:10 +00:00
|
|
|
#include "wx/event.h"
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxAcceleratorTable: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
|
|
|
|
public:
|
|
|
|
wxAcceleratorTable();
|
2002-05-28 16:51:14 +00:00
|
|
|
wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
// Copy constructors
|
2002-05-07 21:58:27 +00:00
|
|
|
wxAcceleratorTable(const wxAcceleratorTable& accel)
|
|
|
|
: wxObject()
|
|
|
|
{ Ref(accel); }
|
|
|
|
wxAcceleratorTable(const wxAcceleratorTable* accel)
|
|
|
|
{ if (accel) Ref(*accel); }
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
~wxAcceleratorTable();
|
|
|
|
|
2002-05-07 21:58:27 +00:00
|
|
|
wxAcceleratorTable& operator = (const wxAcceleratorTable& accel)
|
|
|
|
{ if (*this == accel) return (*this); Ref(accel); return *this; }
|
|
|
|
bool operator == (const wxAcceleratorTable& accel)
|
|
|
|
{ return m_refData == accel.m_refData; }
|
|
|
|
bool operator != (const wxAcceleratorTable& accel)
|
|
|
|
{ return m_refData != accel.m_refData; }
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
bool Ok() const;
|
2001-07-06 16:10:17 +00:00
|
|
|
|
|
|
|
int GetCommand( wxKeyEvent &event );
|
1999-01-01 16:05:26 +00:00
|
|
|
};
|
|
|
|
|
2002-08-21 16:08:29 +00:00
|
|
|
// WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_ACCEL_H_
|