parent
4f1d3a1a26
commit
6e75dea4e0
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
#
|
||||||
|
# configurations should be made in here.
|
||||||
|
# set one of these variables to 0 to disable the function.
|
||||||
|
#
|
||||||
|
USE_SVBONY = 1
|
||||||
|
DEBUG_ANGLES = 1
|
||||||
|
|
@ -0,0 +1,26 @@
|
|||||||
|
/***************************************************************************************
|
||||||
|
*
|
||||||
|
* debug-angles.cc is part of SimpleSkyCam.
|
||||||
|
*
|
||||||
|
*****************************************************************************************/
|
||||||
|
|
||||||
|
#include <gtk/gtk.h>
|
||||||
|
#include <gdk/gdk.h>
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
void debug_angles_draw(cairo_t *cr) {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void debug_angles_motionevent(GdkEvent *event) {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void debug_angles_btnpress(GdkEvent *event) {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
@ -0,0 +1,20 @@
|
|||||||
|
/***************************************************************************************
|
||||||
|
*
|
||||||
|
* debug.h is part of SimpleSkyCam.
|
||||||
|
*
|
||||||
|
*****************************************************************************************/
|
||||||
|
|
||||||
|
#ifndef _DEBUG_H_
|
||||||
|
#define _DEBUG_H_
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "simpleskycam.h"
|
||||||
|
#include "gui.h"
|
||||||
|
|
||||||
|
#ifdef DEBUG_ANGLES
|
||||||
|
extern void debug_angles_draw(cairo_t *cr);
|
||||||
|
extern void debug_angles_motionevent(GdkEvent *event);
|
||||||
|
extern void debug_angles_btnpress(GdkEvent *event);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in new issue