3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/os2/accel.h
|
|
// Purpose: wxAcceleratorTable class
|
|
// Author: David Webster
|
|
// Modified by:
|
|
// Created: 10/13/99
|
|
// Copyright: (c) David Webster
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_ACCEL_H_
|
|
#define _WX_ACCEL_H_
|
|
|
|
#include "wx/object.h"
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxAcceleratorTable;
|
|
|
|
// Hold Ctrl key down
|
|
#define wxACCEL_ALT 0x01
|
|
|
|
// Hold Ctrl key down
|
|
#define wxACCEL_CTRL 0x02
|
|
|
|
// Hold Shift key down
|
|
#define wxACCEL_SHIFT 0x04
|
|
|
|
// Hold no key down
|
|
#define wxACCEL_NORMAL 0x00
|
|
|
|
class WXDLLIMPEXP_CORE wxAcceleratorTable: public wxObject
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
|
|
public:
|
|
wxAcceleratorTable();
|
|
wxAcceleratorTable(const wxString& rsResource); // Load from .rc resource
|
|
wxAcceleratorTable( int n
|
|
,const wxAcceleratorEntry vaEntries[]
|
|
); // Load from array
|
|
|
|
virtual ~wxAcceleratorTable();
|
|
|
|
bool Ok() const { return IsOk(); }
|
|
bool IsOk() const;
|
|
void SetHACCEL(WXHACCEL hAccel);
|
|
WXHACCEL GetHACCEL(void) const;
|
|
|
|
// translate the accelerator, return TRUE if done
|
|
bool Translate( WXHWND hWnd
|
|
,WXMSG* pMsg
|
|
) const;
|
|
};
|
|
|
|
WXDLLIMPEXP_DATA_CORE(extern wxAcceleratorTable) wxNullAcceleratorTable;
|
|
|
|
WXDLLIMPEXP_CORE wxString wxPMTextToLabel(const wxString& rsTitle);
|
|
#endif
|
|
// _WX_ACCEL_H_
|