mirror of https://github.com/dcoredump/dexed.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
499 B
21 lines
499 B
10 years ago
|
/*
|
||
|
==============================================================================
|
||
|
==============================================================================
|
||
|
*/
|
||
|
|
||
|
#ifndef ALGODISPLAY_H_INCLUDED
|
||
|
#define ALGODISPLAY_H_INCLUDED
|
||
|
|
||
|
#include "../JuceLibraryCode/JuceHeader.h"
|
||
|
|
||
|
|
||
|
class AlgoDisplay : public Component {
|
||
|
void drawOp(Graphics &g, int x, int y, int num);
|
||
|
public:
|
||
|
AlgoDisplay();
|
||
|
char *algo;
|
||
|
void paint(Graphics &g);
|
||
|
};
|
||
|
|
||
|
#endif // ALGODISPLAY_H_INCLUDED
|