UIMLView.cpp 51 KB

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