mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-18 22:32:44 +00:00
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
#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>
|
|
#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 <gui/waterfall.h>
|
|
#include <gui/frequency_select.h>
|
|
#include <fftw3.h>
|
|
#include <signal_path/dsp.h>
|
|
#include <io/soapy.h>
|
|
#include <gui/icons.h>
|
|
#include <gui/bandplan.h>
|
|
#include <watcher.h>
|
|
#include <module.h>
|
|
#include <signal_path/vfo_manager.h>
|
|
#include <signal_path/audio.h>
|
|
#include <gui/style.h>
|
|
#include <config.h>
|
|
#include <signal_path/signal_path.h>
|
|
|
|
#define WINDOW_FLAGS ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoBackground
|
|
|
|
void windowInit();
|
|
void drawWindow();
|
|
void bindVolumeVariable(float* vol);
|
|
void unbindVolumeVariable(); |