SDRPlusPlus/core/src/gui/gui.h

14 lines
363 B
C
Raw Normal View History

2020-09-20 00:19:39 +02:00
#pragma once
#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-08 04:36:37 +01:00
#include <new_module.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;
void selectSource(std::string name);
2020-09-20 00:19:39 +02:00
};