2020-09-20 00:19:39 +02:00
|
|
|
#pragma once
|
2020-12-05 22:42:12 +01:00
|
|
|
#include <gui/widgets/waterfall.h>
|
|
|
|
#include <gui/widgets/frequency_select.h>
|
|
|
|
#include <gui/widgets/menu.h>
|
2020-11-30 21:17:36 +01:00
|
|
|
#include <gui/dialogs/loading_screen.h>
|
2020-12-22 20:00:51 +01:00
|
|
|
#include <module.h>
|
2021-06-20 21:17:11 +02:00
|
|
|
#include <gui/main_window.h>
|
2020-09-20 00:19:39 +02:00
|
|
|
|
|
|
|
namespace gui {
|
|
|
|
SDRPP_EXPORT ImGui::WaterFall waterfall;
|
|
|
|
SDRPP_EXPORT FrequencySelect freqSelect;
|
2020-09-24 19:36:57 +02:00
|
|
|
SDRPP_EXPORT Menu menu;
|
2020-10-07 22:44:54 +02:00
|
|
|
|
2021-06-20 21:17:11 +02:00
|
|
|
SDRPP_EXPORT MainWindow mainWindow;
|
|
|
|
|
2020-10-07 22:44:54 +02:00
|
|
|
void selectSource(std::string name);
|
2020-09-20 00:19:39 +02:00
|
|
|
};
|