Editor.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. #include "Editor.h"
  2. #include <Schrift.h>
  3. #include "Parser\ColorParser.h"
  4. #include <Bild.h>
  5. #include <Scroll.h>
  6. #include <Globals.h>
  7. #include <Rahmen.h>
  8. #include <ToolTip.h>
  9. using namespace KSGScript;
  10. // Inhalt der Editor Klasse
  11. // Konstructor
  12. Editor::Editor()
  13. : ZeichnungHintergrund(),
  14. begF( 0 ),
  15. cPos( 0 ),
  16. tickVal( 0 ),
  17. mausKlick( 0 )
  18. {
  19. ref = 1;
  20. schrift = 0;
  21. script = 0;
  22. errorDetection = 1;
  23. warningDetection = 1;
  24. setTextColor( 0xFFFFFFFF, ColorType::NORMAL_TEXT );
  25. setTextColor( 0xFF4040FF, ColorType::KEYWORD );
  26. setTextColor( 0xFFA0A040, ColorType::PARAMETER_VARIABLE );
  27. setTextColor( 0xFFA0A0A0, ColorType::INSTANCE_VARIABLE );
  28. setTextColor( 0xFF40FF70, ColorType::TYPENAME );
  29. setTextColor( 0xFFFFA000, ColorType::STRING );
  30. setTextColor( 0xFF20FFFF, ColorType::KOMMENTAR );
  31. setTextColor( 0xFFFF4040, ColorType::ERROR_UNDERLINE );
  32. parser = 0;
  33. reloadCounter = 10;
  34. }
  35. // Destructor
  36. Editor::~Editor()
  37. {
  38. if( schrift )
  39. schrift->release();
  40. if( script )
  41. script->release();
  42. if( parser )
  43. parser->release();
  44. }
  45. void Editor::updateHScroll( int pos )
  46. {
  47. if( pos == -1 )
  48. pos = cPos;
  49. if( horizontalScrollBar && script && schrift )
  50. {
  51. schrift->lock();
  52. schrift->setSchriftSize( 12 );
  53. int br = gr.x;
  54. if( hatStyle( Style::Rahmen ) && rahmen )
  55. br -= rahmen->getRBreite() * 2;
  56. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  57. br -= 15;
  58. int maxBr = schrift->getTextBreite( script ) + 12;
  59. horizontalScrollBar->update( maxBr, br );
  60. if( hatStyle( Style::Erlaubt ) && maxBr > br && pos > 0 && pos < script->getLength() )
  61. {
  62. int p1 = 0;
  63. char *tmp = script->getText();
  64. for( int i = 0; i < pos; i++, tmp++ )
  65. {
  66. if( *tmp == '\n' )
  67. p1 = i + 1;
  68. }
  69. Text *t = script->getTeilText( p1, pos );
  70. int cbr = schrift->getTextBreite( t );
  71. t->release();
  72. if( cbr + 12 > horizontalScrollBar->getScroll() + horizontalScrollBar->getScrollData()->anzeige )
  73. horizontalScrollBar->scroll( cbr + 12 - br );
  74. if( cbr - 12 < horizontalScrollBar->getScroll() )
  75. horizontalScrollBar->scroll( cbr - 12 );
  76. }
  77. schrift->unlock();
  78. }
  79. }
  80. void Editor::updateVScroll( int pos )
  81. {
  82. if( pos == -1 )
  83. pos = cPos;
  84. if( vertikalScrollBar )
  85. {
  86. int sPos = 0;
  87. int hi = 0;
  88. if( script && schrift )
  89. {
  90. schrift->setSchriftSize( 12 );
  91. hi = gr.y;
  92. if( hatStyle( Style::Rahmen ) && rahmen )
  93. hi -= rahmen->getRBreite() * 2;
  94. if( hatStyle( Style::HScroll ) && horizontalScrollBar )
  95. hi -= 15;
  96. vertikalScrollBar->update( schrift->getTextHeight( script ) + 12 + schrift->getTextHeight( Text( "a" ).getThis() ), hi );
  97. Text t;
  98. int zh = schrift->getTextHeight( &t ) + schrift->getZeilenabstand();
  99. int l = script->getLength();
  100. for( int i = 0; i < l && ( i < pos || hatStyleNicht( Style::Erlaubt ) ); ++i )
  101. {
  102. if( script->getText()[ i ] == '\n' )
  103. sPos += zh;
  104. }
  105. }
  106. if( schrift )
  107. {
  108. if( sPos - schrift->getZeilenabstand() - schrift->getTextHeight( Text( "a" ).getThis() ) < vertikalScrollBar->getScroll() )
  109. vertikalScrollBar->scroll( sPos - schrift->getZeilenabstand() - schrift->getTextHeight( Text( "a" ).getThis() ) );
  110. if( sPos + schrift->getZeilenabstand() + schrift->getTextHeight( Text( "a" ).getThis() ) > vertikalScrollBar->getScroll() + vertikalScrollBar->getScrollData()->anzeige )
  111. vertikalScrollBar->scroll( sPos + ( schrift->getZeilenabstand() + schrift->getTextHeight( Text( "a" ).getThis() ) ) * 2 - hi );
  112. }
  113. rend = 1;
  114. }
  115. }
  116. // Setzt die zu verwendende Schrift
  117. // s: Die Schrift
  118. void Editor::setSchriftZ( Schrift *s )
  119. {
  120. if( schrift )
  121. schrift->release();
  122. schrift = s;
  123. }
  124. // Setzt den Text (das Script was verändert werden soll)
  125. // txt: Der Text
  126. void Editor::setText( Text *txt )
  127. {
  128. lockZeichnung();
  129. if( script )
  130. script->release();
  131. if( parser )
  132. parser->release();
  133. script = new Text( txt->getText() );
  134. parser = new ColorParser( script );
  135. txt->release();
  136. updateHScroll( -1 );
  137. updateVScroll( -1 );
  138. unlockZeichnung();
  139. }
  140. // Gibt den aktuellen Text zurück
  141. Text *Editor::zText() const
  142. {
  143. return script;
  144. }
  145. // Schaltet die Fehlererkennung ein oder aus
  146. // on: 1, um die Fehlererkennung einzuschalten, 0 um sie auszuschalten
  147. void Editor::setErrorDetection( bool on )
  148. {
  149. errorDetection = on;
  150. }
  151. // Schaltet die Warnungserkennung ein oder aus
  152. // on: 1, um die Warnungserkennung einzuschalten, 0 um sie auszuschalten
  153. void Editor::setWarningDetection( bool on )
  154. {
  155. warningDetection = on;
  156. }
  157. // gibt 1 zurück, wenn die Fehlererkennung eingeschaltet ist
  158. bool Editor::getErrorDetection() const
  159. {
  160. return errorDetection;
  161. }
  162. // gibt 1 zurück, wenn die Warnungserkennung eingeschaltet ist
  163. bool Editor::getWarningDetection() const
  164. {
  165. return warningDetection;
  166. }
  167. // Verarbeitet ein Maus Ereignis. Wird vom Framework automatisch aufgerufen.
  168. // me: Das Ereignis
  169. void Editor::doMausEreignis( MausEreignis &me )
  170. {
  171. bool nmakc = !me.verarbeitet;
  172. if( hatStyleNicht( Style::Erlaubt ) || hatStyleNicht( Style::Sichtbar ) )
  173. {
  174. if( toolTip )
  175. toolTip->setMausIn( 0 );
  176. me.mx -= pos.x, me.my -= pos.y;
  177. int rbr = 0;
  178. if( rahmen )
  179. rbr = rahmen->getRBreite();
  180. if( ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ||
  181. ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ) &&
  182. me.mx > rbr && me.mx < gr.x - rbr &&
  183. me.my > rbr && me.my < gr.y - rbr )
  184. {
  185. vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me );
  186. horizontalScrollBar->doMausMessage( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me );
  187. me.verarbeitet = 1;
  188. }
  189. me.mx += pos.x, me.my += pos.y;
  190. mausKlick = 0;
  191. return;
  192. }
  193. bool removeFokus = 0;
  194. if( me.verarbeitet || !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) )
  195. {
  196. if( mausIn )
  197. {
  198. mausIn = 0;
  199. if( toolTip )
  200. toolTip->setMausIn( 0 );
  201. MausEreignis me2;
  202. me2.id = ME_Leaves;
  203. me2.mx = me.mx;
  204. me2.my = me.my;
  205. me2.verarbeitet = 0;
  206. doMausEreignis( me2 );
  207. return;
  208. }
  209. removeFokus = 1;
  210. }
  211. 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 )
  212. {
  213. if( removeFokus && me.id == ME_RLinks )
  214. {
  215. me.mx -= pos.x, me.my -= pos.y;
  216. if( hatStyle( Style::Fokus ) && mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  217. removeStyle( Style::Fokus );
  218. if( nmakc && me.verarbeitet && nMak )
  219. me.verarbeitet = nMak( nmakParam, this, me );
  220. me.mx += pos.x, me.my += pos.y;
  221. }
  222. if( toolTip )
  223. toolTip->setMausIn( 0 );
  224. return;
  225. }
  226. if( !mausIn && me.id != ME_Leaves )
  227. {
  228. mausIn = 1;
  229. if( toolTip )
  230. toolTip->setMausIn( 1 );
  231. MausEreignis me2;
  232. me2.id = ME_Betritt;
  233. me2.mx = me.mx;
  234. me2.my = me.my;
  235. me2.verarbeitet = 0;
  236. doMausEreignis( me2 );
  237. }
  238. me.mx -= pos.x, me.my -= pos.y;
  239. if( mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  240. {
  241. if( removeFokus && me.id == ME_RLinks )
  242. removeStyle( Style::Fokus );
  243. if( !me.verarbeitet )
  244. {
  245. if( hatStyleNicht( Style::Fokus ) )
  246. {
  247. mausKlick = 0;
  248. if( me.id == Framework::ME_PLinks )
  249. addStyle( Style::Fokus );
  250. }
  251. int rbr = 0;
  252. if( rahmen )
  253. rbr = rahmen->getRBreite();
  254. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  255. {
  256. if( vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me ) )
  257. {
  258. if( nmakc && me.verarbeitet && nMak )
  259. me.verarbeitet = nMak( nmakParam, this, me );
  260. me.mx += pos.x, me.my += pos.y;
  261. return;
  262. }
  263. }
  264. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  265. {
  266. if( horizontalScrollBar->doMausMessage( rbr, gr.y - rbr - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me ) )
  267. {
  268. if( nmakc && me.verarbeitet && nMak )
  269. me.verarbeitet = nMak( nmakParam, this, me );
  270. me.mx += pos.x, me.my += pos.y;
  271. return;
  272. }
  273. }
  274. if( me.mx < gr.x - rbr - 15 )
  275. {
  276. if( schrift )
  277. {
  278. schrift->setSchriftSize( 12 );
  279. bool shift = getTastenStand( T_Shift );
  280. if( me.id == Framework::ME_PLinks )
  281. {
  282. int tbr = schrift->getTextBreite( script );
  283. int thi = schrift->getTextHeight( script );
  284. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  285. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  286. int xxx = me.mx - rbr + scrollBr;
  287. int yyy = me.my - rbr + scrollHi;
  288. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  289. int pos = schrift->textPos( script, xxx, yyy );
  290. if( pos != -1 )
  291. {
  292. if( shift )
  293. begF = pos;
  294. else
  295. {
  296. cPos = pos;
  297. begF = pos;
  298. }
  299. rend = 1;
  300. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  301. updateVScroll( begF );
  302. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  303. updateHScroll( begF );
  304. }
  305. mausKlick = 1;
  306. }
  307. if( me.id == ME_Bewegung && mausKlick )
  308. {
  309. int tbr = schrift->getTextBreite( script );
  310. int thi = schrift->getTextHeight( script );
  311. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  312. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  313. int xxx = me.mx - rbr + scrollBr;
  314. int yyy = me.my - rbr + scrollHi;
  315. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  316. int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
  317. int pos = schrift->textPos( script, xxx, yyy );
  318. if( pos != -1 )
  319. {
  320. if( begF != pos )
  321. rend = 1;
  322. begF = pos;
  323. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  324. updateVScroll( begF );
  325. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  326. updateHScroll( begF );
  327. }
  328. }
  329. if( me.id == ME_RLinks )
  330. {
  331. if( !shift )
  332. {
  333. int tbr = schrift->getTextBreite( script );
  334. int thi = schrift->getTextHeight( script );
  335. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  336. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  337. int xxx = me.mx - rbr + scrollBr;
  338. int yyy = me.my - rbr + scrollHi;
  339. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  340. int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
  341. int pos = schrift->textPos( script, xxx, yyy );
  342. if( pos != -1 )
  343. {
  344. begF = pos;
  345. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  346. updateVScroll( begF );
  347. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  348. updateHScroll( begF );
  349. }
  350. rend = 1;
  351. }
  352. mausKlick = 0;
  353. }
  354. }
  355. }
  356. }
  357. me.verarbeitet = 1;
  358. }
  359. if( nmakc && me.verarbeitet && nMak )
  360. me.verarbeitet = nMak( nmakParam, this, me );
  361. me.mx += pos.x, me.my += pos.y;
  362. }
  363. // Verarbeitet ein Tastatur Ereignis. Wird vom Framework automatisch aufgerufen
  364. // te: Das Ereignis
  365. void Editor::doTastaturEreignis( TastaturEreignis &te )
  366. {
  367. bool ntakc = !te.verarbeitet;
  368. if( te.verarbeitet || hatStyleNicht( Style::Fokus ) )
  369. return;
  370. if( !tak )
  371. return;
  372. ++ref;
  373. if( tak( takParam, this, te ) )
  374. {
  375. if( hatStyleNicht( Style::Erlaubt ) )
  376. {
  377. --ref;
  378. if( !ref )
  379. delete this;
  380. return;
  381. }
  382. if( te.id == TE_Press )
  383. {
  384. bool shift = getTastenStand( T_Shift );
  385. bool strg = getTastenStand( T_Strg );
  386. switch( te.taste )
  387. {
  388. case T_Entf:
  389. if( cPos != begF )
  390. script->remove( cPos, begF );
  391. else
  392. script->remove( cPos, cPos + 1 );
  393. begF = cPos;
  394. rend = 1;
  395. break;
  396. case T_BackSpace:
  397. if( cPos != begF )
  398. {
  399. script->remove( cPos, begF );
  400. if( cPos > begF )
  401. cPos -= cPos - begF;
  402. }
  403. else
  404. {
  405. script->remove( cPos - 1, cPos );
  406. --cPos;
  407. }
  408. begF = cPos;
  409. rend = 1;
  410. break;
  411. case T_Enter:
  412. if( cPos != begF )
  413. {
  414. script->remove( begF, cPos );
  415. if( cPos > begF )
  416. cPos -= cPos - begF;
  417. }
  418. script->insert( cPos, '\n' );
  419. ++cPos;
  420. begF = cPos;
  421. rend = 1;
  422. break;
  423. case T_Links:
  424. if( shift )
  425. {
  426. if( strg )
  427. begF = script->getLKick( begF );
  428. else
  429. --begF;
  430. }
  431. else
  432. {
  433. if( strg )
  434. cPos = script->getLKick( cPos );
  435. else
  436. --cPos;
  437. begF = cPos;
  438. }
  439. rend = 1;
  440. break;
  441. case T_Oben:
  442. if( shift )
  443. {
  444. begF = script->getOKick( begF );
  445. }
  446. else
  447. {
  448. cPos = script->getOKick( cPos );
  449. begF = cPos;
  450. }
  451. rend = 1;
  452. break;
  453. case T_Rechts:
  454. if( shift )
  455. {
  456. if( strg )
  457. begF = script->getRKick( begF );
  458. else
  459. ++begF;
  460. }
  461. else
  462. {
  463. if( strg )
  464. cPos = script->getRKick( cPos );
  465. else
  466. ++cPos;
  467. begF = cPos;
  468. }
  469. rend = 1;
  470. break;
  471. case T_Unten:
  472. if( shift )
  473. {
  474. begF = script->getUKick( begF );
  475. }
  476. else
  477. {
  478. cPos = script->getUKick( cPos );
  479. begF = cPos;
  480. }
  481. rend = 1;
  482. break;
  483. default:
  484. if( strg && te.id == TE_Press )
  485. {
  486. if( te.taste == 'c' || te.taste == 'C' )
  487. {
  488. if( begF != cPos )
  489. {
  490. int len = begF - cPos;
  491. if( len < 0 )
  492. len = -len;
  493. char *txt = new char[ len + 1 ];
  494. txt[ len ] = 0;
  495. int beg = begF < cPos ? begF : cPos;
  496. for( int i = beg; i < beg + len; ++i )
  497. txt[ i - beg ] = script->getText()[ i ];
  498. TextKopieren( txt );
  499. delete[] txt;
  500. }
  501. else
  502. TextKopieren( script->getText() );
  503. }
  504. if( te.taste == 'v' || te.taste == 'V' )
  505. {
  506. if( begF != cPos )
  507. {
  508. script->remove( begF, cPos );
  509. if( cPos > begF )
  510. cPos = begF;
  511. }
  512. char *txt = TextInsert();
  513. script->insert( cPos, txt );
  514. cPos += textLength( txt );
  515. begF = cPos;
  516. rend = 1;
  517. }
  518. break;
  519. }
  520. if( istSchreibbar( te.taste ) )
  521. {
  522. if( begF != cPos )
  523. {
  524. script->remove( begF, cPos );
  525. if( cPos > begF )
  526. cPos = begF;
  527. }
  528. script->insert( cPos, (char)te.taste );
  529. ++cPos;
  530. begF = cPos;
  531. rend = 1;
  532. }
  533. break;
  534. }
  535. }
  536. if( cPos < 0 )
  537. cPos = 0;
  538. if( cPos > script->getLength() )
  539. cPos = script->getLength();
  540. if( begF < 0 )
  541. begF = 0;
  542. if( begF > script->getLength() )
  543. begF = script->getLength();
  544. if( hatStyle( Style::VScroll ) )
  545. updateVScroll( begF );
  546. if( hatStyle( Style::HScroll ) )
  547. updateHScroll( begF );
  548. te.verarbeitet = 1;
  549. }
  550. lockZeichnung();
  551. if( !--reloadCounter )
  552. {
  553. zm.messungStart();
  554. parser->reload();
  555. zm.messungEnde();
  556. reloadCounter = (int)( zm.getSekunden() * 100 );
  557. }
  558. unlockZeichnung();
  559. --ref;
  560. if( ntakc && te.verarbeitet && nTak )
  561. te.verarbeitet = nTak( ntakParam, this, te );
  562. if( !ref )
  563. delete this;
  564. }
  565. // Updated den Editor
  566. // tickVal: Die vergangene Zeit in Sekunden, die seit dem Letzten Aufruf dieser Funktion verstrichen ist
  567. // return: 1, wenn das Bild neu gezeichnet werden muss. 0 sonnst
  568. bool Editor::tick( double tickval )
  569. {
  570. if( hatStyle( Style::Fokus ) )
  571. {
  572. if( tickVal < 0.5 && tickVal + tickval >= 0.5 )
  573. rend = 1;
  574. if( tickVal >= 0.5 && tickVal + tickval >= 1 )
  575. rend = 1;
  576. tickVal += tickval;
  577. if( tickVal >= 1 )
  578. {
  579. lockZeichnung();
  580. if( (reloadCounter -= 2 ) <= 0 )
  581. {
  582. zm.messungStart();
  583. parser->reload();
  584. zm.messungEnde();
  585. reloadCounter = (int)( zm.getSekunden() * 100 );
  586. }
  587. unlockZeichnung();
  588. tickVal -= 1;
  589. }
  590. }
  591. return __super::tick( tickVal );
  592. }
  593. // Zeichnet den Editor nach rObj
  594. void Editor::render( Bild &rObj )
  595. {
  596. if( hatStyleNicht( Style::Sichtbar ) )
  597. return;
  598. __super::render( rObj );
  599. if( !script || !schrift )
  600. return;
  601. lockZeichnung();
  602. if( !rObj.setDrawOptions( innenPosition, innenSize ) )
  603. {
  604. unlockZeichnung();
  605. return;
  606. }
  607. schrift->setSchriftSize( 12 );
  608. int tbr = schrift->getTextBreite( script );
  609. int thi = schrift->getTextHeight( script );
  610. int xxx = 0;
  611. int yyy = 0;
  612. int breite = innenSize.x;
  613. int height = innenSize.y;
  614. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  615. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  616. if( vs )
  617. yyy -= vertikalScrollBar->getScroll();
  618. if( hs )
  619. xxx -= horizontalScrollBar->getScroll();
  620. schrift->setDrawPosition( xxx, yyy );
  621. parser->reset();
  622. auto colorF = [ this, &rObj ]( int x, int y, int pos ) -> int
  623. {
  624. if( !parser )
  625. return colors[ KSGScriptEditor::ColorType::NORMAL_TEXT ];
  626. int uC = -1;
  627. int tC = colors[ parser->getNextColor( pos, uC ) ];
  628. if( uC >= 0 )
  629. rObj.drawLinieH( x, y + 12, 12, colors[ uC ] );
  630. return tC;
  631. };
  632. if( hatStyle( Style::Fokus ) && hatStyle( Style::Erlaubt ) )
  633. {
  634. if( tickVal <= 0.5 )
  635. schrift->renderText( script, rObj, cPos, 0xFFFF5555, begF, 0xFF0000FF, colorF );
  636. else
  637. schrift->renderText( script, rObj, cPos, 0x00000000, begF, 0xFF0000FF, colorF );
  638. }
  639. else
  640. {
  641. schrift->renderText( script, rObj, colorF );
  642. }
  643. rObj.releaseDrawOptions();
  644. unlockZeichnung();
  645. }
  646. // Setzt die Farbe eines Bestimmten Codetyps
  647. // color: Die Farbe in 0xAARRGGBB Format
  648. // cType: Der Codetyp, der die Farbe bekommen soll
  649. // Setzt die Farbe eines Bestimmten Codetyps
  650. // color: Die Farbe in 0xAARRGGBB Format
  651. // cType: Der Codetyp, der die Farbe bekommen soll
  652. void Editor::setTextColor( int color, ColorType cType )
  653. {
  654. if( cType >= 0 && cType < ColorType::COLOR_ANZAHL )
  655. colors[ cType ] = color;
  656. }
  657. // Reference Counting
  658. KSGScriptEditor *Editor::getThis()
  659. {
  660. ref++;
  661. return this;
  662. }
  663. KSGScriptEditor *Editor::release()
  664. {
  665. if( !--ref )
  666. delete this;
  667. return 0;
  668. }