|
@ -10,6 +10,7 @@ |
|
|
#include "TextureHighlightWidget.h" |
|
|
#include "TextureHighlightWidget.h" |
|
|
#include "TextureEditorWidget.h" |
|
|
#include "TextureEditorWidget.h" |
|
|
#include "ProjectionEditorWidget.h" |
|
|
#include "ProjectionEditorWidget.h" |
|
|
|
|
|
#include "SourcesEditorWidget.h" |
|
|
|
|
|
|
|
|
namespace ofx { |
|
|
namespace ofx { |
|
|
namespace piMapper { |
|
|
namespace piMapper { |
|
@ -71,6 +72,7 @@ class Gui { |
|
|
TextureHighlightWidget & getTextureHighlightWidget(); |
|
|
TextureHighlightWidget & getTextureHighlightWidget(); |
|
|
TextureEditorWidget & getTextureEditorWidget(); |
|
|
TextureEditorWidget & getTextureEditorWidget(); |
|
|
ProjectionEditorWidget & getProjectionEditorWidget(); |
|
|
ProjectionEditorWidget & getProjectionEditorWidget(); |
|
|
|
|
|
SourcesEditorWidget & getSourcesEditorWidget(); |
|
|
|
|
|
|
|
|
// Consider these as a part of the application states/modes.
|
|
|
// Consider these as a part of the application states/modes.
|
|
|
void onMousePressed(ofMouseEventArgs & args); |
|
|
void onMousePressed(ofMouseEventArgs & args); |
|
@ -93,6 +95,7 @@ class Gui { |
|
|
TextureHighlightWidget _textureHighlightWidget; |
|
|
TextureHighlightWidget _textureHighlightWidget; |
|
|
TextureEditorWidget _textureEditorWidget; |
|
|
TextureEditorWidget _textureEditorWidget; |
|
|
ProjectionEditorWidget _projectionEditorWidget; |
|
|
ProjectionEditorWidget _projectionEditorWidget; |
|
|
|
|
|
SourcesEditorWidget _sourcesEditorWidget; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
} // piMapper
|
|
|
} // piMapper
|
|
|