void Container::addWidget(ofPtr<Widget> widget){
	widgets.push_back(widget);
	repositionWidgets();
	if(eventsEnabled) widget->enableEvents();
}