TextFeld.cpp 56 KB

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