CubicSDR/src/visual/ModeSelectorContext.h

18 lines
419 B
C
Raw Normal View History

2015-01-04 19:50:05 -05:00
#pragma once
#include "PrimaryGLContext.h"
#include "Gradient.h"
#define NUM_WATERFALL_LINES 512
class ModeSelectorCanvas;
class ModeSelectorContext: public PrimaryGLContext {
public:
ModeSelectorContext(ModeSelectorCanvas *canvas, wxGLContext *sharedContext);
void DrawBegin();
2015-01-05 19:12:16 -05:00
void DrawSelector(std::string label, int c, int cMax, bool on, float r, float g, float b, float a);
2015-01-04 19:50:05 -05:00
void DrawEnd();
};