wxgraphics.h
来自「LastWave」· C头文件 代码 · 共 32 行
H
32 行
/* * wxgraphics.h * wxLastWave * * Created by Emmanuel Bacry on 26/01/06. * Copyright 2006 __MyCompanyName__. All rights reserved. * */#ifndef _WXGRAPHICS_H#define _WXGRAPHICS_Hextern "C" bool IsEventBlocked(); extern "C" bool IsEventBlockedByTerminal();extern void BlockEvent();extern void BlockEventByTerminal();extern void UnBlockEvent();#define BLOCKEVENT if (IsEventBlocked()) return; else BlockEvent()#define BLOCKEVENTBYTERMINAL if (IsEventBlocked()) return; else BlockEventByTerminal()#define UNBLOCKEVENT UnBlockEvent()extern bool GetKeyCharLWEvent(wxWindow *w, wxKeyEvent& event, struct event &ev);extern bool GetKeyDownLWEvent(wxWindow *w, wxKeyEvent& event, struct event &ev); extern void XXErrorFrame(FRAME frame);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?