36 lines
585 B
C
36 lines
585 B
C
#pragma once
|
|
|
|
|
|
#include "base/Plot.h"
|
|
#include "GenerateMockData.h"
|
|
#include "base/MutiSelectRect.h"
|
|
|
|
//plottable
|
|
#include "plottable/Afterglow.h"
|
|
#include "plottable/AudioFrequent.h"
|
|
#include "plottable/Planisphere.h"
|
|
#include "plottable/Spectrum.h"
|
|
#include "plottable/SweepFrequent.h"
|
|
#include "plottable/WaterFall.h"
|
|
|
|
//axis
|
|
#include "Axis/FrequentAxis.h"
|
|
#include "Axis/TimeAxis.h"
|
|
#include "Axis/TimeAxis.h"
|
|
|
|
|
|
|
|
#include "CacheModel.h"
|
|
|
|
|
|
struct ScreenInfo
|
|
{
|
|
QSize fullSize; // 包含任务栏
|
|
QSize availableSize; // 不包含任务栏
|
|
};
|
|
|
|
ScreenInfo getScreenInfo();
|
|
|
|
|
|
|