2020-06-10 04:13:56 +02:00
|
|
|
#pragma once
|
|
|
|
#include "imgui.h"
|
|
|
|
#include "imgui_impl_glfw.h"
|
|
|
|
#include "imgui_impl_opengl3.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <GL/glew.h>
|
|
|
|
#include <GLFW/glfw3.h>
|
2020-08-07 14:29:06 +02:00
|
|
|
#include <imgui_plot.h>
|
|
|
|
#include <dsp/resampling.h>
|
|
|
|
#include <dsp/demodulator.h>
|
|
|
|
#include <dsp/filter.h>
|
|
|
|
#include <thread>
|
|
|
|
#include <complex>
|
|
|
|
#include <dsp/source.h>
|
|
|
|
#include <dsp/math.h>
|
|
|
|
#include <waterfall.h>
|
|
|
|
#include <frequency_select.h>
|
|
|
|
#include <fftw3.h>
|
|
|
|
#include <signal_path.h>
|
|
|
|
#include <io/soapy.h>
|
|
|
|
#include <icons.h>
|
|
|
|
#include <bandplan.h>
|
|
|
|
#include <watcher.h>
|
|
|
|
#include <module.h>
|
2020-08-11 18:33:42 +02:00
|
|
|
#include <vfo_manager.h>
|
2020-08-16 03:39:05 +02:00
|
|
|
#include <audio.h>
|
|
|
|
#include <style.h>
|
|
|
|
#include <config.h>
|
2020-06-10 04:13:56 +02:00
|
|
|
|
2020-07-19 15:59:44 +02:00
|
|
|
#define WINDOW_FLAGS ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoBackground
|
2020-06-10 04:13:56 +02:00
|
|
|
|
|
|
|
void windowInit();
|
2020-08-12 16:43:44 +02:00
|
|
|
void drawWindow();
|
|
|
|
void bindVolumeVariable(float* vol);
|
|
|
|
void unbindVolumeVariable();
|