UIMLView.cpp 49 KB

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