preparations for position stabilisation

master
Steffen Pohle 3 years ago
parent 69e0de0fc8
commit 51f4a97ea3

@ -0,0 +1,29 @@
/***************************************************************************************
*
* posctl.cc is part of SimpleSkyCam.
*
*****************************************************************************************/
#include <list>
#include <string>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "gui.h"
#include "filter.h"
#include "detect.h"
#include "configuration.h"
#include "video.h"
#include "videodev.h"
#include "histogram.h"
extern GtkBuilder *_builder_; // work around for threads
void cb_posctl_show_window (GtkWidget *widget, gpointer data) {
printf ("%s:%d %s\n", __FILE__, __LINE__, __FUNCTION__);
GtkWidget *wnd = GTK_WIDGET(gtk_builder_get_object (GTK_BUILDER(_builder_), "window-posctl"));
gtk_widget_show(wnd);
}
Loading…
Cancel
Save