mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-02 17:51:35 -06:00
- Moved all OpenSpace headers to separate include directory - Added OpenSpaceTests binary with OPENSPACE_HAVE_TESTS define - Added CMake setting of BASE_DIR - Added OpenSpace initial tests for SceneGraph and SceneGraphNodes - Added OpenSpace initial tests for psc and pss - Restructured OpenSpace so no GL functions are called in constructors to make the classes testable - Todo: Make the base dir possible to set through command line argument and configuration file
28 lines
600 B
C
28 lines
600 B
C
//#ifndef MOUSEEXTERNALCONTROL_H
|
|
//#define MOUSEEXTERNALCONTROL_H
|
|
//
|
|
//#include "externalcontrol/pythonexternalcontrol.h"
|
|
//
|
|
//namespace openspace {
|
|
//
|
|
//class MouseExternalControl: public PythonExternalControl {
|
|
//public:
|
|
//
|
|
// // constructors & destructor
|
|
// MouseExternalControl(const char *filename);
|
|
// ~MouseExternalControl();
|
|
//
|
|
// void update();
|
|
//
|
|
// void mouseButtonCallback(int key, int action);
|
|
// void mousePosCallback(int x, int y);
|
|
// void mouseScrollCallback(int pos);
|
|
//private:
|
|
//
|
|
// int x_, y_, pos_, button1_, button2_, button3_;
|
|
//
|
|
//};
|
|
//
|
|
//} // namespace openspace
|
|
//
|
|
//#endif
|