Zeichnung.cpp 21 KB

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