示例#1
0
ofxGuiContainer::~ofxGuiContainer() {

    ofRemoveListener(resize, this, &ofxGuiContainer::onResize);
    ofRemoveListener(childAdded, this, &ofxGuiContainer::onChildAdded);
    ofRemoveListener(addedTo, this, &ofxGuiContainer::onParentAdded);
    unregisterMouseEvents();

}
示例#2
0
ofxPanel::~ofxPanel(){
	unregisterMouseEvents();
}
示例#3
0
BaseJoint::~BaseJoint() { unregisterMouseEvents(); }
示例#4
0
 void ProjectionEditor::disable() {
     unregisterAppEvents();
     unregisterMouseEvents();
     unregisterKeyEvents();
 }
示例#5
0
 SurfaceManagerGui::~SurfaceManagerGui() {
     unregisterMouseEvents();
     surfaceManager = NULL;
     _cmdManager = 0;
 }