2014-01-06 02:40:24 +00:00
|
|
|
//
|
|
|
|
|
// GUI.h
|
|
|
|
|
// emptyExample
|
|
|
|
|
//
|
|
|
|
|
// Created by James Alliban on 25/06/2013.
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ofMain.h"
|
|
|
|
|
#include "GUIManager.h"
|
|
|
|
|
|
|
|
|
|
class testApp;
|
|
|
|
|
|
|
|
|
|
class GUI : GUIManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual void setup();
|
|
|
|
|
virtual bool getVisible();
|
|
|
|
|
|
|
|
|
|
void addKeyboardShortcutsGUI();
|
|
|
|
|
void addGraphAnimationGUI();
|
|
|
|
|
void addBarGraphDesignGUI();
|
|
|
|
|
void addGraphSimulationGUI();
|
|
|
|
|
void addBackgroundGUI();
|
2014-01-08 17:31:33 +00:00
|
|
|
void addHUDTextGUI();
|
2014-01-06 02:40:24 +00:00
|
|
|
void addVariousGUI();
|
|
|
|
|
|
|
|
|
|
void variousGUIEvent(ofxUIEventArgs &e);
|
|
|
|
|
|
|
|
|
|
virtual void update();
|
|
|
|
|
virtual void draw();
|
|
|
|
|
|
|
|
|
|
testApp* app;
|
|
|
|
|
vector<string> publishers;
|
|
|
|
|
};
|