void KisPropertiesConfigurationTest::testDefaultValues() { KisPropertiesConfiguration* config = new KisPropertiesConfiguration(); QVERIFY(config->getInt("bouh", v1) == v1); QVERIFY(config->getString("bouh", v2) == v2); QVERIFY(config->getDouble("bouh", v3) == v3); QVERIFY(config->getBool("bouh", v4) == v4); QVERIFY(config->getCubicCurve("bouh", v5) == v5); delete config; }
void KisPropertiesConfigurationTest::testNotSavedValues() { KisPropertiesConfiguration* config = createConfig(); config->setPropertyNotSaved("v3"); testConfig(config); QString s = config->toXML(); delete config; config = new KisPropertiesConfiguration(); config->fromXML(s); QVERIFY(config->getInt("v1", 0) == v1); QVERIFY(config->getString("v2", "") == v2); QVERIFY(config->hasProperty("v3") == false); QVERIFY(config->getBool("v4", !v4) == v4); QVERIFY(config->getCubicCurve("v5") == v5); delete config; }
KisHatchingPaintOpSettingsWidget:: KisHatchingPaintOpSettingsWidget(QWidget* parent) : KisBrushBasedPaintopOptionWidget(parent) { //-------Adding widgets to the screen------------ addPaintOpOption(new KisHatchingOptions()); addPaintOpOption(new KisHatchingPreferences()); addPaintOpOption(new KisPaintActionTypeOption()); addPaintOpOption(new KisCurveOptionWidget(new KisHatchingPressureSeparationOption())); addPaintOpOption(new KisCurveOptionWidget(new KisHatchingPressureThicknessOption())); addPaintOpOption(new KisCurveOptionWidget(new KisHatchingPressureCrosshatchingOption())); addPaintOpOption(new KisCurveOptionWidget(new KisPressureSizeOption())); addPaintOpOption(new KisCurveOptionWidget(new KisPressureOpacityOption())); //-----Useful to read first:------ /* Below you will encounter a reasonably correct solution to the problem of changing the default presets of the "BrushTip" popup configuration dialgoue. In my (Pentalis) opinion, the best solution is code refactoring (simpler ways to change the defaults). On the meanwhile, copypasting this code won't give your class a charisma penalty. In kis_hatching_paintop_settings.cpp you will find a snippet of code to discover the structure of your XML config tree if you need to edit it at build time like here. */ //---------START ALTERING DEFAULT VALUES----------- //As the name implies, reconfigurationCourier is the KisPropertiesConfiguration* //we'll use as an intermediary to edit the default settings KisPropertiesConfiguration* reconfigurationCourier = configuration(); /*xMLAnalyzer is an empty document we'll use to analyze and edit the config string part by part I know the important string is "brush_definition" because I read the tree with the snippet in kis_hatching_paintop_settings.cpp */ QDomDocument xMLAnalyzer(""); xMLAnalyzer.setContent(reconfigurationCourier->getString("brush_definition") ); /*More things I know by reading the XML tree. At this point you can just read it with: qDebug() << xMLAnalyzer.toString() ; those QDomElements are the way to navigate the XML tree, read http://doc.qt.nokia.com/latest/qdomdocument.html for more information */ QDomElement firstTag = xMLAnalyzer.documentElement(); QDomElement firstTagsChild = firstTag.elementsByTagName("MaskGenerator").item(0).toElement(); // SET THE DEFAULT VALUES firstTag.attributeNode("spacing").setValue("0.4"); firstTagsChild.attributeNode("diameter").setValue("30"); //Write them into the intermediary config file reconfigurationCourier->setProperty("brush_definition", xMLAnalyzer.toString() ); KisCubicCurve CurveSize; CurveSize.fromString("0,1;1,0.1;"); //qDebug() << "\n\n\n" << CurveSize.toString() << "\n\n\n"; QVariant QVCurveSize = QVariant::fromValue(CurveSize); reconfigurationCourier->setProperty("CurveSize", QVCurveSize); setConfiguration(reconfigurationCourier); // Finished. /* Debugging block QMap<QString, QVariant> rofl = QMap<QString, QVariant>(reconfigurationCourier->getProperties()); QMap<QString, QVariant>::const_iterator i; for (i = rofl.constBegin(); i != rofl.constEnd(); ++i) qDebug() << i.key() << ":" << i.value(); */ delete reconfigurationCourier; }