mirror of https://github.com/roytam1/kmeleon.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
/* |
|
* Copyright (C) 2000 Brian Harris |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation; either version 2, or (at your option) |
|
* any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
*/ |
|
|
|
#ifndef __ACCELPARSER_H__ |
|
#define __ACCELPARSER_H__ |
|
|
|
#include "StdAfx.h" |
|
|
|
#include "Parser.h" |
|
|
|
#define MAX_ACCEL 127 |
|
#define MAX_MOUSE 12 |
|
|
|
class CAccelParser : public CParser { |
|
protected: |
|
ACCEL accelerators[MAX_ACCEL]; |
|
int numAccelerators; |
|
ACCEL mouse[MAX_MOUSE]; |
|
int numMKeys; |
|
|
|
HACCEL accelTable; |
|
|
|
void DeleteAccel(int idx); |
|
void DeleteMAccel(int idx); |
|
int FindAccel(WORD virt, DWORD key); |
|
int FindMAccel(WORD virt, DWORD key); |
|
|
|
public: |
|
CAccelParser(); |
|
CAccelParser(LPCTSTR filename); |
|
|
|
~CAccelParser(); |
|
|
|
int Load(LPCTSTR filename); |
|
int Parse(char *p); |
|
|
|
int SetAccel(const char* key, char* command); |
|
void SetAccel(WORD command, BYTE virt, WORD key); |
|
void SetMAccel(WORD command, BYTE virt, WORD button); |
|
|
|
HACCEL GetTable(); |
|
CString GetStrAccel(UINT id); |
|
|
|
int CheckMouse(UINT message); |
|
}; |
|
|
|
#endif // __ACCELPARSER_H__
|
|
|