Ejemplo n.º 1
0
void PlotEntitiesProperty::notifyAll() {
    Property::invalidate();
    executeLinks();
    // check if conditions are met and exec actions
    for (size_t j = 0; j < conditions_.size(); ++j)
        conditions_[j]->exec();
    updateWidgets();
    invalidateOwner();
}
Ejemplo n.º 2
0
void TransFuncProperty::notifyChange() {
    executeLinks();

    // check if conditions are met and exec actions
    for (size_t j = 0; j < conditions_.size(); ++j)
        conditions_[j]->exec();

    updateWidgets();

    // invalidate owner:
    invalidateOwner();
}