UIMLView.cpp 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504
  1. #include "UIMLView.h"
  2. #include "Bild.h"
  3. #include "Bildschirm.h"
  4. #include "Fenster.h"
  5. #include "Knopf.h"
  6. #include "Rahmen.h"
  7. #include "RCPointer.h"
  8. #include "Schrift.h"
  9. #include "Scroll.h"
  10. #include "Tabelle.h"
  11. #include "TextFeld.h"
  12. #include "XML.h"
  13. using namespace Framework;
  14. UIMLElement::UIMLElement()
  15. : ReferenceCounter()
  16. {}
  17. UIMLElement::~UIMLElement() {}
  18. //! wendet die layout parameter zu einer Zeichnung an
  19. void UIMLElement::layout(XML::Element& element,
  20. Zeichnung& z,
  21. int pWidth,
  22. int pHeight,
  23. UIMLContainer& generalLayouter)
  24. {
  25. int width = z.getBreite();
  26. int height = z.getHeight();
  27. if (element.hasAttribute("style"))
  28. {
  29. z.setStyle((__int64)element.getAttributeValue("style"));
  30. }
  31. if (element.hasAttribute("width"))
  32. {
  33. Text w = element.getAttributeValue("width");
  34. if (!w.istGleich("auto"))
  35. {
  36. width = calculateSize(w, pWidth);
  37. }
  38. }
  39. if (element.hasAttribute("height"))
  40. {
  41. Text h = element.getAttributeValue("height");
  42. if (!h.istGleich("auto"))
  43. {
  44. height = calculateSize(h, pHeight);
  45. }
  46. }
  47. z.setSize(width, height);
  48. if (element.hasAttribute("align-left"))
  49. {
  50. Text la = element.getAttributeValue("align-left");
  51. int x = 0;
  52. if (la.istGleich("start"))
  53. x = 0;
  54. else if (la.istGleich("end"))
  55. x = pWidth;
  56. else if (la.istGleich("center"))
  57. x = pWidth / 2 - width / 2;
  58. else
  59. {
  60. XML::Editor ed
  61. = element.zParent()->selectChildsByAttribute("id", la);
  62. generalLayouter.layout(*ed.begin().val(),
  63. *generalLayouter.zZeichnungById(la),
  64. pWidth,
  65. pHeight,
  66. generalLayouter);
  67. Zeichnung* laz = generalLayouter.zZeichnungById(la);
  68. if (laz) x = laz->getX() + laz->getBreite();
  69. }
  70. if (element.hasAttribute("margin-left"))
  71. {
  72. Text mt = element.getAttributeValue("margin-left");
  73. x += calculateSize(mt, pWidth);
  74. }
  75. z.setX(x);
  76. }
  77. else if (element.hasAttribute("align-right"))
  78. {
  79. Text ra = element.getAttributeValue("align-right");
  80. int x = 0;
  81. if (ra.istGleich("start"))
  82. x = -z.getBreite();
  83. else if (ra.istGleich("end"))
  84. x = pWidth - z.getBreite();
  85. else if (ra.istGleich("center"))
  86. x = pWidth / 2 - width / 2;
  87. else
  88. {
  89. XML::Editor ed
  90. = element.zParent()->selectChildsByAttribute("id", ra);
  91. generalLayouter.layout(*ed.begin().val(),
  92. *generalLayouter.zZeichnungById(ra),
  93. pWidth,
  94. pHeight,
  95. generalLayouter);
  96. Zeichnung* raz = generalLayouter.zZeichnungById(ra);
  97. if (raz) x = raz->getX() - z.getBreite();
  98. }
  99. if (element.hasAttribute("margin-right"))
  100. {
  101. Text mt = element.getAttributeValue("margin-right");
  102. x -= calculateSize(mt, pWidth);
  103. }
  104. z.setX(x);
  105. }
  106. if (element.hasAttribute("align-top"))
  107. {
  108. Text ta = element.getAttributeValue("align-top");
  109. int y = 0;
  110. if (ta.istGleich("start"))
  111. y = 0;
  112. else if (ta.istGleich("end"))
  113. y = pHeight;
  114. else if (ta.istGleich("center"))
  115. y = pHeight / 2 - height / 2;
  116. else
  117. {
  118. XML::Editor ed
  119. = element.zParent()->selectChildsByAttribute("id", ta);
  120. generalLayouter.layout(*ed.begin().val(),
  121. *generalLayouter.zZeichnungById(ta),
  122. pWidth,
  123. pHeight,
  124. generalLayouter);
  125. Zeichnung* taz = generalLayouter.zZeichnungById(ta);
  126. if (taz) y = taz->getY() + taz->getHeight();
  127. }
  128. if (element.hasAttribute("margin-top"))
  129. {
  130. Text mt = element.getAttributeValue("margin-top");
  131. y += calculateSize(mt, pHeight);
  132. }
  133. z.setY(y);
  134. }
  135. else if (element.hasAttribute("align-bottom"))
  136. {
  137. Text ba = element.getAttributeValue("align-bottom");
  138. int y = 0;
  139. if (ba.istGleich("start"))
  140. y = -z.getHeight();
  141. else if (ba.istGleich("end"))
  142. y = pHeight - z.getHeight();
  143. else if (ba.istGleich("center"))
  144. y = pHeight / 2 - height / 2;
  145. else
  146. {
  147. XML::Editor ed
  148. = element.zParent()->selectChildsByAttribute("id", ba);
  149. generalLayouter.layout(*ed.begin().val(),
  150. *generalLayouter.zZeichnungById(ba),
  151. pWidth,
  152. pHeight,
  153. generalLayouter);
  154. Zeichnung* baz = generalLayouter.zZeichnungById(ba);
  155. if (baz) y = baz->getY() - z.getHeight();
  156. }
  157. if (element.hasAttribute("margin-bottom"))
  158. {
  159. Text mt = element.getAttributeValue("margin-bottom");
  160. y -= calculateSize(mt, pHeight);
  161. }
  162. z.setY(y);
  163. }
  164. int x = z.getX();
  165. int y = z.getY();
  166. if (element.hasAttribute("x"))
  167. {
  168. Text xt = element.getAttributeValue("x");
  169. x = calculateSize(xt, pWidth);
  170. }
  171. if (element.hasAttribute("y"))
  172. {
  173. Text yt = element.getAttributeValue("y");
  174. y = calculateSize(yt, pHeight);
  175. }
  176. z.setPosition(x, y);
  177. pWidth = z.getInnenBreite();
  178. pHeight = z.getInnenHeight();
  179. // recursive layout
  180. for (auto i = element.getChilds(); i; i++)
  181. {
  182. Zeichnung* z = 0;
  183. if (i->hasAttribute("id"))
  184. {
  185. z = generalLayouter.zZeichnungById(i->getAttributeValue("id"));
  186. }
  187. if (z)
  188. {
  189. generalLayouter.layout(
  190. *i.val(), *z, pWidth, pHeight, generalLayouter);
  191. }
  192. }
  193. }
  194. int Framework::UIMLElement::calculateSize(Text attributeValue, int parentSize)
  195. {
  196. attributeValue.removeWhitespaceAfter(0);
  197. attributeValue.removeWhitespaceBefore(attributeValue.getLength());
  198. if (attributeValue.hat('('))
  199. {
  200. int start = -1;
  201. int len = attributeValue.getLength();
  202. for (int i = 0; i < len; i++)
  203. {
  204. if (attributeValue.getText()[i] == '(') start = i;
  205. if (attributeValue.getText()[i] == ')')
  206. {
  207. if (start < 0) return 0;
  208. Text* part = attributeValue.getTeilText(start + 1, i);
  209. int value = calculateSize(*part, parentSize);
  210. part->release();
  211. attributeValue.remove(start, i + 1);
  212. attributeValue.insert(start, Text(value));
  213. return calculateSize(attributeValue, parentSize);
  214. }
  215. }
  216. return 0;
  217. }
  218. else if (attributeValue.hat('*') || attributeValue.hat('/'))
  219. {
  220. int posD = attributeValue.positionVon('/');
  221. int posM = attributeValue.positionVon('*');
  222. if ((posD >= 0 && posD < posM) || posM < 0)
  223. {
  224. Text* firstPart = attributeValue.getTeilText(0, posD);
  225. Text* secondPart = attributeValue.getTeilText(posD + 1);
  226. int first = calculateSize(*firstPart, parentSize);
  227. int second = calculateSize(*secondPart, parentSize);
  228. firstPart->release();
  229. secondPart->release();
  230. return first / second;
  231. }
  232. else
  233. {
  234. Text* firstPart = attributeValue.getTeilText(0, posM);
  235. Text* secondPart = attributeValue.getTeilText(posM + 1);
  236. int first = calculateSize(*firstPart, parentSize);
  237. int second = calculateSize(*secondPart, parentSize);
  238. firstPart->release();
  239. secondPart->release();
  240. return first * second;
  241. }
  242. }
  243. else if (attributeValue.hat('+') || attributeValue.hat('-'))
  244. {
  245. int posP = attributeValue.positionVon('+');
  246. int posN = attributeValue.positionVon('-');
  247. if ((posP >= 0 && posP < posN) || posN < 0)
  248. {
  249. Text* firstPart = attributeValue.getTeilText(0, posP);
  250. Text* secondPart = attributeValue.getTeilText(posP + 1);
  251. int first = calculateSize(*firstPart, parentSize);
  252. int second = calculateSize(*secondPart, parentSize);
  253. firstPart->release();
  254. secondPart->release();
  255. return first + second;
  256. }
  257. else
  258. {
  259. Text* firstPart = attributeValue.getTeilText(0, posN);
  260. Text* secondPart = attributeValue.getTeilText(posN + 1);
  261. int first = calculateSize(*firstPart, parentSize);
  262. int second = calculateSize(*secondPart, parentSize);
  263. firstPart->release();
  264. secondPart->release();
  265. return first - second;
  266. }
  267. }
  268. else if (attributeValue.hatAt(attributeValue.getLength() - 1, "%"))
  269. {
  270. return (int)((int)attributeValue * (parentSize / 100.0));
  271. }
  272. else
  273. {
  274. return (int)attributeValue;
  275. }
  276. }
  277. UIMLContainer::UIMLContainer()
  278. : UIMLElement()
  279. {}
  280. UIMLContainer::~UIMLContainer() {}
  281. UIMLTextField::UIMLTextField()
  282. : UIMLElement()
  283. {}
  284. bool UIMLTextField::isApplicableFor(XML::Element& element)
  285. {
  286. return element.getName().istGleich("textfield");
  287. }
  288. Zeichnung* UIMLTextField::parseElement(
  289. XML::Element& element, UIMLContainer& generalFactory)
  290. {
  291. TextFeld* t = generalFactory.getFactory().createTextFeld(
  292. generalFactory.getFactory().initParam);
  293. updateElement(element, *t, generalFactory);
  294. return t;
  295. }
  296. bool Framework::UIMLTextField::updateElement(
  297. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  298. {
  299. TextFeld* t = dynamic_cast<TextFeld*>(&z);
  300. if (!t) return false;
  301. if (!element.hasAttribute("style"))
  302. {
  303. TextFeld* tmp = generalFactory.getFactory().createTextFeld(
  304. generalFactory.getFactory().initParam);
  305. tmp->addStyle(TextFeld::Style::TextFeld);
  306. t->setStyle(tmp->getStyles());
  307. tmp->release();
  308. }
  309. return true;
  310. }
  311. void UIMLTextField::layout(XML::Element& element,
  312. Zeichnung& z,
  313. int pWidth,
  314. int pHeight,
  315. UIMLContainer& generalLayouter)
  316. {
  317. TextFeld* tf = dynamic_cast<TextFeld*>(&z);
  318. if (element.hasAttribute("font-size"))
  319. {
  320. tf->setSchriftSize(
  321. (unsigned char)(int)element.getAttributeValue("font-size"));
  322. }
  323. ((TextFeld*)&z)->setText(element.getText());
  324. if (element.hasAttribute("width"))
  325. {
  326. Text w = element.getAttributeValue("width");
  327. if (w.istGleich("auto"))
  328. {
  329. z.setWidth(((TextFeld*)&z)->getNeededWidth());
  330. }
  331. }
  332. if (element.hasAttribute("height"))
  333. {
  334. Text h = element.getAttributeValue("height");
  335. if (h.istGleich("auto"))
  336. {
  337. z.setHeight(((TextFeld*)&z)->getNeededHeight());
  338. }
  339. }
  340. if (element.hasAttribute("text-color"))
  341. {
  342. tf->setSchriftFarbe((int)element.getAttributeValue("text-color"));
  343. }
  344. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  345. if (element.hasAttribute("text-align-horizontal"))
  346. z.setStyle(TextFeld::Style::HCenter,
  347. element.getAttributeValue("text-align-horizontal")
  348. .istGleich("center"));
  349. if (element.hasAttribute("text-align-vertical"))
  350. z.setStyle(TextFeld::Style::VCenter,
  351. element.getAttributeValue("text-align-vertical")
  352. .istGleich("center"));
  353. if (element.hasAttribute("disabled"))
  354. z.removeStyle(TextFeld::Style::Editierbar);
  355. if (element.getAttributeValue("vScroll").istGleich("auto"))
  356. {
  357. tf->setStyle(TextFeld::Style::VScroll,
  358. tf->getNeededHeight() > tf->getInnenHeight());
  359. tf->setVertikalKlickScroll(tf->getSchriftSize());
  360. tf->updateVScroll();
  361. }
  362. if (element.getAttributeValue("hScroll").istGleich("auto"))
  363. {
  364. tf->setStyle(TextFeld::Style::HScroll,
  365. tf->getNeededWidth() > tf->getInnenBreite());
  366. tf->setHorizontalKlickScroll(tf->getSchriftSize());
  367. tf->updateHScroll();
  368. }
  369. }
  370. UIMLButton::UIMLButton()
  371. : UIMLElement()
  372. {}
  373. bool UIMLButton::isApplicableFor(XML::Element& element)
  374. {
  375. return element.getName().istGleich("button");
  376. }
  377. Zeichnung* UIMLButton::parseElement(
  378. XML::Element& element, UIMLContainer& generalFactory)
  379. {
  380. Knopf* k = generalFactory.getFactory().createKnopf(
  381. generalFactory.getFactory().initParam);
  382. updateElement(element, *k, generalFactory);
  383. return k;
  384. }
  385. bool Framework::UIMLButton::updateElement(
  386. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  387. {
  388. Knopf* k = dynamic_cast<Knopf*>(&z);
  389. if (!k) return false;
  390. if (!element.hasAttribute("style"))
  391. {
  392. Knopf* tmp = generalFactory.getFactory().createKnopf(
  393. generalFactory.getFactory().initParam);
  394. k->setStyle(tmp->getStyles());
  395. tmp->release();
  396. }
  397. return true;
  398. }
  399. void UIMLButton::layout(XML::Element& element,
  400. Zeichnung& z,
  401. int pWidth,
  402. int pHeight,
  403. UIMLContainer& generalLayouter)
  404. {
  405. if (element.hasAttribute("font-size"))
  406. ((Knopf*)&z)
  407. ->setSchriftSize(
  408. (unsigned char)(int)element.getAttributeValue("font-size"));
  409. ((Knopf*)&z)->setText(element.getText());
  410. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  411. }
  412. UIMLCheck::UIMLCheck()
  413. : UIMLElement()
  414. {}
  415. bool UIMLCheck::isApplicableFor(XML::Element& element)
  416. {
  417. return element.getName().istGleich("check");
  418. }
  419. Zeichnung* UIMLCheck::parseElement(
  420. XML::Element& element, UIMLContainer& generalFactory)
  421. {
  422. KontrollKnopf* k = generalFactory.getFactory().createKontrollKnopf(
  423. generalFactory.getFactory().initParam);
  424. updateElement(element, *k, generalFactory);
  425. return k;
  426. }
  427. bool Framework::UIMLCheck::updateElement(
  428. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  429. {
  430. KontrollKnopf* k = dynamic_cast<KontrollKnopf*>(&z);
  431. if (!k) return false;
  432. if (!element.hasAttribute("style"))
  433. {
  434. KontrollKnopf* tmp = generalFactory.getFactory().createKontrollKnopf(
  435. generalFactory.getFactory().initParam);
  436. k->setStyle(tmp->getStyles());
  437. tmp->release();
  438. }
  439. return true;
  440. }
  441. void UIMLCheck::layout(XML::Element& element,
  442. Zeichnung& z,
  443. int pWidth,
  444. int pHeight,
  445. UIMLContainer& generalLayouter)
  446. {
  447. ((KontrollKnopf*)&z)->setText(element.getText());
  448. ((KontrollKnopf*)&z)->setSText(element.getText());
  449. z.setStyle(
  450. KontrollKnopf::Style::Selected, element.hasAttribute("selected"));
  451. if (element.hasAttribute("font-size"))
  452. ((KontrollKnopf*)&z)
  453. ->setSSize(
  454. (unsigned char)(int)element.getAttributeValue("font-size"));
  455. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  456. }
  457. UIMLText::UIMLText()
  458. : UIMLElement()
  459. {}
  460. bool UIMLText::isApplicableFor(XML::Element& element)
  461. {
  462. return element.getName().istGleich("text");
  463. }
  464. Zeichnung* UIMLText::parseElement(
  465. XML::Element& element, UIMLContainer& generalFactory)
  466. {
  467. TextFeld* t = generalFactory.getFactory().createTextFeld(
  468. generalFactory.getFactory().initParam);
  469. updateElement(element, *t, generalFactory);
  470. return t;
  471. }
  472. bool Framework::UIMLText::updateElement(
  473. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  474. {
  475. TextFeld* t = dynamic_cast<TextFeld*>(&z);
  476. if (!t) return false;
  477. if (!element.hasAttribute("style"))
  478. {
  479. TextFeld* tmp = generalFactory.getFactory().createTextFeld(
  480. generalFactory.getFactory().initParam);
  481. tmp->addStyle(TextFeld::Style::Text);
  482. t->setStyle(tmp->getStyles());
  483. tmp->release();
  484. }
  485. return true;
  486. }
  487. void UIMLText::layout(XML::Element& element,
  488. Zeichnung& z,
  489. int pWidth,
  490. int pHeight,
  491. UIMLContainer& generalLayouter)
  492. {
  493. TextFeld* tf = dynamic_cast<TextFeld*>(&z);
  494. if (element.hasAttribute("font-size"))
  495. {
  496. tf->setSchriftSize(
  497. (unsigned char)(int)element.getAttributeValue("font-size"));
  498. }
  499. tf->setText(element.getText());
  500. if (element.hasAttribute("width"))
  501. {
  502. Text w = element.getAttributeValue("width");
  503. if (w.istGleich("auto"))
  504. {
  505. z.setWidth(tf->getNeededWidth());
  506. }
  507. }
  508. if (element.hasAttribute("height"))
  509. {
  510. Text h = element.getAttributeValue("height");
  511. if (h.istGleich("auto"))
  512. {
  513. z.setHeight(tf->getNeededHeight());
  514. }
  515. }
  516. if (element.hasAttribute("text-color"))
  517. {
  518. tf->setSchriftFarbe((int)element.getAttributeValue("text-color"));
  519. }
  520. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  521. if (element.hasAttribute("text-align-horizontal"))
  522. z.setStyle(TextFeld::Style::HCenter,
  523. element.getAttributeValue("text-align-horizontal")
  524. .istGleich("center"));
  525. if (element.hasAttribute("text-align-vertical"))
  526. z.setStyle(TextFeld::Style::VCenter,
  527. element.getAttributeValue("text-align-vertical")
  528. .istGleich("center"));
  529. if (element.hasAttribute("disabled"))
  530. z.removeStyle(TextFeld::Style::Editierbar);
  531. if (element.getAttributeValue("vScroll").istGleich("auto"))
  532. {
  533. tf->setStyle(TextFeld::Style::VScroll,
  534. tf->getNeededHeight() > tf->getInnenHeight());
  535. tf->setVertikalKlickScroll(tf->getSchriftSize());
  536. tf->updateVScroll();
  537. }
  538. if (element.getAttributeValue("hScroll").istGleich("auto"))
  539. {
  540. tf->setStyle(TextFeld::Style::HScroll,
  541. tf->getNeededWidth() > tf->getInnenBreite());
  542. tf->setHorizontalKlickScroll(tf->getSchriftSize());
  543. tf->updateHScroll();
  544. }
  545. }
  546. UIMLTextArea::UIMLTextArea()
  547. : UIMLElement()
  548. {}
  549. bool UIMLTextArea::isApplicableFor(XML::Element& element)
  550. {
  551. return element.getName().istGleich("textarea");
  552. }
  553. Zeichnung* UIMLTextArea::parseElement(
  554. XML::Element& element, UIMLContainer& generalFactory)
  555. {
  556. TextFeld* t = generalFactory.getFactory().createTextFeld(
  557. generalFactory.getFactory().initParam);
  558. updateElement(element, *t, generalFactory);
  559. return t;
  560. }
  561. bool Framework::UIMLTextArea::updateElement(
  562. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  563. {
  564. TextFeld* t = dynamic_cast<TextFeld*>(&z);
  565. if (!t) return false;
  566. if (!element.hasAttribute("style"))
  567. {
  568. TextFeld* tmp = generalFactory.getFactory().createTextFeld(
  569. generalFactory.getFactory().initParam);
  570. tmp->addStyle(TextFeld::Style::TextGebiet);
  571. t->setStyle(tmp->getStyles());
  572. tmp->release();
  573. }
  574. return true;
  575. }
  576. void UIMLTextArea::layout(XML::Element& element,
  577. Zeichnung& z,
  578. int pWidth,
  579. int pHeight,
  580. UIMLContainer& generalLayouter)
  581. {
  582. TextFeld* tf = dynamic_cast<TextFeld*>(&z);
  583. if (element.hasAttribute("font-size"))
  584. {
  585. tf->setSchriftSize(
  586. (unsigned char)(int)element.getAttributeValue("font-size"));
  587. }
  588. if (element.hasAttribute("disabled"))
  589. z.removeStyle(TextFeld::Style::Editierbar);
  590. tf->setText(element.getText());
  591. tf->zTextRenderer()->textFormatieren(tf->zText(), z.getInnenBreite());
  592. if (element.hasAttribute("width"))
  593. {
  594. Text w = element.getAttributeValue("width");
  595. if (w.istGleich("auto"))
  596. {
  597. z.setWidth(((TextFeld*)&z)->getNeededWidth());
  598. }
  599. }
  600. if (element.hasAttribute("height"))
  601. {
  602. Text h = element.getAttributeValue("height");
  603. if (h.istGleich("auto"))
  604. {
  605. z.setHeight(((TextFeld*)&z)->getNeededHeight());
  606. }
  607. }
  608. if (element.hasAttribute("text-color"))
  609. {
  610. tf->setSchriftFarbe((int)element.getAttributeValue("text-color"));
  611. }
  612. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  613. if (element.hasAttribute("text-align-horizontal"))
  614. z.setStyle(TextFeld::Style::HCenter,
  615. element.getAttributeValue("text-align-horizontal")
  616. .istGleich("center"));
  617. if (element.hasAttribute("text-align-vertical"))
  618. z.setStyle(TextFeld::Style::VCenter,
  619. element.getAttributeValue("text-align-vertical")
  620. .istGleich("center"));
  621. if (element.hasAttribute("font-size"))
  622. if (element.getAttributeValue("vScroll").istGleich("auto"))
  623. {
  624. tf->setStyle(TextFeld::Style::VScroll,
  625. tf->getNeededHeight() > tf->getInnenHeight());
  626. tf->setVertikalKlickScroll(tf->getSchriftSize());
  627. tf->updateVScroll();
  628. }
  629. if (element.getAttributeValue("hScroll").istGleich("auto"))
  630. {
  631. tf->setStyle(TextFeld::Style::HScroll,
  632. tf->getNeededWidth() > tf->getInnenBreite());
  633. tf->setHorizontalKlickScroll(tf->getSchriftSize());
  634. tf->updateHScroll();
  635. }
  636. }
  637. UIMLTable::UIMLTable()
  638. : UIMLElement()
  639. {}
  640. bool UIMLTable::isApplicableFor(XML::Element& element)
  641. {
  642. return element.getName().istGleich("table");
  643. }
  644. Zeichnung* UIMLTable::parseElement(
  645. XML::Element& element, UIMLContainer& generalFactory)
  646. {
  647. ObjTabelle* t = generalFactory.getFactory().createObjTabelle(
  648. generalFactory.getFactory().initParam);
  649. updateElement(element, *t, generalFactory);
  650. return t;
  651. }
  652. DLLEXPORT bool Framework::UIMLTable::updateElement(
  653. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  654. {
  655. ObjTabelle* t = dynamic_cast<ObjTabelle*>(&z);
  656. if (!t) return false;
  657. int index = 0;
  658. int linePos = 0;
  659. int numCols = 0;
  660. for (auto i = element.getChilds(); i; i++)
  661. {
  662. Text id;
  663. if (i->hasAttribute("id"))
  664. id = i->getAttributeValue("id");
  665. else
  666. {
  667. id = Text("_") += index++;
  668. i->setAttribute("id", id);
  669. }
  670. if (i->getName().istGleich("tr"))
  671. {
  672. if (t->getZeilenNummer(id) == -1) t->addZeile(id);
  673. t->setZeilePosition(id, linePos);
  674. int c = 1;
  675. for (auto j = i->getChilds(); j; j++)
  676. {
  677. if (t->getSpaltenAnzahl() < c) t->addSpalte(Text(c - 1));
  678. if (numCols < c) numCols = c;
  679. Zeichnung* z = t->zZeichnung(Text(c - 1), id);
  680. if (!z
  681. || !generalFactory.updateElement(
  682. element, *z, generalFactory))
  683. {
  684. if (z) generalFactory.removeZeichnung(*z);
  685. z = generalFactory.parseElement(*i.val(), generalFactory);
  686. if (z) t->setZeichnungZ(Text(c - 1), id, z);
  687. }
  688. c++;
  689. }
  690. }
  691. linePos++;
  692. }
  693. for (int i = 0; i < t->getZeilenAnzahl(); i++)
  694. { // remove all lines that are not in the xml
  695. if (!element.selectChildsByName("tr")
  696. .whereAttributeEquals("id", *t->zZeilenName(i))
  697. .exists())
  698. {
  699. for (int j = 0; j < t->getSpaltenAnzahl(); j++)
  700. {
  701. Zeichnung* z = t->zZeichnung(j, i);
  702. if (z) generalFactory.removeZeichnung(*z);
  703. }
  704. t->removeZeile(i);
  705. i--;
  706. }
  707. }
  708. for (int i = numCols; i < t->getSpaltenAnzahl(); i++)
  709. { // remove all columns that are not in the xml
  710. for (int j = 0; j < t->getZeilenAnzahl(); j++)
  711. {
  712. Zeichnung* z = t->zZeichnung(i, j);
  713. if (z) generalFactory.removeZeichnung(*z);
  714. }
  715. t->removeSpalte(i);
  716. i--;
  717. }
  718. if (!element.hasAttribute("style"))
  719. {
  720. ObjTabelle* tmp = generalFactory.getFactory().createObjTabelle(
  721. generalFactory.getFactory().initParam);
  722. t->setStyle(tmp->getStyles());
  723. tmp->release();
  724. }
  725. return true;
  726. }
  727. void UIMLTable::layout(XML::Element& element,
  728. Zeichnung& z,
  729. int pWidth,
  730. int pHeight,
  731. UIMLContainer& generalLayouter)
  732. {
  733. if (element.hasAttribute("scroll"))
  734. {
  735. z.setStyle(ObjTabelle::Style::HScroll,
  736. element.getAttributeValue("scroll").istGleich("horizontal"));
  737. z.setStyle(ObjTabelle::Style::VScroll,
  738. element.getAttributeValue("scroll").istGleich("vertical"));
  739. z.setStyle(ObjTabelle::Style::scroll,
  740. element.getAttributeValue("scroll").istGleich("both"));
  741. }
  742. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter);
  743. ObjTabelle* objT = (ObjTabelle*)&z;
  744. if (objT->getZeilenAnzahl() > 0)
  745. {
  746. if (element.hasAttribute("line-height"))
  747. {
  748. int height = (int)element.getAttributeValue("line-height");
  749. for (int i = 0; i < objT->getZeilenAnzahl(); i++)
  750. objT->setZeilenHeight(i, height);
  751. }
  752. for (int i = 0; i < objT->getSpaltenAnzahl(); i++)
  753. {
  754. if (objT->zZeichnung(i, 0))
  755. objT->setSpaltenBreite(i, objT->zZeichnung(i, 0)->getBreite());
  756. }
  757. }
  758. }
  759. UIMLFrame::UIMLFrame()
  760. : UIMLElement()
  761. {}
  762. bool UIMLFrame::isApplicableFor(XML::Element& element)
  763. {
  764. return element.getName().istGleich("frame");
  765. }
  766. Zeichnung* UIMLFrame::parseElement(
  767. XML::Element& element, UIMLContainer& generalFactory)
  768. {
  769. Fenster* f = generalFactory.getFactory().createFenster(
  770. generalFactory.getFactory().initParam);
  771. updateElement(element, *f, generalFactory);
  772. return f;
  773. }
  774. bool Framework::UIMLFrame::updateElement(
  775. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  776. {
  777. Fenster* f = dynamic_cast<Fenster*>(&z);
  778. if (!f) return false;
  779. for (auto member = f->getMembers().begin(); member; member++)
  780. { // remove all members that are not in the xml
  781. if (!element
  782. .selectChildsByAttribute(
  783. "id", generalFactory.getZeichnungId(*member.val()))
  784. .exists())
  785. {
  786. member.remove();
  787. f->setRender();
  788. }
  789. }
  790. int index = 0;
  791. for (auto i = element.getChilds(); i; i++)
  792. {
  793. Text id = element.getAttributeValue("id");
  794. Zeichnung* z = generalFactory.zZeichnungById(id);
  795. if (!id.getLength() || !z || f->getMembers().indexOf(z) < 0
  796. || !generalFactory.updateElement(*i.val(), *z, generalFactory))
  797. {
  798. if (z) generalFactory.removeZeichnung(*z);
  799. z = generalFactory.parseElement(*i.val(), generalFactory);
  800. if (z) f->addMember(z);
  801. }
  802. if (z) f->setMemberIndex(z, index++);
  803. }
  804. if (!element.hasAttribute("style"))
  805. {
  806. Fenster* tmp = generalFactory.getFactory().createFenster(
  807. generalFactory.getFactory().initParam);
  808. f->setStyle(tmp->getStyles());
  809. tmp->release();
  810. }
  811. return true;
  812. }
  813. void UIMLFrame::layout(XML::Element& element,
  814. Zeichnung& z,
  815. int pWidth,
  816. int pHeight,
  817. UIMLContainer& generalLayouter)
  818. {
  819. Fenster* f = dynamic_cast<Fenster*>(&z);
  820. if (element.hasAttribute("title"))
  821. f->setTitel(element.getAttributeValue("title"));
  822. if (element.hasAttribute("title-height"))
  823. {
  824. f->zTTextFeld()->setSize(f->zTTextFeld()->getBreite(),
  825. (int)element.getAttributeValue("title-height"));
  826. }
  827. if (element.hasAttribute("title-font-size"))
  828. {
  829. f->zTTextFeld()->setSchriftSize(
  830. (unsigned char)(int)element.getAttributeValue("title-font-size"));
  831. }
  832. if (element.hasAttribute("title-text-color"))
  833. {
  834. f->zTTextFeld()->setSchriftFarbe(
  835. (int)element.getAttributeValue("title-text-color"));
  836. }
  837. if (element.hasAttribute("display"))
  838. {
  839. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter); // calculate all sizes
  840. if (element.getAttributeValue("display").istGleich("column"))
  841. {
  842. int gap = calculateSize(element.getAttributeValue("gap"), pHeight);
  843. int y = 0;
  844. for (Zeichnung* z : f->getMembers())
  845. {
  846. Text id = generalLayouter.getZeichnungId(*z);
  847. auto child = element.selectChildsByAttribute("id", id);
  848. if (child.exists())
  849. {
  850. if (!child.whereAttributeExists("align-left").exists()
  851. && !child.whereAttributeExists("align-right").exists()
  852. && !child.whereAttributeExists("align-top").exists()
  853. && !child.whereAttributeExists("align-bottom").exists())
  854. {
  855. z->setY(y);
  856. y += z->getHeight() + gap;
  857. }
  858. }
  859. }
  860. }
  861. else if (element.getAttributeValue("display").istGleich("row"))
  862. {
  863. int gap = calculateSize(element.getAttributeValue("gap"), pWidth);
  864. int x = 0;
  865. for (Zeichnung* z : f->getMembers())
  866. {
  867. Text id = generalLayouter.getZeichnungId(*z);
  868. auto child = element.selectChildsByAttribute("id", id);
  869. if (child.exists())
  870. {
  871. if (!child.whereAttributeExists("align-left").exists()
  872. && !child.whereAttributeExists("align-right").exists()
  873. && !child.whereAttributeExists("align-top").exists()
  874. && !child.whereAttributeExists("align-bottom").exists())
  875. {
  876. z->setX(x);
  877. x += z->getBreite() + gap;
  878. }
  879. }
  880. }
  881. }
  882. }
  883. UIMLElement::layout(element, z, pWidth, pHeight, generalLayouter); // calculate all remaining positions
  884. if (element.hasAttribute("font-size"))
  885. if (element.getAttributeValue("vScroll").istGleich("auto"))
  886. {
  887. f->setStyle(
  888. Fenster::Style::VScroll,
  889. f->getNeededChildHeight() > f->getInnenHeight());
  890. f->setVSBScroll(10);
  891. f->updateVScroll();
  892. }
  893. if (element.getAttributeValue("hScroll").istGleich("auto"))
  894. {
  895. f->setStyle(Fenster::Style::HScroll,
  896. f->getNeededChildWidth() > f->getInnenBreite());
  897. f->setHSBScroll(10);
  898. f->updateHScroll();
  899. }
  900. }
  901. // Erstellt eine UIML View
  902. UIMLView::UIMLView()
  903. : ZeichnungHintergrund()
  904. {
  905. style = Style::MEIgnoreInside | Style::MEIgnoreParentInside
  906. | Style::MEIgnoreSichtbar | Style::MEIgnoreVerarbeitet;
  907. members = new RCTrie<Zeichnung>();
  908. dom = 0;
  909. nextId = 0;
  910. memset(&init, 0, sizeof(UIInit));
  911. addKnownElement(new UIMLTextField());
  912. addKnownElement(new UIMLButton());
  913. addKnownElement(new UIMLCheck());
  914. addKnownElement(new UIMLText());
  915. addKnownElement(new UIMLTextArea());
  916. addKnownElement(new UIMLTable());
  917. addKnownElement(new UIMLFrame());
  918. }
  919. // Erstellt eine UIML View zu einem UIML Text
  920. // uiml: Ein xml element gemät des ksg uiml standarts
  921. UIMLView::UIMLView(XML::Element* uiml, UIInit& init)
  922. : UIMLView()
  923. {
  924. this->init = init;
  925. setUIML(uiml);
  926. }
  927. // Erstellt eine UIML View zu einem UIML Text
  928. // uiml: Ein xml text gemät des ksg uiml standarts
  929. UIMLView::UIMLView(Text uiml, UIInit& init)
  930. : UIMLView()
  931. {
  932. this->init = init;
  933. setUIML(uiml);
  934. }
  935. UIMLView::~UIMLView()
  936. {
  937. if (dom) dom->release();
  938. members->release();
  939. }
  940. // Verarbeitet ein Maus Ereignis. Wird vom Framework automatisch aufgerufen.
  941. // me: Das Ereignis
  942. void UIMLView::doMausEreignis(MausEreignis& me, bool userRet)
  943. {
  944. if (dom)
  945. {
  946. bool verarbeitet = me.verarbeitet;
  947. me.verarbeitet |= hatStyleNicht(Style::Sichtbar);
  948. bool insideParent = me.insideParent;
  949. if (!hatStyle(Style::Sichtbar) || !me.insideParent || me.verarbeitet
  950. || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y
  951. || !userRet)
  952. me.insideParent = 0;
  953. int rbr = 0;
  954. if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
  955. me.mx -= rbr;
  956. me.my -= rbr;
  957. if (hatStyle(Style::VScroll) && vertikalScrollBar)
  958. me.my += vertikalScrollBar->getScroll();
  959. if (hatStyle(Style::HScroll) && horizontalScrollBar)
  960. me.mx += horizontalScrollBar->getScroll();
  961. if (dom)
  962. {
  963. for (auto i = dom->getChilds(); i; i++)
  964. { // TODO render elements backwards
  965. Zeichnung* z = members->z(i->getAttributeValue("id"),
  966. i->getAttributeValue("id").getLength());
  967. if (z) z->doPublicMausEreignis(me);
  968. }
  969. }
  970. me.mx += rbr;
  971. me.my += rbr;
  972. if (hatStyle(Style::VScroll) && vertikalScrollBar)
  973. me.my -= vertikalScrollBar->getScroll();
  974. if (hatStyle(Style::HScroll) && horizontalScrollBar)
  975. me.mx -= horizontalScrollBar->getScroll();
  976. if (!hatStyle(Style::Sichtbar) || !me.insideParent || me.verarbeitet
  977. || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y
  978. || !userRet)
  979. me.insideParent = insideParent;
  980. else
  981. me.verarbeitet = 1;
  982. if (hatStyleNicht(Style::Sichtbar)) me.verarbeitet = verarbeitet;
  983. }
  984. }
  985. void Framework::UIMLView::setOnMemberMouseEvent(std::function<bool(
  986. XML::Element& element, Zeichnung& member, MausEreignis me)>
  987. onEventAction)
  988. {
  989. onMemberMouseEvent = onEventAction;
  990. }
  991. void Framework::UIMLView::setOnMemberKeyboardEvent(std::function<bool(
  992. XML::Element& element, Zeichnung& member, TastaturEreignis te)>
  993. onEventAction)
  994. {
  995. onMemberKeyboardEvent = onEventAction;
  996. }
  997. //! entfernt alle bekannten elemente, die im uiml verwendet werden können
  998. void UIMLView::removeAllKnownElements()
  999. {
  1000. knownElements.leeren();
  1001. }
  1002. //! fügt ein neues bekanntes element hinzu, dass danach im uiml verwendet werden
  1003. //! kann.
  1004. void UIMLView::addKnownElement(UIMLElement* element)
  1005. {
  1006. knownElements.add(element);
  1007. }
  1008. //! prüft, ob ein xml Element ein bekanntes uiml Element ist;
  1009. bool UIMLView::isKnownElement(XML::Element* zElement)
  1010. {
  1011. for (UIMLElement* element : knownElements)
  1012. {
  1013. if (element->isApplicableFor(*zElement)) return 1;
  1014. }
  1015. return 0;
  1016. }
  1017. // setzt den inhalt der view
  1018. // uiml: Ein xml element gemät des ksg uiml standarts
  1019. void UIMLView::setUIML(XML::Element* uiml)
  1020. {
  1021. if (dom)
  1022. { // update dom and members
  1023. dom = uiml;
  1024. update();
  1025. }
  1026. else
  1027. { // initialize dom and members
  1028. dom = uiml;
  1029. for (auto i = dom->getChilds(); i; i++)
  1030. {
  1031. Zeichnung* z = parseElement(*i.val(), *this);
  1032. if (z) z->release();
  1033. }
  1034. }
  1035. }
  1036. // setzt den inhalt der view
  1037. // uiml: Ein xml text gemät des ksg uiml standarts
  1038. void UIMLView::setUIML(Text uiml)
  1039. {
  1040. setUIML(new XML::Element(uiml));
  1041. }
  1042. // Gibt eine zeichnung zurück, welche in uiml eine bestimmte id hat
  1043. // id: die id der Zeichnung
  1044. Zeichnung* UIMLView::zZeichnungById(const char* id)
  1045. {
  1046. return members->z(id, textLength(id));
  1047. }
  1048. // Gibt eine zeichnung zurück, welche in uiml eine bestimmte id hat
  1049. // id: die id der Zeichnung
  1050. Zeichnung* UIMLView::getZeichnungById(const char* id)
  1051. {
  1052. return members->get(id, textLength(id));
  1053. }
  1054. void Framework::UIMLView::update()
  1055. {
  1056. for (auto i = dom->getChilds(); i; i++)
  1057. {
  1058. Text id = i->getAttributeValue("id");
  1059. Zeichnung* z = zZeichnungById(id);
  1060. if (!id.getLength() || !z || !updateElement(*i.val(), *z, *this))
  1061. {
  1062. if (z) removeZeichnung(*z);
  1063. z = parseElement(*i.val(), *this);
  1064. if (z) z->release();
  1065. }
  1066. }
  1067. }
  1068. // aktualisiert größe und position aller Zeichnungen gemäß den spezifikationen
  1069. // in UIML
  1070. void UIMLView::layout()
  1071. {
  1072. if (dom)
  1073. {
  1074. for (auto i = dom->getChilds(); i; i++)
  1075. {
  1076. Text id = i->getAttributeValue("id");
  1077. Zeichnung* z = zZeichnungById(id);
  1078. if (z)
  1079. {
  1080. layout(*i.val(),
  1081. *z,
  1082. this->getInnenBreite(),
  1083. this->getInnenHeight(),
  1084. *this);
  1085. }
  1086. }
  1087. }
  1088. }
  1089. // fügt ein element hinzu
  1090. // uiml: Ein xml text gemät des KSG UIML standarts, welcher das neue Objekt
  1091. // darstellt
  1092. Text UIMLView::addMember(Text uiml)
  1093. {
  1094. XML::Element* e = new XML::Element(uiml);
  1095. Zeichnung* z = parseElement(*e, *this);
  1096. if (z)
  1097. {
  1098. dom->addChildAtFront(e);
  1099. z->release();
  1100. }
  1101. return e->getAttributeValue("id");
  1102. }
  1103. // fügt ein element zu einem Elternelement hinzu (funktioniert momentan nur mit
  1104. // frame Objekten)
  1105. // uiml: Ein xml text gemät des KSG UIML standarts, welcher das neue Objekt
  1106. // darstellt
  1107. Text UIMLView::addMember(Text uiml, Text parentId)
  1108. {
  1109. XML::Element* e = new XML::Element(uiml);
  1110. XML::Editor ed = dom->selectChildren();
  1111. while (ed.begin())
  1112. {
  1113. XML::Editor ed2 = ed.whereAttributeEquals("id", parentId);
  1114. if (ed2.begin())
  1115. {
  1116. if (ed2.begin()->getName().istGleich("frame"))
  1117. {
  1118. Zeichnung* z = parseElement(*e, *this);
  1119. if (z)
  1120. {
  1121. dynamic_cast<Fenster*>(
  1122. members->z(parentId, parentId.getLength()))
  1123. ->addMember(z);
  1124. ed2.begin()->addChild(e);
  1125. }
  1126. return e->getAttributeValue("id");
  1127. }
  1128. }
  1129. ed = ed.selectChildren();
  1130. }
  1131. e->release();
  1132. return "";
  1133. }
  1134. // entfernt ein element
  1135. // id: id des Elements
  1136. void UIMLView::removeMember(Text id)
  1137. {
  1138. XML::Editor e = dom->selectChildsByAttribute("id", id);
  1139. e.remove();
  1140. members->remove(id, id.getLength());
  1141. }
  1142. // Verarbeitet ein Tastatur Ereignis. Wird vom Framework automatisch aufgerufen
  1143. // te: Das Ereignis
  1144. void UIMLView::doTastaturEreignis(TastaturEreignis& te)
  1145. {
  1146. bool verarbeitet = te.verarbeitet;
  1147. ZeichnungHintergrund::doTastaturEreignis(te);
  1148. te.verarbeitet = verarbeitet;
  1149. if (dom)
  1150. {
  1151. for (auto i = dom->getChilds(); i; i++)
  1152. { // TODO render elements backwards
  1153. Zeichnung* z = members->z(i->getAttributeValue("id"),
  1154. i->getAttributeValue("id").getLength());
  1155. if (z) z->doTastaturEreignis(te);
  1156. }
  1157. }
  1158. }
  1159. // Updated den Zeichenhintergrund
  1160. // tickVal: Die vergangene Zeit in Sekunden, die seit dem Letzten Aufruf dieser
  1161. // Funktion verstrichen ist return: 1, wenn das Bild neu gezeichnet werden
  1162. // muss. 0 sonnst
  1163. bool UIMLView::tick(double tickVal)
  1164. {
  1165. if (dom)
  1166. {
  1167. for (auto i = dom->getChilds(); i; i++)
  1168. { // TODO render elements backwards
  1169. Zeichnung* z = members->z(i->getAttributeValue("id"),
  1170. i->getAttributeValue("id").getLength());
  1171. if (z) rend |= z->tick(tickVal);
  1172. }
  1173. }
  1174. return ZeichnungHintergrund::tick(tickVal);
  1175. }
  1176. // Zeichnet den Hintergrund eines Zeichnunges nach rObj
  1177. void UIMLView::render(Bild& rObj)
  1178. {
  1179. if (hatStyle(Zeichnung::Style::Sichtbar))
  1180. {
  1181. ZeichnungHintergrund::render(rObj);
  1182. if (dom)
  1183. {
  1184. if (!rObj.setDrawOptions(pos.x + getRahmenBreite(),
  1185. pos.y + getRahmenBreite(),
  1186. gr.x + getRahmenBreite() * 2,
  1187. gr.y + getRahmenBreite() * 2))
  1188. return;
  1189. bool vSc = hatStyle(Style::VScroll) && vertikalScrollBar;
  1190. bool hSc = hatStyle(Style::HScroll) && horizontalScrollBar;
  1191. rObj.addScrollOffset(hSc ? horizontalScrollBar->getScroll() : 0,
  1192. vSc ? vertikalScrollBar->getScroll() : 0);
  1193. for (int i = dom->getChildCount() - 1; i >= 0; i--)
  1194. { // TODO render elements backwards
  1195. XML::Element* e = dom->zChild(i);
  1196. Zeichnung* z = members->z(e->getAttributeValue("id"),
  1197. e->getAttributeValue("id").getLength());
  1198. if (z) z->render(rObj);
  1199. }
  1200. rObj.releaseDrawOptions();
  1201. }
  1202. }
  1203. }
  1204. // Gibt den Dom Tree ohne erhöhten reference counter zurück
  1205. // Änderungen am Dom Tree sollten vermieden werden (nur änderungen von
  1206. // attributen einzelner elemente sind erlaubt)
  1207. XML::Element* UIMLView::zDom() const
  1208. {
  1209. return dom;
  1210. }
  1211. // Gibt den Dom Tree zurück
  1212. // Änderungen am Dom Tree sollten vermieden werden (nur änderungen von
  1213. // attributen einzelner elemente sind erlaubt)
  1214. XML::Element* UIMLView::getDom() const
  1215. {
  1216. return dom ? dynamic_cast<XML::Element*>(dom->getThis()) : 0;
  1217. }
  1218. bool UIMLView::isApplicableFor(XML::Element& element)
  1219. {
  1220. for (UIMLElement* e : knownElements)
  1221. {
  1222. if (e->isApplicableFor(element)) return 1;
  1223. }
  1224. return 0;
  1225. }
  1226. Zeichnung* UIMLView::parseElement(
  1227. XML::Element& element, UIMLContainer& generalFactory)
  1228. {
  1229. Text id;
  1230. if (element.hasAttribute("id"))
  1231. id = element.getAttributeValue("id");
  1232. else
  1233. {
  1234. id = Text("_") += nextId++;
  1235. element.setAttribute("id", id);
  1236. }
  1237. Zeichnung* z = members->z(id, id.getLength());
  1238. if (!z)
  1239. {
  1240. // precompute attributes
  1241. if (element.hasAttribute("margin"))
  1242. {
  1243. Text m = element.getAttributeValue("margin");
  1244. if (!element.hasAttribute("margin-left"))
  1245. element.setAttribute("margin-left", m);
  1246. if (!element.hasAttribute("margin-top"))
  1247. element.setAttribute("margin-top", m);
  1248. if (!element.hasAttribute("margin-right"))
  1249. element.setAttribute("margin-right", m);
  1250. if (!element.hasAttribute("margin-bottom"))
  1251. element.setAttribute("margin-bottom", m);
  1252. }
  1253. if (element.hasAttribute("class"))
  1254. {
  1255. Text c = element.getAttributeValue("class");
  1256. while (1)
  1257. {
  1258. Text* t;
  1259. if (c.hat(","))
  1260. t = c.getTeilText(0, c.positionVon(','));
  1261. else
  1262. t = new Text(c);
  1263. XML::Editor ce
  1264. = dom->selectChildsByName("class").whereAttributeEquals(
  1265. "id", *t);
  1266. for (auto i = ce.begin(); i; i++)
  1267. {
  1268. for (auto j = i->getAttributeNames(),
  1269. k = i->getAttributeValues();
  1270. j && k;
  1271. j++, k++)
  1272. {
  1273. if (!element.hasAttribute(j->getText()))
  1274. element.setAttribute(j->getText(), i->getText());
  1275. }
  1276. }
  1277. t->release();
  1278. if (c.hat(","))
  1279. c.remove(0, c.positionVon(',' + 1));
  1280. else
  1281. break;
  1282. }
  1283. }
  1284. if (element.hasAttribute("text-align"))
  1285. {
  1286. if (!element.hasAttribute("text-align-horizontal"))
  1287. element.setAttribute("text-align-horizontal",
  1288. element.getAttributeValue("text-align"));
  1289. if (!element.hasAttribute("text-align-vertical"))
  1290. element.setAttribute("text-align-vertical",
  1291. element.getAttributeValue("text-align"));
  1292. }
  1293. // create objects
  1294. for (UIMLElement* e : knownElements)
  1295. {
  1296. if (e->isApplicableFor(element))
  1297. {
  1298. z = e->parseElement(element, *this);
  1299. break;
  1300. }
  1301. }
  1302. if (z)
  1303. {
  1304. if (hatStyle(Style::GlobalMouseEvent))
  1305. {
  1306. z->addMausEreignis(
  1307. [this, z](void* p, void* o, MausEreignis me) {
  1308. return dom->selectChildren()
  1309. .selectAllElements()
  1310. .whereAttributeEquals("id", getZeichnungId(*z))
  1311. .getFirstElement()
  1312. .map<bool>([this, &me, z](
  1313. RCPointer<XML::Element> element) {
  1314. return onMemberMouseEvent
  1315. ? onMemberMouseEvent(*element, *z, me)
  1316. : 0;
  1317. })
  1318. .orElse(0);
  1319. });
  1320. }
  1321. if (hatStyle(Style::GlobalTastaturEvent))
  1322. {
  1323. z->addTastaturEreignis(
  1324. [this, z](void* p, void* o, TastaturEreignis te) {
  1325. return dom->selectChildren()
  1326. .selectAllElements()
  1327. .whereAttributeEquals("id", getZeichnungId(*z))
  1328. .getFirstElement()
  1329. .map<bool>([this, &te, z](
  1330. RCPointer<XML::Element> element) {
  1331. return onMemberKeyboardEvent
  1332. ? onMemberKeyboardEvent(
  1333. *element, *z, te)
  1334. : 0;
  1335. })
  1336. .orElse(0);
  1337. });
  1338. }
  1339. members->set(
  1340. id, id.getLength(), dynamic_cast<Zeichnung*>(z->getThis()));
  1341. idList.add(new Text(id));
  1342. memberList.add(z);
  1343. }
  1344. }
  1345. else
  1346. z->getThis();
  1347. return z;
  1348. }
  1349. bool Framework::UIMLView::updateElement(
  1350. XML::Element& element, Zeichnung& z, UIMLContainer& generalFactory)
  1351. {
  1352. for (UIMLElement* e : knownElements)
  1353. {
  1354. if (e->isApplicableFor(element))
  1355. {
  1356. return e->updateElement(element, z, *this);
  1357. }
  1358. }
  1359. return false;
  1360. }
  1361. void UIMLView::layout(XML::Element& element,
  1362. Zeichnung& z,
  1363. int pWidth,
  1364. int pHeight,
  1365. UIMLContainer& generalLayouter)
  1366. {
  1367. for (UIMLElement* e : knownElements)
  1368. {
  1369. if (e->isApplicableFor(element))
  1370. {
  1371. e->layout(element, z, pWidth, pHeight, *this);
  1372. break;
  1373. }
  1374. }
  1375. }
  1376. Text Framework::UIMLView::getZeichnungId(Zeichnung& z)
  1377. {
  1378. int index = memberList.getWertIndex(&z);
  1379. if (index >= 0) return *idList.z(index);
  1380. return "";
  1381. }
  1382. void Framework::UIMLView::removeZeichnung(Zeichnung& z)
  1383. {
  1384. int index = memberList.getWertIndex(&z);
  1385. if (index >= 0)
  1386. {
  1387. Text id = *idList.z(index);
  1388. idList.remove(index);
  1389. memberList.remove(index);
  1390. members->remove(id, id.getLength());
  1391. }
  1392. }
  1393. bool Framework::UIMLView::registerZeichnung(const char* id, Zeichnung* z)
  1394. {
  1395. Zeichnung* existing = members->z(id, textLength(id));
  1396. if (existing)
  1397. {
  1398. z->release();
  1399. return 0;
  1400. }
  1401. members->set(id, textLength(id), z);
  1402. return 1;
  1403. }
  1404. const UIInit& UIMLView::getFactory()
  1405. {
  1406. return init;
  1407. }
  1408. //! calculates the needed size for all content elements to be visible
  1409. Punkt UIMLView::calculateContentSize()
  1410. {
  1411. Punkt maxP(0, 0);
  1412. for (int i = dom->getChildCount() - 1; i >= 0; i--)
  1413. { // TODO render elements backwards
  1414. XML::Element* e = dom->zChild(i);
  1415. Zeichnung* z = members->z(
  1416. e->getAttributeValue("id"), e->getAttributeValue("id").getLength());
  1417. if (z)
  1418. {
  1419. maxP.x = MAX(maxP.x, z->getPosition().x + z->getBreite());
  1420. maxP.y = MAX(maxP.y, z->getPosition().y + z->getHeight());
  1421. }
  1422. }
  1423. maxP.x += 2 * getRahmenBreite();
  1424. maxP.y += 2 * getRahmenBreite();
  1425. return maxP;
  1426. }