Home
last modified time | relevance | path

Searched refs:getBoolAttribute (Results 1 – 25 of 60) sorted by relevance

123

/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/X3D/
H A DX3DImporter_Rendering.cpp243 XmlParser::getBoolAttribute(node, "ccw", ccw); in readIndexedTriangleFanSet()
247 XmlParser::getBoolAttribute(node, "solid", solid); in readIndexedTriangleFanSet()
349 XmlParser::getBoolAttribute(node, "ccw", ccw); in readIndexedTriangleSet()
353 XmlParser::getBoolAttribute(node, "solid", solid); in readIndexedTriangleSet()
448 XmlParser::getBoolAttribute(node, "ccw", ccw); in readIndexedTriangleStripSet()
452 XmlParser::getBoolAttribute(node, "solid", solid); in readIndexedTriangleStripSet()
676 XmlParser::getBoolAttribute(node, "ccw", ccw); in readTriangleFanSet()
680 XmlParser::getBoolAttribute(node, "solid", solid); in readTriangleFanSet()
786 XmlParser::getBoolAttribute(node, "ccw", ccw); in readTriangleSet()
789 XmlParser::getBoolAttribute(node, "solid", solid); in readTriangleSet()
[all …]
H A DX3DImporter_Geometry3D.cpp76 XmlParser::getBoolAttribute(node, "solid", solid); in readBox()
118 XmlParser::getBoolAttribute(node, "solid", solid); in readCone()
119 XmlParser::getBoolAttribute(node, "side", side); in readCone()
120 XmlParser::getBoolAttribute(node, "bottom", bottom); in readCone()
184 XmlParser::getBoolAttribute(node, "solid", solid); in readCylinder()
186 XmlParser::getBoolAttribute(node, "top", top); in readCylinder()
187 XmlParser::getBoolAttribute(node, "side", side); in readCylinder()
277 XmlParser::getBoolAttribute(node, "solid", solid); in readElevationGrid()
278 XmlParser::getBoolAttribute(node, "ccw", ccw); in readElevationGrid()
539 XmlParser::getBoolAttribute(node, "ccw", ccw); in readExtrusion()
[all …]
H A DX3DImporter_Light.cpp80 XmlParser::getBoolAttribute(node, "global", global); in readDirectionalLight()
82 XmlParser::getBoolAttribute(node, "on", on); in readDirectionalLight()
145 XmlParser::getBoolAttribute(node, "global", global); in readPointLight()
148 XmlParser::getBoolAttribute(node, "on", on); in readPointLight()
222 XmlParser::getBoolAttribute(node, "global", global); in readSpotLight()
225 XmlParser::getBoolAttribute(node, "on", on); in readSpotLight()
H A DX3DImporter_Texturing.cpp71 XmlParser::getBoolAttribute(node, "repeatS", repeatS); in readImageTexture()
72 XmlParser::getBoolAttribute(node, "repeatT", repeatT); in readImageTexture()
H A DX3DImporter_Geometry2D.cpp136 XmlParser::getBoolAttribute(node, "solid", solid); in readArcClose2D()
233 XmlParser::getBoolAttribute(node, "solid", solid); in readDisk2D()
390 XmlParser::getBoolAttribute(node, "solid", solid); in readRectangle2D()
436 XmlParser::getBoolAttribute(node, "solid", solid); in readTriangleSet2D()
H A DX3DImporter_Networking.cpp77 XmlParser::getBoolAttribute(node, "load", load); in readInline()
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/ComponentEditor/Components/
H A Djucer_TextEditorHandler.h74 te->setMultiLine (xml.getBoolAttribute ("multiline", defaultEditor.isMultiLine())); in restoreFromXml()
75 …te->setReturnKeyStartsNewLine (xml.getBoolAttribute ("retKeyStartsLine", defaultEditor.getReturnKe… in restoreFromXml()
76 te->setReadOnly (xml.getBoolAttribute ("readonly", defaultEditor.isReadOnly())); in restoreFromXml()
77 … te->setScrollbarsShown (xml.getBoolAttribute ("scrollbars", defaultEditor.areScrollbarsShown())); in restoreFromXml()
78 te->setCaretVisible (xml.getBoolAttribute ("caret", defaultEditor.isCaretVisible())); in restoreFromXml()
79 … te->setPopupMenuEnabled (xml.getBoolAttribute ("popupmenu", defaultEditor.isPopupMenuEnabled())); in restoreFromXml()
H A Djucer_LabelHandler.h85 font.setBold (xml.getBoolAttribute ("bold", false)); in restoreFromXml()
86 font.setItalic (xml.getBoolAttribute ("italic", false)); in restoreFromXml()
101 …l->setEditable (xml.getBoolAttribute ("editableSingleClick", defaultLabel.isEditableOnSingleClick(… in restoreFromXml()
102 … xml.getBoolAttribute ("editableDoubleClick", defaultLabel.isEditableOnDoubleClick()), in restoreFromXml()
103 … xml.getBoolAttribute ("focusDiscardsChanges", defaultLabel.doesLossOfFocusDiscardChanges())); in restoreFromXml()
H A Djucer_TreeViewHandler.h64 … t->setRootItemVisible (xml.getBoolAttribute ("rootVisible", defaultTreeView.isRootItemVisible())); in restoreFromXml()
65 …t->setDefaultOpenness (xml.getBoolAttribute ("openByDefault", defaultTreeView.areItemsOpenByDefaul… in restoreFromXml()
H A Djucer_ToggleButtonHandler.h75 tb->setToggleState (xml.getBoolAttribute ("state", false), dontSendNotification); in restoreFromXml()
H A Djucer_ViewportHandler.h69 …v->setScrollBarsShown (xml.getBoolAttribute ("vscroll", defaultViewport.isVerticalScrollBarShown()… in restoreFromXml()
70 … xml.getBoolAttribute ("hscroll", defaultViewport.isHorizontalScrollBarShown())); in restoreFromXml()
/dports/math/rkward-kde/rkward-0.7.1/rkward/plugin/
H A Drkpluginsaveobject.cpp36 bool checkable = xml->getBoolAttribute (element, "checkable", false, DL_INFO); in RKPluginSaveObject()
37 bool checked = xml->getBoolAttribute (element, "checked", false, DL_INFO); in RKPluginSaveObject()
38 bool required = xml->getBoolAttribute (element, "required", true, DL_INFO); in RKPluginSaveObject()
H A Drkcheckbox.cpp34 …addChild ("state", state = new RKComponentPropertyBool (this, true, xml->getBoolAttribute (element… in RKCheckBox()
42 checkbox->setChecked (xml->getBoolAttribute (element, "checked", false, DL_INFO)); in RKCheckBox()
H A Drkpluginframe.cpp41 if (xml->getBoolAttribute (element, "checkable", false, DL_INFO)) { in RKPluginFrame()
43 frame->setChecked (xml->getBoolAttribute (element, "checked", true, DL_INFO)); in RKPluginFrame()
H A Drkvarslot.cpp91 if ((multi = xml->getBoolAttribute (element, "multi", false, DL_INFO))) { in RKVarSlot()
117 …available->setStripDuplicates (!xml->getBoolAttribute (element, "allow_duplicates", false, DL_INFO… in RKVarSlot()
118 setRequired (xml->getBoolAttribute (element, "required", false, DL_INFO)); in RKVarSlot()
H A Drkmatrixinput.cpp67 allow_missings = xml->getBoolAttribute (element, "allow_missings", false, DL_INFO); in RKMatrixInput()
69 …allow_user_resize_columns = xml->getBoolAttribute (element, "allow_user_resize_columns", true, DL_… in RKMatrixInput()
70 allow_user_resize_rows = xml->getBoolAttribute (element, "allow_user_resize_rows", true, DL_INFO); in RKMatrixInput()
97 if (xml->getBoolAttribute (element, "fixed_width", false, DL_INFO)) { in RKMatrixInput()
100 if (xml->getBoolAttribute (element, "fixed_height", false, DL_INFO)) { in RKMatrixInput()
H A Drkpluginbrowser.cpp42 setRequired (xml->getBoolAttribute (element, "required", true, DL_INFO)); in RKPluginBrowser()
54 only_local = !xml->getBoolAttribute (element, "allow_urls", false, DL_INFO); in RKPluginBrowser()
H A Drkvalueselector.cpp58 if (standalone && xml->getBoolAttribute (element, "single", false, DL_INFO)) { in RKValueSelector()
80 if (xml->getBoolAttribute (child, "checked", false, DL_INFO)) selected_list.append (v); in RKValueSelector()
H A Drkstandardcomponent.cpp258 build_wizard = xml->getBoolAttribute (wizard_element, "recommended", false, DL_INFO); in createTopLevel()
681 if (xml.getBoolAttribute (e, "as_button", false, DL_INFO)) { in buildElement()
730 …gAttribute (cel, "governor", "#noid#", DL_WARNING), QString (), xml.getBoolAttribute (cel, "reconc… in parseLogic()
738 …RKComponentPropertyBase *prop = new RKComponentPropertyBase (component (), xml.getBoolAttribute (c… in parseLogic()
768 convert->setRequireTrue (xml.getBoolAttribute (cel, "require_true", false, DL_INFO)); in parseLogic()
H A Drkinput.cpp45 setRequired (xml->getBoolAttribute (element, "required", false, DL_INFO)); in RKInput()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_processors/processors/
H A Djuce_PluginDescription.cpp88 isInstrument = xml.getBoolAttribute ("isInstrument", false); in loadFromXml()
93 hasSharedContainer = xml.getBoolAttribute ("isShell", false); in loadFromXml()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_audio_processors/processors/
H A Djuce_PluginDescription.cpp88 isInstrument = xml.getBoolAttribute ("isInstrument", false); in loadFromXml()
93 hasSharedContainer = xml.getBoolAttribute ("isShell", false); in loadFromXml()
/dports/math/rkward-kde/rkward-0.7.1/rkward/misc/
H A Dxmlhelper.h131 bool getBoolAttribute (const QDomElement &element, const QString &name, bool def, int debug_level);
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/ComponentEditor/
H A Djucer_JucerDocument.cpp375 fixedSize = xml.getBoolAttribute ("fixedSize", false); in loadFromXml()
380 snapActive = xml.getBoolAttribute ("snapActive", snapActive); in loadFromXml()
381 snapShown = xml.getBoolAttribute ("snapShown", snapShown); in loadFromXml()
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/ComponentEditor/PaintElements/
H A Djucer_PaintElementText.h151 font.setBold (xml.getBoolAttribute ("bold", false)); in loadFromXml()
152 font.setItalic (xml.getBoolAttribute ("italic", false)); in loadFromXml()

123