Zeichnung.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  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. int Zeichnung::getX() const // gibt X zurück
  274. {
  275. return pos.x;
  276. }
  277. int Zeichnung::getY() const // gibt Y zurück
  278. {
  279. return pos.y;
  280. }
  281. ToolTip *Zeichnung::getToolTip() const // gibt den ToolTip Text
  282. {
  283. return ( ToolTip*)toolTip->getThis();
  284. }
  285. ToolTip *Zeichnung::zToolTip() const
  286. {
  287. return toolTip;
  288. }
  289. bool Zeichnung::hatStyle( __int64 style ) const // prüft, ob style vorhanden
  290. {
  291. return ( this->style | style ) == this->style;
  292. }
  293. bool Zeichnung::hatStyleNicht( __int64 style ) const // prüft, ob style nicht vorhanden
  294. {
  295. return ( this->style | style ) != this->style;
  296. }
  297. Zeichnung *Zeichnung::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  298. {
  299. Zeichnung *obj = new Zeichnung();
  300. obj->setPosition( pos );
  301. obj->setSize( gr );
  302. obj->setMausEreignisParameter( makParam );
  303. obj->setTastaturEreignisParameter( takParam );
  304. obj->setMausEreignis( mak );
  305. obj->setTastaturEreignis( tak );
  306. if( toolTip )
  307. obj->setToolTipText( toolTip->zText()->getText(), toolTip->zBildschirm() );
  308. return obj;
  309. }
  310. Zeichnung *Zeichnung::getThis()
  311. {
  312. ref++;
  313. return this;
  314. }
  315. Zeichnung *Zeichnung::release()
  316. {
  317. if( !--ref )
  318. delete this;
  319. return 0;
  320. }
  321. // Inhalt der ZeichnungHintergrund Klasse aus Zeichnung.h
  322. // Konstruktor
  323. ZeichnungHintergrund::ZeichnungHintergrund()
  324. : Zeichnung()
  325. {
  326. hintergrundFarbe = 0xFF000000;
  327. rahmen = 0;
  328. hintergrundBild = 0;
  329. hintergrundFeld = 0;
  330. horizontalScrollBar = 0;
  331. vertikalScrollBar = 0;
  332. innenPosition.x = 0;
  333. innenPosition.y = 0;
  334. innenSize.x = 0;
  335. innenSize.y = 0;
  336. }
  337. // Destruktor
  338. ZeichnungHintergrund::~ZeichnungHintergrund()
  339. {
  340. if( rahmen )
  341. rahmen->release();
  342. if( hintergrundBild )
  343. hintergrundBild->release();
  344. if( hintergrundFeld )
  345. hintergrundFeld->release();
  346. if( horizontalScrollBar )
  347. horizontalScrollBar->release();
  348. if( vertikalScrollBar )
  349. vertikalScrollBar->release();
  350. }
  351. void ZeichnungHintergrund::setHintergrundBild( Bild *bild ) // setzt das Hintergrund Bild
  352. {
  353. if( !hintergrundBild )
  354. hintergrundBild = new Bild();
  355. hintergrundBild->neuBild( bild->getBreite(), bild->getHeight(), 0 );
  356. int *buff1 = hintergrundBild->getBuffer();
  357. int *buff2 = bild->getBuffer();
  358. for( int i = 0; i < bild->getBreite() * bild->getHeight(); ++i )
  359. buff1[ i ] = buff2[ i ];
  360. bild->release();
  361. rend = 1;
  362. }
  363. void ZeichnungHintergrund::setHintergrundBildZ( Bild *bild ) // setzt einen Zeiger zum Hintergrund Bild
  364. {
  365. if( hintergrundBild != bild )
  366. {
  367. if( hintergrundBild )
  368. hintergrundBild->release();
  369. hintergrundBild = bild;
  370. rend = 1;
  371. }
  372. }
  373. void ZeichnungHintergrund::setHintergrundFarbe( int fc ) // setzt die Hintergrundfarbe
  374. {
  375. if( hintergrundFarbe != fc )
  376. {
  377. hintergrundFarbe = fc;
  378. rend = 1;
  379. }
  380. }
  381. void ZeichnungHintergrund::setAlphaFeldZ( AlphaFeld *buff ) // setzt einen Zeiger zum Hintergrund Buffer
  382. {
  383. if( hintergrundFeld != buff )
  384. {
  385. if( hintergrundFeld )
  386. hintergrundFeld->release();
  387. hintergrundFeld = buff;
  388. rend = 1;
  389. }
  390. }
  391. void ZeichnungHintergrund::setAlphaFeldStrength( int st ) // setzt die Stärke des Hintergrund Buffers
  392. {
  393. if( !hintergrundFeld )
  394. {
  395. hintergrundFeld = new AlphaFeld();
  396. rend = 1;
  397. }
  398. if( hintergrundFeld->getStrength() != st )
  399. {
  400. hintergrundFeld->setStrength( st );
  401. rend = 1;
  402. }
  403. }
  404. void ZeichnungHintergrund::setAlphaFeldFarbe( int fc ) // setzt die Farbe des Hintergrund Buffers
  405. {
  406. if( !hintergrundFeld )
  407. {
  408. hintergrundFeld = new AlphaFeld();
  409. rend = 1;
  410. }
  411. if( hintergrundFeld->getFarbe() != fc )
  412. {
  413. hintergrundFeld->setFarbe( fc );
  414. rend = 1;
  415. }
  416. }
  417. void ZeichnungHintergrund::setRahmenZ( Rahmen *ram ) // setzt einen Zeiger zum Rahmen
  418. {
  419. if( rahmen != ram )
  420. {
  421. if( rahmen )
  422. rahmen->release();
  423. rahmen = ram;
  424. rend = 1;
  425. }
  426. }
  427. void ZeichnungHintergrund::setRahmenBreite( int br ) // setzt die Breite des Rahmens
  428. {
  429. if( !rahmen )
  430. {
  431. rahmen = new LRahmen();
  432. rend = 1;
  433. }
  434. if( rahmen->getRBreite() != br )
  435. {
  436. rahmen->setRamenBreite( br );
  437. rend = 1;
  438. }
  439. }
  440. void ZeichnungHintergrund::setRahmenFarbe( int fc ) // setzt die Farbe des Rahmens
  441. {
  442. if( !rahmen )
  443. {
  444. rahmen = new LRahmen();
  445. rend = 1;
  446. }
  447. if( rahmen->getFarbe() != fc )
  448. {
  449. rahmen->setFarbe( fc );
  450. rend = 1;
  451. }
  452. }
  453. void ZeichnungHintergrund::setVertikalKlickScroll( int ks ) // setzt die vertikale Scroll geschwindigkeit
  454. {
  455. if( !vertikalScrollBar )
  456. {
  457. vertikalScrollBar = new VScrollBar();
  458. rend = 1;
  459. }
  460. if( vertikalScrollBar->getKlickScroll() != ks )
  461. {
  462. vertikalScrollBar->setKlickScroll( ks );
  463. rend = 1;
  464. }
  465. }
  466. void ZeichnungHintergrund::setVertikalScrollPos( int pos ) // setzt die vertikale Scroll Position
  467. {
  468. if( !vertikalScrollBar )
  469. {
  470. vertikalScrollBar = new VScrollBar();
  471. rend = 1;
  472. }
  473. if( vertikalScrollBar && vertikalScrollBar->getScroll() != pos )
  474. {
  475. vertikalScrollBar->scroll( pos );
  476. rend = 1;
  477. }
  478. }
  479. void ZeichnungHintergrund::setVertikalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
  480. {
  481. if( !vertikalScrollBar )
  482. {
  483. vertikalScrollBar = new VScrollBar();
  484. rend = 1;
  485. }
  486. if( vertikalScrollBar && ( vertikalScrollBar->getFarbe() != f || vertikalScrollBar->getBgFarbe() != bgF ) )
  487. {
  488. vertikalScrollBar->setFarbe( f );
  489. vertikalScrollBar->setBgFarbe( bgF, bgF != 0 );
  490. rend = 1;
  491. }
  492. }
  493. void ZeichnungHintergrund::setHorizontalKlickScroll( int ks ) // setzt die horizontale Scroll geschwindigkeit
  494. {
  495. if( !horizontalScrollBar )
  496. {
  497. horizontalScrollBar = new HScrollBar();
  498. rend = 1;
  499. }
  500. if( horizontalScrollBar && horizontalScrollBar->getKlickScroll() != ks )
  501. {
  502. horizontalScrollBar->setKlickScroll( ks );
  503. rend = 1;
  504. }
  505. }
  506. void ZeichnungHintergrund::setHorizontalScrollPos( int pos ) // setzt die horizontale Scroll Position
  507. {
  508. if( !horizontalScrollBar )
  509. {
  510. horizontalScrollBar = new HScrollBar();
  511. rend = 1;
  512. }
  513. if( horizontalScrollBar && horizontalScrollBar->getScroll() != pos )
  514. {
  515. horizontalScrollBar->scroll( pos );
  516. rend = 1;
  517. }
  518. }
  519. void ZeichnungHintergrund::setHorizontalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
  520. {
  521. if( !horizontalScrollBar )
  522. {
  523. horizontalScrollBar = new HScrollBar();
  524. rend = 1;
  525. }
  526. if( horizontalScrollBar && ( horizontalScrollBar->getFarbe() != f || horizontalScrollBar->getBgFarbe() != bgF ) )
  527. {
  528. horizontalScrollBar->setFarbe( f );
  529. horizontalScrollBar->setBgFarbe( bgF, bgF != 0 );
  530. rend = 1;
  531. }
  532. }
  533. bool ZeichnungHintergrund::tick( double tickVal )
  534. {
  535. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  536. rend |= vertikalScrollBar->getRend();
  537. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  538. rend |= horizontalScrollBar->getRend();
  539. return Zeichnung::tick( tickVal );
  540. }
  541. void ZeichnungHintergrund::render( Bild &rObj )
  542. {
  543. innenPosition.x = pos.x;
  544. innenPosition.y = pos.y;
  545. innenSize.x = gr.x;
  546. innenSize.y = gr.y;
  547. if( hatStyleNicht( Style::Sichtbar ) )
  548. return;
  549. lockZeichnung();
  550. if( !rObj.setDrawOptions( pos.x, pos.y, gr.x, gr.y ) )
  551. {
  552. unlockZeichnung();
  553. return;
  554. }
  555. Zeichnung::render( rObj );
  556. int rbr = 0;
  557. if( hatStyle( Style::Rahmen ) && rahmen )
  558. {
  559. rahmen->setSize( gr );
  560. rahmen->render( rObj );
  561. rbr = rahmen->getRBreite();
  562. }
  563. innenPosition.x += rbr;
  564. innenPosition.y += rbr;
  565. innenSize.x -= rbr * 2;
  566. innenSize.y -= rbr * 2;
  567. if( !rObj.setDrawOptions( rbr, rbr, gr.x - rbr * 2, gr.y - rbr * 2 ) )
  568. {
  569. rObj.releaseDrawOptions();
  570. unlockZeichnung();
  571. return;
  572. }
  573. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  574. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  575. if( vs )
  576. {
  577. vertikalScrollBar->render( gr.x - rbr * 2 - 15, 0, 15, gr.y - rbr * 2, rObj );
  578. innenSize.x -= 15;
  579. if( hs )
  580. {
  581. horizontalScrollBar->render( 0, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - 15, 15, rObj );
  582. innenSize.y -= 15;
  583. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 - 15 ) )
  584. {
  585. rObj.releaseDrawOptions();
  586. rObj.releaseDrawOptions();
  587. unlockZeichnung();
  588. return;
  589. }
  590. horizontalScrollBar->update( horizontalScrollBar->getScrollData()->max, innenSize.x );
  591. }
  592. else
  593. {
  594. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 ) )
  595. {
  596. rObj.releaseDrawOptions();
  597. rObj.releaseDrawOptions();
  598. unlockZeichnung();
  599. return;
  600. }
  601. }
  602. vertikalScrollBar->update( vertikalScrollBar->getScrollData()->max, innenSize.y );
  603. }
  604. else if( hs )
  605. {
  606. horizontalScrollBar->render( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2, 15, rObj );
  607. innenSize.y -= 15;
  608. if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2 - 15 ) )
  609. {
  610. rObj.releaseDrawOptions();
  611. rObj.releaseDrawOptions();
  612. unlockZeichnung();
  613. return;
  614. }
  615. }
  616. if( hatStyle( Style::Hintergrund ) )
  617. {
  618. if( hatStyle( Style::HAlpha ) )
  619. rObj.alphaRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
  620. else
  621. rObj.fillRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
  622. if( hatStyle( Style::HBild ) && hintergrundBild )
  623. {
  624. if( hatStyle( Style::HAlpha ) )
  625. rObj.alphaBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
  626. else
  627. rObj.drawBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
  628. }
  629. }
  630. if( hatStyle( Style::Buffered ) && hintergrundFeld )
  631. {
  632. hintergrundFeld->setSize( gr.x - rbr * 2, gr.y - rbr * 2 );
  633. hintergrundFeld->render( rObj );
  634. }
  635. if( vs || hs )
  636. rObj.releaseDrawOptions();
  637. rObj.releaseDrawOptions();
  638. rObj.releaseDrawOptions();
  639. unlockZeichnung();
  640. }
  641. Bild *ZeichnungHintergrund::getHintergrundBild() const // gibt getThis vom Hintergrund Bild zurück
  642. {
  643. if( !hintergrundBild )
  644. return 0;
  645. return hintergrundBild->getThis();
  646. }
  647. Bild *ZeichnungHintergrund::zHintergrundBild() const // gibt das Hintergrund Bild zurück
  648. {
  649. return hintergrundBild;
  650. }
  651. int ZeichnungHintergrund::getHintergrundFarbe() const // giebt getThis der Hintergrundfarbe zurück
  652. {
  653. return hintergrundFarbe;
  654. }
  655. AlphaFeld *ZeichnungHintergrund::getAlphaFeld() const // gibt getThir vom Hintergrund Buffer zurück
  656. {
  657. if( !hintergrundFeld )
  658. return 0;
  659. return (AlphaFeld*)hintergrundFeld->getThis();
  660. }
  661. AlphaFeld *ZeichnungHintergrund::zAlphaFeld() const // gibt den Hintergrund Buffer zurück
  662. {
  663. return hintergrundFeld;
  664. }
  665. int ZeichnungHintergrund::getAlphaFeldStrength() const // gibt die Stärke des Hintergrund Buffers zurück
  666. {
  667. if( !hintergrundFeld )
  668. return 0;
  669. return hintergrundFeld->getStrength();
  670. }
  671. int ZeichnungHintergrund::getAlphaFeldFarbe() const // gibt getThis von der Farbe des Hintergrund Buffers zurück
  672. {
  673. return hintergrundFeld->getFarbe();
  674. }
  675. Rahmen *ZeichnungHintergrund::getRahmen() const // gibt getThis des Rahmens zurück
  676. {
  677. if( !rahmen )
  678. return 0;
  679. return (Rahmen*)rahmen->getThis();
  680. }
  681. Rahmen *ZeichnungHintergrund::zRahmen() const // gibt den Rahmen zurück
  682. {
  683. return rahmen;
  684. }
  685. int ZeichnungHintergrund::getRahmenBreite() const // gibt die Breite des Rahmens zurück
  686. {
  687. if( !rahmen || hatStyleNicht( Style::Rahmen ) )
  688. return 0;
  689. return rahmen->getRBreite();
  690. }
  691. int ZeichnungHintergrund::getRahmenFarbe() const // gibt getThis der Farbe des Rahmens zurück
  692. {
  693. return rahmen->getFarbe();
  694. }
  695. int ZeichnungHintergrund::getVertikalKlickScroll() const
  696. {
  697. return vertikalScrollBar ? vertikalScrollBar->getKlickScroll() : 0;
  698. }
  699. int ZeichnungHintergrund::getVertikalScrollPos() const
  700. {
  701. return vertikalScrollBar ? vertikalScrollBar->getScroll() : 0;
  702. }
  703. int ZeichnungHintergrund::getVertikalScrollFarbe() const
  704. {
  705. return vertikalScrollBar ? vertikalScrollBar->getFarbe() : 0;
  706. }
  707. int ZeichnungHintergrund::getVertikalScrollHintergrund() const
  708. {
  709. return vertikalScrollBar ? vertikalScrollBar->getBgFarbe() : 0;
  710. }
  711. int ZeichnungHintergrund::getHorizontalKlickScroll() const
  712. {
  713. return horizontalScrollBar ? horizontalScrollBar->getKlickScroll() : 0;
  714. }
  715. int ZeichnungHintergrund::getHorizontalScrollPos() const
  716. {
  717. return horizontalScrollBar ? horizontalScrollBar->getScroll() : 0;
  718. }
  719. int ZeichnungHintergrund::getHorizontalScrollFarbe() const
  720. {
  721. return horizontalScrollBar ? horizontalScrollBar->getFarbe() : 0;
  722. }
  723. int ZeichnungHintergrund::getHorizontalScrollHintergrund() const
  724. {
  725. return horizontalScrollBar ? horizontalScrollBar->getBgFarbe() : 0;
  726. }
  727. Zeichnung *ZeichnungHintergrund::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  728. {
  729. ZeichnungHintergrund *obj = new ZeichnungHintergrund();
  730. obj->setPosition( pos );
  731. obj->setSize( gr );
  732. obj->setMausEreignisParameter( makParam );
  733. obj->setTastaturEreignisParameter( takParam );
  734. obj->setMausEreignis( mak );
  735. obj->setTastaturEreignis( tak );
  736. if( toolTip )
  737. obj->setToolTipText( toolTip->zText()->getText(), toolTip->zBildschirm() );
  738. obj->setStyle( style );
  739. obj->setHintergrundFarbe( hintergrundFarbe );
  740. if( hintergrundFeld )
  741. obj->setAlphaFeldZ( (AlphaFeld*)hintergrundFeld->dublizieren() );
  742. if( rahmen )
  743. obj->setRahmenZ( (Rahmen*)rahmen->dublizieren() );
  744. if( hintergrundBild )
  745. obj->setHintergrundBild( hintergrundBild->getThis() );
  746. if( vertikalScrollBar )
  747. {
  748. obj->setVertikalKlickScroll( vertikalScrollBar->getKlickScroll() );
  749. obj->setVertikalScrollPos( vertikalScrollBar->getScroll() );
  750. obj->setVertikalScrollFarbe( vertikalScrollBar->getFarbe(), vertikalScrollBar->getBgFarbe() );
  751. }
  752. if( horizontalScrollBar )
  753. {
  754. obj->setHorizontalKlickScroll( horizontalScrollBar->getKlickScroll() );
  755. obj->setHorizontalScrollPos( horizontalScrollBar->getScroll() );
  756. obj->setHorizontalScrollFarbe( horizontalScrollBar->getFarbe(), horizontalScrollBar->getBgFarbe() );
  757. }
  758. return obj;
  759. }