123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835 |
- #include "TextFeld.h"
- #include "Schrift.h"
- #include "Text.h"
- #include "AlphaFeld.h"
- #include "Rahmen.h"
- #include "Bild.h"
- #include "TastaturEreignis.h"
- #include "MausEreignis.h"
- #include "Fenster.h"
- #include "Scroll.h"
- #include <math.h>
- #include "Globals.h"
- #include "ToolTip.h"
- #include "Scroll.h"
- using namespace Framework;
- // Inhalt der TextFeld Klasse aus TextFeld.h
- // Konstruktor
- TextFeld::TextFeld()
- : ZeichnungHintergrund(),
- schriftSize( 12 ),
- textRd( 0 ),
- text( 0 ),
- sF( 0xFF000000 ),
- showChar( 0 ),
- begf( 0 ),
- cpos( 0 ),
- tickVal( 0 ),
- mausKlick( 0 )
- {
- horizontalScrollBar = new HScrollBar();
- vertikalScrollBar = new VScrollBar();
- style = 0;
- this->setMausEreignis( _ret1ME );
- this->setTastaturEreignis( _ret1TE );
- }
- // Destruktor
- TextFeld::~TextFeld()
- {
- if( textRd )
- textRd->release();
- if( text )
- text->release();
- }
- // nicht constant
- void TextFeld::setText( Text *txt ) // setzt den angezeigten Text
- {
- lockZeichnung();
- if( !text )
- text = new Text();
- text->setText( txt );
- if( hatStyle( Style::VScroll ) )
- updateVScroll();
- if( hatStyle( Style::HScroll ) )
- updateHScroll();
- unlockZeichnung();
- rend = 1;
- }
- void TextFeld::setTextZ( Text *txt ) // setzt einen Zeiger zum angezeigten Text
- {
- lockZeichnung();
- if( text )
- text->release();
- text = txt;
- if( hatStyle( Style::VScroll ) )
- updateVScroll();
- if( hatStyle( Style::HScroll ) )
- updateHScroll();
- rend = 1;
- unlockZeichnung();
- }
- void TextFeld::setText( const char *txt ) // setzt den angezeigten Text
- {
- lockZeichnung();
- if( !text )
- text = new Text();
- text->setText( txt );
- if( hatStyle( Style::VScroll ) )
- updateVScroll();
- if( hatStyle( Style::HScroll ) )
- updateHScroll();
- rend = 1;
- unlockZeichnung();
- }
- void TextFeld::addZeile( const char *zeile ) // fügt Zeile An
- {
- if( text )
- {
- Text *txt = new Text( zeile );
- txt->append( "\n" );
- if( textRd )
- {
- bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
- int rbr = ( rahmen && hatStyle( Style::Rahmen ) ) ? rahmen->getRBreite() : 0;
- textRd->setSchriftSize( schriftSize );
- textRd->textFormatieren( txt, gr.x - ( (int)vs * 15 ) - rbr * 2 );
- }
- lockZeichnung();
- text->append( txt->getText() );
- unlockZeichnung();
- txt->release();
- if( hatStyle( Style::VScroll ) )
- updateVScroll();
- if( hatStyle( Style::HScroll ) )
- updateHScroll();
- rend = 1;
- }
- }
- void TextFeld::setAuswahl( int pos1, int pos2 ) // setzt den Ausgewählten Text
- {
- cpos = pos1;
- begf = pos2;
- rend = 1;
- }
- void TextFeld::setAuswahl( Punkt &auswahl )
- {
- cpos = auswahl.x;
- begf = auswahl.y;
- rend = 1;
- }
- void TextFeld::setTextRendererZ( TextRenderer *textRd )
- {
- if( this->textRd )
- this->textRd->release();
- this->textRd = textRd;
- }
- void TextFeld::setSchriftZ( Schrift *schrift ) // setzt einen Zeiger zur Schrift
- {
- if( !this->textRd )
- textRd = new TextRenderer( schrift );
- else
- textRd->setSchriftZ( schrift );
- rend = 1;
- }
- void TextFeld::setSchriftSize( unsigned char gr ) // setzt die Schriftgröße
- {
- schriftSize = gr;
- rend = 1;
- }
- void TextFeld::setSchriftFarbe( int fc ) // setzt die Schrift Farbe
- {
- sF = fc;
- rend = 1;
- }
- void TextFeld::setSchowChar( unsigned char c ) // bei Passwortfeld *
- {
- showChar = c;
- rend = 1;
- }
- void TextFeld::setVScrollZuZeile( int zeile ) // scrollt zur Zeile
- {
- if( vertikalScrollBar && textRd && text && hatStyle( Style::Mehrzeilig ) )
- {
- textRd->setSchriftSize( schriftSize );
- Text t = "a";
- vertikalScrollBar->scroll( zeile * ( textRd->getZeilenabstand() + textRd->getTextHeight( t ) ) );
- rend = 1;
- }
- }
- void TextFeld::updateVScroll( int pos ) // scrollt nach unten
- {
- if( pos == -1 )
- pos = cpos;
- if( vertikalScrollBar )
- {
- int sPos = 0;
- int hi = 0;
- if( text && textRd )
- {
- if( hatStyleNicht( Style::Mehrzeilig ) )
- text->remove( '\n' );
- textRd->setSchriftSize( schriftSize );
- hi = gr.y;
- if( hatStyle( Style::Rahmen ) && rahmen )
- hi -= rahmen->getRBreite() * 2;
- if( hatStyle( Style::HScroll ) && horizontalScrollBar )
- hi -= 15;
- vertikalScrollBar->update( textRd->getTextHeight( text->getText() ) + schriftSize + textRd->getTextHeight( "a" ), hi );
- Text t;
- int zh = textRd->getTextHeight( t ) + textRd->getZeilenabstand();
- int l = text->getLength();
- for( int i = 0; i < l && ( i < pos || hatStyleNicht( Style::Erlaubt ) ); ++i )
- {
- if( text->getText()[ i ] == '\n' )
- sPos += zh;
- }
- }
- if( textRd )
- {
- if( sPos - textRd->getZeilenabstand() - textRd->getTextHeight( "a" ) < vertikalScrollBar->getScroll() )
- vertikalScrollBar->scroll( sPos - textRd->getZeilenabstand() - textRd->getTextHeight( "a" ) );
- if( sPos + textRd->getZeilenabstand() + textRd->getTextHeight( "a" ) > vertikalScrollBar->getScroll() + vertikalScrollBar->getScrollData()->anzeige )
- vertikalScrollBar->scroll( sPos + ( textRd->getZeilenabstand() + textRd->getTextHeight( "a" ) ) * 2 - hi );
- }
- rend = 1;
- }
- }
- void TextFeld::updateHScroll( int pos ) // scrollt zur Curser Position
- {
- if( pos == -1 )
- pos = cpos;
- if( horizontalScrollBar && text && textRd )
- {
- textRd->setSchriftSize( schriftSize );
- int br = gr.x;
- if( hatStyle( Style::Rahmen ) && rahmen )
- br -= rahmen->getRBreite() * 2;
- if( hatStyle( Style::VScroll ) && vertikalScrollBar )
- br -= 15;
- int maxBr = textRd->getTextBreite( text->getText() ) + schriftSize;
- horizontalScrollBar->update( maxBr, br );
- if( hatStyle( Style::Erlaubt ) && maxBr > br && pos > 0 && pos < text->getLength() )
- {
- int p1 = 0;
- char *tmp = text->getText();
- for( int i = 0; i < pos; i++, tmp++ )
- {
- if( *tmp == '\n' )
- p1 = i + 1;
- }
- Text *t = text->getTeilText( p1, pos );
- int cbr = textRd->getTextBreite( t->getText() );
- t->release();
- if( cbr + schriftSize > horizontalScrollBar->getScroll() + horizontalScrollBar->getScrollData()->anzeige )
- horizontalScrollBar->scroll( cbr + schriftSize - br );
- if( cbr - schriftSize < horizontalScrollBar->getScroll() )
- horizontalScrollBar->scroll( cbr - schriftSize );
- }
- }
- }
- bool TextFeld::tick( double tickval ) // tick
- {
- if( hatStyle( Style::Fokus ) )
- {
- if( tickVal < 0.5 && tickVal + tickval >= 0.5 )
- rend = 1;
- if( tickVal >= 0.5 && tickVal + tickval >= 1 )
- rend = 1;
- tickVal += tickval;
- if( tickVal >= 1 )
- tickVal -= 1;
- }
- return ZeichnungHintergrund::tick( tickval );
- }
- void TextFeld::doMausEreignis( MausEreignis &me ) // Maus Ereignis
- {
- bool nmakc = !me.verarbeitet;
- if( hatStyleNicht( Style::Erlaubt ) || hatStyleNicht( Style::Sichtbar ) )
- {
- if( toolTip )
- toolTip->setMausIn( 0 );
- me.mx -= pos.x, me.my -= pos.y;
- int rbr = 0;
- if( rahmen )
- rbr = rahmen->getRBreite();
- if( ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ||
- ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ) &&
- me.mx > rbr && me.mx < gr.x - rbr &&
- me.my > rbr && me.my < gr.y - rbr )
- {
- vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me );
- horizontalScrollBar->doMausMessage( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me );
- me.verarbeitet = 1;
- }
- me.mx += pos.x, me.my += pos.y;
- mausKlick = 0;
- return;
- }
- bool removeFokus = 0;
- if( me.verarbeitet || !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) )
- {
- 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;
- }
- removeFokus = 1;
- }
- if( !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y ) && me.id != ME_Leaves )
- {
- if( removeFokus && me.id == ME_RLinks )
- {
- me.mx -= pos.x, me.my -= pos.y;
- if( hatStyle( Style::Fokus ) && mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
- removeStyle( Style::Fokus );
- if( nmakc && me.verarbeitet && nMak )
- me.verarbeitet = nMak( nmakParam, this, me );
- me.mx += pos.x, me.my += pos.y;
- }
- if( toolTip )
- toolTip->setMausIn( 0 );
- return;
- }
- if( !mausIn && me.id != ME_Leaves )
- {
- mausIn = 1;
- if( toolTip )
- toolTip->setMausIn( 1 );
- 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( removeFokus && me.id == ME_RLinks )
- removeStyle( Style::Fokus );
- if( !me.verarbeitet )
- {
- if( hatStyleNicht( Style::Fokus ) )
- {
- mausKlick = 0;
- if( me.id == Framework::ME_PLinks )
- addStyle( Style::Fokus );
- }
- int rbr = 0;
- if( rahmen )
- rbr = rahmen->getRBreite();
- if( vertikalScrollBar && hatStyle( Style::VScroll ) )
- {
- if( vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me ) )
- {
- if( nmakc && me.verarbeitet && nMak )
- me.verarbeitet = nMak( nmakParam, this, me );
- me.mx += pos.x, me.my += pos.y;
- return;
- }
- }
- if( horizontalScrollBar && hatStyle( Style::HScroll ) )
- {
- if( horizontalScrollBar->doMausMessage( rbr, gr.y - rbr - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me ) )
- {
- if( nmakc && me.verarbeitet && nMak )
- me.verarbeitet = nMak( nmakParam, this, me );
- me.mx += pos.x, me.my += pos.y;
- return;
- }
- }
- if( me.mx < gr.x - rbr - 15 )
- {
- if( textRd )
- {
- textRd->setSchriftSize( schriftSize );
- bool shift = TastenStand[ T_Shift ];
- if( me.id == Framework::ME_PLinks )
- {
- int tbr = textRd->getTextBreite( text->getText() );
- int thi = textRd->getTextHeight( text->getText() );
- int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
- int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
- int xxx = me.mx - rbr + scrollBr;
- int yyy = me.my - rbr + scrollHi;
- int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
- if( hatStyle( Style::HCenter ) )
- xxx -= ( ( ( gr.x - scrollBreite ) / 2 ) - tbr / 2 ) - rbr;
- if( hatStyle( Style::VCenter ) && hatStyleNicht( Style::VScroll ) )
- yyy -= ( ( ( gr.y - scrollHi ) / 2 ) - thi / 2 ) - rbr;
- int pos = textRd->textPos( text->getText(), xxx, yyy );
- if( pos != -1 )
- {
- if( shift )
- begf = pos;
- else
- {
- cpos = pos;
- begf = pos;
- }
- rend = 1;
- if( vertikalScrollBar && hatStyle( Style::VScroll ) )
- updateVScroll( begf );
- if( horizontalScrollBar && hatStyle( Style::HScroll ) )
- updateHScroll( begf );
- }
- mausKlick = 1;
- }
- if( me.id == ME_Bewegung && mausKlick )
- {
- int tbr = textRd->getTextBreite( text->getText() );
- int thi = textRd->getTextHeight( text->getText() );
- int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
- int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
- int xxx = me.mx - rbr + scrollBr;
- int yyy = me.my - rbr + scrollHi;
- int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
- int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
- if( hatStyle( Style::HCenter ) )
- xxx -= ( ( ( gr.x - scrollBreite ) / 2 ) - tbr / 2 ) - rbr;
- if( hatStyle( Style::VCenter ) && hatStyleNicht( Style::VScroll ) )
- yyy -= ( ( ( gr.y - scrollHeight ) / 2 ) - thi / 2 ) - rbr;
- int pos = textRd->textPos( text->getText(), xxx, yyy );
- if( pos != -1 )
- {
- if( begf != pos )
- rend = 1;
- begf = pos;
- if( vertikalScrollBar && hatStyle( Style::VScroll ) )
- updateVScroll( begf );
- if( horizontalScrollBar && hatStyle( Style::HScroll ) )
- updateHScroll( begf );
- }
- }
- if( me.id == ME_RLinks )
- {
- if( !shift )
- {
- int tbr = textRd->getTextBreite( text->getText() );
- int thi = textRd->getTextHeight( text->getText() );
- int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
- int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
- int xxx = me.mx - rbr + scrollBr;
- int yyy = me.my - rbr + scrollHi;
- int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
- int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
- if( hatStyle( Style::HCenter ) )
- xxx -= ( ( ( gr.x - scrollBreite ) / 2 ) - tbr / 2 ) - rbr;
- if( hatStyle( Style::VCenter ) && hatStyleNicht( Style::VScroll ) )
- yyy -= ( ( ( gr.y - scrollHeight ) / 2 ) - thi / 2 ) - rbr;
- int pos = textRd->textPos( text->getText(), xxx, yyy );
- if( pos != -1 )
- {
- begf = pos;
- if( vertikalScrollBar && hatStyle( Style::VScroll ) )
- updateVScroll( begf );
- if( horizontalScrollBar && hatStyle( Style::HScroll ) )
- updateHScroll( begf );
- }
- rend = 1;
- }
- mausKlick = 0;
- }
- }
- }
- }
- me.verarbeitet = 1;
- }
- if( nmakc && me.verarbeitet && nMak )
- me.verarbeitet = nMak( nmakParam, this, me );
- me.mx += pos.x, me.my += pos.y;
- }
- void TextFeld::doTastaturEreignis( TastaturEreignis &te )
- {
- bool ntakc = !te.verarbeitet;
- if( te.verarbeitet || hatStyleNicht( Style::Fokus ) )
- return;
- if( !tak )
- return;
- ++ref;
- if( tak( takParam, this, te ) )
- {
- if( hatStyleNicht( Style::Erlaubt ) )
- {
- --ref;
- if( !ref )
- delete this;
- return;
- }
- if( te.id == TE_Press )
- {
- bool shift = TastenStand[ T_Shift ];
- bool strg = TastenStand[ T_Strg ];
- switch( te.taste )
- {
- case T_Entf:
- if( cpos != begf )
- text->remove( cpos, begf );
- else
- text->remove( cpos, cpos + 1 );
- begf = cpos;
- rend = 1;
- break;
- case T_BackSpace:
- if( cpos != begf )
- {
- text->remove( cpos, begf );
- if( cpos > begf )
- cpos -= cpos - begf;
- }
- else
- {
- text->remove( cpos - 1, cpos );
- --cpos;
- }
- begf = cpos;
- rend = 1;
- break;
- case T_Enter:
- if( cpos != begf )
- {
- text->remove( begf, cpos );
- if( cpos > begf )
- cpos -= cpos - begf;
- }
- text->insert( cpos, '\n' );
- ++cpos;
- begf = cpos;
- rend = 1;
- break;
- case T_Links:
- if( shift )
- {
- if( strg )
- begf = text->getLKick( begf );
- else
- --begf;
- }
- else
- {
- if( strg )
- cpos = text->getLKick( cpos );
- else
- --cpos;
- begf = cpos;
- }
- rend = 1;
- break;
- case T_Oben:
- if( shift )
- {
- begf = text->getOKick( begf );
- }
- else
- {
- cpos = text->getOKick( cpos );
- begf = cpos;
- }
- rend = 1;
- break;
- case T_Rechts:
- if( shift )
- {
- if( strg )
- begf = text->getRKick( begf );
- else
- ++begf;
- }
- else
- {
- if( strg )
- cpos = text->getRKick( cpos );
- else
- ++cpos;
- begf = cpos;
- }
- rend = 1;
- break;
- case T_Unten:
- if( shift )
- {
- begf = text->getUKick( begf );
- }
- else
- {
- cpos = text->getUKick( cpos );
- begf = cpos;
- }
- rend = 1;
- break;
- default:
- if( strg && te.id == TE_Press )
- {
- if( te.taste == 'c' || te.taste == 'C' )
- {
- if( begf != cpos )
- {
- int len = begf - cpos;
- if( len < 0 )
- len = -len;
- char *txt = new char[ len + 1 ];
- txt[ len ] = 0;
- int beg = begf < cpos ? begf : cpos;
- for( int i = beg; i < beg + len; ++i )
- txt[ i - beg ] = text->getText()[ i ];
- TextKopieren( txt );
- delete[] txt;
- }
- else
- TextKopieren( text->getText() );
- }
- if( te.taste == 'v' || te.taste == 'V' )
- {
- if( begf != cpos )
- {
- text->remove( begf, cpos );
- if( cpos > begf )
- cpos = begf;
- }
- char *txt = TextInsert();
- text->insert( cpos, txt );
- cpos += textLength( txt );
- begf = cpos;
- rend = 1;
- }
- break;
- }
- if( istSchreibbar( te.taste ) )
- {
- if( begf != cpos )
- {
- text->remove( begf, cpos );
- if( cpos > begf )
- cpos = begf;
- }
- text->insert( cpos, (char)te.taste );
- ++cpos;
- begf = cpos;
- rend = 1;
- }
- break;
- }
- }
- if( cpos < 0 )
- cpos = 0;
- if( cpos > text->getLength() )
- cpos = text->getLength();
- if( begf < 0 )
- begf = 0;
- if( begf > text->getLength() )
- begf = text->getLength();
- if( hatStyle( Style::VScroll ) )
- updateVScroll( begf );
- if( hatStyle( Style::HScroll ) )
- updateHScroll( begf );
- te.verarbeitet = 1;
- }
- --ref;
- if( ntakc && te.verarbeitet && nTak )
- te.verarbeitet = nTak( ntakParam, this, te );
- if( !ref )
- delete this;
- }
- void TextFeld::render( Bild &zRObj ) // zeichenet nach zRObj
- {
- if( hatStyleNicht( Style::Sichtbar ) )
- return;
- ZeichnungHintergrund::render( zRObj );
- if( !text || !textRd )
- return;
- lockZeichnung();
- if( !zRObj.setDrawOptions( innenPosition, innenSize ) )
- {
- unlockZeichnung();
- return;
- }
- if( hatStyleNicht( Style::Mehrzeilig ) )
- text->remove( '\n' );
- if( hatStyleNicht( Style::Mehrfarbig ) )
- {
- while( text->hat( '\r' ) )
- text->remove( text->positionVon( '\r' ), text->positionVon( '\r' ) + 11 );
- }
- textRd->setSchriftSize( schriftSize );
- int tbr = textRd->getTextBreite( text->getText() );
- int thi = textRd->getTextHeight( text->getText() );
- int xxx = 0;
- int yyy = 0;
- int breite = innenSize.x;
- int height = innenSize.y;
- bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
- bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
- if( vs )
- yyy -= vertikalScrollBar->getScroll();
- if( hs )
- xxx -= horizontalScrollBar->getScroll();
- if( hatStyle( Style::HCenter ) && !hs )
- xxx = ( breite / 2 ) - tbr / 2;
- if( hatStyle( Style::VCenter ) && !vs )
- yyy = ( height / 2 ) - thi / 2;
- if( hatStyle( Style::Fokus ) && hatStyle( Style::Erlaubt ) )
- {
- if( istSchreibbar( showChar ) )
- {
- Text rt;
- int len = text->getLength() - text->anzahlVon( '\n' ) - text->anzahlVon( '\r' ) * 11;
- rt.fillText( showChar, len );
- if( tickVal <= 0.5 )
- textRd->renderText( xxx, yyy, rt, zRObj, sF, cpos, 0xFFFF5555, begf, 0xFF0000FF );
- else
- textRd->renderText( xxx, yyy, rt, zRObj, sF, cpos, 0x00000000, begf, 0xFF0000FF );
- }
- else
- {
- if( tickVal <= 0.5 )
- textRd->renderText( xxx, yyy, text->getText(), zRObj, sF, cpos, 0xFFFF5555, begf, 0xFF0000FF );
- else
- textRd->renderText( xxx, yyy, text->getText(), zRObj, sF, cpos, 0x00000000, begf, 0xFF0000FF );
- }
- }
- else
- {
- if( istSchreibbar( showChar ) )
- {
- Text rt;
- int len = text->getLength() - text->anzahlVon( '\n' ) - text->anzahlVon( '\r' ) * 11;
- rt.fillText( showChar, len );
- textRd->renderText( xxx, yyy, rt, zRObj, sF );
- }
- else
- textRd->renderText( xxx, yyy, text->getText(), zRObj, sF );
- }
- zRObj.releaseDrawOptions();
- unlockZeichnung();
- }
- // Konstant
- Text *TextFeld::getText() const // gibt vom Text zurück
- {
- if( !text )
- return 0;
- return text->getThis();
- }
- Text *TextFeld::zText() const // gibt den Text zurück
- {
- return text;
- }
- Schrift *TextFeld::getSchrift() const// gint getThis der Schrift Zurück
- {
- if( !textRd )
- return 0;
- return textRd->getSchrift();
- }
- Schrift *TextFeld::zSchrift() const// gibt die Schrift zurück
- {
- return textRd ? textRd->zSchrift() : 0;
- }
- TextRenderer *TextFeld::getTextRenderer() const
- {
- return textRd ? textRd->getThis() : 0;
- }
- TextRenderer *TextFeld::zTextRenderer() const
- {
- return textRd;
- }
- unsigned char TextFeld::getSchriftSize() const // gibt die Schriftgröße zurück
- {
- return schriftSize;
- }
- int TextFeld::getSchriftFarbe() const// gibt getThis der Schriftfarbe zurück
- {
- return sF;
- }
- unsigned char TextFeld::getShowChar() const // gibt den Anzeige Char zurück
- {
- return showChar;
- }
- int TextFeld::getCursorPos() const
- {
- return cpos;
- }
- int TextFeld::getSelectionPos() const
- {
- return begf;
- }
- Zeichnung *TextFeld::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
- {
- TextFeld *obj = new TextFeld();
- obj->setPosition( pos );
- obj->setSize( gr );
- obj->setMausEreignisParameter( makParam );
- obj->setTastaturEreignisParameter( takParam );
- obj->setMausEreignis( mak );
- obj->setTastaturEreignis( tak );
- if( toolTip )
- obj->setToolTipText( toolTip->zText()->getText(), toolTip->zBildschirm() );
- obj->setStyle( style );
- obj->setSchriftSize( schriftSize );
- if( textRd )
- obj->setSchriftZ( textRd->getSchrift() );
- if( text )
- obj->setText( text->getText() );
- obj->setHintergrundFarbe( hintergrundFarbe );
- obj->setSchriftFarbe( sF );
- 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() );
- }
- obj->setSchowChar( showChar );
- obj->setAuswahl( begf, cpos );
- return obj;
- }
|