TextFeld.cpp 52 KB

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