<div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hello LO Developers,<br></div><div><br></div><div>I'm working on bug 124507 (<a href="https://bugs.documentfoundation.org/show_bug.cgi?id=124507">https://bugs.documentfoundation.org/show_bug.cgi?id=124507</a>) for Impress in which I need to store/load some text group data into/from the saved file. The data is already stored in .pptx files, so I'm starting there to find my way around getting data in and out of saved files. I will then need to save and load the data with .odp files as well. I'm getting a little lost in the data structures and in knowing what I should change.</div><div><br></div><div>I see that after a pptx file is parsed, MainSequence::createMainSequence(...) builds its internal data structures (such as CustomAnimationEffect objects) from an XTimeContainer.</div><div><br></div><div>1. Do I need to add an additional type of information (text group info) into the XTimeContainer (or one of its child nodes)? It seems this data would be set while parsing the data file, and then read/updated during operation. I could then extract the data from the node during createMainSequence(...) and have it create the CustomAnimationTextGroup objects with the extracted settings.</div><div><br></div><div>2. If so, would I create a new class like XAnimationTextGroup? Does this then require adding an .idl file? Does this become exposed in the API?</div><div><br></div><div>3. I see that animcore.cxx's AnimationNode class implements XTimeContainer (and the rest of the tree node types). Should I make it also implement the new XAnimationTextGroup?</div><div><br></div><div>4. For actually processing the .pptx file, the text group info is stored in the following XML path:</div><div><p:sld><span style="white-space:pre">                                                       </span></div><div><span style="white-space:pre">      </span><p:timing><span style="white-space:pre">                                     </span></div><div><span style="white-space:pre">              </span><p:bldLst><span style="white-space:pre">                             </span></div><div><span style="white-space:pre">                      </span><p:bldP<span style="white-space:pre">                           </span></div><div><span style="white-space:pre">                              </span>spid="3"<span style="white-space:pre">   </span></div><div><span style="white-space:pre">                              </span>grpId="0"<span style="white-space:pre">  </span></div><div><span style="white-space:pre">                              </span>build="p"<span style="white-space:pre">  </span></div><div><span style="white-space:pre">                              </span>bldLvl="2"<span style="white-space:pre">         </span>// Group text by</div><div><span style="white-space:pre">                              </span>uiExpand="1" </div><div><span style="white-space:pre">                              </span>rev="1" <span style="white-space:pre">           </span>// Reverse order</div><div><span style="white-space:pre">                              </span>advAuto="1200"<span style="white-space:pre">     </span>// Auto advance time (ms)</div><div><span style="white-space:pre">                             </span>/></div><div><span style="white-space:pre">                 </span>...</div><div>4a) I see that there is a bldP token handled in buildlistcontent.cxx; however the code currently does nothing. Is there a similar example in the LO code which I can reference for extracting the values from the XML data?</div><div><br></div><div>4b) Once extracted, should I process it in CommonTimeNodeContext's constructor (it lists handling the attribute XML_bldLvl as "TODO")?</div><div><br></div><div>4c) Then add code in TimeNode::setNode() to set attribute value on the approprate X... object (such as XAnimate?)?</div><div><br></div><div><br></div><div>Thank you for any ideas on what I should do, or where to look for more help!</div><div>Brian.</div></div></div></div>