#include <cevent.h>
Inheritance diagram for stdui::ckeypressevent:


Public Member Functions | |
| ckeypressevent () | |
| ckeypressevent (int kv, bool meta) | |
| int | keyvalue () |
| bool | ismeta () |
Private Member Functions | |
| virtual void | _translate () |
Private Attributes | |
| int | key |
| bool | bmeta |
|
|
Definition at line 260 of file cevent.h. 00260 : cevent(){}
|
|
||||||||||||
|
Definition at line 262 of file cevent.h. References _translate(), bmeta, and key. 00262 :cevent(event_type::keyevent, events::keypress){ 00263 key = kv; 00264 bmeta = meta; 00265 _translate(); 00266 }
|
Here is the call graph for this function:

|
|
Reimplemented from stdui::cevent. Definition at line 139 of file cevent.cpp. Referenced by ckeypressevent(). 00140 {
00141 //_debug(1)<< "==> " << (char*)(bmeta ? "meta-" : "key") << '[' << (char) key << "] (#" << key << ')' << endl;
00142 }
|
|
|
Definition at line 276 of file cevent.h. References bmeta. 00276 { return bmeta; }
|
|
|
Definition at line 271 of file cevent.h. References key. 00271 { return key; }
|
|
|
Definition at line 281 of file cevent.h. Referenced by ckeypressevent(), and ismeta(). |
|
|
Definition at line 280 of file cevent.h. Referenced by ckeypressevent(), and keyvalue(). |
1.4.0