Choreonoid  1.5
VirtualJoystickView.h
Go to the documentation of this file.
1 
6 #ifndef CNOID_BASE_VIRTUAL_JOYSTICK_VIEW_H
7 #define CNOID_BASE_VIRTUAL_JOYSTICK_VIEW_H
8 
9 #include <cnoid/View>
10 #include "exportdecl.h"
11 
12 namespace cnoid {
13 
14 class VirtualJoystickViewImpl;
15 
17 {
18 public:
19  static void initializeClass(ExtensionManager* ext);
20 
23 
24 protected:
25  virtual void keyPressEvent(QKeyEvent* event);
26  virtual void keyReleaseEvent(QKeyEvent* event);
27 
28  virtual bool storeState(Archive& archive);
29  virtual bool restoreState(const Archive& archive);
30 
31 private:
32  VirtualJoystickViewImpl* impl;
33 };
34 
35 }
36 
37 #endif
Definition: Archive.h:21
Definition: ExtensionManager.h:26
Defines the minimum processing for performing pasing file for STL.
Definition: AbstractSceneLoader.h:9
Definition: View.h:28
#define CNOID_EXPORT
Definition: Util/exportdecl.h:37
Definition: VirtualJoystickView.h:16