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.
181 lines
4.9 KiB
181 lines
4.9 KiB
#include "RadioList.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
RadioList::RadioList() {
|
|
storedTitle = "";
|
|
storedSelectedItem = 0;
|
|
}
|
|
|
|
RadioList::RadioList(vector<string>& labels, vector<string>& values) {
|
|
RadioList();
|
|
setup(labels, values);
|
|
}
|
|
|
|
RadioList::RadioList(string title, vector<string>& labels, vector<string>& values) {
|
|
RadioList();
|
|
setup(title, labels, values);
|
|
}
|
|
|
|
RadioList::~RadioList() { clear(); }
|
|
|
|
void RadioList::setup(vector<string>& labels, vector<string>& values) {
|
|
// Copy incomming labels for later use
|
|
storedLabels = labels;
|
|
storedValues = values;
|
|
|
|
// Create toggles with labels from the labels arg
|
|
int i;
|
|
for (i = 0; i < labels.size(); i++) {
|
|
ofxToggle* toggle = new ofxToggle();
|
|
toggle->setup(false);
|
|
toggle->setName(labels[i]);
|
|
toggle->addListener(this, &RadioList::onToggleClicked);
|
|
guiGroup.add(toggle);
|
|
}
|
|
|
|
//cout << "num items: " << guiGroup.getNumControls() << endl;
|
|
}
|
|
|
|
void RadioList::setup(string title, vector<string>& labels, vector<string>& values) {
|
|
// Store title for later use
|
|
storedTitle = title;
|
|
guiGroup.setName(title);
|
|
setup(labels, values);
|
|
}
|
|
|
|
void RadioList::draw() { guiGroup.draw(); }
|
|
|
|
void RadioList::setTitle(string title) {
|
|
storedTitle = title;
|
|
guiGroup.setName(title);
|
|
}
|
|
|
|
void RadioList::setPosition(ofPoint p) { guiGroup.setPosition(p); }
|
|
|
|
void RadioList::setPosition(float x, float y) { guiGroup.setPosition(x, y); }
|
|
|
|
void RadioList::selectItem(int index) {
|
|
if (index >= guiGroup.getNumControls()) {
|
|
return;
|
|
}
|
|
|
|
unselectAll();
|
|
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(index));
|
|
toggle->removeListener(this, &RadioList::onToggleClicked);
|
|
*toggle = true; // Select the specific radio button
|
|
toggle->addListener(this, &RadioList::onToggleClicked);
|
|
//string name = toggle->getName();
|
|
// Throw event with value that is image path instead of name
|
|
string value = storedValues[index];
|
|
ofNotifyEvent(onRadioSelected, value, this);
|
|
storedSelectedItem = index;
|
|
}
|
|
|
|
bool RadioList::selectItemByValue(std::string itemValue) {
|
|
if (itemValue == "") {
|
|
ofLogNotice("RadioList") << "Item value empty";
|
|
return false;
|
|
}
|
|
unselectAll();
|
|
int itemIndex = -1;
|
|
for (int i = 0; i < storedValues.size(); i++) {
|
|
if (itemValue == storedValues[i]) {
|
|
itemIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
if (itemIndex >= 0) {
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(itemIndex));
|
|
toggle->removeListener(this, &RadioList::onToggleClicked);
|
|
*toggle = true; // Select the specific radio button
|
|
toggle->addListener(this, &RadioList::onToggleClicked);
|
|
return true;
|
|
}
|
|
ofLogNotice("RadioList") << "Item with value " << itemValue << " not found";
|
|
return false;
|
|
}
|
|
|
|
void RadioList::enable() {
|
|
if (guiGroup.getNumControls() >= 0) {
|
|
clear();
|
|
}
|
|
|
|
// Rebuild everyting
|
|
setup(storedTitle, storedLabels, storedValues);
|
|
|
|
// Select the stored selected item without throwing an event
|
|
ofxToggle* toggle =
|
|
static_cast<ofxToggle*>(guiGroup.getControl(storedSelectedItem));
|
|
toggle->removeListener(this, &RadioList::onToggleClicked);
|
|
*toggle = true;
|
|
toggle->addListener(this, &RadioList::onToggleClicked);
|
|
|
|
cout << "num items after enable: " << guiGroup.getNumControls() << endl;
|
|
}
|
|
|
|
void RadioList::disable() {
|
|
// Just remove everything
|
|
clear();
|
|
}
|
|
|
|
void RadioList::clear() {
|
|
int i;
|
|
for (i = 0; i < guiGroup.getNumControls(); i++) {
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(i));
|
|
toggle->removeListener(this, &RadioList::onToggleClicked);
|
|
delete toggle;
|
|
}
|
|
guiGroup.clear();
|
|
}
|
|
|
|
void RadioList::unselectAll() {
|
|
int i;
|
|
for (i = 0; i < guiGroup.getNumControls(); i++) {
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(i));
|
|
ofParameter<bool>* paramPtr =
|
|
static_cast<ofParameter<bool>*>(&toggle->getParameter());
|
|
toggle->removeListener(this, &RadioList::onToggleClicked);
|
|
*toggle = false;
|
|
toggle->addListener(this, &RadioList::onToggleClicked);
|
|
}
|
|
}
|
|
|
|
ofPoint RadioList::getPosition() { return guiGroup.getPosition(); }
|
|
|
|
float RadioList::getWidth() { return guiGroup.getWidth(); }
|
|
|
|
float RadioList::getHeight() { return guiGroup.getHeight(); }
|
|
|
|
string RadioList::getTitle() { return guiGroup.getName(); }
|
|
|
|
string RadioList::getItemName(int index) {
|
|
if (index >= guiGroup.getNumControls()) {
|
|
return "";
|
|
}
|
|
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(index));
|
|
return toggle->getName();
|
|
}
|
|
|
|
int RadioList::size() { return guiGroup.getNumControls(); }
|
|
|
|
void RadioList::onToggleClicked(bool& toggleValue) {
|
|
unselectAll();
|
|
|
|
// Search for the actual toggle triggering the event
|
|
int i;
|
|
for (i = 0; i < guiGroup.getNumControls(); i++) {
|
|
ofxToggle* toggle = static_cast<ofxToggle*>(guiGroup.getControl(i));
|
|
ofParameter<bool>* paramPtr =
|
|
static_cast<ofParameter<bool>*>(&toggle->getParameter());
|
|
|
|
if (&(paramPtr->get()) == &toggleValue) {
|
|
selectItem(i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|