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.
20 lines
499 B
20 lines
499 B
/*
|
|
==============================================================================
|
|
==============================================================================
|
|
*/
|
|
|
|
#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
|
|
|