Liste.cpp 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324
  1. #include "Liste.h"
  2. #include "AlphaFeld.h"
  3. #include "Array.h"
  4. #include "Bild.h"
  5. #include "Globals.h"
  6. #include "MausEreignis.h"
  7. #include "Rahmen.h"
  8. #include "Schrift.h"
  9. #include "Scroll.h"
  10. #include "TastaturEreignis.h"
  11. #include "Text.h"
  12. #include "TextFeld.h"
  13. using namespace Framework;
  14. // Inhalt der AuswahlListe Klasse aus Liste.h
  15. // Konstruktor
  16. AuswahlListe::AuswahlListe()
  17. : ZeichnungHintergrund(),
  18. tfListe(0),
  19. auswahl(-1),
  20. ahFarbe(0xFF000000),
  21. ahBild(0),
  22. aBuffer(0),
  23. aRahmen(0),
  24. styles(0),
  25. ahFarbeListe(0),
  26. ahBildListe(0),
  27. aBufferListe(0),
  28. aRahmenListe(0),
  29. schrift(0)
  30. {
  31. style = 0;
  32. this->setMausEreignis(_ret1ME);
  33. this->setTastaturEreignis(_ret1TE);
  34. }
  35. // Destruktor
  36. AuswahlListe::~AuswahlListe()
  37. {
  38. if (tfListe) tfListe->release();
  39. if (ahBild) ahBild->release();
  40. if (aBuffer) aBuffer->release();
  41. if (aRahmen) aRahmen->release();
  42. if (styles) styles->release();
  43. if (ahFarbeListe) ahFarbeListe->release();
  44. if (ahBildListe) ahBildListe->release();
  45. if (aBufferListe) aBufferListe->release();
  46. if (aRahmenListe) aRahmenListe->release();
  47. if (schrift) schrift->release();
  48. }
  49. void AuswahlListe::doMausEreignis(MausEreignis& me, bool userRet)
  50. {
  51. if (!userRet || hatStyleNicht(Style::Erlaubt)) return;
  52. if (ZeichnungHintergrund::hatStyle(Style::VScroll) && vertikalScrollBar)
  53. {
  54. int rbr = 0;
  55. if (rahmen && ZeichnungHintergrund::hatStyle(Style::Rahmen))
  56. rbr = rahmen->getRBreite();
  57. if (((me.mx > gr.x - 15 - rbr) || me.id == ME_UScroll
  58. || me.id == ME_DScroll)
  59. && me.id != ME_Betritt && me.id != ME_Leaves)
  60. {
  61. vertikalScrollBar->doMausMessage(
  62. gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me);
  63. me.verarbeitet = 1;
  64. }
  65. }
  66. if (!me.verarbeitet && me.id == ME_RLinks)
  67. {
  68. int eintr = getKlickEintrag(me.my);
  69. if (eintr >= 0)
  70. {
  71. if (hatStyleNicht(Style::MultiSelect))
  72. {
  73. auswahl = eintr;
  74. rend = 1;
  75. }
  76. else
  77. {
  78. bool shift = getTastenStand(T_Shift);
  79. bool strg = getTastenStand(T_Strg);
  80. if (strg)
  81. {
  82. setMsStyle(eintr,
  83. Style::Selected,
  84. hatMsStyleNicht(eintr, Style::Selected));
  85. auswahl = eintr;
  86. }
  87. else if (shift && auswahl != -1)
  88. {
  89. deSelect();
  90. int beg = auswahl, end = eintr;
  91. if (beg > end)
  92. {
  93. int tmp = end;
  94. end = beg;
  95. beg = tmp;
  96. }
  97. for (int i = beg; i <= end; ++i)
  98. {
  99. addMsStyle(i, Style::Selected);
  100. }
  101. }
  102. else
  103. {
  104. deSelect();
  105. addMsStyle(eintr, Style::Selected);
  106. auswahl = eintr;
  107. }
  108. }
  109. }
  110. else
  111. deSelect();
  112. }
  113. me.verarbeitet = 1;
  114. }
  115. bool AuswahlListe::hatStyle(int styleSet, int styleCheck) const
  116. {
  117. return (styleSet | styleCheck) == styleSet;
  118. }
  119. // nicht constant
  120. void AuswahlListe::update() // aktualisiert die Auswahl Liste
  121. {
  122. int rbr = 0;
  123. if (rahmen)
  124. {
  125. rbr = rahmen->getRBreite();
  126. rahmen->setPosition(0, 0);
  127. rahmen->setSize(gr.x, gr.y);
  128. }
  129. if (hintergrundFeld)
  130. {
  131. hintergrundFeld->setPosition(rbr, rbr);
  132. hintergrundFeld->setSize(gr.x - rbr * 2, gr.y - rbr * 2);
  133. }
  134. if (hatStyleNicht(Style::MultiStyled) && tfListe)
  135. {
  136. bool FeldRahmen = ZeichnungHintergrund::hatStyle(Style::FeldRahmen);
  137. bool FeldHintergrund
  138. = ZeichnungHintergrund::hatStyle(Style::FeldHintergrund);
  139. bool FeldHBild = ZeichnungHintergrund::hatStyle(Style::FeldHBild);
  140. bool FeldHAlpha = ZeichnungHintergrund::hatStyle(Style::FeldHAlpha);
  141. bool FeldBuffer = ZeichnungHintergrund::hatStyle(Style::FeldBuffer);
  142. for (TextFeld* tf : *tfListe)
  143. {
  144. tf->setStyle(TextFeld::Style::Rahmen, FeldRahmen);
  145. tf->setStyle(TextFeld::Style::Hintergrund, FeldHintergrund);
  146. tf->setStyle(TextFeld::Style::HBild, FeldHBild);
  147. tf->setStyle(TextFeld::Style::HAlpha, FeldHAlpha);
  148. tf->setStyle(TextFeld::Style::Buffered, FeldBuffer);
  149. if (schrift)
  150. tf->setSchriftZ(dynamic_cast<Schrift*>(schrift->getThis()));
  151. }
  152. }
  153. if (ZeichnungHintergrund::hatStyle(Style::MultiStyled) && tfListe && styles)
  154. {
  155. auto style = styles->begin();
  156. for (auto tf = tfListe->begin(); tf; tf++, style++)
  157. {
  158. tf->setStyle(
  159. TextFeld::Style::Rahmen, hatStyle(style, Style::FeldRahmen));
  160. tf->setStyle(TextFeld::Style::Hintergrund,
  161. hatStyle(style, Style::FeldHintergrund));
  162. tf->setStyle(
  163. TextFeld::Style::HBild, hatStyle(style, Style::FeldHBild));
  164. tf->setStyle(
  165. TextFeld::Style::HAlpha, hatStyle(style, Style::FeldHAlpha));
  166. tf->setStyle(
  167. TextFeld::Style::Buffered, hatStyle(style, Style::FeldBuffer));
  168. }
  169. }
  170. rend = 1;
  171. }
  172. void AuswahlListe::addEintrag(Text* txt) // fügt einen Eintrag hinzu
  173. {
  174. TextFeld* tf = new TextFeld();
  175. tf->setStyle(TextFeld::Style::Center | TextFeld::Style::Sichtbar
  176. | TextFeld::Style::Rahmen);
  177. tf->setSchriftFarbe(0xFFFFFFFF);
  178. tf->setRahmenBreite(1);
  179. tf->setRahmenFarbe(0xFFFFFFFF);
  180. tf->setTextZ(txt);
  181. tf->setSize(0, 20);
  182. addEintragZ(tf);
  183. rend = 1;
  184. }
  185. void AuswahlListe::addEintrag(const char* txt)
  186. {
  187. Text* tx = new Text(txt);
  188. addEintrag(tx);
  189. rend = 1;
  190. }
  191. void AuswahlListe::addEintragZ(TextFeld* tf)
  192. {
  193. if (!tfListe) tfListe = new RCArray<TextFeld>();
  194. if (schrift && (!tf->zSchrift() || hatStyleNicht(Style::MultiStyled)))
  195. tf->setSchriftZ(dynamic_cast<Schrift*>(schrift->getThis()));
  196. tfListe->add(tf);
  197. rend = 1;
  198. }
  199. void AuswahlListe::addEintrag(
  200. int pos, Text* txt) // fügt einen Eintrag bei position pos ein
  201. {
  202. TextFeld* tf = new TextFeld();
  203. tf->setStyle(TextFeld::Style::Center | TextFeld::Style::Sichtbar
  204. | TextFeld::Style::Rahmen);
  205. tf->setSchriftFarbe(0xFFFFFFFF);
  206. tf->setRahmenBreite(1);
  207. tf->setRahmenFarbe(0xFFFFFFFF);
  208. tf->setTextZ(txt);
  209. tf->setSize(0, 20);
  210. addEintragZ(pos, tf);
  211. rend = 1;
  212. }
  213. void AuswahlListe::addEintrag(int pos, const char* txt)
  214. {
  215. Text* tx = new Text(txt);
  216. addEintrag(pos, tx);
  217. rend = 1;
  218. }
  219. void AuswahlListe::addEintragZ(int pos, TextFeld* tf)
  220. {
  221. if (!tfListe) tfListe = new RCArray<TextFeld>();
  222. if (schrift && (!tf->zSchrift() || hatStyleNicht(Style::MultiStyled)))
  223. tf->setSchriftZ(dynamic_cast<Schrift*>(schrift->getThis()));
  224. tfListe->add(tf, pos);
  225. rend = 1;
  226. }
  227. void AuswahlListe::setEintrag(
  228. int pos, Text* txt) // ändert den pos - ten Eintrag
  229. {
  230. TextFeld* tf = 0;
  231. if (tfListe) tf = tfListe->z(pos);
  232. if (!tf)
  233. {
  234. tf = new TextFeld();
  235. tf->setStyle(TextFeld::Style::Center | TextFeld::Style::Sichtbar
  236. | TextFeld::Style::Rahmen);
  237. tf->setSchriftFarbe(0xFFFFFFFF);
  238. tf->setRahmenFarbe(0xFFFFFFFF);
  239. tf->setRahmenBreite(1);
  240. tf->setTextZ(txt);
  241. tf->setSize(0, 20);
  242. setEintragZ(pos, tf);
  243. rend = 1;
  244. return;
  245. }
  246. tf->setTextZ(txt);
  247. rend = 1;
  248. }
  249. void AuswahlListe::setEintrag(int pos, const char* txt)
  250. {
  251. Text* tx = new Text(txt);
  252. setEintrag(pos, tx);
  253. rend = 1;
  254. }
  255. void AuswahlListe::setEintragZ(int pos, TextFeld* tf)
  256. {
  257. if (!tfListe) tfListe = new RCArray<TextFeld>();
  258. if (schrift && (!tf->zSchrift() || hatStyleNicht(Style::MultiStyled)))
  259. tf->setSchriftZ(dynamic_cast<Schrift*>(schrift->getThis()));
  260. tfListe->set(tf, pos);
  261. rend = 1;
  262. }
  263. void AuswahlListe::tauschEintragPos(
  264. int vpos, int npos) // taucht den Eintrag vpos mit dem Eintrag npos
  265. {
  266. if (tfListe)
  267. {
  268. tfListe->tausch(vpos, npos);
  269. if (styles) styles->tausch(vpos, npos);
  270. if (ahFarbeListe) ahFarbeListe->tausch(vpos, npos);
  271. if (ahBildListe) ahBildListe->tausch(vpos, npos);
  272. if (aBufferListe) aBufferListe->tausch(vpos, npos);
  273. if (aRahmenListe) aRahmenListe->tausch(vpos, npos);
  274. rend = 1;
  275. }
  276. }
  277. void Framework::AuswahlListe::setEintragPos(int vpos, int npos) {
  278. if (tfListe)
  279. {
  280. tfListe->setPosition(vpos, npos);
  281. if (styles) styles->setPosition(vpos, npos);
  282. if (ahFarbeListe) ahFarbeListe->setPosition(vpos, npos);
  283. if (ahBildListe) ahBildListe->setPosition(vpos, npos);
  284. if (aBufferListe) aBufferListe->setPosition(vpos, npos);
  285. if (aRahmenListe) aRahmenListe->setPosition(vpos, npos);
  286. rend = 1;
  287. }
  288. }
  289. void AuswahlListe::removeEintrag(int pos) // löscht den Eintrag pos
  290. {
  291. tfListe->remove(pos);
  292. rend = 1;
  293. }
  294. void AuswahlListe::setSchriftZ(
  295. Schrift* schrift) // legt die Schrift der Einträge fest
  296. {
  297. if (this->schrift) this->schrift->release();
  298. this->schrift = schrift;
  299. rend = 1;
  300. }
  301. void AuswahlListe::setVScrollZuEintrag(int eintrag) // scrollt zum Eintrag
  302. {
  303. if (vertikalScrollBar)
  304. {
  305. if (eintrag > tfListe->getLastIndex())
  306. eintrag = tfListe->getLastIndex();
  307. int y = 0;
  308. for (int i = 0; i < eintrag; i++)
  309. y += tfListe->z(i) ? tfListe->z(i)->getHeight() : 0;
  310. vertikalScrollBar->scroll(y);
  311. }
  312. }
  313. void AuswahlListe::updateVScroll() // scrollt zur Curser Position oder nach
  314. // Unten
  315. {
  316. if (vertikalScrollBar)
  317. {
  318. int y = 0;
  319. for (TextFeld* tf : *tfListe)
  320. y += (TextFeld*)tf ? tf->getHeight() : 0;
  321. vertikalScrollBar->update(y,
  322. gr.y
  323. - ((rahmen
  324. && ZeichnungHintergrund::hatStyle(
  325. TextFeld::Style::Rahmen))
  326. ? rahmen->getRBreite()
  327. : 0));
  328. }
  329. }
  330. void AuswahlListe::setALRZ(Rahmen*
  331. rahmen) // setzt einen Zeiger zum Auswahl Rahmen (nur ohne MulitStyled)
  332. {
  333. if (aRahmen) aRahmen->release();
  334. aRahmen = rahmen;
  335. rend = 1;
  336. }
  337. void AuswahlListe::setALRBreite(
  338. int br) // setzt die Breite des Auswahl Rahmens (nur ohne MultiStyled)
  339. {
  340. if (!aRahmen) aRahmen = new LRahmen();
  341. aRahmen->setRamenBreite(br);
  342. rend = 1;
  343. }
  344. void AuswahlListe::setALRFarbe(
  345. int fc) // setzt die Farbe des Auswahl Rahmens (nur ohne MultiStyled)
  346. {
  347. if (!aRahmen) aRahmen = new LRahmen();
  348. aRahmen->setFarbe(fc);
  349. rend = 1;
  350. }
  351. void AuswahlListe::setAAFZ(AlphaFeld* buffer) // setzt einen Zeiger zum Auswahl
  352. // AlpaFeld (nur ohne MultiStyled)
  353. {
  354. if (aBuffer) aBuffer->release();
  355. aBuffer = buffer;
  356. rend = 1;
  357. }
  358. void AuswahlListe::setAAFStrength(
  359. int st) // setzt die Stärke des Auswahl Hintergrund Buffers (nur ohne
  360. // MultiStyled)
  361. {
  362. if (!aBuffer) aBuffer = new AlphaFeld();
  363. aBuffer->setStrength(st);
  364. rend = 1;
  365. }
  366. void AuswahlListe::setAAFFarbe(
  367. int fc) // setzt die Farbe des Auswahl Hintergrund Buffers (nur ohne
  368. // MultiStyled)
  369. {
  370. if (!aBuffer) aBuffer = new AlphaFeld();
  371. aBuffer->setFarbe(fc);
  372. rend = 1;
  373. }
  374. void AuswahlListe::setAHBild(
  375. Bild* bild) // setzt das Auswahl Hintergrund Bild (nur ohne MultiStyled)
  376. {
  377. if (!ahBild) ahBild = new Bild();
  378. ahBild->neuBild(bild->getBreite(), bild->getHeight(), 0);
  379. int* buff1 = ahBild->getBuffer();
  380. int* buff2 = bild->getBuffer();
  381. for (int i = 0; i < bild->getBreite() * bild->getHeight(); ++i)
  382. buff1[i] = buff2[i];
  383. bild->release();
  384. rend = 1;
  385. }
  386. void AuswahlListe::setAHFarbe(int f) // setzt einen Zeiger zur Auswahl
  387. // Hintergrund Farbe (nur ohne MultiStyled)
  388. {
  389. ahFarbe = f;
  390. rend = 1;
  391. }
  392. void AuswahlListe::setAHBildZ(
  393. Bild* b) // setzt einen Zeiger zum Hintergrund Bild (nur ohne MultiStyled)
  394. {
  395. if (ahBild) ahBild->release();
  396. ahBild = b;
  397. rend = 1;
  398. }
  399. void AuswahlListe::setALRZ(int pos,
  400. Rahmen*
  401. rahmen) // setzt einen Zeiger zum Auswahl Rahmen (nur mit MulitStyled)
  402. {
  403. if (!aRahmenListe) aRahmenListe = new RCArray<Rahmen>();
  404. aRahmenListe->set(rahmen, pos);
  405. rend = 1;
  406. }
  407. void AuswahlListe::setALRBreite(int pos,
  408. int br) // setzt die Breite des Auswahl Rahmens (nur mit MultiStyled)
  409. {
  410. if (!aRahmenListe) aRahmenListe = new RCArray<Rahmen>();
  411. if (!aRahmenListe->z(pos)) aRahmenListe->set(new LRahmen(), pos);
  412. aRahmenListe->z(pos)->setRamenBreite(br);
  413. rend = 1;
  414. }
  415. void AuswahlListe::setALRFarbe(int pos,
  416. int fc) // setzt die Farbe des Auswahl Rahmens (nur mit MultiStyled)
  417. {
  418. if (!aRahmenListe) aRahmenListe = new RCArray<Rahmen>();
  419. if (!aRahmenListe->z(pos)) aRahmenListe->set(new LRahmen(), pos);
  420. aRahmenListe->z(pos)->setFarbe(fc);
  421. rend = 1;
  422. }
  423. void AuswahlListe::setAAFZ(int pos,
  424. AlphaFeld*
  425. buffer) // setzt einen Zeiger zum Auswahl AlpaFeld (nur mit MultiStyled)
  426. {
  427. if (!aBufferListe) aBufferListe = new RCArray<AlphaFeld>();
  428. aBufferListe->set(buffer, pos);
  429. rend = 1;
  430. }
  431. void AuswahlListe::setAAFStrength(
  432. int pos, int st) // setzt die Stärke des Auswahl Hintergrund Buffers (nur
  433. // mit MultiStyled)
  434. {
  435. if (!aBufferListe) aBufferListe = new RCArray<AlphaFeld>();
  436. if (!aBufferListe->z(pos)) aBufferListe->set(new AlphaFeld(), pos);
  437. aBufferListe->z(pos)->setStrength(st);
  438. rend = 1;
  439. }
  440. void AuswahlListe::setAAFFarbe(
  441. int pos, int fc) // setzt die Farbe des Auswahl Hintergrund Buffers (nur mit
  442. // MultiStyled)
  443. {
  444. if (!aBufferListe) aBufferListe = new RCArray<AlphaFeld>();
  445. if (!aBufferListe->z(pos)) aBufferListe->set(new AlphaFeld(), pos);
  446. aBufferListe->z(pos)->setFarbe(fc);
  447. rend = 1;
  448. }
  449. void AuswahlListe::setAHBild(int pos,
  450. Bild* bild) // setzt das Auswahl Hintergrund Bild (nur mit MultiStyled)
  451. {
  452. if (ahBildListe) ahBildListe = new RCArray<Bild>();
  453. if (!ahBildListe->z(pos)) ahBildListe->set(new Bild(), pos);
  454. ahBildListe->z(pos)->neuBild(bild->getBreite(), bild->getHeight(), 0);
  455. int* buff1 = ahBildListe->z(pos)->getBuffer();
  456. int* buff2 = bild->getBuffer();
  457. for (int i = 0; i < bild->getBreite() * bild->getHeight(); ++i)
  458. buff1[i] = buff2[i];
  459. bild->release();
  460. rend = 1;
  461. }
  462. void AuswahlListe::setAHFarbe(
  463. int pos, int f) // setzt einen Zeiger zur Auswahl Hintergrund Farbe (nur miz
  464. // MultiStyled)
  465. {
  466. if (ahFarbeListe) ahFarbeListe = new Array<int>();
  467. ahFarbeListe->set(f, pos);
  468. rend = 1;
  469. }
  470. void AuswahlListe::setAHBildZ(int pos,
  471. Bild* b) // setzt einen Zeiger zum Hintergrund Bild (nur mit MultiStyled)
  472. {
  473. if (ahBildListe) ahBildListe = new RCArray<Bild>();
  474. ahBildListe->set(b, pos);
  475. rend = 1;
  476. }
  477. void AuswahlListe::setMsStyle(int pos,
  478. __int64 style) // setzt den Style des Eintrags (nur mit MultiStyled)
  479. {
  480. if (!styles) styles = new Array<__int64>();
  481. styles->set(style, pos);
  482. rend = 1;
  483. }
  484. void AuswahlListe::setMsStyle(int pos, __int64 style, bool add_remove)
  485. {
  486. if (!styles) styles = new Array<__int64>();
  487. if (add_remove)
  488. styles->set(styles->get(pos) | style, pos);
  489. else
  490. styles->set(styles->get(pos) & ~style, pos);
  491. rend = 1;
  492. }
  493. void AuswahlListe::addMsStyle(int pos, __int64 style)
  494. {
  495. if (!styles) styles = new Array<__int64>();
  496. styles->set(styles->get(pos) | style, pos);
  497. rend = 1;
  498. }
  499. void AuswahlListe::removeMsStyle(int pos, __int64 style)
  500. {
  501. if (!styles) styles = new Array<__int64>();
  502. styles->set(styles->get(pos) & ~style, pos);
  503. rend = 1;
  504. }
  505. void AuswahlListe::doTastaturEreignis(TastaturEreignis& te)
  506. {
  507. bool ntakc = !te.verarbeitet;
  508. if (hatStyleNicht(Style::Fokus) || !tak || te.verarbeitet) return;
  509. getThis();
  510. if (tak(takParam, this, te))
  511. {
  512. if (te.id == TE_Press)
  513. {
  514. if (hatStyleNicht(Style::MultiSelect))
  515. {
  516. switch (te.virtualKey)
  517. {
  518. case T_Unten:
  519. ++auswahl;
  520. if (auswahl > tfListe->getEintragAnzahl())
  521. auswahl = tfListe->getEintragAnzahl();
  522. rend = 1;
  523. break;
  524. case T_Oben:
  525. --auswahl;
  526. if (auswahl < -1) auswahl = -1;
  527. rend = 1;
  528. break;
  529. }
  530. }
  531. else
  532. {
  533. switch (te.virtualKey)
  534. {
  535. case T_Unten:
  536. deSelect();
  537. ++auswahl;
  538. if (auswahl > tfListe->getEintragAnzahl())
  539. auswahl = tfListe->getEintragAnzahl();
  540. if (auswahl >= 0) addMsStyle(auswahl, Style::Selected);
  541. rend = 1;
  542. break;
  543. case T_Oben:
  544. deSelect();
  545. --auswahl;
  546. if (auswahl < -1) auswahl = -1;
  547. if (auswahl >= 0) addMsStyle(auswahl, Style::Selected);
  548. rend = 1;
  549. break;
  550. }
  551. }
  552. }
  553. te.verarbeitet = 1;
  554. }
  555. if (ntakc && te.verarbeitet && nTak)
  556. te.verarbeitet = nTak(ntakParam, this, te);
  557. release();
  558. }
  559. void AuswahlListe::render(Bild& zRObj) // zeichnet nach zRObj
  560. {
  561. if (!ZeichnungHintergrund::hatStyle(Style::Sichtbar)) return;
  562. removeStyle(Style::HScroll);
  563. ZeichnungHintergrund::render(zRObj);
  564. lockZeichnung();
  565. if (!zRObj.setDrawOptions(innenPosition, innenSize))
  566. {
  567. unlockZeichnung();
  568. return;
  569. }
  570. int rbr = 0;
  571. if (rahmen && ZeichnungHintergrund::hatStyle(Style::Rahmen))
  572. rbr = rahmen->getRBreite();
  573. if (tfListe)
  574. {
  575. int maxHeight = 0;
  576. int dx = 0, dy = 0;
  577. if (vertikalScrollBar && ZeichnungHintergrund::hatStyle(Style::VScroll))
  578. dy -= vertikalScrollBar->getScroll();
  579. int mdy = innenSize.y + rbr;
  580. auto style = styles ? styles->begin() : Array<__int64>().begin();
  581. int i = 0;
  582. for (auto tf = tfListe->begin(); tf; tf++, style++, i++)
  583. {
  584. if (dy + tf->getHeight() > mdy
  585. && !(vertikalScrollBar
  586. && ZeichnungHintergrund::hatStyle(Style::VScroll)))
  587. break;
  588. tf->setPosition(dx, dy);
  589. tf->setSize(innenSize.x, tf->getHeight());
  590. maxHeight += tf->getHeight();
  591. bool selected = 0;
  592. if (ZeichnungHintergrund::hatStyle(Style::MultiSelect) && styles)
  593. selected = hatStyle(style, Style::Selected);
  594. else
  595. selected = auswahl == i;
  596. AlphaFeld* tmpBuffer = 0;
  597. bool tmpB = 0;
  598. int tmpHFarbe = 0;
  599. bool tmpH = 0;
  600. Bild* tmpHBild = 0;
  601. bool tmpHB = 0;
  602. bool tmpHAlpha = 0;
  603. Rahmen* tmpRahmen = 0;
  604. bool tmpR = 0;
  605. if (selected)
  606. {
  607. if (hatStyleNicht(Style::MultiStyled) || !styles)
  608. {
  609. if (ZeichnungHintergrund::hatStyle(Style::AuswahlBuffer)
  610. && aBuffer)
  611. {
  612. tmpBuffer = tf->getAlphaFeld();
  613. tf->setAlphaFeldZ(
  614. dynamic_cast<AlphaFeld*>(aBuffer->getThis()));
  615. tmpB = tf->hatStyle(TextFeld::Style::Buffered);
  616. tf->setStyle(TextFeld::Style::Buffered,
  617. ZeichnungHintergrund::hatStyle(
  618. Style::AuswahlBuffer));
  619. }
  620. if (ZeichnungHintergrund::hatStyle(
  621. Style::AuswahlHintergrund))
  622. {
  623. tmpH = tf->hatStyle(TextFeld::Style::Hintergrund);
  624. tmpHFarbe = tf->getHintergrundFarbe();
  625. tf->setHintergrundFarbe(ahFarbe);
  626. tf->setStyle(TextFeld::Style::Hintergrund,
  627. ZeichnungHintergrund::hatStyle(Style::Hintergrund));
  628. if (ZeichnungHintergrund::hatStyle(Style::AuswahlHBild)
  629. && ahBild)
  630. {
  631. tmpHBild = tf->getHintergrundBild();
  632. tf->setHintergrundBildZ(
  633. dynamic_cast<Bild*>(ahBild->getThis()));
  634. tmpHB = tf->hatStyle(TextFeld::Style::HBild);
  635. tf->setStyle(TextFeld::Style::HBild,
  636. ZeichnungHintergrund::hatStyle(Style::HBild));
  637. }
  638. if (ZeichnungHintergrund::hatStyle(
  639. Style::AuswahlHAlpha))
  640. {
  641. tmpHAlpha = tf->hatStyle(TextFeld::Style::HAlpha);
  642. tf->setStyle(TextFeld::Style::HAlpha,
  643. ZeichnungHintergrund::hatStyle(
  644. Style::AuswahlHAlpha));
  645. }
  646. }
  647. if (ZeichnungHintergrund::hatStyle(Style::AuswahlRahmen)
  648. && aRahmen)
  649. {
  650. tmpRahmen = tf->getRahmen();
  651. tf->setRahmenZ(
  652. dynamic_cast<Rahmen*>(aRahmen->getThis()));
  653. tmpR = tf->hatStyle(TextFeld::Style::Rahmen);
  654. tf->setStyle(TextFeld::Style::Rahmen,
  655. ZeichnungHintergrund::hatStyle(
  656. Style::AuswahlRahmen));
  657. }
  658. }
  659. else
  660. {
  661. if (hatStyle(style, Style::AuswahlBuffer) && aBufferListe)
  662. {
  663. tmpBuffer = tf->getAlphaFeld();
  664. tf->setAlphaFeldZ(aBufferListe->get(i));
  665. tmpB = tf->hatStyle(TextFeld::Style::Buffered);
  666. tf->setStyle(TextFeld::Style::Buffered,
  667. hatStyle(style, Style::AuswahlBuffer));
  668. }
  669. if (hatStyle(style, Style::AuswahlHintergrund))
  670. {
  671. tmpH = tf->hatStyle(Style::Hintergrund);
  672. tf->setStyle(TextFeld::Style::Hintergrund,
  673. hatStyle(style, Style::AuswahlHintergrund));
  674. if (ahFarbeListe && ahFarbeListe->hat(i))
  675. {
  676. tmpHFarbe = tf->getHintergrundFarbe();
  677. tf->setHintergrundFarbe(ahFarbeListe->get(i));
  678. }
  679. if (hatStyle(style, Style::AuswahlHBild) && ahBildListe)
  680. {
  681. tmpHBild = tf->getHintergrundBild();
  682. tf->setHintergrundBildZ(ahBildListe->get(i));
  683. tmpHB = tf->hatStyle(TextFeld::Style::HBild);
  684. tf->setStyle(TextFeld::Style::HBild,
  685. hatStyle(style, Style::HBild));
  686. }
  687. if (hatStyle(style, Style::AuswahlHAlpha))
  688. {
  689. tmpHAlpha = tf->hatStyle(TextFeld::Style::HAlpha);
  690. tf->setStyle(TextFeld::Style::HAlpha,
  691. hatStyle(style, Style::AuswahlHAlpha));
  692. }
  693. }
  694. if (hatStyle(style, Style::AuswahlRahmen) && aRahmenListe)
  695. {
  696. tmpRahmen = tf->getRahmen();
  697. tf->setRahmenZ(aRahmenListe->get(i));
  698. tmpR = tf->hatStyle(TextFeld::Style::Rahmen);
  699. tf->setStyle(TextFeld::Style::Rahmen,
  700. hatStyle(style, Style::AuswahlRahmen));
  701. }
  702. }
  703. }
  704. tf->render(zRObj);
  705. if (selected)
  706. {
  707. if (hatStyleNicht(Style::MultiStyled) || !styles)
  708. {
  709. if (ZeichnungHintergrund::hatStyle(Style::AuswahlBuffer))
  710. {
  711. tf->setAlphaFeldZ(tmpBuffer);
  712. tf->setStyle(TextFeld::Style::Buffered, tmpB);
  713. }
  714. if (ZeichnungHintergrund::hatStyle(
  715. Style::AuswahlHintergrund))
  716. {
  717. tf->setHintergrundFarbe(tmpHFarbe);
  718. tf->setStyle(TextFeld::Style::Hintergrund, tmpH);
  719. if (ZeichnungHintergrund::hatStyle(Style::AuswahlHBild))
  720. {
  721. tf->setHintergrundBildZ(tmpHBild);
  722. tf->setStyle(TextFeld::Style::HBild, tmpHB);
  723. }
  724. if (ZeichnungHintergrund::hatStyle(
  725. Style::AuswahlHAlpha))
  726. tf->setStyle(TextFeld::Style::HAlpha, tmpHAlpha);
  727. }
  728. if (ZeichnungHintergrund::hatStyle(Style::AuswahlRahmen))
  729. {
  730. tf->setRahmenZ(tmpRahmen);
  731. tf->setStyle(TextFeld::Style::Rahmen, tmpR);
  732. }
  733. }
  734. else
  735. {
  736. if (hatMsStyle(i, Style::AuswahlBuffer) && aBufferListe)
  737. {
  738. tf->setAlphaFeldZ(tmpBuffer);
  739. tf->setStyle(TextFeld::Style::Buffered, tmpB);
  740. }
  741. if (hatMsStyle(i, Style::AuswahlHintergrund))
  742. {
  743. tf->setStyle(TextFeld::Style::Hintergrund, tmpH);
  744. if (ahFarbeListe && ahFarbeListe->hat(i))
  745. tf->setHintergrundFarbe(tmpHFarbe);
  746. if (hatMsStyle(i, Style::AuswahlHBild) && ahBildListe)
  747. {
  748. tf->setHintergrundBildZ(tmpHBild);
  749. tf->setStyle(TextFeld::Style::HBild, tmpHB);
  750. }
  751. if (hatMsStyle(i, Style::AuswahlHAlpha))
  752. tf->setStyle(TextFeld::Style::HAlpha, tmpHAlpha);
  753. }
  754. if (hatMsStyle(i, Style::AuswahlRahmen) && aRahmenListe)
  755. {
  756. tf->setRahmenZ(tmpRahmen);
  757. tf->setStyle(TextFeld::Style::Rahmen, tmpR);
  758. }
  759. }
  760. }
  761. dy += tf->getHeight();
  762. }
  763. if (vertikalScrollBar)
  764. vertikalScrollBar->getScrollData()->max = maxHeight;
  765. }
  766. zRObj.releaseDrawOptions();
  767. unlockZeichnung();
  768. }
  769. int AuswahlListe::getKlickEintrag(int my)
  770. {
  771. if (!tfListe) return -1;
  772. int y = 0;
  773. if (ZeichnungHintergrund::hatStyle(Style::VScroll) && vertikalScrollBar)
  774. y -= vertikalScrollBar->getScroll();
  775. int i = 0;
  776. for (auto tf = tfListe->begin(); tf; tf++, i++)
  777. {
  778. y += tf->getHeight();
  779. if (y > my) return i;
  780. }
  781. return -1;
  782. }
  783. void AuswahlListe::setAuswahl(int ausw) // setzt die Auswahl
  784. {
  785. if (hatStyleNicht(Style::MultiSelect))
  786. auswahl = ausw;
  787. else if (styles)
  788. {
  789. for (int i = 0; i < styles->getEintragAnzahl(); ++i)
  790. removeMsStyle(i, Style::Selected);
  791. addMsStyle(ausw, Style::Selected);
  792. }
  793. }
  794. void AuswahlListe::deSelect()
  795. {
  796. if (hatStyleNicht(Style::MultiSelect))
  797. auswahl = -1;
  798. else if (styles)
  799. {
  800. for (int i = 0; i < styles->getEintragAnzahl(); ++i)
  801. removeMsStyle(i, Style::Selected);
  802. }
  803. }
  804. // constant
  805. int AuswahlListe::getEintragAnzahl()
  806. const // gibt die Anzahl der Einträge zurück
  807. {
  808. return tfListe ? tfListe->getEintragAnzahl() : 0;
  809. }
  810. int AuswahlListe::getAuswahl()
  811. const // gibt den ersten ausgewählten Eintrag zurück
  812. {
  813. return auswahl;
  814. }
  815. int AuswahlListe::getEintragPos(
  816. Text* eintragText) // gibt die Position des eintrages mit dem entsprechenden
  817. // Textes zurück
  818. {
  819. int i = 0;
  820. for (auto tf = tfListe->begin(); tf; tf++, i++)
  821. {
  822. if (tf->zText()->istGleich(eintragText->getText()))
  823. {
  824. eintragText->release();
  825. return i;
  826. }
  827. }
  828. return -1;
  829. }
  830. TextFeld* AuswahlListe::getEintrag(
  831. int pos) const // gibt den pos- ten Eintrag zurück
  832. {
  833. if (!tfListe) return 0;
  834. TextFeld* ret = (TextFeld*)tfListe->get(pos);
  835. if (ret) return dynamic_cast<TextFeld*>(ret->getThis());
  836. return 0;
  837. }
  838. TextFeld* AuswahlListe::zEintrag(int pos) const
  839. {
  840. if (!tfListe) return 0;
  841. return (TextFeld*)tfListe->z(pos);
  842. }
  843. Rahmen* AuswahlListe::getARahmen()
  844. const // gibt den Auswahl Rahmen zurück (ohne MultiStyled)
  845. {
  846. if (aRahmen) return dynamic_cast<Rahmen*>(aRahmen->getThis());
  847. return 0;
  848. }
  849. Rahmen* AuswahlListe::zARahmen() const
  850. {
  851. return aRahmen;
  852. }
  853. int AuswahlListe::getAHFarbe()
  854. const // gibt die Auswahl Hintergrund Farbe zurück (ohne MultiStyled)
  855. {
  856. return ahFarbe;
  857. }
  858. Bild* AuswahlListe::getAHBild()
  859. const // gibt das Auswahl Hintergrund Bild zurück (ohne MultiStyled)
  860. {
  861. if (ahBild) return dynamic_cast<Bild*>(ahBild->getThis());
  862. return 0;
  863. }
  864. Bild* AuswahlListe::zAHBild() const
  865. {
  866. return ahBild;
  867. }
  868. AlphaFeld* AuswahlListe::getABuffer()
  869. const // gibt den Auswahl Buffer zurück (ohne MultiStyled)
  870. {
  871. if (aBuffer) return dynamic_cast<AlphaFeld*>(aBuffer->getThis());
  872. return 0;
  873. }
  874. AlphaFeld* AuswahlListe::zABuffer() const
  875. {
  876. return aBuffer;
  877. }
  878. Rahmen* AuswahlListe::getARahmen(
  879. int pos) const // gibt den Auswahl Rahmen zurück (mit MultiStyled)
  880. {
  881. Rahmen* ret = 0;
  882. if (aRahmenListe) ret = (Rahmen*)aRahmenListe->get(pos);
  883. if (ret) return dynamic_cast<Rahmen*>(ret->getThis());
  884. return 0;
  885. }
  886. Rahmen* AuswahlListe::zARahmen(int pos) const
  887. {
  888. Rahmen* ret = 0;
  889. if (aRahmenListe) ret = (Rahmen*)aRahmenListe->z(pos);
  890. return ret;
  891. }
  892. int AuswahlListe::getAHFarbe(int pos)
  893. const // gibt die Auswahl Hintergrund Farbe zurück (mit MultiStyled)
  894. {
  895. if (ahFarbeListe && ahFarbeListe->hat(pos)) return ahFarbeListe->get(pos);
  896. return 0;
  897. }
  898. Bild* AuswahlListe::getAHBild(
  899. int pos) const // gibt das Auswahl Hintergrund Bild zurück (mit MultiStyled)
  900. {
  901. Bild* ret = 0;
  902. if (ahBildListe) ret = (Bild*)ahBildListe->get(pos);
  903. if (ret) return dynamic_cast<Bild*>(ret->getThis());
  904. return 0;
  905. }
  906. Bild* AuswahlListe::zAHBild(int pos) const
  907. {
  908. Bild* ret = 0;
  909. if (ahBildListe) ret = (Bild*)ahBildListe->z(pos);
  910. return ret;
  911. }
  912. AlphaFeld* AuswahlListe::getABuffer(
  913. int pos) const // gibt den Auswahl Buffer zurück (mit MultiStyled)
  914. {
  915. AlphaFeld* ret = 0;
  916. if (aBufferListe) ret = (AlphaFeld*)aBufferListe->get(pos);
  917. if (ret) return dynamic_cast<AlphaFeld*>(ret->getThis());
  918. return 0;
  919. }
  920. AlphaFeld* AuswahlListe::zABuffer(int pos) const
  921. {
  922. AlphaFeld* ret = 0;
  923. if (aBufferListe) ret = (AlphaFeld*)aBufferListe->z(pos);
  924. return ret;
  925. }
  926. bool AuswahlListe::hatMsStyle(
  927. int pos, __int64 style) const // prüft ob style vorhanden (mit MultiStyled)
  928. {
  929. __int64 st = 0;
  930. if (styles) st = styles->get(pos);
  931. return (st | style) == st;
  932. }
  933. bool AuswahlListe::hatMsStyleNicht(int pos,
  934. __int64 style) const // prüft obt style nicht vorhanden (mit MultiStyled)
  935. {
  936. __int64 st = 0;
  937. if (styles) st = styles->get(pos);
  938. return (st | style) != st;
  939. }
  940. //! Konstruktor
  941. ZListe::ZListe()
  942. : ZeichnungHintergrund()
  943. {
  944. entrySeperatorSize = 1;
  945. entrySeperatorColor = 0xFFFFFFFF;
  946. setRahmenBreite(1);
  947. setRahmenFarbe(0xFFFFFFFF);
  948. setHintergrundFarbe(0xFF000000);
  949. }
  950. //! Destruktor
  951. ZListe::~ZListe() {}
  952. //! Verarbeitet Tastatur Nachrichten
  953. //! \param me Das Ereignis, was durch die Tastatureingabe ausgelößt wurde
  954. void ZListe::doMausEreignis(MausEreignis& me, bool userRet)
  955. {
  956. if (ZeichnungHintergrund::hatStyle(Style::VScroll) && vertikalScrollBar)
  957. {
  958. int rbr = 0;
  959. if (rahmen && ZeichnungHintergrund::hatStyle(Style::Rahmen))
  960. rbr = rahmen->getRBreite();
  961. if (((me.mx > gr.x - 15 - rbr) || me.id == ME_UScroll
  962. || me.id == ME_DScroll)
  963. && me.id != ME_Betritt && me.id != ME_Leaves)
  964. {
  965. vertikalScrollBar->doMausMessage(
  966. gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me);
  967. me.verarbeitet = 1;
  968. }
  969. me.my += vertikalScrollBar->getScroll();
  970. }
  971. me.my -= (rahmen && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen))
  972. ? rahmen->getRBreite() * 2
  973. : 0;
  974. me.mx -= (rahmen && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen))
  975. ? rahmen->getRBreite() * 2
  976. : 0;
  977. int ySum = 0;
  978. int index = 0;
  979. for (Zeichnung* entry : list)
  980. {
  981. entry->doPublicMausEreignis(me);
  982. ySum += entry->getHeight();
  983. me.my -= entry->getHeight();
  984. if (index < list.getLastIndex())
  985. {
  986. ySum
  987. += ZeichnungHintergrund::hatStyle(ZListe::Style::EntrySeperator)
  988. ? entrySeperatorSize
  989. : 0;
  990. me.my
  991. -= ZeichnungHintergrund::hatStyle(ZListe::Style::EntrySeperator)
  992. ? entrySeperatorSize
  993. : 0;
  994. }
  995. index++;
  996. }
  997. me.my
  998. += ySum
  999. + (rahmen
  1000. && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen))
  1001. ? rahmen->getRBreite() * 2
  1002. : 0;
  1003. me.mx += (rahmen && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen))
  1004. ? rahmen->getRBreite() * 2
  1005. : 0;
  1006. if (ZeichnungHintergrund::hatStyle(Style::VScroll) && vertikalScrollBar)
  1007. me.my -= vertikalScrollBar->getScroll();
  1008. }
  1009. //! Fügt einen Eintrag hinzu
  1010. //! \param entry Die Zeichnung die hinzugefügt werden soll
  1011. void ZListe::addEintrag(Zeichnung* entry)
  1012. {
  1013. rend = 1;
  1014. list.add(entry);
  1015. }
  1016. //! Ändert einen Eintrag
  1017. //! \param pos Der Index des Eintrags
  1018. //! \param entry Die neue Zeichnung
  1019. void ZListe::setEintrag(int pos, Zeichnung* entry)
  1020. {
  1021. rend = 1;
  1022. list.set(entry, pos);
  1023. }
  1024. //! Vertauscht die Positionen zweier Einträge
  1025. //! \param vpos Der Index des ersten Eintrags
  1026. //! \param npos Der Index des zweiten Eintrags
  1027. void ZListe::tauschEintragPos(int vPos, int nPos)
  1028. {
  1029. rend = 1;
  1030. list.tausch(vPos, nPos);
  1031. }
  1032. void Framework::ZListe::setEintragPos(int vpos, int npos)
  1033. {
  1034. list.setPosition(vpos, npos);
  1035. }
  1036. //! Löscht einen Eintrag
  1037. //! pos: Der Index des Eintrags
  1038. void ZListe::removeEintrag(int pos)
  1039. {
  1040. rend = 1;
  1041. list.remove(pos);
  1042. }
  1043. //! Scrollt zu einem bestimmen Eintrag
  1044. //! \param eintrag Der Index des Eintrags
  1045. void ZListe::setVScrollZuEintrag(int eintrag)
  1046. {
  1047. if (vertikalScrollBar)
  1048. {
  1049. if (eintrag > list.getLastIndex()) eintrag = list.getLastIndex();
  1050. int y = 0;
  1051. int index = 0;
  1052. for (Zeichnung* entry : list)
  1053. {
  1054. y += entry->getHeight();
  1055. if (index < list.getLastIndex())
  1056. y += ZeichnungHintergrund::hatStyle(
  1057. ZListe::Style::EntrySeperator)
  1058. ? entrySeperatorSize
  1059. : 0;
  1060. index++;
  1061. }
  1062. vertikalScrollBar->scroll(y);
  1063. }
  1064. }
  1065. //! Aktualisiert die maximale Scroll Höhe indem die Höhe aller Einträge addiert
  1066. //! wird
  1067. void ZListe::updateVScroll()
  1068. {
  1069. if (vertikalScrollBar)
  1070. {
  1071. int y = 0;
  1072. int index = 0;
  1073. for (Zeichnung* entry : list)
  1074. {
  1075. y += entry->getHeight();
  1076. if (index < list.getLastIndex())
  1077. y += ZeichnungHintergrund::hatStyle(
  1078. ZListe::Style::EntrySeperator)
  1079. ? entrySeperatorSize
  1080. : 0;
  1081. index++;
  1082. }
  1083. vertikalScrollBar->update(y,
  1084. gr.y
  1085. - ((rahmen
  1086. && ZeichnungHintergrund::hatStyle(
  1087. TextFeld::Style::Rahmen))
  1088. ? rahmen->getRBreite() * 2
  1089. : 0));
  1090. }
  1091. }
  1092. //! sets the size of the entry seperator
  1093. void ZListe::setEntrySeperatorSize(int size)
  1094. {
  1095. entrySeperatorSize = size;
  1096. }
  1097. //! sets the color of the entry seperator
  1098. void ZListe::setEntrySeperatorColor(int color)
  1099. {
  1100. entrySeperatorColor = color;
  1101. }
  1102. //! Verarbeitet ein Tastatur Ereignis. Wird vom Framework automatisch aufgerufen
  1103. //! \param te Das Ereignis
  1104. void ZListe::doTastaturEreignis(TastaturEreignis& te)
  1105. {
  1106. for (Zeichnung* entry : list)
  1107. entry->doTastaturEreignis(te);
  1108. }
  1109. //! Aktualisiert die zeichnung
  1110. //! \param tickVal Die vergangene Zeit in Sekunden, die seit dem Letzten Aufruf
  1111. //! dieser Funktion verstrichen ist \return 1, wenn sich die Zeichnung seit dem
  1112. //! letzten aufruf verändert hat
  1113. bool ZListe::tick(double tickVal)
  1114. {
  1115. bool ret = ZeichnungHintergrund::tick(tickVal);
  1116. for (Zeichnung* entry : list)
  1117. ret |= entry->tick(tickVal);
  1118. return ret;
  1119. }
  1120. //! Zeichnet das Objekt nach zRObj, falls es sichtbar ist
  1121. //! \param zRObj Das Bild, in welches gezeichnet werden soll
  1122. void ZListe::render(Bild& rObj)
  1123. {
  1124. ZeichnungHintergrund::render(rObj);
  1125. int index = 0;
  1126. int rbr = rahmen && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen)
  1127. ? rahmen->getRBreite()
  1128. : 0;
  1129. bool vs = vertikalScrollBar && hatStyle(Style::VScroll);
  1130. if (rObj.setDrawOptions(pos + Punkt(rbr, rbr),
  1131. gr - Punkt(rbr, rbr) * 2 - Punkt(vs ? 15 : 0, 0)))
  1132. {
  1133. if (vs) rObj.addScrollOffset(0, vertikalScrollBar->getScroll());
  1134. for (Zeichnung* entry : list)
  1135. {
  1136. entry->setWidth(gr.x - rbr * 2 - (vs ? 15 : 0));
  1137. entry->render(rObj);
  1138. rObj.addScrollOffset(0, -entry->getHeight());
  1139. if (index < list.getLastIndex()
  1140. && ZeichnungHintergrund::hatStyle(
  1141. ZListe::Style::EntrySeperator))
  1142. {
  1143. for (int i = 0; i < entrySeperatorSize; i++)
  1144. {
  1145. rObj.drawLinieHAlpha(
  1146. 0, 0, gr.x - rbr - (vs ? 15 : 0), entrySeperatorColor);
  1147. rObj.addScrollOffset(0, -1);
  1148. }
  1149. }
  1150. index++;
  1151. }
  1152. rObj.releaseDrawOptions();
  1153. }
  1154. }
  1155. //! Gibt den Index eines Eintrags zurück, auf den die Maus zeigt
  1156. //! \param my Die Position der Maus auf der Y Achse basierend auf dem oberend
  1157. //! Rand der Liste
  1158. int ZListe::getKlickEintrag(int my)
  1159. {
  1160. if (my < 0) return -1;
  1161. int index = 0;
  1162. int y = 0;
  1163. for (Zeichnung* entry : list)
  1164. {
  1165. if (my < y) return index;
  1166. y += entry->getHeight();
  1167. if (index < list.getLastIndex())
  1168. y += ZeichnungHintergrund::hatStyle(ZListe::Style::EntrySeperator)
  1169. ? entrySeperatorSize
  1170. : 0;
  1171. index++;
  1172. }
  1173. return -1;
  1174. }
  1175. //! Gibt die Anzahl an Einträgen zurück
  1176. int ZListe::getEintragAnzahl() const
  1177. {
  1178. return list.getEintragAnzahl();
  1179. }
  1180. //! Gibt den Index eines Eintrags zurück
  1181. //! \param zEntry Die Zeichnung
  1182. int ZListe::getEintragPos(Zeichnung* zEntry)
  1183. {
  1184. int index = 0;
  1185. for (Zeichnung* entry : list)
  1186. {
  1187. if (zEntry == entry) return index;
  1188. index++;
  1189. }
  1190. return -1;
  1191. }
  1192. //! Gibt einen Eintrag zurück
  1193. //! \param pos Der Index des Eintrags
  1194. Zeichnung* ZListe::getEintrag(int pos) const
  1195. {
  1196. return list.get(pos);
  1197. }
  1198. //! Gibt einen Eintrag ohne erhöhten reference Counter zurück
  1199. //! \param pos Der Index des Eintrags
  1200. Zeichnung* ZListe::zEintrag(int pos) const
  1201. {
  1202. return list.get(pos);
  1203. }
  1204. //! Gibt die benötigte Höhe zurück
  1205. int ZListe::getNeededHeight() const
  1206. {
  1207. int y = (rahmen && ZeichnungHintergrund::hatStyle(TextFeld::Style::Rahmen))
  1208. ? rahmen->getRBreite() * 2
  1209. : 0;
  1210. int index = 0;
  1211. for (Zeichnung* entry : list)
  1212. {
  1213. y += entry->getHeight();
  1214. if (index < list.getLastIndex())
  1215. y += ZeichnungHintergrund::hatStyle(ZListe::Style::EntrySeperator)
  1216. ? entrySeperatorSize
  1217. : 0;
  1218. index++;
  1219. }
  1220. return y;
  1221. }
  1222. //! returns the size of the entry seperator
  1223. int ZListe::getEntrySeperatorSize() const
  1224. {
  1225. return entrySeperatorSize;
  1226. }
  1227. //! returns the color of the entry seperator
  1228. int ZListe::getEntrySeperatorColor() const
  1229. {
  1230. return entrySeperatorColor;
  1231. }