Zeichnung.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  1. #include "Zeichnung.h"
  2. #include "MausEreignis.h"
  3. #include "TastaturEreignis.h"
  4. #include "Globals.h"
  5. #include "ToolTip.h"
  6. #include "Scroll.h"
  7. #include "Text.h"
  8. #include "Rahmen.h"
  9. #include "AlphaFeld.h"
  10. #include "Bild.h"
  11. #include "TextFeld.h"
  12. #include "UIInitialization.h"
  13. #include "Schrift.h"
  14. #ifdef WIN32
  15. #include <Windows.h>
  16. #endif
  17. using namespace Framework;
  18. // Inhalt der Zeichnung Klasse aus Zeichnung.h
  19. // Konstruktor
  20. Zeichnung::Zeichnung()
  21. : pos( 0, 0 ),
  22. gr( 0, 0 ),
  23. makParam( 0 ),
  24. takParam( 0 ),
  25. mak( 0 ),
  26. tak( 0 ),
  27. nmakParam( 0 ),
  28. ntakParam( 0 ),
  29. nMak( 0 ),
  30. nTak( 0 ),
  31. mausIn( 0 ),
  32. toolTip( 0 ),
  33. style( 0 ),
  34. rend( 0 ),
  35. onNeedToolTip( 0 ),
  36. ref( 1 )
  37. {}
  38. // Destruktor
  39. Zeichnung::~Zeichnung()
  40. {
  41. if( toolTip )
  42. toolTip->release();
  43. }
  44. // Übergibt einen Void Funktionspointer auf eine Aktion die einmalig vom Hauptthread ausgeführt werden soll. (Passiert nach dem Tick)
  45. void Zeichnung::postAction( std::function< void() > action )
  46. {
  47. actions.push( action );
  48. }
  49. // nicht constant
  50. void Zeichnung::setRender()
  51. {
  52. rend = 1;
  53. }
  54. void Zeichnung::setToolTipText( const char *txt, Bildschirm *zScreen, Schrift *zSchrift )
  55. {
  56. if( !txt )
  57. toolTip = (ToolTip*)toolTip->release();
  58. else
  59. {
  60. if( !toolTip )
  61. {
  62. toolTip = new ToolTip( zScreen );
  63. toolTip->setStyle( ZeichnungHintergrund::Style::Hintergrund | ZeichnungHintergrund::Style::HAlpha | ZeichnungHintergrund::Style::Rahmen | ZeichnungHintergrund::Style::Sichtbar );
  64. toolTip->setHintergrundFarbe( 0xA0000000 );
  65. toolTip->setRahmenFarbe( 0xFFFFFFFF );
  66. toolTip->setRahmenBreite( 1 );
  67. if( mausIn && toolTip )
  68. toolTip->setMausIn( 1 );
  69. }
  70. UIInit init = defaultUI( zSchrift, zScreen );
  71. TextFeld *t = init.createTextFeld( init.initParam );
  72. t->setText( txt );
  73. t->setSize( t->zTextRenderer()->getTextBreite( txt ), t->zTextRenderer()->getTextHeight( txt ) );
  74. toolTip->addMember( t );
  75. }
  76. }
  77. // setzt eine Funktion, die beim erstmaligen gebrauch des tooltips einen tooltip erstellt, falls es noch keinen gibt
  78. // initToolTip: die Funktion
  79. void Zeichnung::setNeedToolTipEvent( std::function< void( Zeichnung * ) > onNeedToolTip )
  80. {
  81. this->onNeedToolTip = onNeedToolTip;
  82. }
  83. // legt den tooltip fest
  84. // tt: der tooltip
  85. void Zeichnung::setToolTipZ( ToolTip *tt )
  86. {
  87. if( toolTip )
  88. toolTip->release();
  89. toolTip = tt;
  90. if( mausIn && toolTip )
  91. toolTip->setMausIn( 1 );
  92. }
  93. void Zeichnung::lockZeichnung()
  94. {
  95. cs.lock();
  96. }
  97. void Zeichnung::unlockZeichnung()
  98. {
  99. cs.unlock();
  100. }
  101. void Zeichnung::setMausEreignisParameter( void *p ) // setzt den Parameter vom Maus Ereignis
  102. {
  103. makParam = p;
  104. }
  105. void Zeichnung::setTastaturEreignisParameter( void *p ) // setzt den Parameter vom Tastatur Ereignis
  106. {
  107. takParam = p;
  108. }
  109. void Zeichnung::setMausEreignis( MausAktion ak ) // setzt das Maus Ereignis
  110. {
  111. mak = ak;
  112. }
  113. void Zeichnung::setTastaturEreignis( TastaturAktion ak ) // setzt das TastaturEreignis
  114. {
  115. tak = ak;
  116. }
  117. void Zeichnung::setNMausEreignisParameter( void *p ) // setzt den Parameter vom Maus Ereignis
  118. {
  119. nmakParam = p;
  120. }
  121. void Zeichnung::setNTastaturEreignisParameter( void *p ) // setzt den Parameter vom Tastatur Ereignis
  122. {
  123. ntakParam = p;
  124. }
  125. void Zeichnung::setNMausEreignis( MausAktion ak ) // setzt das Maus Ereignis
  126. {
  127. nMak = ak;
  128. }
  129. void Zeichnung::setNTastaturEreignis( TastaturAktion ak ) // setzt das TastaturEreignis
  130. {
  131. nTak = ak;
  132. }
  133. void Zeichnung::doMausEreignis( MausEreignis &me ) // ruft Mak auf
  134. {
  135. if( me.verarbeitet || ( !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) && me.id != ME_Leaves ) )
  136. {
  137. if( mausIn )
  138. {
  139. mausIn = 0;
  140. if( toolTip )
  141. toolTip->setMausIn( 0 );
  142. MausEreignis me2;
  143. me2.id = ME_Leaves;
  144. me2.mx = me.mx;
  145. me2.my = me.my;
  146. me2.verarbeitet = 0;
  147. doMausEreignis( me2 );
  148. }
  149. return;
  150. }
  151. if( !mausIn && me.id != ME_Leaves )
  152. {
  153. mausIn = 1;
  154. if( toolTip )
  155. toolTip->setMausIn( 1 );
  156. else if( onNeedToolTip )
  157. onNeedToolTip( this );
  158. MausEreignis me2;
  159. me2.id = ME_Betritt;
  160. me2.mx = me.mx;
  161. me2.my = me.my;
  162. me2.verarbeitet = 0;
  163. doMausEreignis( me2 );
  164. }
  165. me.mx -= pos.x, me.my -= pos.y;
  166. if( mak )
  167. me.verarbeitet |= mak( makParam, this, me );
  168. if( nMak && me.verarbeitet )
  169. me.verarbeitet = nMak( nmakParam, this, me );
  170. me.mx += pos.x, me.my += pos.y;
  171. }
  172. void Zeichnung::doTastaturEreignis( TastaturEreignis &te ) // ruft Tak auf
  173. {
  174. if( te.verarbeitet )
  175. return;
  176. if( tak )
  177. te.verarbeitet |= tak( takParam, this, te );
  178. if( nTak && te.verarbeitet )
  179. te.verarbeitet = nTak( ntakParam, this, te );
  180. }
  181. void Zeichnung::setPosition( const Punkt &pos ) // setzt die position
  182. {
  183. lockZeichnung();
  184. if( this->pos != pos )
  185. rend = 1;
  186. this->pos = pos;
  187. unlockZeichnung();
  188. }
  189. void Zeichnung::setX( int xPos )
  190. {
  191. lockZeichnung();
  192. if( pos.x != xPos )
  193. {
  194. rend = 1;
  195. pos.x = xPos;
  196. }
  197. unlockZeichnung();
  198. }
  199. void Zeichnung::setY( int yPos )
  200. {
  201. lockZeichnung();
  202. if( pos.y != yPos )
  203. {
  204. rend = 1;
  205. pos.y = yPos;
  206. }
  207. unlockZeichnung();
  208. }
  209. void Zeichnung::setSize( const Punkt &gr ) // setzt die Größe
  210. {
  211. lockZeichnung();
  212. if( this->gr != gr )
  213. rend = 1;
  214. this->gr = gr;
  215. unlockZeichnung();
  216. }
  217. void Zeichnung::setPosition( int x, int y ) // setzt die position
  218. {
  219. setPosition( Punkt( x, y ) );
  220. }
  221. void Zeichnung::setSize( int x, int y ) // setzt die Größe
  222. {
  223. setSize( Punkt( x, y ) );
  224. }
  225. bool Zeichnung::tick( double tickval )
  226. {
  227. while( !actions.empty() )
  228. {
  229. actions.front()( );
  230. actions.pop();
  231. }
  232. bool r = rend;
  233. rend = 0;
  234. return r;
  235. }
  236. void Zeichnung::setStyle( __int64 style ) // setzt den Style des Text Feldes
  237. {
  238. if( this->style != style )
  239. {
  240. this->style = style;
  241. rend = 1;
  242. }
  243. }
  244. void Zeichnung::setStyle( __int64 style, bool add_remove )
  245. {
  246. if( add_remove && ( this->style | style ) != this->style )
  247. {
  248. this->style |= style;
  249. rend = 1;
  250. }
  251. else if( !add_remove && ( this->style & ~style ) != this->style )
  252. {
  253. if( toolTip && ( style | Style::Sichtbar ) == style )
  254. toolTip->setMausIn( 0 );
  255. this->style &= ~style;
  256. rend = 1;
  257. }
  258. }
  259. void Zeichnung::addStyle( __int64 style )
  260. {
  261. if( ( this->style | style ) != this->style )
  262. {
  263. this->style |= style;
  264. rend = 1;
  265. }
  266. }
  267. void Zeichnung::removeStyle( __int64 style )
  268. {
  269. if( ( this->style & ~style ) != this->style )
  270. {
  271. if( toolTip && ( style | Style::Sichtbar ) == style )
  272. toolTip->setMausIn( 0 );
  273. this->style &= ~style;
  274. rend = 1;
  275. }
  276. }
  277. void Zeichnung::render( Bild &zRObj )
  278. {
  279. if( toolTip && ( style | Style::Sichtbar ) == style )
  280. toolTip->setZeichnen();
  281. }
  282. // constant
  283. bool Zeichnung::hatMausEreignis() const // prüft, ob Mak gesetzt ist
  284. {
  285. return mak != 0;
  286. }
  287. bool Zeichnung::hatTastaturEreignis() const // prüft, ob Tak gesetzt ist
  288. {
  289. return tak != 0;
  290. }
  291. const Punkt &Zeichnung::getPosition() const // gibt die Position zurück
  292. {
  293. return pos;
  294. }
  295. const Punkt &Zeichnung::getSize() const // gibt die Größe zurück
  296. {
  297. return gr;
  298. }
  299. int Zeichnung::getBreite() const // gibt die Breite zurück
  300. {
  301. return gr.x;
  302. }
  303. int Zeichnung::getHeight() const // gibt die Höhe zurück
  304. {
  305. return gr.y;
  306. }
  307. // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
  308. int Zeichnung::getInnenBreite() const
  309. {
  310. return gr.x;
  311. }
  312. // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
  313. int Zeichnung::getInnenHeight() const
  314. {
  315. return gr.y;
  316. }
  317. int Zeichnung::getX() const // gibt X zurück
  318. {
  319. return pos.x;
  320. }
  321. int Zeichnung::getY() const // gibt Y zurück
  322. {
  323. return pos.y;
  324. }
  325. ToolTip *Zeichnung::getToolTip() const // gibt den ToolTip Text
  326. {
  327. return (ToolTip*)toolTip->getThis();
  328. }
  329. ToolTip *Zeichnung::zToolTip() const
  330. {
  331. return toolTip;
  332. }
  333. bool Zeichnung::hatStyle( __int64 style ) const // prüft, ob style vorhanden
  334. {
  335. return ( this->style | style ) == this->style;
  336. }
  337. bool Zeichnung::hatStyleNicht( __int64 style ) const // prüft, ob style nicht vorhanden
  338. {
  339. return ( this->style | style ) != this->style;
  340. }
  341. Zeichnung *Zeichnung::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  342. {
  343. Zeichnung *obj = new Zeichnung();
  344. obj->setPosition( pos );
  345. obj->setSize( gr );
  346. obj->setMausEreignisParameter( makParam );
  347. obj->setTastaturEreignisParameter( takParam );
  348. obj->setMausEreignis( mak );
  349. obj->setTastaturEreignis( tak );
  350. if( toolTip )
  351. obj->setToolTipZ( (ToolTip*)toolTip->dublizieren() );
  352. return obj;
  353. }
  354. Zeichnung *Zeichnung::getThis()
  355. {
  356. ref++;
  357. return this;
  358. }
  359. Zeichnung *Zeichnung::release()
  360. {
  361. if( !--ref )
  362. delete this;
  363. return 0;
  364. }
  365. // Inhalt der ZeichnungHintergrund Klasse aus Zeichnung.h
  366. // Konstruktor
  367. ZeichnungHintergrund::ZeichnungHintergrund()
  368. : Zeichnung()
  369. {
  370. hintergrundFarbe = 0xFF000000;
  371. rahmen = 0;
  372. hintergrundBild = 0;
  373. hintergrundFeld = 0;
  374. horizontalScrollBar = 0;
  375. vertikalScrollBar = 0;
  376. innenPosition.x = 0;
  377. innenPosition.y = 0;
  378. innenSize.x = 0;
  379. innenSize.y = 0;
  380. }
  381. // Destruktor
  382. ZeichnungHintergrund::~ZeichnungHintergrund()
  383. {
  384. if( rahmen )
  385. rahmen->release();
  386. if( hintergrundBild )
  387. hintergrundBild->release();
  388. if( hintergrundFeld )
  389. hintergrundFeld->release();
  390. if( horizontalScrollBar )
  391. horizontalScrollBar->release();
  392. if( vertikalScrollBar )
  393. vertikalScrollBar->release();
  394. }
  395. void ZeichnungHintergrund::setHintergrundBild( Bild *bild ) // setzt das Hintergrund Bild
  396. {
  397. if( !hintergrundBild )
  398. hintergrundBild = new Bild();
  399. hintergrundBild->neuBild( bild->getBreite(), bild->getHeight(), 0 );
  400. int *buff1 = hintergrundBild->getBuffer();
  401. int *buff2 = bild->getBuffer();
  402. for( int i = 0; i < bild->getBreite() * bild->getHeight(); ++i )
  403. buff1[ i ] = buff2[ i ];
  404. bild->release();
  405. rend = 1;
  406. }
  407. void ZeichnungHintergrund::setHintergrundBildZ( Bild *bild ) // setzt einen Zeiger zum Hintergrund Bild
  408. {
  409. if( hintergrundBild != bild )
  410. {
  411. if( hintergrundBild )
  412. hintergrundBild->release();
  413. hintergrundBild = bild;
  414. rend = 1;
  415. }
  416. }
  417. void ZeichnungHintergrund::setHintergrundFarbe( int fc ) // setzt die Hintergrundfarbe
  418. {
  419. if( hintergrundFarbe != fc )
  420. {
  421. hintergrundFarbe = fc;
  422. rend = 1;
  423. }
  424. }
  425. void ZeichnungHintergrund::setAlphaFeldZ( AlphaFeld *buff ) // setzt einen Zeiger zum Hintergrund Buffer
  426. {
  427. if( hintergrundFeld != buff )
  428. {
  429. if( hintergrundFeld )
  430. hintergrundFeld->release();
  431. hintergrundFeld = buff;
  432. rend = 1;
  433. }
  434. }
  435. void ZeichnungHintergrund::setAlphaFeldStrength( int st ) // setzt die Stärke des Hintergrund Buffers
  436. {
  437. if( !hintergrundFeld )
  438. {
  439. hintergrundFeld = new AlphaFeld();
  440. rend = 1;
  441. }
  442. if( hintergrundFeld->getStrength() != st )
  443. {
  444. hintergrundFeld->setStrength( st );
  445. rend = 1;
  446. }
  447. }
  448. void ZeichnungHintergrund::setAlphaFeldFarbe( int fc ) // setzt die Farbe des Hintergrund Buffers
  449. {
  450. if( !hintergrundFeld )
  451. {
  452. hintergrundFeld = new AlphaFeld();
  453. rend = 1;
  454. }
  455. if( hintergrundFeld->getFarbe() != fc )
  456. {
  457. hintergrundFeld->setFarbe( fc );
  458. rend = 1;
  459. }
  460. }
  461. void ZeichnungHintergrund::setRahmenZ( Rahmen *ram ) // setzt einen Zeiger zum Rahmen
  462. {
  463. if( rahmen != ram )
  464. {
  465. if( rahmen )
  466. rahmen->release();
  467. rahmen = ram;
  468. rend = 1;
  469. }
  470. }
  471. void ZeichnungHintergrund::setRahmenBreite( int br ) // setzt die Breite des Rahmens
  472. {
  473. if( !rahmen )
  474. {
  475. rahmen = new LRahmen();
  476. rend = 1;
  477. }
  478. if( rahmen->getRBreite() != br )
  479. {
  480. rahmen->setRamenBreite( br );
  481. rend = 1;
  482. }
  483. }
  484. void ZeichnungHintergrund::setRahmenFarbe( int fc ) // setzt die Farbe des Rahmens
  485. {
  486. if( !rahmen )
  487. {
  488. rahmen = new LRahmen();
  489. rend = 1;
  490. }
  491. if( rahmen->getFarbe() != fc )
  492. {
  493. rahmen->setFarbe( fc );
  494. rend = 1;
  495. }
  496. }
  497. void ZeichnungHintergrund::setVertikalKlickScroll( int ks ) // setzt die vertikale Scroll geschwindigkeit
  498. {
  499. if( !vertikalScrollBar )
  500. {
  501. vertikalScrollBar = new VScrollBar();
  502. rend = 1;
  503. }
  504. if( vertikalScrollBar->getKlickScroll() != ks )
  505. {
  506. vertikalScrollBar->setKlickScroll( ks );
  507. rend = 1;
  508. }
  509. }
  510. void ZeichnungHintergrund::setVertikalScrollPos( int pos ) // setzt die vertikale Scroll Position
  511. {
  512. if( !vertikalScrollBar )
  513. {
  514. vertikalScrollBar = new VScrollBar();
  515. rend = 1;
  516. }
  517. if( vertikalScrollBar && vertikalScrollBar->getScroll() != pos )
  518. {
  519. vertikalScrollBar->scroll( pos );
  520. rend = 1;
  521. }
  522. }
  523. void ZeichnungHintergrund::setVertikalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
  524. {
  525. if( !vertikalScrollBar )
  526. {
  527. vertikalScrollBar = new VScrollBar();
  528. rend = 1;
  529. }
  530. if( vertikalScrollBar && ( vertikalScrollBar->getFarbe() != f || vertikalScrollBar->getBgFarbe() != bgF ) )
  531. {
  532. vertikalScrollBar->setFarbe( f );
  533. vertikalScrollBar->setBgFarbe( bgF, bgF != 0 );
  534. rend = 1;
  535. }
  536. }
  537. void ZeichnungHintergrund::setHorizontalKlickScroll( int ks ) // setzt die horizontale Scroll geschwindigkeit
  538. {
  539. if( !horizontalScrollBar )
  540. {
  541. horizontalScrollBar = new HScrollBar();
  542. rend = 1;
  543. }
  544. if( horizontalScrollBar && horizontalScrollBar->getKlickScroll() != ks )
  545. {
  546. horizontalScrollBar->setKlickScroll( ks );
  547. rend = 1;
  548. }
  549. }
  550. void ZeichnungHintergrund::setHorizontalScrollPos( int pos ) // setzt die horizontale Scroll Position
  551. {
  552. if( !horizontalScrollBar )
  553. {
  554. horizontalScrollBar = new HScrollBar();
  555. rend = 1;
  556. }
  557. if( horizontalScrollBar && horizontalScrollBar->getScroll() != pos )
  558. {
  559. horizontalScrollBar->scroll( pos );
  560. rend = 1;
  561. }
  562. }
  563. void ZeichnungHintergrund::setHorizontalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
  564. {
  565. if( !horizontalScrollBar )
  566. {
  567. horizontalScrollBar = new HScrollBar();
  568. rend = 1;
  569. }
  570. if( horizontalScrollBar && ( horizontalScrollBar->getFarbe() != f || horizontalScrollBar->getBgFarbe() != bgF ) )
  571. {
  572. horizontalScrollBar->setFarbe( f );
  573. horizontalScrollBar->setBgFarbe( bgF, bgF != 0 );
  574. rend = 1;
  575. }
  576. }
  577. bool ZeichnungHintergrund::tick( double tickVal )
  578. {
  579. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  580. rend |= vertikalScrollBar->getRend();
  581. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  582. rend |= horizontalScrollBar->getRend();
  583. return Zeichnung::tick( tickVal );
  584. }
  585. void ZeichnungHintergrund::render( Bild &rObj )
  586. {
  587. innenPosition.x = pos.x;
  588. innenPosition.y = pos.y;
  589. innenSize.x = gr.x;
  590. innenSize.y = gr.y;
  591. if( hatStyleNicht( Style::Sichtbar ) )
  592. return;
  593. lockZeichnung();
  594. if( !rObj.setDrawOptions( pos.x, pos.y, gr.x, gr.y ) )
  595. {
  596. unlockZeichnung();
  597. return;
  598. }
  599. Zeichnung::render( rObj );
  600. int rbr = 0;
  601. if( hatStyle( Style::Rahmen ) && rahmen )
  602. {
  603. rahmen->setSize( gr );
  604. rahmen->render( rObj );
  605. rbr = rahmen->getRBreite();
  606. }
  607. innenPosition.x += rbr;
  608. innenPosition.y += rbr;
  609. innenSize.x -= rbr * 2;
  610. innenSize.y -= rbr * 2;
  611. if( !rObj.setDrawOptions( rbr, rbr, gr.x - rbr * 2, gr.y - rbr * 2 ) )
  612. {
  613. rObj.releaseDrawOptions();
  614. unlockZeichnung();
  615. return;
  616. }
  617. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  618. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  619. if( vs )
  620. {
  621. vertikalScrollBar->render( gr.x - rbr * 2 - 15, 0, 15, gr.y - rbr * 2, rObj );
  622. innenSize.x -= 15;
  623. if( hs )
  624. {
  625. horizontalScrollBar->render( 0, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - 15, 15, rObj );
  626. innenSize.y -= 15;
  627. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 - 15 ) )
  628. {
  629. rObj.releaseDrawOptions();
  630. rObj.releaseDrawOptions();
  631. unlockZeichnung();
  632. return;
  633. }
  634. horizontalScrollBar->update( horizontalScrollBar->getScrollData()->max, innenSize.x );
  635. }
  636. else
  637. {
  638. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 ) )
  639. {
  640. rObj.releaseDrawOptions();
  641. rObj.releaseDrawOptions();
  642. unlockZeichnung();
  643. return;
  644. }
  645. }
  646. vertikalScrollBar->update( vertikalScrollBar->getScrollData()->max, innenSize.y );
  647. }
  648. else if( hs )
  649. {
  650. horizontalScrollBar->render( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2, 15, rObj );
  651. innenSize.y -= 15;
  652. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2 - 15 ) )
  653. {
  654. rObj.releaseDrawOptions();
  655. rObj.releaseDrawOptions();
  656. unlockZeichnung();
  657. return;
  658. }
  659. }
  660. if( hatStyle( Style::Hintergrund ) )
  661. {
  662. if( hatStyle( Style::HAlpha ) )
  663. rObj.alphaRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
  664. else
  665. rObj.fillRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
  666. if( hatStyle( Style::HBild ) && hintergrundBild )
  667. {
  668. if( hatStyle( Style::HAlpha ) )
  669. rObj.alphaBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
  670. else
  671. rObj.drawBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
  672. }
  673. }
  674. if( hatStyle( Style::Buffered ) && hintergrundFeld )
  675. {
  676. hintergrundFeld->setSize( gr.x - rbr * 2, gr.y - rbr * 2 );
  677. hintergrundFeld->render( rObj );
  678. }
  679. if( vs || hs )
  680. rObj.releaseDrawOptions();
  681. rObj.releaseDrawOptions();
  682. rObj.releaseDrawOptions();
  683. unlockZeichnung();
  684. }
  685. // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
  686. int ZeichnungHintergrund::getInnenBreite() const
  687. {
  688. return getBreite() - 2 * getRahmenBreite();
  689. }
  690. // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
  691. int ZeichnungHintergrund::getInnenHeight() const
  692. {
  693. return getHeight() - 2 * getRahmenBreite();
  694. }
  695. Bild *ZeichnungHintergrund::getHintergrundBild() const // gibt getThis vom Hintergrund Bild zurück
  696. {
  697. if( !hintergrundBild )
  698. return 0;
  699. return hintergrundBild->getThis();
  700. }
  701. Bild *ZeichnungHintergrund::zHintergrundBild() const // gibt das Hintergrund Bild zurück
  702. {
  703. return hintergrundBild;
  704. }
  705. int ZeichnungHintergrund::getHintergrundFarbe() const // giebt getThis der Hintergrundfarbe zurück
  706. {
  707. return hintergrundFarbe;
  708. }
  709. AlphaFeld *ZeichnungHintergrund::getAlphaFeld() const // gibt getThir vom Hintergrund Buffer zurück
  710. {
  711. if( !hintergrundFeld )
  712. return 0;
  713. return (AlphaFeld*)hintergrundFeld->getThis();
  714. }
  715. AlphaFeld *ZeichnungHintergrund::zAlphaFeld() const // gibt den Hintergrund Buffer zurück
  716. {
  717. return hintergrundFeld;
  718. }
  719. int ZeichnungHintergrund::getAlphaFeldStrength() const // gibt die Stärke des Hintergrund Buffers zurück
  720. {
  721. if( !hintergrundFeld )
  722. return 0;
  723. return hintergrundFeld->getStrength();
  724. }
  725. int ZeichnungHintergrund::getAlphaFeldFarbe() const // gibt getThis von der Farbe des Hintergrund Buffers zurück
  726. {
  727. return hintergrundFeld->getFarbe();
  728. }
  729. Rahmen *ZeichnungHintergrund::getRahmen() const // gibt getThis des Rahmens zurück
  730. {
  731. if( !rahmen )
  732. return 0;
  733. return (Rahmen*)rahmen->getThis();
  734. }
  735. Rahmen *ZeichnungHintergrund::zRahmen() const // gibt den Rahmen zurück
  736. {
  737. return rahmen;
  738. }
  739. int ZeichnungHintergrund::getRahmenBreite() const // gibt die Breite des Rahmens zurück
  740. {
  741. if( !rahmen || hatStyleNicht( Style::Rahmen ) )
  742. return 0;
  743. return rahmen->getRBreite();
  744. }
  745. int ZeichnungHintergrund::getRahmenFarbe() const // gibt getThis der Farbe des Rahmens zurück
  746. {
  747. return rahmen->getFarbe();
  748. }
  749. int ZeichnungHintergrund::getVertikalKlickScroll() const
  750. {
  751. return vertikalScrollBar ? vertikalScrollBar->getKlickScroll() : 0;
  752. }
  753. int ZeichnungHintergrund::getVertikalScrollPos() const
  754. {
  755. return vertikalScrollBar ? vertikalScrollBar->getScroll() : 0;
  756. }
  757. int ZeichnungHintergrund::getVertikalScrollFarbe() const
  758. {
  759. return vertikalScrollBar ? vertikalScrollBar->getFarbe() : 0;
  760. }
  761. int ZeichnungHintergrund::getVertikalScrollHintergrund() const
  762. {
  763. return vertikalScrollBar ? vertikalScrollBar->getBgFarbe() : 0;
  764. }
  765. int ZeichnungHintergrund::getHorizontalKlickScroll() const
  766. {
  767. return horizontalScrollBar ? horizontalScrollBar->getKlickScroll() : 0;
  768. }
  769. int ZeichnungHintergrund::getHorizontalScrollPos() const
  770. {
  771. return horizontalScrollBar ? horizontalScrollBar->getScroll() : 0;
  772. }
  773. int ZeichnungHintergrund::getHorizontalScrollFarbe() const
  774. {
  775. return horizontalScrollBar ? horizontalScrollBar->getFarbe() : 0;
  776. }
  777. int ZeichnungHintergrund::getHorizontalScrollHintergrund() const
  778. {
  779. return horizontalScrollBar ? horizontalScrollBar->getBgFarbe() : 0;
  780. }
  781. Zeichnung *ZeichnungHintergrund::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  782. {
  783. ZeichnungHintergrund *obj = new ZeichnungHintergrund();
  784. obj->setPosition( pos );
  785. obj->setSize( gr );
  786. obj->setMausEreignisParameter( makParam );
  787. obj->setTastaturEreignisParameter( takParam );
  788. obj->setMausEreignis( mak );
  789. obj->setTastaturEreignis( tak );
  790. if( toolTip )
  791. obj->setToolTipZ( (ToolTip*)toolTip->dublizieren() );
  792. obj->setStyle( style );
  793. obj->setHintergrundFarbe( hintergrundFarbe );
  794. if( hintergrundFeld )
  795. obj->setAlphaFeldZ( (AlphaFeld*)hintergrundFeld->dublizieren() );
  796. if( rahmen )
  797. obj->setRahmenZ( (Rahmen*)rahmen->dublizieren() );
  798. if( hintergrundBild )
  799. obj->setHintergrundBild( hintergrundBild->getThis() );
  800. if( vertikalScrollBar )
  801. {
  802. obj->setVertikalKlickScroll( vertikalScrollBar->getKlickScroll() );
  803. obj->setVertikalScrollPos( vertikalScrollBar->getScroll() );
  804. obj->setVertikalScrollFarbe( vertikalScrollBar->getFarbe(), vertikalScrollBar->getBgFarbe() );
  805. }
  806. if( horizontalScrollBar )
  807. {
  808. obj->setHorizontalKlickScroll( horizontalScrollBar->getKlickScroll() );
  809. obj->setHorizontalScrollPos( horizontalScrollBar->getScroll() );
  810. obj->setHorizontalScrollFarbe( horizontalScrollBar->getFarbe(), horizontalScrollBar->getBgFarbe() );
  811. }
  812. return obj;
  813. }