TextFeld.cpp 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534
  1. #include "TextFeld.h"
  2. #include "Schrift.h"
  3. #include "Text.h"
  4. #include "AlphaFeld.h"
  5. #include "Rahmen.h"
  6. #include "Bild.h"
  7. #include "TastaturEreignis.h"
  8. #include "MausEreignis.h"
  9. #include "Fenster.h"
  10. #include "Scroll.h"
  11. #include <math.h>
  12. #include "Globals.h"
  13. #include "ToolTip.h"
  14. #include "Scroll.h"
  15. using namespace Framework;
  16. template<typename T, typename... U>
  17. size_t getAddress( std::function<T( U... )> f )
  18. {
  19. typedef T( fnType )( U... );
  20. fnType ** fnPointer = f.template target<fnType*>();
  21. if( !fnPointer )
  22. return 0;
  23. return (size_t)*fnPointer;
  24. }
  25. bool TextFeld::TextStyle::operator==( const TextStyle& rhs )
  26. {
  27. return fontSize == rhs.fontSize && fontColor == rhs.fontColor &&
  28. selectedColor == rhs.selectedColor && selectedBackcroundColor == rhs.selectedBackcroundColor &&
  29. underlined == rhs.underlined && selected == rhs.selected && getAddress( onClick ) == getAddress( rhs.onClick ) && rendererIndex == rhs.rendererIndex;
  30. }
  31. TextFeld::TextStyleManager::TextStyleManager()
  32. : renderer( new RCArray< TextRenderer >() ),
  33. index( 0 ),
  34. styleIndex( 0 ),
  35. text( 0 ),
  36. ref( 1 )
  37. {
  38. current.beginIndex = 0;
  39. current.fontColor = 0xFFFFFFFF;
  40. current.fontSize = 12;
  41. current.selected = 0;
  42. current.selectedColor = 0xFFFFFFFF;
  43. current.selectedBackcroundColor = 0xFF0000FF;
  44. current.underlined = 0;
  45. current.onClick = 0;
  46. current.rendererIndex = 0;
  47. textStyle.add( current );
  48. }
  49. TextFeld::TextStyleManager::~TextStyleManager()
  50. {
  51. if( renderer )
  52. renderer->release();
  53. if( text )
  54. text->release();
  55. }
  56. // Setzt den Style eines Textabschnittes
  57. // begin: die startposition des Abschnittes
  58. // end: die endposition des Abschnittes (nicht enthalten)
  59. void TextFeld::TextStyleManager::setTextStyle( int begin, int end, TextFeld::TextStyle style )
  60. {
  61. if( begin < 0 || begin > end || begin > text->getLength() )
  62. return;
  63. int sc = textStyle.getEintragAnzahl();
  64. int index = -1;
  65. TextStyle s = textStyle.get( 0 );
  66. // suche bis zur richtigen stelle im stylearray
  67. for( int i = 0; i < sc; i++ )
  68. {
  69. if( textStyle.get( i ).beginIndex >= begin )
  70. {
  71. index = i;
  72. if( textStyle.get( i ).beginIndex > begin )
  73. s = textStyle.get( i - 1 );
  74. else
  75. {
  76. s = textStyle.get( i );
  77. textStyle.remove( i );
  78. sc--;
  79. }
  80. break;
  81. }
  82. }
  83. style.beginIndex = begin;
  84. s.beginIndex = end;
  85. if( index < 0 )
  86. { // hinten an styles anfügen
  87. textStyle.add( style );
  88. textStyle.add( s );
  89. }
  90. else
  91. { // in die mitte des style arrays einfügen
  92. textStyle.add( style, index );
  93. for( int i = index + 1; i < sc + 1; i++ )
  94. { // styles entfernen die überschrieben wurden
  95. if( textStyle.get( i ).beginIndex <= end && textStyle.get( i ).beginIndex > begin )
  96. {
  97. s = textStyle.get( i );
  98. textStyle.remove( i );
  99. i--;
  100. sc--;
  101. }
  102. }
  103. s.beginIndex = end;
  104. textStyle.add( s, index + 1 );
  105. }
  106. cleanupStyles();
  107. }
  108. // Entfernt einen Textabschnitt
  109. // begin: der index des ersten betroffenen zeichens
  110. // end: der index des ersten zeichens nach dem abschnitt
  111. void TextFeld::TextStyleManager::removeText( int begin, int end )
  112. {
  113. int sc = textStyle.getEintragAnzahl();
  114. for( int i = 1; i < sc; i++ )
  115. {
  116. TextStyle s = textStyle.get( i );
  117. if( s.beginIndex >= begin && s.beginIndex < end )
  118. {
  119. textStyle.remove( i );
  120. i--;
  121. sc--;
  122. }
  123. if( s.beginIndex >= end )
  124. {
  125. s.beginIndex -= end - begin;
  126. textStyle.set( s, i );
  127. }
  128. }
  129. text->remove( begin, end );
  130. cleanupStyles();
  131. }
  132. // Fügt ein Text an einer bestimmten Position ein
  133. // pos: die position des neuen Textausschnitts
  134. // text: der neue Text
  135. void TextFeld::TextStyleManager::insertText( int pos, const char *text )
  136. {
  137. int len = textLength( text );
  138. this->text->insert( pos, text );
  139. int sc = textStyle.getEintragAnzahl();
  140. for( int i = 0; i < sc; i++ )
  141. {
  142. TextStyle s = textStyle.get( i );
  143. if( s.beginIndex > pos )
  144. {
  145. s.beginIndex += len;
  146. textStyle.set( s, i );
  147. }
  148. }
  149. cleanupStyles();
  150. }
  151. // Entfernt nicht benötiegte gleiche styles
  152. void TextFeld::TextStyleManager::cleanupStyles()
  153. {
  154. int sc = textStyle.getEintragAnzahl();
  155. TextStyle last = textStyle.get( 0 );
  156. for( int i = 1; i < sc; i++ )
  157. {
  158. if( textStyle.get( i ) == last || ( text && textStyle.get( i ).beginIndex > text->getLength() ) )
  159. {
  160. textStyle.remove( i );
  161. i--;
  162. sc--;
  163. }
  164. else
  165. last = textStyle.get( i );
  166. }
  167. }
  168. // gibt eine referenz auf das style objekt zurück
  169. TextFeld::TextStyle &TextFeld::TextStyleManager::currentStyle()
  170. {
  171. return current;
  172. }
  173. // gibt den aktuellen text renderer zurück
  174. TextRenderer *TextFeld::TextStyleManager::zCurrentRenderer()
  175. {
  176. TextRenderer *tr = renderer->z( current.rendererIndex );
  177. if( !tr )
  178. tr = renderer->z( 0 );
  179. if( tr )
  180. tr->setSchriftSize( current.fontSize );
  181. return tr;
  182. }
  183. // ändert den inhalt des style objektes auf den style des nächsten zeichens
  184. bool TextFeld::TextStyleManager::nextStyle()
  185. {
  186. index++;
  187. if( textStyle.getEintragAnzahl() > styleIndex + 1 && index >= textStyle.get( styleIndex + 1 ).beginIndex )
  188. current = textStyle.get( styleIndex++ + 1 );
  189. return text && index < text->getLength();
  190. }
  191. // ändert den inhalt des style objektes auf den style des ersten zeichens
  192. void TextFeld::TextStyleManager::resetIteration()
  193. {
  194. index = 0;
  195. styleIndex = 0;
  196. current = textStyle.get( 0 );
  197. }
  198. // Gibt den Style eines bestimmten zeichens zurück
  199. // index: Der index des Zeichensf
  200. TextFeld::TextStyle TextFeld::TextStyleManager::getTextStyle( int index ) const
  201. {
  202. TextStyle last = textStyle.get( 0 );
  203. int ind = 0;
  204. for( auto i = textStyle.getIterator(); i && ind <= index; ind++ )
  205. {
  206. if( i._.beginIndex <= ind )
  207. {
  208. last = i;
  209. i++;
  210. }
  211. }
  212. return last;
  213. }
  214. // Erhöht den Reference Counting Zähler.
  215. // return: this.
  216. TextFeld::TextStyleManager *TextFeld::TextStyleManager::getThis()
  217. {
  218. ref++;
  219. return this;
  220. }
  221. // Verringert den Reference Counting Zähler. Wenn der Zähler 0 erreicht, wird das Zeichnung automatisch gelöscht.
  222. // return: 0.
  223. TextFeld::TextStyleManager *TextFeld::TextStyleManager::release()
  224. {
  225. if( !--ref )
  226. delete this;
  227. return 0;
  228. }
  229. // Inhalt der TextFeld Klasse aus TextFeld.h
  230. // Konstruktor
  231. TextFeld::TextFeld()
  232. : ZeichnungHintergrund(),
  233. tm( new TextStyleManager() ),
  234. showChar( 0 ),
  235. cpos( 0 ),
  236. tickVal( 0 ),
  237. mausKlick( 0 )
  238. {
  239. horizontalScrollBar = new HScrollBar();
  240. vertikalScrollBar = new VScrollBar();
  241. this->setMausEreignis( _ret1ME );
  242. this->setTastaturEreignis( _ret1TE );
  243. }
  244. // Destruktor
  245. TextFeld::~TextFeld()
  246. {
  247. tm->release();
  248. }
  249. int TextFeld::getTextHeight() const
  250. {
  251. tm->resetIteration();
  252. int th = 0;
  253. int len = tm->text->getLength();
  254. char *text = tm->text->getText();
  255. int max = 0;
  256. int abstand = 0;
  257. for( int i = 0; i < len; i++ )
  258. {
  259. if( text[ i ] == '\n' )
  260. {
  261. th += max + abstand;
  262. abstand = 0;
  263. max = 0;
  264. tm->nextStyle();
  265. continue;
  266. }
  267. TextRenderer *r = tm->zCurrentRenderer();
  268. if( r )
  269. {
  270. int tmp = r->getZeilenHeight();
  271. max = max >= tmp ? max : tmp;
  272. if( max == tmp )
  273. abstand = r->getZeichenAbstand();
  274. }
  275. tm->nextStyle();
  276. }
  277. if( max > 0 )
  278. th += max;
  279. return th;
  280. }
  281. int TextFeld::getTextWidth() const
  282. {
  283. int maxBr = 0;
  284. int len = tm->text->getLength();
  285. char *text = tm->text->getText();
  286. int lineBr = 0;
  287. char buff[] = { 0,0 };
  288. for( int i = 0; i < len; i++ )
  289. {
  290. buff[ 0 ] = text[ i ];
  291. if( text[ i ] == '\n' )
  292. {
  293. maxBr = maxBr >= lineBr ? maxBr : lineBr;
  294. lineBr = 0;
  295. tm->nextStyle();
  296. continue;
  297. }
  298. TextRenderer *r = tm->zCurrentRenderer();
  299. if( r )
  300. lineBr += r->getTextBreite( buff );
  301. tm->nextStyle();
  302. }
  303. if( lineBr > 0 )
  304. maxBr = maxBr >= lineBr ? maxBr : lineBr;
  305. return maxBr;
  306. }
  307. void TextFeld::setText( Text *txt ) // setzt den angezeigten Text
  308. {
  309. lockZeichnung();
  310. if( !tm->text )
  311. tm->text = new Text();
  312. tm->text->setText( txt );
  313. if( hatStyle( Style::VScroll ) )
  314. updateVScroll();
  315. if( hatStyle( Style::HScroll ) )
  316. updateHScroll();
  317. unlockZeichnung();
  318. rend = 1;
  319. }
  320. void TextFeld::setTextZ( Text *txt ) // setzt einen Zeiger zum angezeigten Text
  321. {
  322. lockZeichnung();
  323. if( tm->text )
  324. tm->text->release();
  325. tm->text = txt;
  326. if( hatStyle( Style::VScroll ) )
  327. updateVScroll();
  328. if( hatStyle( Style::HScroll ) )
  329. updateHScroll();
  330. rend = 1;
  331. unlockZeichnung();
  332. }
  333. void TextFeld::setText( const char *txt ) // setzt den angezeigten Text
  334. {
  335. lockZeichnung();
  336. if( !tm->text )
  337. tm->text = new Text();
  338. tm->text->setText( txt );
  339. if( hatStyle( Style::VScroll ) )
  340. updateVScroll();
  341. if( hatStyle( Style::HScroll ) )
  342. updateHScroll();
  343. rend = 1;
  344. unlockZeichnung();
  345. }
  346. // Setzt den Style eines Textabschnittes
  347. // begin: die startposition des Abschnittes
  348. // end: die endposition des Abschnittes (nicht enthalten)
  349. void TextFeld::setTextStyle( int begin, int end, TextStyle style )
  350. {
  351. tm->setTextStyle( begin, end, style );
  352. }
  353. void TextFeld::addZeile( const char *zeile ) // fügt Zeile An
  354. {
  355. if( tm->text )
  356. {
  357. Text *txt = new Text( zeile );
  358. if( zeile[ txt->getLength() - 1 ] != '\n' )
  359. txt->append( "\n" );
  360. TextRenderer *r = tm->renderer->z( 0 );
  361. if( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).rendererIndex < tm->renderer->getEintragAnzahl() )
  362. r = tm->renderer->z( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).rendererIndex );
  363. if( r )
  364. {
  365. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  366. int rbr = ( rahmen && hatStyle( Style::Rahmen ) ) ? rahmen->getRBreite() : 0;
  367. r->setSchriftSize( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).fontSize );
  368. r->textFormatieren( txt, gr.x - ( (int)vs * 15 ) - rbr * 2 );
  369. }
  370. lockZeichnung();
  371. tm->text->append( txt->getText() );
  372. unlockZeichnung();
  373. txt->release();
  374. if( hatStyle( Style::VScroll ) )
  375. updateVScroll();
  376. if( hatStyle( Style::HScroll ) )
  377. updateHScroll();
  378. rend = 1;
  379. }
  380. }
  381. // Fügt eine Zeile an den Text an
  382. // zeile: Die neue Zeile
  383. // color: Die Farbe der Zeile
  384. void TextFeld::addZeile( const char *zeile, int color )
  385. {
  386. if( tm->text )
  387. {
  388. Text *txt = new Text( zeile );
  389. if( zeile[ txt->getLength() - 1 ] != '\n' )
  390. txt->append( "\n" );
  391. TextRenderer * r = tm->renderer->z( 0 );
  392. if( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).rendererIndex < tm->renderer->getEintragAnzahl() )
  393. r = tm->renderer->z( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).rendererIndex );
  394. if( r )
  395. {
  396. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  397. int rbr = ( rahmen && hatStyle( Style::Rahmen ) ) ? rahmen->getRBreite() : 0;
  398. r->setSchriftSize( tm->textStyle.get( tm->textStyle.getEintragAnzahl() - 1 ).fontSize );
  399. r->textFormatieren( txt, gr.x - ( (int)vs * 15 ) - rbr * 2 );
  400. }
  401. lockZeichnung();
  402. tm->text->append( txt->getText() );
  403. setSchriftFarbe( tm->text->getLength() - txt->getLength(), tm->text->getLength(), color );
  404. unlockZeichnung();
  405. txt->release();
  406. if( hatStyle( Style::VScroll ) )
  407. updateVScroll();
  408. if( hatStyle( Style::HScroll ) )
  409. updateHScroll();
  410. rend = 1;
  411. }
  412. }
  413. // Deselectiert alle textabschnitte
  414. void TextFeld::deselectAuswahl()
  415. {
  416. for( int i = 0; i < tm->textStyle.getEintragAnzahl(); i++ )
  417. {
  418. TextStyle s = tm->textStyle.get( i );
  419. if( s.selected )
  420. {
  421. s.selected = 0;
  422. tm->textStyle.set( s, i );
  423. }
  424. }
  425. tm->cleanupStyles();
  426. }
  427. void TextFeld::setAuswahl( int pos1, int pos2 ) // setzt den Ausgewählten Text
  428. {
  429. deselectAuswahl();
  430. TextStyle s = tm->getTextStyle( pos1 );
  431. s.selected = 1;
  432. tm->setTextStyle( pos1, pos2, s );
  433. }
  434. void TextFeld::setAuswahl( Punkt &auswahl )
  435. {
  436. deselectAuswahl();
  437. TextStyle s = tm->getTextStyle( auswahl.x );
  438. s.selected = 1;
  439. tm->setTextStyle( auswahl.x, auswahl.y, s );
  440. rend = 1;
  441. }
  442. void TextFeld::addAuswahl( int pos1, int pos2 )
  443. {
  444. TextStyle s = tm->getTextStyle( pos1 );
  445. s.selected = 1;
  446. tm->setTextStyle( pos1, pos2, s );
  447. }
  448. void TextFeld::addAuswahl( Punkt &auswahl )
  449. {
  450. TextStyle s = tm->getTextStyle( auswahl.x );
  451. s.selected = 1;
  452. tm->setTextStyle( auswahl.x, auswahl.y, s );
  453. rend = 1;
  454. }
  455. // Setzt den ausgewählten textabschnitt fest
  456. // begin: Die Cursorposition im Text
  457. // end: Die Position im Text, bis zu der der Text eingefärbt werden soll
  458. void TextFeld::invertAuswahl( int begin, int end )
  459. {
  460. for( int i = begin; i < end; i++ )
  461. {
  462. TextStyle s = tm->getTextStyle( i );
  463. s.selected = !s.selected;
  464. tm->setTextStyle( i, i + 1, s );
  465. rend = 1;
  466. }
  467. }
  468. // ersetzt alle ausgewählten Textabschnitte mit einem text
  469. // text: der neue Text
  470. void TextFeld::replaceAuswahl( const char *text )
  471. {
  472. tm->cleanupStyles();
  473. int sa = tm->textStyle.getEintragAnzahl();
  474. int last = tm->text->getLength();
  475. int si = 0;
  476. for( int i = sa - 1; i >= 0; i-- )
  477. {
  478. TextStyle s = tm->textStyle.get( i );
  479. si = i;
  480. if( s.selected )
  481. {
  482. if( ( i > 0 && !tm->textStyle.get( i - 1 ).selected ) || i == 0 )
  483. {
  484. s.selected = false;
  485. tm->textStyle.set( s, si );
  486. tm->removeText( s.beginIndex, last );
  487. tm->insertText( s.beginIndex, text );
  488. }
  489. }
  490. else
  491. last = s.beginIndex;
  492. }
  493. }
  494. void TextFeld::setTextRendererZ( TextRenderer *textRd )
  495. {
  496. if( tm->renderer )
  497. tm->renderer->leeren();
  498. else
  499. tm->renderer = new RCArray< TextRenderer >();
  500. tm->renderer->add( textRd );
  501. rend = 1;
  502. }
  503. // Fügt einen TextRenderer hinzu
  504. // textRd: Der Textrenderer
  505. void TextFeld::addTextRendererZ( TextRenderer *textRd )
  506. {
  507. if( !tm->renderer )
  508. tm->renderer = new RCArray< TextRenderer >();
  509. tm->renderer->add( textRd );
  510. }
  511. // Setzt die verwendeten TextRenderer
  512. // textRd: Die Textrenderer
  513. void TextFeld::setTextRendererZ( RCArray< TextRenderer > *textRd )
  514. {
  515. if( tm->renderer )
  516. tm->renderer->release();
  517. tm->renderer = textRd;
  518. }
  519. void TextFeld::setSchriftZ( Schrift *schrift ) // setzt einen Zeiger zur Schrift
  520. {
  521. if( !tm->renderer )
  522. tm->renderer = new RCArray< TextRenderer >();
  523. if( !tm->renderer->getEintragAnzahl() )
  524. tm->renderer->add( new TextRenderer( schrift ) );
  525. else
  526. tm->renderer->z( 0 )->setSchriftZ( schrift );
  527. rend = 1;
  528. }
  529. // Setzt einen Zeiger zur Schrift
  530. // rendererIndex: Der Index des Renderers dessen Schrift gesetzt werden soll
  531. // schrift: Die Schrift, die zum Textzeichnen verwendet werden soll.
  532. void TextFeld::setSchriftZ( int rendererIndex, Schrift *schrift )
  533. {
  534. if( !tm->renderer )
  535. tm->renderer = new RCArray< TextRenderer >();
  536. if( tm->renderer->getEintragAnzahl() <= rendererIndex )
  537. tm->renderer->add( new TextRenderer( schrift ), rendererIndex );
  538. else
  539. tm->renderer->z( rendererIndex )->setSchriftZ( schrift );
  540. }
  541. void TextFeld::setSchriftSize( unsigned char gr ) // setzt die Schriftgröße
  542. {
  543. TextStyle s = tm->textStyle.get( 0 );
  544. s.fontSize = gr;
  545. tm->textStyle.set( s, 0 );
  546. rend = 1;
  547. }
  548. // Setzt die Schriftgröße (Standart: 12)
  549. // begin: Der Index des ersten betroffenen Zeichens
  550. // end: Der Index des ersten nicht betroffenen Zeichens
  551. // gr: Die Schriftgröße, die zum Textzeichnen verwendet werden soll
  552. void TextFeld::setSchriftSize( int begin, int end, unsigned char gr )
  553. {
  554. TextStyle s = tm->getTextStyle( begin );
  555. s.fontSize = gr;
  556. tm->setTextStyle( begin, end, s );
  557. rend = 1;
  558. }
  559. void TextFeld::setSchriftFarbe( int fc ) // setzt die Schrift Farbe
  560. {
  561. TextStyle s = tm->textStyle.get( 0 );
  562. s.fontColor = fc;
  563. tm->textStyle.set( s, 0 );
  564. rend = 1;
  565. }
  566. // Setzt die Schrift Farbe
  567. // begin: Der Index des ersten betroffenen Zeichens
  568. // end: Der Index des ersten nicht betroffenen Zeichens
  569. // fc: Die Farbe, die zum Textzeichnen verwendet werden soll
  570. void TextFeld::setSchriftFarbe( int begin, int end, int fc )
  571. {
  572. TextStyle s = tm->getTextStyle( begin );
  573. s.fontColor = fc;
  574. tm->setTextStyle( begin, end, s );
  575. rend = 1;
  576. }
  577. void TextFeld::setSchowChar( unsigned char c ) // bei Passwortfeld *
  578. {
  579. showChar = c;
  580. rend = 1;
  581. }
  582. void TextFeld::setVScrollZuZeile( int zeile ) // scrollt zur Zeile
  583. {
  584. if( vertikalScrollBar && tm->renderer && tm->renderer->getEintragAnzahl() && tm->text && hatStyle( Style::Mehrzeilig ) )
  585. {
  586. lockZeichnung();
  587. tm->resetIteration();
  588. int len = tm->text->getLength();
  589. int y = 0;
  590. int lnum = 0;
  591. char *text = tm->text->getText();
  592. int max = 0;
  593. for( int i = 0; i < len && lnum < zeile; i++ )
  594. {
  595. if( text[ i ] == '\n' )
  596. {
  597. lnum++;
  598. y += max;
  599. max = 0;
  600. tm->nextStyle();
  601. continue;
  602. }
  603. TextRenderer *r = tm->zCurrentRenderer();
  604. if( r )
  605. {
  606. int tmp = r->getZeilenabstand() + r->getZeilenHeight();
  607. max = max >= tmp ? max : tmp;
  608. }
  609. tm->nextStyle();
  610. }
  611. unlockZeichnung();
  612. vertikalScrollBar->scroll( y );
  613. rend = 1;
  614. }
  615. }
  616. void TextFeld::updateVScroll( int pos ) // scrollt nach unten
  617. {
  618. if( pos == -1 )
  619. pos = cpos;
  620. if( vertikalScrollBar )
  621. {
  622. int sPos = 0;
  623. int hi = 0;
  624. int sPosZH = 0;
  625. if( tm->text && tm->renderer )
  626. {
  627. if( hatStyleNicht( Style::Mehrzeilig ) )
  628. tm->text->remove( '\n' );
  629. hi = gr.y;
  630. if( hatStyle( Style::Rahmen ) && rahmen )
  631. hi -= rahmen->getRBreite() * 2;
  632. if( hatStyle( Style::HScroll ) && horizontalScrollBar )
  633. hi -= 15;
  634. int th = 0;
  635. lockZeichnung();
  636. tm->resetIteration();
  637. int len = tm->text->getLength();
  638. char *text = tm->text->getText();
  639. int max = 0;
  640. int lastMax = 0;
  641. for( int i = 0; i < len; i++ )
  642. {
  643. if( text[ i ] == '\n' )
  644. {
  645. if( i <= pos )
  646. {
  647. sPos += max;
  648. sPosZH = max;
  649. }
  650. th += max;
  651. lastMax = max;
  652. max = 0;
  653. tm->nextStyle();
  654. continue;
  655. }
  656. TextRenderer *r = tm->zCurrentRenderer();
  657. if( r )
  658. {
  659. int tmp = r->getZeilenabstand() + r->getZeilenHeight();
  660. max = max >= tmp ? max : tmp;
  661. }
  662. tm->nextStyle();
  663. }
  664. if( max != lastMax && max > 0 )
  665. {
  666. th += max;
  667. lastMax = max;
  668. }
  669. th += lastMax;
  670. unlockZeichnung();
  671. vertikalScrollBar->update( th, hi );
  672. }
  673. if( sPos - sPosZH < vertikalScrollBar->getScroll() )
  674. vertikalScrollBar->scroll( sPos - sPosZH );
  675. if( sPos + sPosZH > vertikalScrollBar->getScroll() + vertikalScrollBar->getScrollData()->anzeige )
  676. vertikalScrollBar->scroll( sPos + sPosZH * 2 - hi );
  677. rend = 1;
  678. }
  679. }
  680. void TextFeld::updateHScroll( int pos ) // scrollt zur Curser Position
  681. {
  682. if( pos == -1 )
  683. pos = cpos;
  684. if( horizontalScrollBar && tm->text && tm->renderer )
  685. {
  686. if( hatStyleNicht( Style::Mehrzeilig ) )
  687. tm->text->remove( '\n' );
  688. int br = gr.x;
  689. if( hatStyle( Style::Rahmen ) && rahmen )
  690. br -= rahmen->getRBreite() * 2;
  691. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  692. br -= 15;
  693. int maxBr = 0;
  694. int len = tm->text->getLength();
  695. char *text = tm->text->getText();
  696. int lineBr = 0;
  697. char buff[] = { 0,0 };
  698. int cbr = 0;
  699. for( int i = 0; i < len; i++ )
  700. {
  701. buff[ 0 ] = text[ i ];
  702. if( text[ i ] == '\n' )
  703. {
  704. maxBr = maxBr >= lineBr ? maxBr : lineBr;
  705. lineBr = 0;
  706. tm->nextStyle();
  707. continue;
  708. }
  709. TextRenderer *r = tm->zCurrentRenderer();
  710. if( r )
  711. {
  712. lineBr += r->getTextBreite( buff );
  713. if( i <= pos )
  714. cbr = lineBr;
  715. }
  716. tm->nextStyle();
  717. }
  718. horizontalScrollBar->update( maxBr, br );
  719. if( cbr > horizontalScrollBar->getScroll() + horizontalScrollBar->getScrollData()->anzeige )
  720. horizontalScrollBar->scroll( cbr - br );
  721. if( cbr < horizontalScrollBar->getScroll() )
  722. horizontalScrollBar->scroll( cbr );
  723. }
  724. }
  725. bool TextFeld::tick( double tickval ) // tick
  726. {
  727. if( hatStyle( Style::Fokus ) )
  728. {
  729. if( tickVal < 0.5 && tickVal + tickval >= 0.5 )
  730. rend = 1;
  731. if( tickVal >= 0.5 && tickVal + tickval >= 1 )
  732. rend = 1;
  733. tickVal += tickval;
  734. if( tickVal >= 1 )
  735. tickVal -= 1;
  736. }
  737. return ZeichnungHintergrund::tick( tickval );
  738. }
  739. void TextFeld::doMausEreignis( MausEreignis &me ) // Maus Ereignis
  740. {
  741. bool nmakc = !me.verarbeitet;
  742. if( hatStyleNicht( Style::Erlaubt ) || hatStyleNicht( Style::Sichtbar ) )
  743. {
  744. if( toolTip )
  745. toolTip->setMausIn( 0 );
  746. me.mx -= pos.x, me.my -= pos.y;
  747. int rbr = 0;
  748. if( rahmen )
  749. rbr = rahmen->getRBreite();
  750. if( ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ||
  751. ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ) &&
  752. me.mx > rbr && me.mx < gr.x - rbr &&
  753. me.my > rbr && me.my < gr.y - rbr )
  754. {
  755. vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me );
  756. horizontalScrollBar->doMausMessage( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me );
  757. me.verarbeitet = 1;
  758. }
  759. me.mx += pos.x, me.my += pos.y;
  760. mausKlick = 0;
  761. return;
  762. }
  763. bool removeFokus = 0;
  764. if( me.verarbeitet || !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) )
  765. {
  766. if( mausIn )
  767. {
  768. mausIn = 0;
  769. if( toolTip )
  770. toolTip->setMausIn( 0 );
  771. MausEreignis me2;
  772. me2.id = ME_Leaves;
  773. me2.mx = me.mx;
  774. me2.my = me.my;
  775. me2.verarbeitet = 0;
  776. doMausEreignis( me2 );
  777. return;
  778. }
  779. removeFokus = 1;
  780. }
  781. if( !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) && me.id != ME_Leaves )
  782. {
  783. if( removeFokus && me.id == ME_RLinks )
  784. {
  785. me.mx -= pos.x, me.my -= pos.y;
  786. if( hatStyle( Style::Fokus ) && mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  787. removeStyle( Style::Fokus );
  788. if( nmakc && me.verarbeitet && nMak )
  789. me.verarbeitet = nMak( nmakParam, this, me );
  790. me.mx += pos.x, me.my += pos.y;
  791. }
  792. if( toolTip )
  793. toolTip->setMausIn( 0 );
  794. return;
  795. }
  796. if( !mausIn && me.id != ME_Leaves )
  797. {
  798. mausIn = 1;
  799. if( toolTip )
  800. toolTip->setMausIn( 1 );
  801. MausEreignis me2;
  802. me2.id = ME_Betritt;
  803. me2.mx = me.mx;
  804. me2.my = me.my;
  805. me2.verarbeitet = 0;
  806. doMausEreignis( me2 );
  807. }
  808. me.mx -= pos.x, me.my -= pos.y;
  809. if( mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  810. {
  811. if( removeFokus && me.id == ME_RLinks )
  812. removeStyle( Style::Fokus );
  813. if( !me.verarbeitet )
  814. {
  815. if( hatStyleNicht( Style::Fokus ) )
  816. {
  817. mausKlick = 0;
  818. if( me.id == Framework::ME_PLinks )
  819. addStyle( Style::Fokus );
  820. }
  821. int rbr = 0;
  822. if( rahmen )
  823. rbr = rahmen->getRBreite();
  824. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  825. {
  826. if( vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me ) )
  827. {
  828. if( nmakc && me.verarbeitet && nMak )
  829. me.verarbeitet = nMak( nmakParam, this, me );
  830. me.mx += pos.x, me.my += pos.y;
  831. return;
  832. }
  833. }
  834. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  835. {
  836. if( horizontalScrollBar->doMausMessage( rbr, gr.y - rbr - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me ) )
  837. {
  838. if( nmakc && me.verarbeitet && nMak )
  839. me.verarbeitet = nMak( nmakParam, this, me );
  840. me.mx += pos.x, me.my += pos.y;
  841. return;
  842. }
  843. }
  844. bool shift = TastenStand[ T_Shift ];
  845. bool strg = TastenStand[ T_Strg ];
  846. int tbr = getTextWidth();
  847. int thi = getTextHeight();
  848. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  849. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  850. int xxx = me.mx - rbr + scrollBr;
  851. int yyy = me.my - rbr + scrollHi;
  852. int mausChar = getTextIndexAt( xxx, yyy );
  853. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  854. int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
  855. if( hatStyle( Style::HCenter ) )
  856. xxx -= ( ( ( gr.x - scrollBreite ) / 2 ) - tbr / 2 ) - rbr;
  857. if( hatStyle( Style::VCenter ) && hatStyleNicht( Style::VScroll ) )
  858. yyy -= ( ( ( gr.y - scrollHeight ) / 2 ) - thi / 2 ) - rbr;
  859. if( mausChar >= 0 )
  860. {
  861. TextStyle s = tm->getTextStyle( mausChar );
  862. if( s.onClick )
  863. s.onClick( 0, this, me );
  864. }
  865. if( me.mx < gr.x - rbr - 15 )
  866. {
  867. if( tm->renderer )
  868. {
  869. int ncpos = getCurserPosAt( xxx, yyy );
  870. if( me.id == Framework::ME_PLinks )
  871. {
  872. if( ncpos != -1 )
  873. {
  874. if( shift && cpos != ncpos )
  875. addAuswahl( MIN( cpos, ncpos ), MAX( cpos, ncpos ) );
  876. else if( !shift && !mausKlick && !strg )
  877. deselectAuswahl();
  878. cpos = ncpos;
  879. rend = 1;
  880. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  881. updateVScroll();
  882. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  883. updateHScroll();
  884. }
  885. mausKlick = 1;
  886. }
  887. if( me.id == ME_Bewegung && mausKlick )
  888. {
  889. if( ncpos != -1 )
  890. {
  891. rend = 1;
  892. if( cpos != ncpos )
  893. invertAuswahl( MIN( cpos, ncpos ), MAX( cpos, ncpos ) );
  894. cpos = ncpos;
  895. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  896. updateVScroll( cpos );
  897. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  898. updateHScroll( cpos );
  899. }
  900. }
  901. if( me.id == ME_RLinks )
  902. {
  903. if( ncpos != -1 )
  904. {
  905. rend = 1;
  906. if( cpos != ncpos )
  907. invertAuswahl( MIN( cpos, ncpos ), MAX( cpos, ncpos ) );
  908. cpos = ncpos;
  909. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  910. updateVScroll( cpos );
  911. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  912. updateHScroll( cpos );
  913. }
  914. mausKlick = 0;
  915. }
  916. }
  917. }
  918. }
  919. me.verarbeitet = 1;
  920. }
  921. if( nmakc && me.verarbeitet && nMak )
  922. me.verarbeitet = nMak( nmakParam, this, me );
  923. me.mx += pos.x, me.my += pos.y;
  924. }
  925. void TextFeld::doTastaturEreignis( TastaturEreignis &te )
  926. {
  927. bool ntakc = !te.verarbeitet;
  928. if( te.verarbeitet || hatStyleNicht( Style::Fokus ) )
  929. return;
  930. if( !tak )
  931. return;
  932. ++ref;
  933. if( tak( takParam, this, te ) )
  934. {
  935. if( hatStyleNicht( Style::Erlaubt ) )
  936. {
  937. --ref;
  938. if( !ref )
  939. delete this;
  940. return;
  941. }
  942. if( te.id == TE_Press )
  943. {
  944. bool shift = TastenStand[ T_Shift ];
  945. bool strg = TastenStand[ T_Strg ];
  946. switch( te.taste )
  947. {
  948. case T_Entf:
  949. if( !tm->getTextStyle( cpos ).selected )
  950. tm->removeText( cpos, cpos + 1 );
  951. else
  952. {
  953. cpos = tm->getTextStyle( cpos ).beginIndex;
  954. while( cpos > 0 && tm->getTextStyle( cpos - 1 ).selected )
  955. cpos = tm->getTextStyle( cpos - 1 ).beginIndex;
  956. }
  957. replaceAuswahl( "" );
  958. deselectAuswahl();
  959. rend = 1;
  960. break;
  961. case T_BackSpace:
  962. if( !tm->getTextStyle( cpos ).selected )
  963. {
  964. tm->removeText( cpos - 1, cpos );
  965. cpos--;
  966. }
  967. else
  968. {
  969. cpos = tm->getTextStyle( cpos ).beginIndex;
  970. while( cpos > 0 && tm->getTextStyle( cpos - 1 ).selected )
  971. cpos = tm->getTextStyle( cpos - 1 ).beginIndex;
  972. }
  973. replaceAuswahl( "" );
  974. deselectAuswahl();
  975. rend = 1;
  976. break;
  977. case T_Enter:
  978. if( !tm->getTextStyle( cpos ).selected )
  979. tm->insertText( cpos, "\n" );
  980. else
  981. {
  982. cpos = tm->getTextStyle( cpos ).beginIndex;
  983. while( cpos > 0 && tm->getTextStyle( cpos - 1 ).selected )
  984. cpos = tm->getTextStyle( cpos - 1 ).beginIndex;
  985. }
  986. replaceAuswahl( "\n" );
  987. ++cpos;
  988. rend = 1;
  989. break;
  990. case T_Links:
  991. if( shift )
  992. {
  993. if( strg )
  994. {
  995. int tmp = tm->text->getLKick( cpos );
  996. invertAuswahl( tmp, cpos );
  997. cpos = tmp;
  998. }
  999. else
  1000. {
  1001. invertAuswahl( cpos - 1, cpos );
  1002. --cpos;
  1003. }
  1004. }
  1005. else
  1006. {
  1007. if( strg )
  1008. cpos = tm->text->getLKick( cpos );
  1009. else
  1010. --cpos;
  1011. deselectAuswahl();
  1012. }
  1013. rend = 1;
  1014. break;
  1015. case T_Oben:
  1016. {
  1017. int tmp = tm->text->getOKick( cpos );
  1018. invertAuswahl( tmp, cpos );
  1019. cpos = tmp;
  1020. if( !shift )
  1021. deselectAuswahl();
  1022. rend = 1;
  1023. break;
  1024. }
  1025. case T_Rechts:
  1026. if( shift )
  1027. {
  1028. if( strg )
  1029. {
  1030. int tmp = tm->text->getRKick( cpos );
  1031. invertAuswahl( cpos, tmp );
  1032. cpos = tmp;
  1033. }
  1034. else
  1035. {
  1036. invertAuswahl( cpos, cpos + 1 );
  1037. ++cpos;
  1038. }
  1039. }
  1040. else
  1041. {
  1042. if( strg )
  1043. cpos = tm->text->getRKick( cpos );
  1044. else
  1045. ++cpos;
  1046. deselectAuswahl();
  1047. }
  1048. rend = 1;
  1049. break;
  1050. case T_Unten:
  1051. {
  1052. int tmp = tm->text->getUKick( cpos );
  1053. invertAuswahl( cpos, tmp );
  1054. cpos = tmp;
  1055. if( !shift )
  1056. deselectAuswahl();
  1057. rend = 1;
  1058. break;
  1059. }
  1060. default:
  1061. if( strg && te.id == TE_Press )
  1062. {
  1063. if( te.taste == 'c' || te.taste == 'C' )
  1064. {
  1065. int sa = tm->textStyle.getEintragAnzahl();
  1066. int length = 0;
  1067. for( int i = 0; i < sa; i++ )
  1068. {
  1069. TextStyle s = tm->textStyle.get( i );
  1070. if( s.selected )
  1071. {
  1072. int max = tm->text->getLength();
  1073. if( i < sa - 1 )
  1074. max = tm->textStyle.get( i + 1 ).beginIndex;
  1075. length += max - s.beginIndex;
  1076. }
  1077. }
  1078. if( length )
  1079. {
  1080. char *txt = new char[ length + 1 ];
  1081. txt[ length ] = 0;
  1082. int index = 0;
  1083. for( int i = 0; i < sa; i++ )
  1084. {
  1085. TextStyle s = tm->textStyle.get( i );
  1086. if( s.selected )
  1087. {
  1088. int max = tm->text->getLength();
  1089. if( i < sa - 1 )
  1090. max = tm->textStyle.get( i + 1 ).beginIndex;
  1091. memcpy( txt + index, tm->text->getText() + s.beginIndex, max - s.beginIndex );
  1092. index += max - s.beginIndex;
  1093. }
  1094. }
  1095. TextKopieren( txt );
  1096. delete[] txt;
  1097. }
  1098. else
  1099. TextKopieren( tm->text->getText() );
  1100. }
  1101. if( te.taste == 'v' || te.taste == 'V' )
  1102. {
  1103. char *txt = TextInsert();
  1104. if( !tm->getTextStyle( cpos ).selected )
  1105. tm->insertText( cpos, txt );
  1106. else
  1107. {
  1108. cpos = tm->getTextStyle( cpos ).beginIndex;
  1109. while( cpos > 0 && tm->getTextStyle( cpos - 1 ).selected )
  1110. cpos = tm->getTextStyle( cpos - 1 ).beginIndex;
  1111. }
  1112. replaceAuswahl( txt );
  1113. cpos += textLength( txt );
  1114. rend = 1;
  1115. }
  1116. break;
  1117. }
  1118. if( istSchreibbar( te.taste ) )
  1119. {
  1120. char buff[] = { (char)te.taste, 0 };
  1121. if( !tm->getTextStyle( cpos ).selected )
  1122. tm->insertText( cpos, buff );
  1123. else
  1124. {
  1125. cpos = tm->getTextStyle( cpos ).beginIndex;
  1126. while( cpos > 0 && tm->getTextStyle( cpos - 1 ).selected )
  1127. cpos = tm->getTextStyle( cpos - 1 ).beginIndex;
  1128. }
  1129. replaceAuswahl( buff );
  1130. ++cpos;
  1131. rend = 1;
  1132. }
  1133. break;
  1134. }
  1135. }
  1136. if( cpos < 0 )
  1137. cpos = 0;
  1138. if( cpos > tm->text->getLength() )
  1139. cpos = tm->text->getLength();
  1140. if( hatStyle( Style::VScroll ) )
  1141. updateVScroll( cpos );
  1142. if( hatStyle( Style::HScroll ) )
  1143. updateHScroll( cpos );
  1144. te.verarbeitet = 1;
  1145. }
  1146. --ref;
  1147. if( ntakc && te.verarbeitet && nTak )
  1148. te.verarbeitet = nTak( ntakParam, this, te );
  1149. if( !ref )
  1150. delete this;
  1151. }
  1152. void TextFeld::render( Bild &zRObj ) // zeichenet nach zRObj
  1153. {
  1154. if( hatStyleNicht( Style::Sichtbar ) )
  1155. return;
  1156. ZeichnungHintergrund::render( zRObj );
  1157. if( !tm->text || !tm->renderer )
  1158. return;
  1159. lockZeichnung();
  1160. if( !zRObj.setDrawOptions( innenPosition, innenSize ) )
  1161. {
  1162. unlockZeichnung();
  1163. return;
  1164. }
  1165. if( hatStyleNicht( Style::Mehrzeilig ) )
  1166. tm->text->remove( '\n' );
  1167. int tbr = getTextWidth();
  1168. int thi = getTextHeight();
  1169. int xxx = 0;
  1170. int yyy = 0;
  1171. int breite = innenSize.x;
  1172. int height = innenSize.y;
  1173. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  1174. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  1175. if( vs )
  1176. yyy -= vertikalScrollBar->getScroll();
  1177. if( hs )
  1178. xxx -= horizontalScrollBar->getScroll();
  1179. if( hatStyle( Style::HCenter ) && !hs )
  1180. xxx = ( breite / 2 ) - tbr / 2;
  1181. if( hatStyle( Style::VCenter ) && !vs )
  1182. yyy = ( height / 2 ) - thi / 2;
  1183. int x = xxx;
  1184. int y = yyy;
  1185. int len = tm->text->getLength();
  1186. char *text = tm->text->getText();
  1187. lockZeichnung();
  1188. tm->resetIteration();
  1189. TextStyle &style = tm->currentStyle();
  1190. int maxLH = 0;
  1191. for( int i = 0; i <= len; i++ )
  1192. {
  1193. int oldX = x;
  1194. if( i < len && tm->zCurrentRenderer() )
  1195. tm->zCurrentRenderer()->renderChar( x, y, istSchreibbar( showChar ) ? showChar : text[ i ], zRObj, style.selected ? style.selectedColor : style.fontColor, style.underlined, style.selected, style.selectedBackcroundColor );
  1196. if( i == cpos && tickVal <= 0.5 && hatStyle( Style::Fokus ) && hatStyle( Style::Erlaubt ) )
  1197. zRObj.drawLinieV( oldX, y, tm->zCurrentRenderer()->getZeilenHeight(), 0xFFFF5555 );
  1198. if( tm->zCurrentRenderer() )
  1199. {
  1200. int tmp = tm->zCurrentRenderer()->getZeilenHeight() + tm->zCurrentRenderer()->getZeilenAbstand();
  1201. maxLH = tmp > maxLH ? tmp : maxLH;
  1202. }
  1203. if( i < len && text[ i ] == '\n' )
  1204. {
  1205. x = xxx;
  1206. y += maxLH;
  1207. }
  1208. tm->nextStyle();
  1209. }
  1210. unlockZeichnung();
  1211. zRObj.releaseDrawOptions();
  1212. unlockZeichnung();
  1213. }
  1214. // Konstant
  1215. Text *TextFeld::getText() const // gibt vom Text zurück
  1216. {
  1217. if( !tm->text )
  1218. return 0;
  1219. return tm->text->getThis();
  1220. }
  1221. Text *TextFeld::zText() const // gibt den Text zurück
  1222. {
  1223. return tm->text;
  1224. }
  1225. Schrift *TextFeld::getSchrift() const// gint getThis der Schrift Zurück
  1226. {
  1227. tm->resetIteration();
  1228. return tm->zCurrentRenderer() ? tm->zCurrentRenderer()->getSchrift() : 0;
  1229. }
  1230. Schrift *TextFeld::zSchrift() const// gibt die Schrift zurück
  1231. {
  1232. tm->resetIteration();
  1233. return tm->zCurrentRenderer() ? tm->zCurrentRenderer()->zSchrift() : 0;
  1234. }
  1235. // Gibt die Schrift zurück.
  1236. // rendererIndex: Der Index des Renderers dessen Schrift zurückgegeben werden soll
  1237. // return: 0, falls die Schrift nicht gesetzt wurde
  1238. Schrift *TextFeld::getSchrift( int rendererIndex ) const
  1239. {
  1240. if( tm->renderer && tm->renderer->z( rendererIndex ) )
  1241. return tm->renderer->z( rendererIndex )->getSchrift();
  1242. return 0;
  1243. }
  1244. // Gibt die Schrift ohne erhöhten Reference Counter zurük
  1245. // rendererIndex: Der Index des Renderers dessen Schrift zurückgegeben werden soll
  1246. // return: 0, falls die Schrift nicht gesetzt wurde
  1247. Schrift *TextFeld::zSchrift( int rendererIndex ) const
  1248. {
  1249. if( tm->renderer && tm->renderer->z( rendererIndex ) )
  1250. return tm->renderer->z( rendererIndex )->zSchrift();
  1251. return 0;
  1252. }
  1253. TextRenderer *TextFeld::getTextRenderer() const
  1254. {
  1255. tm->resetIteration();
  1256. return tm->zCurrentRenderer()->getThis();
  1257. }
  1258. TextRenderer *TextFeld::zTextRenderer() const
  1259. {
  1260. tm->resetIteration();
  1261. return tm->zCurrentRenderer();
  1262. }
  1263. // Gibt den TextRenderer zurück.
  1264. // index: Der Index des Renderers der zurückgegeben werden soll
  1265. // return: 0, falls der TextRenderer nicht gesetzt wurde
  1266. TextRenderer *TextFeld::getTextRenderer( int index ) const
  1267. {
  1268. if( tm->renderer && tm->renderer->z( index ) )
  1269. return tm->renderer->get( index );
  1270. return 0;
  1271. }
  1272. // Gibt dien TextRenderer ohne erhöhten Reference Counter zurük
  1273. // index: Der Index des Renderers der zurückgegeben werden soll
  1274. // return: 0, falls der TextRenderer nicht gesetzt wurde
  1275. TextRenderer *TextFeld::zTextRenderer( int index ) const
  1276. {
  1277. if( tm->renderer && tm->renderer->z( index ) )
  1278. return tm->renderer->z( index );
  1279. return 0;
  1280. }
  1281. unsigned char TextFeld::getSchriftSize() const // gibt die Schriftgröße zurück
  1282. {
  1283. tm->resetIteration();
  1284. return tm->current.fontSize;
  1285. }
  1286. // Gibt die Schriftgröße zurück
  1287. // index: Der Index des Zeichens
  1288. unsigned char TextFeld::getSchriftSize( int index ) const
  1289. {
  1290. tm->resetIteration();
  1291. return tm->current.fontSize;
  1292. }
  1293. int TextFeld::getSchriftFarbe() const// gibt getThis der Schriftfarbe zurück
  1294. {
  1295. tm->resetIteration();
  1296. return tm->current.fontColor;
  1297. }
  1298. // Gibt die Schriftfarbe im A8R8G8B8 Format zurück
  1299. // index: Der Index des Zeichens
  1300. int TextFeld::getSchriftFarbe( int index ) const
  1301. {
  1302. return tm->getTextStyle( index ).fontColor;
  1303. }
  1304. unsigned char TextFeld::getShowChar() const // gibt den Anzeige Char zurück
  1305. {
  1306. return showChar;
  1307. }
  1308. int TextFeld::getCursorPos() const
  1309. {
  1310. return cpos;
  1311. }
  1312. // Gibt 1 zurück wenn das Zeichen ausgewählt ist
  1313. // index: Der Index des Zeichens
  1314. bool TextFeld::isCharSelected( int index ) const
  1315. {
  1316. return tm->getTextStyle( index ).selected;
  1317. }
  1318. // Gibt den Index des Zeichens zurück, das sich unter der Maus befindet
  1319. // mx: die x position der maus relativ zur position des textfeldes
  1320. // my: die y position der maus relativ zut position des textfeldes
  1321. // return: -1, falls sich an der Position kein zeichen befindet
  1322. int TextFeld::getTextIndexAt( int mx, int my ) const
  1323. {
  1324. int tbr = getTextWidth();
  1325. int thi = getTextHeight();
  1326. int xxx = 0;
  1327. int yyy = 0;
  1328. int breite = innenSize.x;
  1329. int height = innenSize.y;
  1330. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  1331. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  1332. if( vs )
  1333. yyy -= vertikalScrollBar->getScroll();
  1334. if( hs )
  1335. xxx -= horizontalScrollBar->getScroll();
  1336. if( hatStyle( Style::HCenter ) && !hs )
  1337. xxx = ( breite / 2 ) - tbr / 2;
  1338. if( hatStyle( Style::VCenter ) && !vs )
  1339. yyy = ( height / 2 ) - thi / 2;
  1340. int x = xxx;
  1341. int y = yyy;
  1342. int len = tm->text->getLength();
  1343. char *text = tm->text->getText();
  1344. tm->resetIteration();
  1345. int maxLH = 0;
  1346. for( int i = 0; i < len; i++ )
  1347. {
  1348. int tmpx = tm->zCurrentRenderer()->getCharWidth( istSchreibbar( showChar ) ? showChar : text[ i ] );
  1349. int tmpy = tm->zCurrentRenderer()->getZeilenHeight();
  1350. if( mx >= x && mx < x + tmpx && my >= y && my < maxLH + tmpy )
  1351. return i;
  1352. if( mx < x + tmpx && my < maxLH + tmpy )
  1353. return -1;
  1354. x += tmpx + tm->zCurrentRenderer()->getZeichenAbstand();
  1355. tmpy += tm->zCurrentRenderer()->getZeilenAbstand();
  1356. maxLH = tmpy > maxLH ? tmpy : maxLH;
  1357. if( text[ i ] == '\n' )
  1358. {
  1359. x = xxx;
  1360. y += maxLH;
  1361. }
  1362. tm->nextStyle();
  1363. }
  1364. return -1;
  1365. }
  1366. // Gibt den Index des Zeichens zurück, vor dem der curser gesetzt wird, wenn mit der maus geklickt wird
  1367. // mx: die x position der maus relativ zur position des textfeldes
  1368. // my: die y position der maus relativ zut position des textfeldes
  1369. int TextFeld::getCurserPosAt( int mx, int my ) const
  1370. {
  1371. int tbr = getTextWidth();
  1372. int thi = getTextHeight();
  1373. int xxx = 0;
  1374. int yyy = 0;
  1375. int breite = innenSize.x;
  1376. int height = innenSize.y;
  1377. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  1378. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  1379. if( vs )
  1380. yyy -= vertikalScrollBar->getScroll();
  1381. if( hs )
  1382. xxx -= horizontalScrollBar->getScroll();
  1383. if( hatStyle( Style::HCenter ) && !hs )
  1384. xxx = ( breite / 2 ) - tbr / 2;
  1385. if( hatStyle( Style::VCenter ) && !vs )
  1386. yyy = ( height / 2 ) - thi / 2;
  1387. int x = xxx;
  1388. int y = yyy;
  1389. int len = tm->text->getLength();
  1390. char *text = tm->text->getText();
  1391. tm->resetIteration();
  1392. int maxLH = 0;
  1393. for( int i = 0; i < len; i++ )
  1394. {
  1395. int tmpx = tm->zCurrentRenderer()->getCharWidth( istSchreibbar( showChar ) ? showChar : text[ i ] );
  1396. int tmpy = tm->zCurrentRenderer()->getZeilenHeight() + tm->zCurrentRenderer()->getZeilenAbstand();
  1397. if( mx < x + tmpx / 2 && my < y + tmpy - tm->zCurrentRenderer()->getZeilenAbstand() / 2 )
  1398. return i;
  1399. x += tmpx + tm->zCurrentRenderer()->getZeichenAbstand();
  1400. maxLH = tmpy > maxLH ? tmpy : maxLH;
  1401. if( text[ i ] == '\n' )
  1402. {
  1403. if( my >= y - tm->zCurrentRenderer()->getZeilenAbstand() / 2 && my < y + maxLH - tm->zCurrentRenderer()->getZeilenAbstand() / 2 )
  1404. return i;
  1405. x = xxx;
  1406. y += maxLH;
  1407. }
  1408. tm->nextStyle();
  1409. }
  1410. return tm->text->getLength();
  1411. }
  1412. // Gibt den Style eines bestimmten zeichens zurück
  1413. // index: Der index des Zeichensf
  1414. TextFeld::TextStyle TextFeld::getTextStyle( int index ) const
  1415. {
  1416. return tm->getTextStyle( index );
  1417. }
  1418. Zeichnung *TextFeld::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  1419. {
  1420. TextFeld *obj = new TextFeld();
  1421. obj->setPosition( pos );
  1422. obj->setSize( gr );
  1423. obj->setMausEreignisParameter( makParam );
  1424. obj->setTastaturEreignisParameter( takParam );
  1425. obj->setMausEreignis( mak );
  1426. obj->setTastaturEreignis( tak );
  1427. if( toolTip )
  1428. obj->setToolTipZ( (ToolTip*)toolTip->dublizieren() );
  1429. obj->setStyle( style );
  1430. obj->tm->renderer->release();
  1431. obj->tm->renderer = tm->renderer->getThis();
  1432. obj->tm->textStyle.leeren();
  1433. for( auto i = tm->textStyle.getIterator(); i; i++ )
  1434. obj->tm->textStyle.add( i._ );
  1435. obj->tm->index = tm->index;
  1436. obj->tm->styleIndex = tm->styleIndex;
  1437. obj->tm->current = tm->current;
  1438. if( tm->text )
  1439. obj->setText( tm->text->getText() );
  1440. obj->setHintergrundFarbe( hintergrundFarbe );
  1441. if( hintergrundFeld )
  1442. obj->setAlphaFeldZ( (AlphaFeld*)hintergrundFeld->dublizieren() );
  1443. if( rahmen )
  1444. obj->setRahmenZ( (Rahmen*)rahmen->dublizieren() );
  1445. if( hintergrundBild )
  1446. obj->setHintergrundBild( hintergrundBild->getThis() );
  1447. if( vertikalScrollBar )
  1448. {
  1449. obj->setVertikalKlickScroll( vertikalScrollBar->getKlickScroll() );
  1450. obj->setVertikalScrollPos( vertikalScrollBar->getScroll() );
  1451. obj->setVertikalScrollFarbe( vertikalScrollBar->getFarbe(), vertikalScrollBar->getBgFarbe() );
  1452. }
  1453. if( horizontalScrollBar )
  1454. {
  1455. obj->setHorizontalKlickScroll( horizontalScrollBar->getKlickScroll() );
  1456. obj->setHorizontalScrollPos( horizontalScrollBar->getScroll() );
  1457. obj->setHorizontalScrollFarbe( horizontalScrollBar->getFarbe(), horizontalScrollBar->getBgFarbe() );
  1458. }
  1459. obj->setSchowChar( showChar );
  1460. return obj;
  1461. }