UIMLView.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. #include "UIMLView.h"
  2. #include "XML.h"
  3. #include "TextFeld.h"
  4. #include "Knopf.h"
  5. #include "Tabelle.h"
  6. #include "Fenster.h"
  7. #include "Schrift.h"
  8. #include "Bildschirm.h"
  9. #include "Rahmen.h"
  10. #include "Scroll.h"
  11. #include "Bild.h"
  12. using namespace Framework;
  13. // Erstellt eine UIML View
  14. UIMLView::UIMLView()
  15. : ZeichnungHintergrund()
  16. {
  17. style = Style::MEIgnoreInside | Style::MEIgnoreParentInside | Style::MEIgnoreSichtbar | Style::MEIgnoreVerarbeitet;
  18. members = new Trie< Zeichnung >();
  19. dom = 0;
  20. nextId = 0;
  21. memset( &init, 0, sizeof( UIInit ) );
  22. }
  23. // Erstellt eine UIML View zu einem UIML Text
  24. // uiml: Ein xml element gemät des ksg uiml standarts
  25. UIMLView::UIMLView( XML::Element *uiml, UIInit &init )
  26. : ZeichnungHintergrund()
  27. {
  28. this->init = init;
  29. members = new Trie< Zeichnung >();
  30. dom = 0;
  31. nextId = 0;
  32. setUIML( uiml );
  33. }
  34. // Erstellt eine UIML View zu einem UIML Text
  35. // uiml: Ein xml text gemät des ksg uiml standarts
  36. UIMLView::UIMLView( Text uiml, UIInit &init )
  37. {
  38. this->init = init;
  39. members = new Trie< Zeichnung >();
  40. dom = 0;
  41. setUIML( uiml );
  42. }
  43. UIMLView::~UIMLView()
  44. {
  45. if( dom )
  46. dom->release();
  47. members->release();
  48. }
  49. // Verarbeitet ein Maus Ereignis. Wird vom Framework automatisch aufgerufen.
  50. // me: Das Ereignis
  51. void UIMLView::doMausEreignis( MausEreignis &me, bool userRet )
  52. {
  53. if( dom )
  54. {
  55. bool verarbeitet = me.verarbeitet;
  56. me.verarbeitet |= hatStyleNicht( Style::Sichtbar );
  57. bool insideParent = me.insideParent;
  58. if( !hatStyle( Style::Sichtbar ) || !me.insideParent || me.verarbeitet || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet )
  59. me.insideParent = 0;
  60. int rbr = 0;
  61. if( hatStyle( Style::Rahmen ) && rahmen )
  62. rbr = rahmen->getRBreite();
  63. me.mx -= rbr;
  64. me.my -= rbr;
  65. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  66. me.my += vertikalScrollBar->getScroll();
  67. if( hatStyle( Style::HScroll ) && horizontalScrollBar )
  68. me.mx += horizontalScrollBar->getScroll();
  69. if( dom )
  70. {
  71. for( auto i = dom->getChilds(); i; i++ )
  72. { // TODO render elements backwards
  73. Zeichnung *z = members->z( i->getAttributeValue( "id" ) );
  74. if( z )
  75. z->doPublicMausEreignis( me );
  76. }
  77. }
  78. me.mx += rbr;
  79. me.my += rbr;
  80. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  81. me.my -= vertikalScrollBar->getScroll();
  82. if( hatStyle( Style::HScroll ) && horizontalScrollBar )
  83. me.mx -= horizontalScrollBar->getScroll();
  84. if( !hatStyle( Style::Sichtbar ) || !me.insideParent || me.verarbeitet || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet )
  85. me.insideParent = insideParent;
  86. else
  87. me.verarbeitet = 1;
  88. if( hatStyleNicht( Style::Sichtbar ) )
  89. me.verarbeitet = verarbeitet;
  90. }
  91. }
  92. void UIMLView::parseTable( Iterator<XML::Element *> childs, ObjTabelle * table )
  93. {
  94. for( auto i = childs; i; i++ )
  95. {
  96. Text id;
  97. if( i->hasAttribute( "id" ) )
  98. id = i->getAttributeValue( "id" );
  99. else
  100. {
  101. id = Text( "_" ) += nextId++;
  102. i->setAttribute( "id", id );
  103. }
  104. if( i->getName().istGleich( "tr" ) )
  105. {
  106. table->addZeile( id );
  107. Text line = id;
  108. int c = 1;
  109. for( auto j = i->getChilds(); j; j++ )
  110. {
  111. Zeichnung *z = parseElement( j._ );
  112. if( table->getSpaltenAnzahl() < c )
  113. table->addSpalte( Text( c - 1 ) );
  114. if( z )
  115. table->setZeichnungZ( (char *)Text( c - 1 ), (char *)line, z->getThis() );
  116. c++;
  117. }
  118. }
  119. }
  120. }
  121. void UIMLView::parseFrame( Iterator<XML::Element *> childs, Fenster * frame )
  122. {
  123. for( auto i = childs; i; i++ )
  124. {
  125. Zeichnung *z = parseElement( i._ );
  126. if( z )
  127. frame->addMember( z->getThis() );
  128. }
  129. }
  130. Zeichnung *UIMLView::parseElement( XML::Element * e )
  131. {
  132. Text id;
  133. if( e->hasAttribute( "id" ) )
  134. id = e->getAttributeValue( "id" );
  135. else
  136. {
  137. id = Text( "_" ) += nextId++;
  138. e->setAttribute( "id", id );
  139. }
  140. Zeichnung *z = members->z( id );
  141. if( !z )
  142. {
  143. // precompute attributes
  144. if( e->hasAttribute( "margin" ) )
  145. {
  146. Text m = e->getAttributeValue( "margin" );
  147. if( !e->hasAttribute( "margin-left" ) )
  148. e->setAttribute( "margin-left", m );
  149. if( !e->hasAttribute( "margin-top" ) )
  150. e->setAttribute( "margin-top", m );
  151. if( !e->hasAttribute( "margin-right" ) )
  152. e->setAttribute( "margin-right", m );
  153. if( !e->hasAttribute( "margin-bottom" ) )
  154. e->setAttribute( "margin-bottom", m );
  155. }
  156. if( e->hasAttribute( "class" ) )
  157. {
  158. Text c = e->getAttributeValue( "class" );
  159. while( 1 )
  160. {
  161. Text *t;
  162. if( c.hat( "," ) )
  163. t = c.getTeilText( 0, c.positionVon( ',' ) );
  164. else
  165. t = new Text( c );
  166. XML::Editor ce = dom->selectChildsByName( "class" ).whereAttributeEquals( "id", *t );
  167. for( auto i = ce.getIterator(); i; i++ )
  168. {
  169. for( auto j = i->getAttributeNames(), k = i->getAttributeValues(); j && k; j++, k++ )
  170. {
  171. if( !e->hasAttribute( j->getText() ) )
  172. e->setAttribute( j->getText(), i->getText() );
  173. }
  174. }
  175. t->release();
  176. if( c.hat( "," ) )
  177. c.remove( 0, c.positionVon( ',' + 1 ) );
  178. else
  179. break;
  180. }
  181. }
  182. if( e->hasAttribute( "text-align" ) )
  183. {
  184. if( !e->hasAttribute( "text-align-horizontal" ) )
  185. e->setAttribute( "text-align-horizontal", e->getAttributeValue( "text-align" ) );
  186. if( !e->hasAttribute( "text-align-vertical" ) )
  187. e->setAttribute( "text-align-vertical", e->getAttributeValue( "text-align" ) );
  188. }
  189. // create objects
  190. if( e->getName().istGleich( "textfield" ) ||
  191. e->getName().istGleich( "text" ) ||
  192. e->getName().istGleich( "textarea" ) )
  193. {
  194. TextFeld *t = init.createTextFeld( init.initParam );
  195. if( e->getName().istGleich( "textfield" ) )
  196. t->addStyle( TextFeld::Style::TextFeld );
  197. if( e->getName().istGleich( "text" ) )
  198. t->addStyle( TextFeld::Style::Text );
  199. if( e->getName().istGleich( "textarea" ) )
  200. t->addStyle( TextFeld::Style::TextGebiet );
  201. t->setText( e->getText() );
  202. if( e->hasAttribute( "font-size" ) )
  203. t->setSchriftSize( (unsigned char)(int)e->getAttributeValue( "font-size" ) );
  204. if( e->hasAttribute( "text-align-horizontal" ) )
  205. {
  206. if( e->getAttributeValue( "text-align-horizontal" ).istGleich( "center" ) )
  207. t->addStyle( TextFeld::Style::HCenter );
  208. }
  209. if( e->hasAttribute( "text-align-vertical" ) )
  210. {
  211. if( e->getAttributeValue( "text-align-vertical" ).istGleich( "center" ) )
  212. t->addStyle( TextFeld::Style::VCenter );
  213. }
  214. z = t;
  215. }
  216. if( e->getName().istGleich( "button" ) )
  217. {
  218. Knopf *k = init.createKnopf( init.initParam );
  219. k->setText( e->getText() );
  220. if( e->hasAttribute( "font-size" ) )
  221. k->setSchriftSize( (unsigned char)(int)e->getAttributeValue( "font-size" ) );
  222. z = k;
  223. }
  224. if( e->getName().istGleich( "check" ) )
  225. {
  226. KontrollKnopf *k = init.createKontrollKnopf( init.initParam );
  227. k->setText( e->getText() );
  228. k->setSText( e->getText() );
  229. k->setStyle( KontrollKnopf::Style::Selected, e->hasAttribute( "selected" ) );
  230. if( e->hasAttribute( "font-size" ) )
  231. k->setSSize( (unsigned char)(int)e->getAttributeValue( "font-size" ) );
  232. z = k;
  233. }
  234. if( e->getName().istGleich( "table" ) )
  235. {
  236. ObjTabelle *t = init.createObjTabelle( init.initParam );
  237. parseTable( e->getChilds(), t );
  238. if( e->hasAttribute( "scroll" ) )
  239. {
  240. if( e->getAttributeValue( "scroll" ).istGleich( "horizontal" ) )
  241. t->addStyle( ObjTabelle::Style::HScroll );
  242. if( e->getAttributeValue( "scroll" ).istGleich( "vertical" ) )
  243. t->addStyle( ObjTabelle::Style::VScroll );
  244. if( e->getAttributeValue( "scroll" ).istGleich( "both" ) )
  245. t->addStyle( ObjTabelle::Style::scroll );
  246. }
  247. z = t;
  248. }
  249. if( e->getName().istGleich( "frame" ) )
  250. {
  251. Fenster *f = init.createFenster( init.initParam );
  252. parseFrame( e->getChilds(), f );
  253. if( e->hasAttribute( "title" ) )
  254. f->setTitel( e->getAttributeValue( "title" ) );
  255. if( e->hasAttribute( "title-height" ) )
  256. f->zTTextFeld()->setSize( f->zTTextFeld()->getBreite(), e->getAttributeValue( "title-height" ) );
  257. z = f;
  258. }
  259. // add general attributes
  260. if( z && e->hasAttribute( "tooltip" ) )
  261. z->setToolTipText( e->getAttributeValue( "tooltip" ), init.initParam.bildschirm, init.initParam.schrift );
  262. if( z && e->hasAttribute( "style" ) )
  263. z->setStyle( (__int64)e->getAttributeValue( "style" ) );
  264. if( z && e->hasAttribute( "hidden" ) )
  265. z->removeStyle( Zeichnung::Style::Sichtbar );
  266. if( z && e->hasAttribute( "disabled" ) )
  267. z->removeStyle( Zeichnung::Style::Erlaubt );
  268. if( z )
  269. members->set( id, z );
  270. }
  271. return z;
  272. }
  273. void UIMLView::layout( XML::Element * e, int pWidth, int pHeight )
  274. {
  275. Text id = e->getAttributeValue( "id" );
  276. Zeichnung *z = members->z( id );
  277. if( z )
  278. {
  279. int width = z->getBreite();
  280. int height = z->getHeight();
  281. if( e->hasAttribute( "width" ) )
  282. {
  283. Text w = e->getAttributeValue( "width" );
  284. width = w;
  285. if( w.getText()[ w.getLength() - 1 ] == '%' )
  286. width = (int)( ( pWidth / 100.0 ) * width );
  287. }
  288. if( e->hasAttribute( "height" ) )
  289. {
  290. Text h = e->getAttributeValue( "height" );
  291. height = h;
  292. if( h.getText()[ h.getLength() - 1 ] == '%' )
  293. height = (int)( ( pHeight / 100.0 ) * height );
  294. }
  295. z->setSize( width, height );
  296. if( e->hasAttribute( "align-left" ) )
  297. {
  298. Text la = e->getAttributeValue( "align-left" );
  299. int x = 0;
  300. if( la.istGleich( "start" ) )
  301. x = 0;
  302. else if( la.istGleich( "end" ) )
  303. x = pWidth;
  304. else
  305. {
  306. XML::Editor ed = e->zParent()->selectChildsByAttribute( "id", la );
  307. for( auto i = ed.getIterator(); i; i++ )
  308. layout( i, pWidth, pHeight );
  309. Zeichnung * laz = members->z( la );
  310. if( laz )
  311. x = laz->getX() + laz->getBreite();
  312. }
  313. if( e->hasAttribute( "margin-left" ) )
  314. {
  315. Text mt = e->getAttributeValue( "margin-left" );
  316. int m = mt;
  317. if( mt.getText()[ mt.getLength() - 1 ] == '%' )
  318. m = (int)( ( pWidth / 100.0 ) * m );
  319. x += m;
  320. }
  321. z->setX( x );
  322. }
  323. else if( e->hasAttribute( "align-right" ) )
  324. {
  325. Text ra = e->getAttributeValue( "align-right" );
  326. int x = 0;
  327. if( ra.istGleich( "start" ) )
  328. x = -z->getBreite();
  329. else if( ra.istGleich( "end" ) )
  330. x = pWidth - z->getBreite();
  331. else
  332. {
  333. XML::Editor ed = e->zParent()->selectChildsByAttribute( "id", ra );
  334. for( auto i = ed.getIterator(); i; i++ )
  335. layout( i, pWidth, pHeight );
  336. Zeichnung * raz = members->z( ra );
  337. if( raz )
  338. x = raz->getX() - z->getBreite();
  339. }
  340. if( e->hasAttribute( "margin-right" ) )
  341. {
  342. Text mt = e->getAttributeValue( "margin-right" );
  343. int m = mt;
  344. if( mt.getText()[ mt.getLength() - 1 ] == '%' )
  345. m = (int)( ( pWidth / 100.0 ) * m );
  346. x -= m;
  347. }
  348. z->setX( x );
  349. }
  350. if( e->hasAttribute( "align-top" ) )
  351. {
  352. Text ta = e->getAttributeValue( "align-top" );
  353. int y = 0;
  354. if( ta.istGleich( "start" ) )
  355. y = 0;
  356. else if( ta.istGleich( "end" ) )
  357. y = pHeight;
  358. else
  359. {
  360. XML::Editor ed = e->zParent()->selectChildsByAttribute( "id", ta );
  361. for( auto i = ed.getIterator(); i; i++ )
  362. layout( i, pWidth, pHeight );
  363. Zeichnung * taz = members->z( ta );
  364. if( taz )
  365. y = taz->getY() + taz->getHeight();
  366. }
  367. if( e->hasAttribute( "margin-top" ) )
  368. {
  369. Text mt = e->getAttributeValue( "margin-top" );
  370. int m = mt;
  371. if( mt.getText()[ mt.getLength() - 1 ] == '%' )
  372. m = (int)( ( pHeight / 100.0 ) * m );
  373. y += m;
  374. }
  375. z->setY( y );
  376. }
  377. else if( e->hasAttribute( "align-bottom" ) )
  378. {
  379. Text ba = e->getAttributeValue( "align-bottom" );
  380. int y = 0;
  381. if( ba.istGleich( "start" ) )
  382. y = -z->getHeight();
  383. else if( ba.istGleich( "end" ) )
  384. y = pHeight - z->getHeight();
  385. else
  386. {
  387. XML::Editor ed = e->zParent()->selectChildsByAttribute( "id", ba );
  388. for( auto i = ed.getIterator(); i; i++ )
  389. layout( i, pWidth, pHeight );
  390. Zeichnung * baz = members->z( ba );
  391. if( baz )
  392. y = baz->getY() - z->getHeight();
  393. }
  394. if( e->hasAttribute( "margin-bottom" ) )
  395. {
  396. Text mt = e->getAttributeValue( "margin-bottom" );
  397. int m = mt;
  398. if( mt.getText()[ mt.getLength() - 1 ] == '%' )
  399. m = (int)( ( pHeight / 100.0 ) * m );
  400. y -= m;
  401. }
  402. z->setY( y );
  403. }
  404. int x = z->getX();
  405. int y = z->getY();
  406. if( e->hasAttribute( "x" ) )
  407. {
  408. Text xt = e->getAttributeValue( "x" );
  409. x = xt;
  410. if( xt.getText()[ xt.getLength() - 1 ] == '%' )
  411. x = (int)( ( pWidth / 100.0 ) * x );
  412. }
  413. if( e->hasAttribute( "y" ) )
  414. {
  415. Text yt = e->getAttributeValue( "y" );
  416. y = yt;
  417. if( yt.getText()[ yt.getLength() - 1 ] == '%' )
  418. y = (int)( ( pHeight / 100.0 ) * y );
  419. }
  420. z->setPosition( x, y );
  421. if( e->getName().istGleich( "textarea" ) )
  422. {
  423. ( (TextFeld *)z )->zTextRenderer()->textFormatieren( ( (TextFeld *)z )->zText(), z->getInnenBreite() );
  424. }
  425. }
  426. if( z )
  427. {
  428. pWidth = z->getInnenBreite();
  429. pHeight = z->getInnenHeight();
  430. }
  431. // recursive layout
  432. for( auto i = e->getChilds(); i; i++ )
  433. layout( i, pWidth, pHeight );
  434. if( z )
  435. {
  436. if( e->getName().istGleich( "table" ) )
  437. {
  438. ObjTabelle *objT = (ObjTabelle *)z;
  439. if( objT->getZeilenAnzahl() > 0 )
  440. {
  441. if( e->hasAttribute( "line-height" ) )
  442. {
  443. int height = e->getAttributeValue( "line-height" );
  444. for( int i = 0; i < objT->getZeilenAnzahl(); i++ )
  445. objT->setZeilenHeight( i, height );
  446. }
  447. for( int i = 0; i < objT->getSpaltenAnzahl(); i++ )
  448. {
  449. if( objT->zZeichnung( i, 0 ) )
  450. objT->setSpaltenBreite( i, objT->zZeichnung( i, 0 )->getBreite() );
  451. }
  452. }
  453. }
  454. }
  455. }
  456. // setzt den inhalt der view
  457. // uiml: Ein xml element gemät des ksg uiml standarts
  458. void UIMLView::setUIML( XML::Element * uiml )
  459. {
  460. if( dom )
  461. dom->release();
  462. dom = uiml;
  463. members->leeren();
  464. nextId = 0;
  465. if( dom )
  466. {
  467. for( auto i = dom->getChilds(); i; i++ )
  468. {
  469. parseElement( i._ );
  470. }
  471. }
  472. }
  473. // setzt den inhalt der view
  474. // uiml: Ein xml text gemät des ksg uiml standarts
  475. void UIMLView::setUIML( Text uiml )
  476. {
  477. setUIML( new XML::Element( uiml ) );
  478. }
  479. // Gibt eine zeichnung zurück, welche in uiml eine bestimmte id hat
  480. // id: die id der Zeichnung
  481. Zeichnung *UIMLView::zZeichnung( Text id )
  482. {
  483. return members->z( id );
  484. }
  485. // aktualisiert größe und position aller Zeichnungen gemäß den spezifikationen in UIML
  486. void UIMLView::layout()
  487. {
  488. if( dom )
  489. {
  490. for( auto i = dom->getChilds(); i; i++ )
  491. {
  492. layout( i._, this->getInnenBreite(), this->getInnenHeight() );
  493. }
  494. }
  495. }
  496. // fügt ein element hinzu
  497. // uiml: Ein xml text gemät des KSG UIML standarts, welcher das neue Objekt darstellt
  498. Text UIMLView::addMember( Text uiml )
  499. {
  500. XML::Element *e = new XML::Element( uiml );
  501. if( parseElement( e ) )
  502. dom->addChildAtFront( e );
  503. return e->getAttributeValue( "id" );
  504. }
  505. // fügt ein element zu einem Elternelement hinzu (funktioniert momentan nur mit frame Objekten)
  506. // uiml: Ein xml text gemät des KSG UIML standarts, welcher das neue Objekt darstellt
  507. Text UIMLView::addMember( Text uiml, Text parentId )
  508. {
  509. XML::Element *e = new XML::Element( uiml );
  510. XML::Editor ed = dom->selectChildren();
  511. while( ed.getIterator() )
  512. {
  513. XML::Editor ed2 = ed.whereAttributeEquals( "id", parentId );
  514. if( ed2.getIterator() )
  515. {
  516. if( ed2.getIterator()->getName().istGleich( "frame" ) )
  517. {
  518. Zeichnung *z = parseElement( e );
  519. if( z )
  520. {
  521. ( (Fenster *)members->z( parentId ) )->addMember( z->getThis() );
  522. ed2.getIterator()->addChild( e );
  523. }
  524. return e->getAttributeValue( "id" );
  525. }
  526. }
  527. ed = ed.selectChildren();
  528. }
  529. e->release();
  530. return "";
  531. }
  532. // entfernt ein element
  533. // id: id des Elements
  534. void UIMLView::removeMember( Text id )
  535. {
  536. XML::Editor e = dom->selectChildsByAttribute( "id", id );
  537. e.remove();
  538. members->remove( id );
  539. }
  540. // Verarbeitet ein Tastatur Ereignis. Wird vom Framework automatisch aufgerufen
  541. // te: Das Ereignis
  542. void UIMLView::doTastaturEreignis( TastaturEreignis & te )
  543. {
  544. bool verarbeitet = te.verarbeitet;
  545. ZeichnungHintergrund::doTastaturEreignis( te );
  546. te.verarbeitet = verarbeitet;
  547. if( dom )
  548. {
  549. for( auto i = dom->getChilds(); i; i++ )
  550. { // TODO render elements backwards
  551. Zeichnung *z = members->z( i->getAttributeValue( "id" ) );
  552. if( z )
  553. z->doTastaturEreignis( te );
  554. }
  555. }
  556. }
  557. // Updated den Zeichenhintergrund
  558. // tickVal: Die vergangene Zeit in Sekunden, die seit dem Letzten Aufruf dieser Funktion verstrichen ist
  559. // return: 1, wenn das Bild neu gezeichnet werden muss. 0 sonnst
  560. bool UIMLView::tick( double tickVal )
  561. {
  562. if( dom )
  563. {
  564. for( auto i = dom->getChilds(); i; i++ )
  565. { // TODO render elements backwards
  566. Zeichnung *z = members->z( i->getAttributeValue( "id" ) );
  567. if( z )
  568. rend |= z->tick( tickVal );
  569. }
  570. }
  571. return ZeichnungHintergrund::tick( tickVal );
  572. }
  573. // Zeichnet den Hintergrund eines Zeichnunges nach rObj
  574. void UIMLView::render( Bild & rObj )
  575. {
  576. ZeichnungHintergrund::render( rObj );
  577. if( dom )
  578. {
  579. if( !rObj.setDrawOptions( pos.x + getRahmenBreite(), pos.y + getRahmenBreite(), gr.x + getRahmenBreite() * 2, gr.y + getRahmenBreite() * 2 ) )
  580. return;
  581. bool vSc = hatStyle( Style::VScroll ) && vertikalScrollBar;
  582. bool hSc = hatStyle( Style::HScroll ) && horizontalScrollBar;
  583. rObj.addScrollOffset( hSc ? horizontalScrollBar->getScroll() : 0, vSc ? vertikalScrollBar->getScroll() : 0 );
  584. for( int i = dom->getChildCount() - 1; i >= 0; i-- )
  585. { // TODO render elements backwards
  586. XML::Element *e = dom->zChild( i );
  587. Zeichnung *z = members->z( e->getAttributeValue( "id" ) );
  588. if( z )
  589. z->render( rObj );
  590. }
  591. rObj.releaseDrawOptions();
  592. }
  593. }
  594. // Gibt den Dom Tree ohne erhöhten reference counter zurück
  595. // Änderungen am Dom Tree sollten vermieden werden (nur änderungen von attributen einzelner elemente sind erlaubt)
  596. XML::Element *UIMLView::zDom() const
  597. {
  598. return dom;
  599. }
  600. // Gibt den Dom Tree zurück
  601. // Änderungen am Dom Tree sollten vermieden werden (nur änderungen von attributen einzelner elemente sind erlaubt)
  602. XML::Element *UIMLView::getDom() const
  603. {
  604. return dom ? dom->getThis() : 0;
  605. }