123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904 |
- #include "Zeichnung.h"
- #include "MausEreignis.h"
- #include "TastaturEreignis.h"
- #include "Globals.h"
- #include "ToolTip.h"
- #include "Scroll.h"
- #include "Text.h"
- #include "Rahmen.h"
- #include "AlphaFeld.h"
- #include "Bild.h"
- #include "TextFeld.h"
- #include "UIInitialization.h"
- #include "Schrift.h"
- #ifdef WIN32
- #include <Windows.h>
- #endif
- using namespace Framework;
- // Inhalt der Zeichnung Klasse aus Zeichnung.h
- // Konstruktor
- Zeichnung::Zeichnung()
- : pos( 0, 0 ),
- gr( 0, 0 ),
- makParam( 0 ),
- takParam( 0 ),
- mak( 0 ),
- tak( 0 ),
- nmakParam( 0 ),
- ntakParam( 0 ),
- nMak( 0 ),
- nTak( 0 ),
- mausIn( 0 ),
- toolTip( 0 ),
- style( 0 ),
- rend( 0 ),
- onNeedToolTip( 0 ),
- ref( 1 )
- {}
- // Destruktor
- Zeichnung::~Zeichnung()
- {
- if( toolTip )
- toolTip->release();
- }
- // Übergibt einen Void Funktionspointer auf eine Aktion die einmalig vom Hauptthread ausgeführt werden soll. (Passiert nach dem Tick)
- void Zeichnung::postAction( std::function< void() > action )
- {
- actions.push( action );
- }
- // nicht constant
- void Zeichnung::setRender()
- {
- rend = 1;
- }
- void Zeichnung::setToolTipText( const char *txt, Bildschirm *zScreen, Schrift *zSchrift )
- {
- if( !txt )
- toolTip = (ToolTip*)toolTip->release();
- else
- {
- if( !toolTip )
- {
- toolTip = new ToolTip( zScreen );
- toolTip->setStyle( ZeichnungHintergrund::Style::Hintergrund | ZeichnungHintergrund::Style::HAlpha | ZeichnungHintergrund::Style::Rahmen | ZeichnungHintergrund::Style::Sichtbar );
- toolTip->setHintergrundFarbe( 0xA0000000 );
- toolTip->setRahmenFarbe( 0xFFFFFFFF );
- toolTip->setRahmenBreite( 1 );
- if( mausIn && toolTip )
- toolTip->setMausIn( 1 );
- }
- UIInit init = defaultUI( zSchrift, zScreen );
- TextFeld *t = init.createTextFeld( init.initParam );
- t->setText( txt );
- t->setSize( t->zTextRenderer()->getTextBreite( txt ), t->zTextRenderer()->getTextHeight( txt ) );
- toolTip->addMember( t );
- }
- }
- // setzt eine Funktion, die beim erstmaligen gebrauch des tooltips einen tooltip erstellt, falls es noch keinen gibt
- // initToolTip: die Funktion
- void Zeichnung::setNeedToolTipEvent( std::function< void( Zeichnung * ) > onNeedToolTip )
- {
- this->onNeedToolTip = onNeedToolTip;
- }
- // legt den tooltip fest
- // tt: der tooltip
- void Zeichnung::setToolTipZ( ToolTip *tt )
- {
- if( toolTip )
- toolTip->release();
- toolTip = tt;
- if( mausIn && toolTip )
- toolTip->setMausIn( 1 );
- }
- void Zeichnung::lockZeichnung()
- {
- cs.lock();
- }
- void Zeichnung::unlockZeichnung()
- {
- cs.unlock();
- }
- void Zeichnung::setMausEreignisParameter( void *p ) // setzt den Parameter vom Maus Ereignis
- {
- makParam = p;
- }
- void Zeichnung::setTastaturEreignisParameter( void *p ) // setzt den Parameter vom Tastatur Ereignis
- {
- takParam = p;
- }
- void Zeichnung::setMausEreignis( MausAktion ak ) // setzt das Maus Ereignis
- {
- mak = ak;
- }
- void Zeichnung::setTastaturEreignis( TastaturAktion ak ) // setzt das TastaturEreignis
- {
- tak = ak;
- }
- void Zeichnung::setNMausEreignisParameter( void *p ) // setzt den Parameter vom Maus Ereignis
- {
- nmakParam = p;
- }
- void Zeichnung::setNTastaturEreignisParameter( void *p ) // setzt den Parameter vom Tastatur Ereignis
- {
- ntakParam = p;
- }
- void Zeichnung::setNMausEreignis( MausAktion ak ) // setzt das Maus Ereignis
- {
- nMak = ak;
- }
- void Zeichnung::setNTastaturEreignis( TastaturAktion ak ) // setzt das TastaturEreignis
- {
- nTak = ak;
- }
- void Zeichnung::doMausEreignis( MausEreignis &me ) // ruft Mak auf
- {
- 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 ) )
- {
- if( mausIn )
- {
- mausIn = 0;
- if( toolTip )
- toolTip->setMausIn( 0 );
- MausEreignis me2;
- me2.id = ME_Leaves;
- me2.mx = me.mx;
- me2.my = me.my;
- me2.verarbeitet = 0;
- doMausEreignis( me2 );
- }
- return;
- }
- if( !mausIn && me.id != ME_Leaves )
- {
- mausIn = 1;
- if( toolTip )
- toolTip->setMausIn( 1 );
- else if( onNeedToolTip )
- onNeedToolTip( this );
- MausEreignis me2;
- me2.id = ME_Betritt;
- me2.mx = me.mx;
- me2.my = me.my;
- me2.verarbeitet = 0;
- doMausEreignis( me2 );
- }
- me.mx -= pos.x, me.my -= pos.y;
- if( mak )
- me.verarbeitet |= mak( makParam, this, me );
- if( nMak && me.verarbeitet )
- me.verarbeitet = nMak( nmakParam, this, me );
- me.mx += pos.x, me.my += pos.y;
- }
- void Zeichnung::doTastaturEreignis( TastaturEreignis &te ) // ruft Tak auf
- {
- if( te.verarbeitet )
- return;
- if( tak )
- te.verarbeitet |= tak( takParam, this, te );
- if( nTak && te.verarbeitet )
- te.verarbeitet = nTak( ntakParam, this, te );
- }
- void Zeichnung::setPosition( const Punkt &pos ) // setzt die position
- {
- lockZeichnung();
- if( this->pos != pos )
- rend = 1;
- this->pos = pos;
- unlockZeichnung();
- }
- void Zeichnung::setX( int xPos )
- {
- lockZeichnung();
- if( pos.x != xPos )
- {
- rend = 1;
- pos.x = xPos;
- }
- unlockZeichnung();
- }
- void Zeichnung::setY( int yPos )
- {
- lockZeichnung();
- if( pos.y != yPos )
- {
- rend = 1;
- pos.y = yPos;
- }
- unlockZeichnung();
- }
- void Zeichnung::setSize( const Punkt &gr ) // setzt die Größe
- {
- lockZeichnung();
- if( this->gr != gr )
- rend = 1;
- this->gr = gr;
- unlockZeichnung();
- }
- void Zeichnung::setPosition( int x, int y ) // setzt die position
- {
- setPosition( Punkt( x, y ) );
- }
- void Zeichnung::setSize( int x, int y ) // setzt die Größe
- {
- setSize( Punkt( x, y ) );
- }
- bool Zeichnung::tick( double tickval )
- {
- while( !actions.empty() )
- {
- actions.front()( );
- actions.pop();
- }
- bool r = rend;
- rend = 0;
- return r;
- }
- void Zeichnung::setStyle( __int64 style ) // setzt den Style des Text Feldes
- {
- if( this->style != style )
- {
- this->style = style;
- rend = 1;
- }
- }
- void Zeichnung::setStyle( __int64 style, bool add_remove )
- {
- if( add_remove && ( this->style | style ) != this->style )
- {
- this->style |= style;
- rend = 1;
- }
- else if( !add_remove && ( this->style & ~style ) != this->style )
- {
- if( toolTip && ( style | Style::Sichtbar ) == style )
- toolTip->setMausIn( 0 );
- this->style &= ~style;
- rend = 1;
- }
- }
- void Zeichnung::addStyle( __int64 style )
- {
- if( ( this->style | style ) != this->style )
- {
- this->style |= style;
- rend = 1;
- }
- }
- void Zeichnung::removeStyle( __int64 style )
- {
- if( ( this->style & ~style ) != this->style )
- {
- if( toolTip && ( style | Style::Sichtbar ) == style )
- toolTip->setMausIn( 0 );
- this->style &= ~style;
- rend = 1;
- }
- }
- void Zeichnung::render( Bild &zRObj )
- {
- if( toolTip && ( style | Style::Sichtbar ) == style )
- toolTip->setZeichnen();
- }
- // constant
- bool Zeichnung::hatMausEreignis() const // prüft, ob Mak gesetzt ist
- {
- return mak != 0;
- }
- bool Zeichnung::hatTastaturEreignis() const // prüft, ob Tak gesetzt ist
- {
- return tak != 0;
- }
- const Punkt &Zeichnung::getPosition() const // gibt die Position zurück
- {
- return pos;
- }
- const Punkt &Zeichnung::getSize() const // gibt die Größe zurück
- {
- return gr;
- }
- int Zeichnung::getBreite() const // gibt die Breite zurück
- {
- return gr.x;
- }
- int Zeichnung::getHeight() const // gibt die Höhe zurück
- {
- return gr.y;
- }
- // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
- int Zeichnung::getInnenBreite() const
- {
- return gr.x;
- }
- // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
- int Zeichnung::getInnenHeight() const
- {
- return gr.y;
- }
- int Zeichnung::getX() const // gibt X zurück
- {
- return pos.x;
- }
- int Zeichnung::getY() const // gibt Y zurück
- {
- return pos.y;
- }
- ToolTip *Zeichnung::getToolTip() const // gibt den ToolTip Text
- {
- return (ToolTip*)toolTip->getThis();
- }
- ToolTip *Zeichnung::zToolTip() const
- {
- return toolTip;
- }
- bool Zeichnung::hatStyle( __int64 style ) const // prüft, ob style vorhanden
- {
- return ( this->style | style ) == this->style;
- }
- bool Zeichnung::hatStyleNicht( __int64 style ) const // prüft, ob style nicht vorhanden
- {
- return ( this->style | style ) != this->style;
- }
- Zeichnung *Zeichnung::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
- {
- Zeichnung *obj = new Zeichnung();
- obj->setPosition( pos );
- obj->setSize( gr );
- obj->setMausEreignisParameter( makParam );
- obj->setTastaturEreignisParameter( takParam );
- obj->setMausEreignis( mak );
- obj->setTastaturEreignis( tak );
- if( toolTip )
- obj->setToolTipZ( (ToolTip*)toolTip->dublizieren() );
- return obj;
- }
- Zeichnung *Zeichnung::getThis()
- {
- ref++;
- return this;
- }
- Zeichnung *Zeichnung::release()
- {
- if( !--ref )
- delete this;
- return 0;
- }
- // Inhalt der ZeichnungHintergrund Klasse aus Zeichnung.h
- // Konstruktor
- ZeichnungHintergrund::ZeichnungHintergrund()
- : Zeichnung()
- {
- hintergrundFarbe = 0xFF000000;
- rahmen = 0;
- hintergrundBild = 0;
- hintergrundFeld = 0;
- horizontalScrollBar = 0;
- vertikalScrollBar = 0;
- innenPosition.x = 0;
- innenPosition.y = 0;
- innenSize.x = 0;
- innenSize.y = 0;
- }
- // Destruktor
- ZeichnungHintergrund::~ZeichnungHintergrund()
- {
- if( rahmen )
- rahmen->release();
- if( hintergrundBild )
- hintergrundBild->release();
- if( hintergrundFeld )
- hintergrundFeld->release();
- if( horizontalScrollBar )
- horizontalScrollBar->release();
- if( vertikalScrollBar )
- vertikalScrollBar->release();
- }
- void ZeichnungHintergrund::setHintergrundBild( Bild *bild ) // setzt das Hintergrund Bild
- {
- if( !hintergrundBild )
- hintergrundBild = new Bild();
- hintergrundBild->neuBild( bild->getBreite(), bild->getHeight(), 0 );
- int *buff1 = hintergrundBild->getBuffer();
- int *buff2 = bild->getBuffer();
- for( int i = 0; i < bild->getBreite() * bild->getHeight(); ++i )
- buff1[ i ] = buff2[ i ];
- bild->release();
- rend = 1;
- }
- void ZeichnungHintergrund::setHintergrundBildZ( Bild *bild ) // setzt einen Zeiger zum Hintergrund Bild
- {
- if( hintergrundBild != bild )
- {
- if( hintergrundBild )
- hintergrundBild->release();
- hintergrundBild = bild;
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setHintergrundFarbe( int fc ) // setzt die Hintergrundfarbe
- {
- if( hintergrundFarbe != fc )
- {
- hintergrundFarbe = fc;
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setAlphaFeldZ( AlphaFeld *buff ) // setzt einen Zeiger zum Hintergrund Buffer
- {
- if( hintergrundFeld != buff )
- {
- if( hintergrundFeld )
- hintergrundFeld->release();
- hintergrundFeld = buff;
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setAlphaFeldStrength( int st ) // setzt die Stärke des Hintergrund Buffers
- {
- if( !hintergrundFeld )
- {
- hintergrundFeld = new AlphaFeld();
- rend = 1;
- }
- if( hintergrundFeld->getStrength() != st )
- {
- hintergrundFeld->setStrength( st );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setAlphaFeldFarbe( int fc ) // setzt die Farbe des Hintergrund Buffers
- {
- if( !hintergrundFeld )
- {
- hintergrundFeld = new AlphaFeld();
- rend = 1;
- }
- if( hintergrundFeld->getFarbe() != fc )
- {
- hintergrundFeld->setFarbe( fc );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setRahmenZ( Rahmen *ram ) // setzt einen Zeiger zum Rahmen
- {
- if( rahmen != ram )
- {
- if( rahmen )
- rahmen->release();
- rahmen = ram;
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setRahmenBreite( int br ) // setzt die Breite des Rahmens
- {
- if( !rahmen )
- {
- rahmen = new LRahmen();
- rend = 1;
- }
- if( rahmen->getRBreite() != br )
- {
- rahmen->setRamenBreite( br );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setRahmenFarbe( int fc ) // setzt die Farbe des Rahmens
- {
- if( !rahmen )
- {
- rahmen = new LRahmen();
- rend = 1;
- }
- if( rahmen->getFarbe() != fc )
- {
- rahmen->setFarbe( fc );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setVertikalKlickScroll( int ks ) // setzt die vertikale Scroll geschwindigkeit
- {
- if( !vertikalScrollBar )
- {
- vertikalScrollBar = new VScrollBar();
- rend = 1;
- }
- if( vertikalScrollBar->getKlickScroll() != ks )
- {
- vertikalScrollBar->setKlickScroll( ks );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setVertikalScrollPos( int pos ) // setzt die vertikale Scroll Position
- {
- if( !vertikalScrollBar )
- {
- vertikalScrollBar = new VScrollBar();
- rend = 1;
- }
- if( vertikalScrollBar && vertikalScrollBar->getScroll() != pos )
- {
- vertikalScrollBar->scroll( pos );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setVertikalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
- {
- if( !vertikalScrollBar )
- {
- vertikalScrollBar = new VScrollBar();
- rend = 1;
- }
- if( vertikalScrollBar && ( vertikalScrollBar->getFarbe() != f || vertikalScrollBar->getBgFarbe() != bgF ) )
- {
- vertikalScrollBar->setFarbe( f );
- vertikalScrollBar->setBgFarbe( bgF, bgF != 0 );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setHorizontalKlickScroll( int ks ) // setzt die horizontale Scroll geschwindigkeit
- {
- if( !horizontalScrollBar )
- {
- horizontalScrollBar = new HScrollBar();
- rend = 1;
- }
- if( horizontalScrollBar && horizontalScrollBar->getKlickScroll() != ks )
- {
- horizontalScrollBar->setKlickScroll( ks );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setHorizontalScrollPos( int pos ) // setzt die horizontale Scroll Position
- {
- if( !horizontalScrollBar )
- {
- horizontalScrollBar = new HScrollBar();
- rend = 1;
- }
- if( horizontalScrollBar && horizontalScrollBar->getScroll() != pos )
- {
- horizontalScrollBar->scroll( pos );
- rend = 1;
- }
- }
- void ZeichnungHintergrund::setHorizontalScrollFarbe( int f, int bgF ) // setzt die scroll Farbe
- {
- if( !horizontalScrollBar )
- {
- horizontalScrollBar = new HScrollBar();
- rend = 1;
- }
- if( horizontalScrollBar && ( horizontalScrollBar->getFarbe() != f || horizontalScrollBar->getBgFarbe() != bgF ) )
- {
- horizontalScrollBar->setFarbe( f );
- horizontalScrollBar->setBgFarbe( bgF, bgF != 0 );
- rend = 1;
- }
- }
- bool ZeichnungHintergrund::tick( double tickVal )
- {
- if( vertikalScrollBar && hatStyle( Style::VScroll ) )
- rend |= vertikalScrollBar->getRend();
- if( horizontalScrollBar && hatStyle( Style::HScroll ) )
- rend |= horizontalScrollBar->getRend();
- return Zeichnung::tick( tickVal );
- }
- void ZeichnungHintergrund::render( Bild &rObj )
- {
- innenPosition.x = pos.x;
- innenPosition.y = pos.y;
- innenSize.x = gr.x;
- innenSize.y = gr.y;
- if( hatStyleNicht( Style::Sichtbar ) )
- return;
- lockZeichnung();
- if( !rObj.setDrawOptions( pos.x, pos.y, gr.x, gr.y ) )
- {
- unlockZeichnung();
- return;
- }
- Zeichnung::render( rObj );
- int rbr = 0;
- if( hatStyle( Style::Rahmen ) && rahmen )
- {
- rahmen->setSize( gr );
- rahmen->render( rObj );
- rbr = rahmen->getRBreite();
- }
- innenPosition.x += rbr;
- innenPosition.y += rbr;
- innenSize.x -= rbr * 2;
- innenSize.y -= rbr * 2;
- if( !rObj.setDrawOptions( rbr, rbr, gr.x - rbr * 2, gr.y - rbr * 2 ) )
- {
- rObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
- bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
- if( vs )
- {
- vertikalScrollBar->render( gr.x - rbr * 2 - 15, 0, 15, gr.y - rbr * 2, rObj );
- innenSize.x -= 15;
- if( hs )
- {
- horizontalScrollBar->render( 0, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - 15, 15, rObj );
- innenSize.y -= 15;
- if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 - 15 ) )
- {
- rObj.releaseDrawOptions();
- rObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- horizontalScrollBar->update( horizontalScrollBar->getScrollData()->max, innenSize.x );
- }
- else
- {
- if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2 - 15, gr.y - rbr * 2 ) )
- {
- rObj.releaseDrawOptions();
- rObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- }
- vertikalScrollBar->update( vertikalScrollBar->getScrollData()->max, innenSize.y );
- }
- else if( hs )
- {
- horizontalScrollBar->render( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2, 15, rObj );
- innenSize.y -= 15;
- if( !rObj.setDrawOptions( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2 - 15 ) )
- {
- rObj.releaseDrawOptions();
- rObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- }
- if( hatStyle( Style::Hintergrund ) )
- {
- if( hatStyle( Style::HAlpha ) )
- rObj.alphaRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
- else
- rObj.fillRegion( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, hintergrundFarbe );
- if( hatStyle( Style::HBild ) && hintergrundBild )
- {
- if( hatStyle( Style::HAlpha ) )
- rObj.alphaBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
- else
- rObj.drawBildSkall( 0, 0, gr.x - rbr * 2, gr.y - rbr * 2, *hintergrundBild );
- }
- }
- if( hatStyle( Style::Buffered ) && hintergrundFeld )
- {
- hintergrundFeld->setSize( gr.x - rbr * 2, gr.y - rbr * 2 );
- hintergrundFeld->render( rObj );
- }
- if( vs || hs )
- rObj.releaseDrawOptions();
- rObj.releaseDrawOptions();
- rObj.releaseDrawOptions();
- unlockZeichnung();
- }
- // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
- int ZeichnungHintergrund::getInnenBreite() const
- {
- return getBreite() - 2 * getRahmenBreite();
- }
- // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
- int ZeichnungHintergrund::getInnenHeight() const
- {
- return getHeight() - 2 * getRahmenBreite();
- }
- Bild *ZeichnungHintergrund::getHintergrundBild() const // gibt getThis vom Hintergrund Bild zurück
- {
- if( !hintergrundBild )
- return 0;
- return hintergrundBild->getThis();
- }
- Bild *ZeichnungHintergrund::zHintergrundBild() const // gibt das Hintergrund Bild zurück
- {
- return hintergrundBild;
- }
- int ZeichnungHintergrund::getHintergrundFarbe() const // giebt getThis der Hintergrundfarbe zurück
- {
- return hintergrundFarbe;
- }
- AlphaFeld *ZeichnungHintergrund::getAlphaFeld() const // gibt getThir vom Hintergrund Buffer zurück
- {
- if( !hintergrundFeld )
- return 0;
- return (AlphaFeld*)hintergrundFeld->getThis();
- }
- AlphaFeld *ZeichnungHintergrund::zAlphaFeld() const // gibt den Hintergrund Buffer zurück
- {
- return hintergrundFeld;
- }
- int ZeichnungHintergrund::getAlphaFeldStrength() const // gibt die Stärke des Hintergrund Buffers zurück
- {
- if( !hintergrundFeld )
- return 0;
- return hintergrundFeld->getStrength();
- }
- int ZeichnungHintergrund::getAlphaFeldFarbe() const // gibt getThis von der Farbe des Hintergrund Buffers zurück
- {
- return hintergrundFeld->getFarbe();
- }
- Rahmen *ZeichnungHintergrund::getRahmen() const // gibt getThis des Rahmens zurück
- {
- if( !rahmen )
- return 0;
- return (Rahmen*)rahmen->getThis();
- }
- Rahmen *ZeichnungHintergrund::zRahmen() const // gibt den Rahmen zurück
- {
- return rahmen;
- }
- int ZeichnungHintergrund::getRahmenBreite() const // gibt die Breite des Rahmens zurück
- {
- if( !rahmen || hatStyleNicht( Style::Rahmen ) )
- return 0;
- return rahmen->getRBreite();
- }
- int ZeichnungHintergrund::getRahmenFarbe() const // gibt getThis der Farbe des Rahmens zurück
- {
- return rahmen->getFarbe();
- }
- int ZeichnungHintergrund::getVertikalKlickScroll() const
- {
- return vertikalScrollBar ? vertikalScrollBar->getKlickScroll() : 0;
- }
- int ZeichnungHintergrund::getVertikalScrollPos() const
- {
- return vertikalScrollBar ? vertikalScrollBar->getScroll() : 0;
- }
- int ZeichnungHintergrund::getVertikalScrollFarbe() const
- {
- return vertikalScrollBar ? vertikalScrollBar->getFarbe() : 0;
- }
- int ZeichnungHintergrund::getVertikalScrollHintergrund() const
- {
- return vertikalScrollBar ? vertikalScrollBar->getBgFarbe() : 0;
- }
- int ZeichnungHintergrund::getHorizontalKlickScroll() const
- {
- return horizontalScrollBar ? horizontalScrollBar->getKlickScroll() : 0;
- }
- int ZeichnungHintergrund::getHorizontalScrollPos() const
- {
- return horizontalScrollBar ? horizontalScrollBar->getScroll() : 0;
- }
- int ZeichnungHintergrund::getHorizontalScrollFarbe() const
- {
- return horizontalScrollBar ? horizontalScrollBar->getFarbe() : 0;
- }
- int ZeichnungHintergrund::getHorizontalScrollHintergrund() const
- {
- return horizontalScrollBar ? horizontalScrollBar->getBgFarbe() : 0;
- }
- Zeichnung *ZeichnungHintergrund::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
- {
- ZeichnungHintergrund *obj = new ZeichnungHintergrund();
- obj->setPosition( pos );
- obj->setSize( gr );
- obj->setMausEreignisParameter( makParam );
- obj->setTastaturEreignisParameter( takParam );
- obj->setMausEreignis( mak );
- obj->setTastaturEreignis( tak );
- if( toolTip )
- obj->setToolTipZ( (ToolTip*)toolTip->dublizieren() );
- obj->setStyle( style );
- obj->setHintergrundFarbe( hintergrundFarbe );
- if( hintergrundFeld )
- obj->setAlphaFeldZ( (AlphaFeld*)hintergrundFeld->dublizieren() );
- if( rahmen )
- obj->setRahmenZ( (Rahmen*)rahmen->dublizieren() );
- if( hintergrundBild )
- obj->setHintergrundBild( hintergrundBild->getThis() );
- if( vertikalScrollBar )
- {
- obj->setVertikalKlickScroll( vertikalScrollBar->getKlickScroll() );
- obj->setVertikalScrollPos( vertikalScrollBar->getScroll() );
- obj->setVertikalScrollFarbe( vertikalScrollBar->getFarbe(), vertikalScrollBar->getBgFarbe() );
- }
- if( horizontalScrollBar )
- {
- obj->setHorizontalKlickScroll( horizontalScrollBar->getKlickScroll() );
- obj->setHorizontalScrollPos( horizontalScrollBar->getScroll() );
- obj->setHorizontalScrollFarbe( horizontalScrollBar->getFarbe(), horizontalScrollBar->getBgFarbe() );
- }
- return obj;
- }
|