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.
26 lines
595 B
26 lines
595 B
#ifndef H_OFX_SURFACE_MANAGER_GUI
|
|
#define H_OFX_SURFACE_MANAGER_GUI
|
|
|
|
#include "ofMain.h"
|
|
#include "ofxSurfaceManager.h"
|
|
#include "ofxTextureEditor.h"
|
|
#include "ofxProjectionEditor.h"
|
|
#include "ofxGuiMode.h"
|
|
|
|
class ofxSurfaceManagerGui
|
|
{
|
|
public:
|
|
ofxSurfaceManagerGui();
|
|
ofxSurfaceManagerGui(ofxSurfaceManager* newSurfaceManager);
|
|
~ofxSurfaceManagerGui();
|
|
|
|
void setSurfaceManager(ofxSurfaceManager* newSurfaceManager);
|
|
|
|
private:
|
|
ofxSurfaceManager* surfaceManager;
|
|
ofxTextureEditor textureEditor;
|
|
ofxProjectionEditor projectionEditor;
|
|
int guiMode;
|
|
};
|
|
|
|
#endif
|