void KstBindImage::setMap(KJS::ExecState *exec, const KJS::Value& value) { unsigned i = 0; if (value.type() != KJS::NumberType || !value.toUInt32(i)) { return createPropertyTypeError(exec); } if (i > 2) { return createPropertyRangeError(exec); } KstImagePtr d = makeImage(_d); if (d) { KstWriteLocker wl(d); switch (i) { case 0: d->setHasContourMap(false); d->setHasColorMap(true); break; case 1: d->setHasContourMap(true); d->setHasColorMap(false); break; case 2: d->setHasContourMap(true); d->setHasColorMap(true); break; } } }
void KstBindLine::setLineStyle(KJS::ExecState *exec, const KJS::Value& value) { unsigned w = 0; if (value.type() != KJS::NumberType || !value.toUInt32(w)) { return createPropertyTypeError(exec); } KstViewLinePtr d = makeLine(_d); if (d) { KstWriteLocker wl(d); switch (w) { case 0: d->setPenStyle(Qt::SolidLine); break; case 1: d->setPenStyle(Qt::DashLine); break; case 2: d->setPenStyle(Qt::DotLine); break; case 3: d->setPenStyle(Qt::DashDotLine); break; case 4: d->setPenStyle(Qt::DashDotDotLine); break; default: return createPropertyRangeError(exec); } KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindWindow::setWindowName(KJS::ExecState *exec, const KJS::Value& value) { if (value.type() != KJS::StringType) { return createPropertyTypeError(exec); } KstViewWindow *w = dynamic_cast<KstViewWindow*>(KstApp::inst()->findWindow(value.toString(exec).qstring())); if (w) { return createPropertyGeneralError(exec, i18n("A window of this name already exists.")); } _d->setCaption(value.toString(exec).qstring()); }
void KstBindPlot::setTopLabel(KJS::ExecState *exec, const KJS::Value& value) { if (value.type() != KJS::StringType) { return createPropertyTypeError(exec); } Kst2DPlotPtr d = makePlot(_d); if (d) { KstWriteLocker wl(d); d->topLabel()->setText(value.toString(exec).qstring()); } }
void KstBindLegend::setTitle(KJS::ExecState *exec, const KJS::Value& value) { if (value.type() != KJS::StringType) { return createPropertyTypeError(exec); } KstViewLegendPtr d = makeLegend(_d); if (d) { KstWriteLocker wl(d); d->setTitle(value.toString(exec).qstring()); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindPlot::setTied(KJS::ExecState *exec, const KJS::Value& value) { if (value.type() != KJS::BooleanType) { return createPropertyTypeError(exec); } Kst2DPlotPtr d = makePlot(_d); if (d) { KstWriteLocker wl(d); d->setTied(value.toBoolean(exec)); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindLegend::setTextColor(KJS::ExecState *exec, const KJS::Value& value) { QVariant cv = KJSEmbed::convertToVariant(exec, value); if (!cv.canCast(QVariant::Color)) { return createPropertyTypeError(exec); } KstViewLegendPtr d = makeLegend(_d); if (d) { KstWriteLocker rl(d); d->setForegroundColor(cv.toColor()); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindLegend::setFontSize(KJS::ExecState *exec, const KJS::Value& value) { unsigned int i = 0; if (value.type() != KJS::NumberType || !value.toUInt32(i)) { return createPropertyTypeError(exec); } KstViewLegendPtr d = makeLegend(_d); if (d) { KstWriteLocker wl(d); d->setFontSize(i); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindLine::setTo(KJS::ExecState *exec, const KJS::Value& value) { KstBindPoint *imp = 0L; if (value.type() != KJS::ObjectType || !(imp = dynamic_cast<KstBindPoint*>(value.toObject(exec).imp()))) { return createPropertyTypeError(exec); } KstViewLinePtr d = makeLine(_d); if (d) { KstWriteLocker wl(d); d->setTo(QPoint(int(imp->_x), int(imp->_y))); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindLine::setWidth(KJS::ExecState *exec, const KJS::Value& value) { unsigned w = 0; if (value.type() != KJS::NumberType || !value.toUInt32(w)) { return createPropertyTypeError(exec); } KstViewLinePtr d = makeLine(_d); if (d) { KstWriteLocker wl(d); d->setWidth(w); KstApp::inst()->paintAll(KstPainter::P_PAINT); } }
void KstBindPlotLabel::setFont(KJS::ExecState *exec, const KJS::Value& value) { if (!_d) { return createPropertyInternalError(exec); } if (value.type() != KJS::StringType) { return createPropertyTypeError(exec); } KstWriteLocker wl(_d); _d->topLabel()->setFontName(value.toString(exec).qstring()); _d->setDirty(); KstApp::inst()->paintAll(KstPainter::P_PAINT); }
void KstBindPlotLabel::setDataPrecision(KJS::ExecState *exec, const KJS::Value& value) { uint i = 0; if (!_d) { return createPropertyInternalError(exec); } if (value.type() != KJS::NumberType || !value.toUInt32(i)) { return createPropertyTypeError(exec); } KstWriteLocker wl(_d); _d->topLabel()->setDataPrecision(i); _d->setDirty(); KstApp::inst()->paintAll(KstPainter::P_PAINT); }