| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091 |
- #include "SelectionBox.h"
- #include "AlphaField.h"
- #include "Image.h"
- #include "Button.h"
- #include "MouseEvent.h"
- #include "Border.h"
- #include "Font.h"
- #include "Scroll.h"
- #include "KeyboardEvent.h"
- #include "Text.h"
- #include "TextField.h"
- #include "ToolTip.h"
- using namespace Framework;
- // Contents of the SelectionBox class from SelectionBox.h
- // Constructor
- SelectionBox::SelectionBox()
- : DrawableBackground(),
- textRd(0),
- msStyle(0),
- members(new RCArray<TextField>()),
- ausfahren(new Button()),
- selBorder(new LBorder()),
- auswBgF(0xFF000000),
- auswBgB(0),
- auswAf(new AlphaField()),
- msSelBorder(0),
- msAuswBgF(0),
- msAuswBgB(0),
- msAuswAf(0),
- mouseBorder(new LBorder()),
- mausBgF(0xFF000000),
- mausBgB(0),
- mausAf(new AlphaField()),
- msMouseBorder(0),
- msMausBgF(0),
- msMausBgB(0),
- msMausAf(0),
- anzahl(0),
- auswahl(0),
- ausgeklappt(0),
- ausklappHeight(0),
- ausklapMaxHeight(200),
- eintragHeight(15),
- tickval(0),
- mausEintrag(0),
- scrollAnzeigen(0),
- eAkP(0),
- eAk(0)
- {
- vertikalScrollBar = new VScrollBar();
- style = Style::Normal;
- rahmen = new LBorder();
- rahmen->setFarbe(0xFFFFFFFF);
- rahmen->setRamenBreite(1);
- ausfahren->setStyle(Button::Style::Sichtbar | Button::Style::Erlaubt
- | Button::Style::KlickBuffer);
- ausfahren->setKBFarbe(0xA0000000);
- ausfahren->setKBStrength(10);
- ausfahren->setSize(18, 18);
- ausfahren->setSchriftFarbe(0xFFFFFFFF);
- ausfahren->setText("\\/");
- selBorder->setFarbe(0xFF00FF00);
- selBorder->setRamenBreite(1);
- auswAf->setFarbe(0xA000FF00);
- auswAf->setStrength(7);
- mouseBorder->setFarbe(0xFF00FF00);
- mouseBorder->setRamenBreite(1);
- mausAf->setFarbe(0x5000FF00);
- mausAf->setStrength(7);
- gr.x = 20;
- gr.y = 20;
- }
- // Destructor
- SelectionBox::~SelectionBox()
- {
- if (textRd) textRd->release();
- if (msStyle) msStyle->release();
- if (members) members->release();
- if (ausfahren) ausfahren->release();
- if (selBorder) selBorder->release();
- if (auswBgB) auswBgB->release();
- if (auswAf) auswAf->release();
- if (msSelBorder) msSelBorder->release();
- if (msAuswAf) msAuswAf->release();
- if (msAuswBgB) msAuswBgB->release();
- if (msAuswBgF) msAuswBgF->release();
- if (mouseBorder) mouseBorder->release();
- if (mausAf) mausAf->release();
- if (mausBgB) mausBgB->release();
- if (msMouseBorder) msMouseBorder->release();
- if (msMausAf) msMausAf->release();
- if (msMausBgB) msMausBgB->release();
- if (msMausBgF) msMausBgF->release();
- }
- void SelectionBox::doMouseEvent(MouseEvent& me, bool userRet) // mouse events
- {
- if (hatStyleNicht(Style::Erlaubt) || hatStyleNicht(Style::Fokus)
- || me.verarbeitet)
- {
- ausgeklappt = 0;
- me.verarbeitet = 1;
- return;
- }
- if (!userRet) return;
- mausEintrag = -1;
- bool insideParent = me.insideParent;
- me.insideParent = me.mx >= 0 && me.mx < gr.x && me.my >= 0
- && me.my < gr.y + ausklappHeight;
- bool vera = me.verarbeitet;
- if (ausfahren)
- {
- int tmpMx = me.mx;
- int tmpMy = me.my;
- if (me.mx >= 0 && me.my >= 0 && me.mx < gr.x && me.my < gr.y)
- me.mx = ausfahren->getX(), me.my = ausfahren->getY() + 1;
- ausfahren->doPublicMouseEvent(me);
- me.mx = tmpMx, me.my = tmpMy;
- }
- if (me.verarbeitet && !vera && me.id == ME_RLinks)
- {
- ausgeklappt = !ausgeklappt;
- if (ausgeklappt) mausEintrag = auswahl;
- if (scrollAnzeigen) scrollZuEintrag(mausEintrag);
- }
- if (hatStyle(Style::VScroll) && vertikalScrollBar && ausgeklappt
- && scrollAnzeigen)
- {
- int rbr = 0;
- if (rahmen && hatStyle(Style::Border)) rbr = rahmen->getRBreite();
- if ((me.mx > gr.x - 15 - rbr && me.my > gr.y) || me.id == ME_UScroll
- || me.id == ME_DScroll)
- {
- vertikalScrollBar->doMausMessage(gr.x - rbr - 15,
- gr.y,
- 15,
- vertikalScrollBar->getScrollData()->anzeige,
- me);
- me.verarbeitet = 1;
- }
- }
- if (!me.verarbeitet)
- {
- int eintr = -1;
- int tmp = me.my - gr.y
- + (vertikalScrollBar ? vertikalScrollBar->getScroll() : 0);
- if (hatStyle(Style::MultiStyled))
- {
- for (int i = 0; i < anzahl; ++i)
- {
- if (tmp > 0
- && tmp < (members->z(i) ? members->z(i)->getHeight() : 0))
- {
- eintr = i;
- break;
- }
- tmp -= members->z(i) ? members->z(i)->getHeight() : 0;
- }
- }
- else
- {
- for (int i = 0; i < anzahl; ++i)
- {
- if (tmp > 0 && tmp < eintragHeight)
- {
- eintr = i;
- break;
- }
- tmp -= eintragHeight;
- }
- }
- if (ausgeklappt && me.mx > 0 && me.mx < gr.x && me.my > gr.y
- && me.my < gr.y + ausklappHeight)
- {
- if (eintr >= 0)
- {
- if (me.id == ME_RLinks)
- {
- if (auswahl != eintr) rend = 1;
- auswahl = eintr;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- }
- if (mausEintrag != eintr) rend = 1;
- mausEintrag = eintr;
- }
- }
- }
- me.verarbeitet = 1;
- me.insideParent = insideParent;
- }
- // non-constant
- void SelectionBox::setEventParam(void* p) // set event parameter
- {
- eAkP = p;
- }
- void SelectionBox::setEventAktion(
- std::function<void(void*, SelectionBox*, int, int)> event) // set event action
- {
- this->eAk = event;
- }
- void SelectionBox::setFontZ(Font* schrift) // set font
- {
- if (!this->textRd)
- textRd = new TextRenderer(schrift);
- else
- textRd->setFontZ(schrift);
- ausfahren->setFontZ(dynamic_cast<Font*>(schrift->getThis()));
- rend = 1;
- }
- void SelectionBox::setTextRendererZ(TextRenderer* textRd)
- {
- if (this->textRd) this->textRd->release();
- this->textRd = textRd;
- }
- void SelectionBox::addEintrag(const char* txt) // add entry
- {
- TextField* tf = new TextField();
- if (textRd) tf->setFontZ(textRd->getFont());
- tf->addStyle(TextField::Style::Sichtbar | TextField::Style::Center
- | TextField::Style::Border);
- tf->setText(txt);
- tf->setSchriftFarbe(0xFFFFFFFF);
- tf->setBorderColor(0xFFFFFFFF);
- tf->setSize(0, eintragHeight);
- members->add(tf, anzahl);
- ++anzahl;
- rend = 1;
- }
- void SelectionBox::addEintrag(Text* txt)
- {
- TextField* tf = new TextField();
- if (textRd) tf->setFontZ(textRd->getFont());
- tf->addStyle(TextField::Style::Sichtbar | TextField::Style::Center
- | TextField::Style::Border);
- tf->setText(txt);
- tf->setSchriftFarbe(0xFFFFFFFF);
- tf->setBorderColor(0xFFFFFFFF);
- tf->setSize(0, eintragHeight);
- members->add(tf, anzahl);
- ++anzahl;
- rend = 1;
- }
- void SelectionBox::addEintragZ(TextField* txt)
- {
- members->add(txt, anzahl);
- ++anzahl;
- rend = 1;
- }
- void SelectionBox::setEintrag(int i, const char* txt) // set entry text
- {
- if (members->z(i)) members->z(i)->setText(txt);
- rend = 1;
- }
- void SelectionBox::setEintrag(int i, Text* txt)
- {
- if (members->z(i))
- members->z(i)->setText(txt);
- else
- txt->release();
- rend = 1;
- }
- void SelectionBox::setEintragZ(int i, TextField* txt)
- {
- if (i < anzahl)
- members->set(txt, i);
- else
- txt->release();
- rend = 1;
- }
- void SelectionBox::removeEintrag(int i) // remove entry
- {
- if (i < anzahl)
- {
- members->remove(i);
- if (msStyle) msStyle->remove(i);
- if (msSelBorder) msSelBorder->remove(i);
- if (msAuswBgF) msAuswBgF->remove(i);
- if (msAuswBgB) msAuswBgB->remove(i);
- if (msAuswAf) msAuswAf->remove(i);
- if (msMouseBorder) msMouseBorder->remove(i);
- if (msMausBgF) msMausBgF->remove(i);
- if (msMausBgB) msMausBgB->remove(i);
- if (msMausAf) msMausAf->remove(i);
- if (auswahl > i) --auswahl;
- if (mausEintrag > i) --mausEintrag;
- --anzahl;
- rend = 1;
- }
- }
- void SelectionBox::setDropDownButtonZ(Button* ausK) // set expand button
- {
- if (ausfahren) ausfahren->release();
- ausfahren = ausK;
- rend = 1;
- }
- void SelectionBox::setEntryBorderZ(int i, Border* rahmen) // set entry border
- {
- if (members->z(i))
- members->z(i)->setBorderZ(rahmen);
- else
- rahmen->release();
- rend = 1;
- }
- void SelectionBox::setEintragRahmenFarbe(int i, int f) // set entry border color
- {
- if (members->z(i)) members->z(i)->setBorderColor(f);
- rend = 1;
- }
- void SelectionBox::setEintragRahmenBreite(
- int i, int rbr) // set entry border width
- {
- if (members->z(i)) members->z(i)->setBorderWidth(rbr);
- rend = 1;
- }
- void SelectionBox::setEintragHintergrundFarbe(
- int i, int f) // set entry background color
- {
- if (members->z(i)) members->z(i)->setHintergrundFarbe(f);
- rend = 1;
- }
- void SelectionBox::setEintragHintergrundImageZ(
- int i, Image* bgB) // set entry background image
- {
- if (members->z(i))
- members->z(i)->setHintergrundImageZ(bgB);
- else
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setEintragHintergrundImage(int i, Image* bgB)
- {
- if (members->z(i))
- members->z(i)->setHintergrundImage(bgB);
- else
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setEntryAlphaFieldZ(
- int i, AlphaField* af) // set entry AlphaField
- {
- if (members->z(i)) members->z(i)->setAlphaFieldZ(af);
- rend = 1;
- }
- void SelectionBox::setEintragAlphaFeldFarbe(
- int i, int afF) // set entry AlphaField color
- {
- if (members->z(i)) members->z(i)->setAlphaFieldColor(afF);
- rend = 1;
- }
- void SelectionBox::setEintragAlphaFeldStrength(
- int i, int afSt) // set entry AlphaField strength
- {
- if (members->z(i)) members->z(i)->setAlphaFieldStrength(afSt);
- rend = 1;
- }
- void SelectionBox::setSelBorderZ(Border* rahmen) // set selection border
- {
- if (selBorder) selBorder->release();
- selBorder = rahmen;
- rend = 1;
- }
- void SelectionBox::setAuswRahmenFarbe(int f) // set selection border color
- {
- if (!selBorder) selBorder = new LBorder();
- selBorder->setFarbe(f);
- rend = 1;
- }
- void SelectionBox::setAuswRahmenBreite(int rbr) // set selection border width
- {
- if (!selBorder) selBorder = new LBorder();
- selBorder->setRamenBreite(rbr);
- rend = 1;
- }
- void SelectionBox::setAuswHintergrundFarbe(
- int f) // set selection background color
- {
- auswBgF = f;
- rend = 1;
- }
- void SelectionBox::setAuswHintergrundImageZ(
- Image* bgB) // set selection background image
- {
- if (auswBgB) auswBgB->release();
- auswBgB = bgB;
- rend = 1;
- }
- void SelectionBox::setAuswHintergrundImage(Image* bgB)
- {
- if (!auswBgB) auswBgB = new Image();
- auswBgB->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- auswBgB->drawImage(0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setSelAlphaFieldZ(AlphaField* af) // set selection AlphaField
- {
- if (auswAf) auswAf->release();
- auswAf = af;
- rend = 1;
- }
- void SelectionBox::setSelAlphaFieldColor(int afF) // set selection AlphaField color
- {
- if (!auswAf) auswAf = new AlphaField();
- auswAf->setFarbe(afF);
- rend = 1;
- }
- void SelectionBox::setAuswAlphaFeldStrength(
- int afSt) // set selection AlphaField strength
- {
- if (!auswAf) auswAf = new AlphaField();
- auswAf->setStrength(afSt);
- rend = 1;
- }
- void SelectionBox::setMsSelBorderZ(
- int i, Border* rahmen) // set multistyle selection border
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- rahmen->release();
- return;
- }
- if (!msSelBorder) msSelBorder = new RCArray<Border>();
- msSelBorder->set(rahmen, i);
- rend = 1;
- }
- void SelectionBox::setMsAuswRahmenFarbe(
- int i, int f) // set multistyle selection border color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msSelBorder) msSelBorder = new RCArray<Border>();
- if (!msSelBorder->z(i)) msSelBorder->set(new LBorder(), i);
- msSelBorder->z(i)->setFarbe(f);
- rend = 1;
- }
- void SelectionBox::setMsAuswRahmenBreite(
- int i, int rbr) // set multistyle selection width
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msSelBorder) msSelBorder = new RCArray<Border>();
- if (!msSelBorder->z(i)) msSelBorder->set(new LBorder(), i);
- msSelBorder->z(i)->setRamenBreite(rbr);
- rend = 1;
- }
- void SelectionBox::setMsAuswHintergrundFarbe(
- int i, int f) // set multistyle selection background color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msAuswBgF) msAuswBgF = new Array<int>();
- msAuswBgF->set(f, i);
- rend = 1;
- }
- void SelectionBox::setMsAuswHintergrundImageZ(
- int i, Image* bgB) // set multistyle selection background image
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- bgB->release();
- return;
- }
- if (!msAuswBgB) msAuswBgB = new RCArray<Image>();
- msAuswBgB->set(bgB, i);
- rend = 1;
- }
- void SelectionBox::setMsAuswHintergrundImage(int i, Image* bgB)
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- bgB->release();
- return;
- }
- if (!msAuswBgB) msAuswBgB = new RCArray<Image>();
- if (!msAuswBgB->z(i))
- {
- Image* z = new Image;
- z->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- z->drawImage(0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- msAuswBgB->set(z, i);
- }
- else
- {
- msAuswBgB->z(i)->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- msAuswBgB->z(i)->drawImage(
- 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- }
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setMsSelAlphaFieldZ(
- int i, AlphaField* af) // set multistyle selection AlphaField
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- af->release();
- return;
- }
- if (!msAuswAf) msAuswAf = new RCArray<AlphaField>();
- msAuswAf->set(af, i);
- rend = 1;
- }
- void SelectionBox::setMsAuswAlphaFeldFarbe(
- int i, int afF) // set multistyle selection AlphaField color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msAuswAf) msAuswAf = new RCArray<AlphaField>();
- if (!msAuswAf->z(i)) msAuswAf->set(new AlphaField(), i);
- msAuswAf->z(i)->setFarbe(afF);
- rend = 1;
- }
- void SelectionBox::setMsAuswAlphaFeldStrength(
- int i, int afSt) // set multistyle selection AlphaField strength
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msAuswAf) msAuswAf = new RCArray<AlphaField>();
- if (!msAuswAf->z(i)) msAuswAf->set(new AlphaField(), i);
- msAuswAf->z(i)->setStrength(afSt);
- rend = 1;
- }
- void SelectionBox::setMouseBorderZ(Border* rahmen) // set mouse border
- {
- if (mouseBorder) mouseBorder->release();
- mouseBorder = rahmen;
- rend = 1;
- }
- void SelectionBox::setMausRahmenFarbe(int f) // set mouse border color
- {
- if (!mouseBorder) mouseBorder = new LBorder();
- mouseBorder->setFarbe(f);
- rend = 1;
- }
- void SelectionBox::setMausRahmenBreite(int rbr) // set mouse border width
- {
- if (!mouseBorder) mouseBorder = new LBorder();
- mouseBorder->setRamenBreite(rbr);
- rend = 1;
- }
- void SelectionBox::setMausHintergrundFarbe(int f) // set mouse background color
- {
- mausBgF = f;
- rend = 1;
- }
- void SelectionBox::setMausHintergrundImageZ(
- Image* bgB) // set mouse background image
- {
- if (mausBgB) mausBgB->release();
- mausBgB = bgB;
- rend = 1;
- }
- void SelectionBox::setMausHintergrundImage(Image* bgB)
- {
- if (!mausBgB) mausBgB = new Image();
- mausBgB->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- mausBgB->drawImage(0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setMouseAlphaFieldZ(AlphaField* af) // set mouse AlphaField
- {
- if (mausAf) mausAf->release();
- mausAf = af;
- rend = 1;
- }
- void SelectionBox::setMouseAlphaFieldColor(int afF) // set mouse AlphaField color
- {
- if (!mausAf) mausAf = new AlphaField();
- mausAf->setFarbe(afF);
- rend = 1;
- }
- void SelectionBox::setMausAlphaFeldStrength(
- int afSt) // set mouse AlphaField strength
- {
- if (!mausAf) mausAf = new AlphaField();
- mausAf->setStrength(afSt);
- rend = 1;
- }
- void SelectionBox::setMsMouseBorderZ(
- int i, Border* rahmen) // set multistyle mouse border
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- rahmen->release();
- return;
- }
- if (!msMouseBorder) msMouseBorder = new RCArray<Border>();
- msMouseBorder->set(rahmen, i);
- rend = 1;
- }
- void SelectionBox::setMsMausRahmenFarbe(
- int i, int f) // set multistyle mouse border color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msMouseBorder) msMouseBorder = new RCArray<Border>();
- if (!msMouseBorder->z(i)) msMouseBorder->set(new LBorder(), i);
- msMouseBorder->z(i)->setFarbe(f);
- rend = 1;
- }
- void SelectionBox::setMsMausRahmenBreite(
- int i, int rbr) // set multistyle mouse border width
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msMouseBorder) msMouseBorder = new RCArray<Border>();
- if (!msMouseBorder->z(i)) msMouseBorder->set(new LBorder(), i);
- msMouseBorder->z(i)->setRamenBreite(rbr);
- rend = 1;
- }
- void SelectionBox::setMsMausHintergrundFarbe(
- int i, int f) // set multistyle mouse background color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msMausBgF) msMausBgF = new Array<int>();
- msMausBgF->set(f, i);
- rend = 1;
- }
- void SelectionBox::setMsMausHintergrundImageZ(
- int i, Image* bgB) // set multistyle mouse background image
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- bgB->release();
- return;
- }
- if (!msMausBgB) msMausBgB = new RCArray<Image>();
- msMausBgB->set(bgB, i);
- rend = 1;
- }
- void SelectionBox::setMsMausHintergrundImage(int i, Image* bgB)
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- bgB->release();
- return;
- }
- if (!msMausBgB) msMausBgB = new RCArray<Image>();
- if (!msMausBgB->z(i))
- {
- Image* z = new Image;
- z->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- z->drawImage(0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- msMausBgB->set(z, i);
- }
- else
- {
- msMausBgB->z(i)->neuImage(bgB->getBreite(), bgB->getHeight(), 0);
- msMausBgB->z(i)->drawImage(
- 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB);
- }
- bgB->release();
- rend = 1;
- }
- void SelectionBox::setMsMouseAlphaFieldZ(
- int i, AlphaField* af) // set multistyle mouse AlphaField
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl)
- {
- af->release();
- return;
- }
- if (!msMausAf) msMausAf = new RCArray<AlphaField>();
- msMausAf->set(af, i);
- rend = 1;
- }
- void SelectionBox::setMsMausAlphaFeldFarbe(
- int i, int afF) // set multistyle mouse AlphaField color
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msMausAf) msMausAf = new RCArray<AlphaField>();
- if (!msMausAf->z(i)) msMausAf->set(new AlphaField(), i);
- msMausAf->z(i)->setFarbe(afF);
- rend = 1;
- }
- void SelectionBox::setMsMausAlphaFeldStrength(
- int i, int afSt) // set multistyle mouse AlphaField strength
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msMausAf) msMausAf = new RCArray<AlphaField>();
- if (!msMausAf->z(i)) msMausAf->set(new AlphaField(), i);
- msMausAf->z(i)->setStrength(afSt);
- rend = 1;
- }
- void SelectionBox::setAuswahl(int i) // select entry
- {
- if (i < anzahl && i != auswahl)
- {
- auswahl = i;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- rend = 1;
- }
- }
- void SelectionBox::ausklappen() // expand list
- {
- ausgeklappt = 1;
- }
- void SelectionBox::einklappen() // collapse list
- {
- ausgeklappt = 0;
- }
- void SelectionBox::scrollZuEintrag(int i) // scroll list
- {
- if (hatStyle(Style::VScroll) && vertikalScrollBar && i < anzahl)
- {
- int scrollPos = 0;
- if (hatStyle(Style::MultiStyled))
- {
- for (int j = 0; j < i; ++j)
- scrollPos += members->z(j) ? members->z(j)->getHeight() : 0;
- }
- else
- scrollPos += i * eintragHeight;
- vertikalScrollBar->scroll(scrollPos);
- rend = 1;
- }
- }
- void SelectionBox::setMaxAuskappHeight(
- int maxHeight) // height of the list when expanded
- {
- ausklapMaxHeight = maxHeight;
- }
- void SelectionBox::setEintragHeight(int height) // sets the height of the entries
- {
- eintragHeight = height;
- }
- void SelectionBox::addMsStyle(int i, __int64 abStyle) // add multistyle style
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msStyle) msStyle = new Array<__int64>();
- msStyle->set(msStyle->get(i) | abStyle, i);
- rend = 1;
- }
- void SelectionBox::setMsStyle(
- int i, __int64 abStyle, bool add) // set multistyle style
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msStyle) msStyle = new Array<__int64>();
- if (add)
- msStyle->set(msStyle->get(i) | abStyle, i);
- else
- msStyle->set(msStyle->get(i) & ~abStyle, i);
- rend = 1;
- }
- void SelectionBox::setMsStyle(int i, __int64 abStyle)
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msStyle) msStyle = new Array<__int64>();
- msStyle->set(abStyle, i);
- rend = 1;
- }
- void SelectionBox::removeMsStyle(
- int i, __int64 abStyle) // remove multistyle style
- {
- if (hatStyleNicht(Style::MultiStyled) || i >= anzahl) return;
- if (!msStyle) msStyle = new Array<__int64>();
- msStyle->set(msStyle->get(i) & ~abStyle, i);
- rend = 1;
- }
- bool SelectionBox::tick(double tickVal) // tick
- {
- if (ausgeklappt && ausfahren && !ausfahren->zText()->istGleich("/\\"))
- {
- ausfahren->setText("/\\");
- rend = 1;
- }
- else if (!ausgeklappt && ausfahren && !ausfahren->zText()->istGleich("\\/"))
- {
- ausfahren->setText("\\/");
- rend = 1;
- }
- if (hatStyleNicht(Style::Sichtbar) || hatStyleNicht(Style::Erlaubt))
- ausgeklappt = 0;
- rend |= ausfahren->tick(tickVal);
- this->tickval += tickVal * 300;
- int val = (int)this->tickval;
- if (val < 1) return DrawableBackground::tick(tickVal);
- this->tickval -= val;
- int maxHeight = rahmen ? rahmen->getRBreite() : 0;
- if (hatStyleNicht(Style::MultiStyled))
- maxHeight += anzahl * eintragHeight;
- else
- for (int i = 0; i < anzahl; ++i)
- maxHeight += members->z(i) ? members->z(i)->getHeight() : 0;
- if (maxHeight > ausklapMaxHeight)
- {
- if (hatStyle(Style::VScroll) && vertikalScrollBar)
- {
- scrollAnzeigen = 1;
- vertikalScrollBar->update(maxHeight, ausklapMaxHeight);
- }
- maxHeight = ausklapMaxHeight;
- }
- else
- scrollAnzeigen = 0;
- if (ausgeklappt)
- {
- if (ausklappHeight < maxHeight)
- {
- ausklappHeight += val;
- if (ausklappHeight > maxHeight) ausklappHeight = maxHeight;
- rend = 1;
- }
- }
- else
- {
- if (ausklappHeight > 0)
- {
- ausklappHeight -= val;
- if (ausklappHeight < 0) ausklappHeight = 0;
- rend = 1;
- }
- }
- for (int i = 0; i < anzahl; ++i)
- {
- if (i != auswahl)
- rend |= members->z(i)->tick(tickVal);
- else
- members->z(i)->tick(tickVal);
- }
- return DrawableBackground::tick(tickVal);
- }
- void SelectionBox::doKeyboardEvent(KeyboardEvent& te) // Keyboard
- {
- if (te.verarbeitet || hatStyleNicht(Style::Fokus)
- || hatStyleNicht(Style::Erlaubt))
- return;
- if (te.id == TE_Release)
- {
- switch (te.virtualKey)
- {
- case T_Oben:
- if (auswahl > 0)
- --auswahl;
- else
- auswahl = anzahl - 1;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- scrollZuEintrag(auswahl);
- rend = 1;
- break;
- case T_Unten:
- if (auswahl < anzahl - 1)
- ++auswahl;
- else
- auswahl = 0;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- scrollZuEintrag(auswahl);
- rend = 1;
- break;
- }
- }
- if (te.verarbeitet && nTak) te.verarbeitet = nTak(ntakParam, this, te);
- }
- void SelectionBox::render(Image& zRObj) // renders into zRObj
- {
- if (hatStyle(Style::Sichtbar))
- {
- lockDrawable();
- int br = gr.x;
- int hi = gr.y + ausklappHeight;
- if ((ausklappHeight
- && !zRObj.setDrawOptionsErzwingen(pos.x, pos.y, br, hi))
- || (!ausklappHeight && !zRObj.setDrawOptions(pos.x, pos.y, br, hi)))
- {
- unlockDrawable();
- return;
- }
- int rbr = 0;
- if (hatStyle(Style::Border) && rahmen) // Draw border
- {
- rahmen->setSize(br, hi);
- rahmen->render(zRObj);
- rbr = rahmen->getRBreite();
- }
- if ((ausklappHeight
- && !zRObj.setDrawOptionsErzwingen(
- rbr, rbr, br - rbr * 2, hi - rbr * 2))
- || (!ausklappHeight
- && !zRObj.setDrawOptions(rbr, rbr, br - rbr * 2, hi - rbr * 2)))
- {
- zRObj.releaseDrawOptions();
- unlockDrawable();
- return;
- }
- if (hatStyle(Style::Hintergrund))
- {
- if (hatStyle(Style::HAlpha))
- zRObj.alphaRegion(0, 0, br, hi, hintergrundFarbe);
- else
- zRObj.fillRegion(0, 0, br, hi, hintergrundFarbe);
- if (hatStyle(Style::HImage) && hintergrundImage)
- {
- if (hatStyle(Style::HAlpha))
- zRObj.alphaImage(0, 0, br, hi, *hintergrundImage);
- else
- zRObj.drawImage(0, 0, br, hi, *hintergrundImage);
- }
- }
- if (hatStyle(Style::Buffered) && hintergrundFeld)
- {
- hintergrundFeld->setSize(br - rbr * 2, hi - rbr * 2);
- hintergrundFeld->render(zRObj);
- }
- if (ausfahren) // Draw expand button
- {
- ausfahren->setSize(gr.y - rbr * 2, gr.y - rbr * 2);
- ausfahren->setPosition(gr.x - rbr - ausfahren->getBreite(), rbr);
- ausfahren->render(zRObj);
- }
- if (members) // Draw selected text field
- {
- if (auswahl < 0)
- {
- auswahl = 0;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- }
- if (auswahl >= anzahl)
- {
- auswahl = anzahl - 1;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- }
- TextField* tf = auswahl >= 0 ? members->z(auswahl) : 0;
- if (tf)
- {
- AlphaField* tmpBuffer = 0;
- bool tmpB = 0;
- int tmpHFarbe = 0;
- bool tmpH = 0;
- Image* tmpHImage = 0;
- bool tmpHB = 0;
- bool tmpHAlpha = 0;
- Border* tmpBorder = 0;
- bool tmpR = 0;
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::AuswahlBuffer))
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(
- dynamic_cast<AlphaField*>(auswAf->getThis()));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatStyle(Style::AuswahlBuffer));
- }
- if (hatStyle(Style::AuswahlHintergrund))
- {
- tmpH = tf->hatStyle(TextField::Style::Hintergrund);
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(auswBgF);
- tf->setStyle(TextField::Style::Hintergrund,
- hatStyle(Style::Hintergrund));
- if (hatStyle(Style::AuswahlHImage))
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(
- dynamic_cast<Image*>(auswBgB->getThis()));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(
- TextField::Style::HImage, hatStyle(Style::HImage));
- }
- if (hatStyle(Style::AuswahlHAlpha))
- {
- tmpHAlpha = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatStyle(Style::AuswahlHAlpha));
- }
- }
- if (hatStyle(Style::SelectionBorder))
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(
- dynamic_cast<Border*>(selBorder->getThis()));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatStyle(Style::SelectionBorder));
- }
- }
- else
- {
- if (hatMsStyle(auswahl, Style::AuswahlBuffer) && msAuswAf)
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(msAuswAf->get(auswahl));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatMsStyle(auswahl, Style::AuswahlBuffer));
- }
- if (hatMsStyle(auswahl, Style::AuswahlHintergrund))
- {
- tmpH = tf->hatStyle(Style::Hintergrund);
- tf->setStyle(TextField::Style::Hintergrund,
- hatMsStyle(auswahl, Style::AuswahlHintergrund));
- if (msAuswBgF && msAuswBgF->hat(auswahl))
- {
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(msAuswBgF->get(auswahl));
- }
- if (hatMsStyle(auswahl, Style::AuswahlHImage)
- && msAuswBgB)
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(msAuswBgB->get(auswahl));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(TextField::Style::HImage,
- hatMsStyle(auswahl, Style::HImage));
- }
- if (hatMsStyle(auswahl, Style::AuswahlHAlpha))
- {
- tmpHAlpha = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatMsStyle(auswahl, Style::AuswahlHAlpha));
- }
- }
- if (hatMsStyle(auswahl, Style::SelectionBorder)
- && msSelBorder)
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(msSelBorder->get(auswahl));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatMsStyle(auswahl, Style::SelectionBorder));
- }
- }
- int tmpHi = tf->getHeight();
- tf->setPosition(0, 0);
- tf->setSize(
- gr.x - rbr * 2 - (ausfahren ? ausfahren->getBreite() : 0),
- gr.y - rbr * 2);
- tf->render(zRObj);
- tf->setSize(tf->getBreite(), tmpHi);
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::AuswahlBuffer))
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatStyle(Style::AuswahlHintergrund))
- {
- tf->setHintergrundFarbe(tmpHFarbe);
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (hatStyle(Style::AuswahlHImage))
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatStyle(Style::AuswahlHAlpha))
- tf->setStyle(TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatStyle(Style::SelectionBorder))
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- else
- {
- if (hatMsStyle(auswahl, Style::AuswahlBuffer) && msAuswAf)
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatMsStyle(auswahl, Style::AuswahlHintergrund))
- {
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (msAuswBgF && msAuswBgF->hat(auswahl))
- tf->setHintergrundFarbe(tmpHFarbe);
- if (hatMsStyle(auswahl, Style::AuswahlHImage)
- && msAuswBgB)
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatMsStyle(auswahl, Style::AuswahlHAlpha))
- tf->setStyle(TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatMsStyle(auswahl, Style::SelectionBorder)
- && msSelBorder)
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- }
- }
- bool vsb
- = hatStyle(Style::VScroll) && vertikalScrollBar; // Draw scroll bar
- if (auswahl >= anzahl)
- {
- auswahl = 0;
- if (eAk) eAk(eAkP, this, 0, auswahl);
- }
- if (members)
- {
- if (vsb && ausklappHeight)
- {
- br -= 15;
- vertikalScrollBar->getScrollData()->anzeige
- = ausklappHeight - rbr;
- vertikalScrollBar->render(
- br - rbr, gr.y, 15, ausklappHeight - rbr, zRObj);
- }
- if ((ausklappHeight
- && !zRObj.setDrawOptionsErzwingen(
- 0, gr.y, br - rbr, hi - rbr - gr.y))
- || (!ausklappHeight
- && !zRObj.setDrawOptions(
- 0, gr.y, br - rbr, hi - rbr - gr.y)))
- {
- zRObj.releaseDrawOptions();
- zRObj.releaseDrawOptions();
- unlockDrawable();
- return;
- }
- int maxHeight = 0;
- int dy = 0;
- if (vsb) dy -= vertikalScrollBar->getScroll();
- int mdy = hi - rbr;
- anzahl = members->getEntryCount();
- for (int i = 0; i < anzahl; ++i)
- {
- TextField* tf = members->z(i);
- if (dy >= mdy && !vsb) break;
- tf->setPosition(0, dy);
- tf->setSize(br - rbr * 2, tf->getHeight());
- maxHeight += tf->getHeight();
- bool selected = auswahl == i;
- AlphaField* tmpBuffer = 0;
- bool tmpB = 0;
- int tmpHFarbe = 0;
- bool tmpH = 0;
- Image* tmpHImage = 0;
- bool tmpHB = 0;
- bool tmpHAlpha = 0;
- Border* tmpBorder = 0;
- bool tmpR = 0;
- if (selected)
- {
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::AuswahlBuffer))
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(
- dynamic_cast<AlphaField*>(auswAf->getThis()));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatStyle(Style::AuswahlBuffer));
- }
- if (hatStyle(Style::AuswahlHintergrund))
- {
- tmpH = tf->hatStyle(TextField::Style::Hintergrund);
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(auswBgF);
- tf->setStyle(TextField::Style::Hintergrund,
- hatStyle(Style::Hintergrund));
- if (hatStyle(Style::AuswahlHImage))
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(
- dynamic_cast<Image*>(auswBgB->getThis()));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(TextField::Style::HImage,
- hatStyle(Style::HImage));
- }
- if (hatStyle(Style::AuswahlHAlpha))
- {
- tmpHAlpha
- = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatStyle(Style::AuswahlHAlpha));
- }
- }
- if (hatStyle(Style::SelectionBorder))
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(
- dynamic_cast<Border*>(selBorder->getThis()));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatStyle(Style::SelectionBorder));
- }
- }
- else
- {
- if (hatMsStyle(i, Style::AuswahlBuffer) && msAuswAf)
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(msAuswAf->get(i));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatMsStyle(i, Style::AuswahlBuffer));
- }
- if (hatMsStyle(i, Style::AuswahlHintergrund))
- {
- tmpH = tf->hatStyle(Style::Hintergrund);
- tf->setStyle(TextField::Style::Hintergrund,
- hatMsStyle(i, Style::AuswahlHintergrund));
- if (msAuswBgF && msAuswBgF->hat(i))
- {
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(msAuswBgF->get(i));
- }
- if (hatMsStyle(i, Style::AuswahlHImage) && msAuswBgB)
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(msAuswBgB->get(i));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(TextField::Style::HImage,
- hatMsStyle(i, Style::HImage));
- }
- if (hatMsStyle(i, Style::AuswahlHAlpha))
- {
- tmpHAlpha
- = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatMsStyle(i, Style::AuswahlHAlpha));
- }
- }
- if (hatMsStyle(i, Style::SelectionBorder) && msSelBorder)
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(msSelBorder->get(i));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatMsStyle(i, Style::SelectionBorder));
- }
- }
- }
- else if (mausEintrag == i)
- {
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::MausBuffer))
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(
- dynamic_cast<AlphaField*>(mausAf->getThis()));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatStyle(Style::MausBuffer));
- }
- if (hatStyle(Style::MausHintergrund))
- {
- tmpH = tf->hatStyle(TextField::Style::Hintergrund);
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(mausBgF);
- tf->setStyle(TextField::Style::Hintergrund,
- hatStyle(Style::Hintergrund));
- if (hatStyle(Style::MausHImage))
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(
- dynamic_cast<Image*>(mausBgB->getThis()));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(TextField::Style::HImage,
- hatStyle(Style::HImage));
- }
- if (hatStyle(Style::MausHAlpha))
- {
- tmpHAlpha
- = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatStyle(Style::MausHAlpha));
- }
- }
- if (hatStyle(Style::MausRahmen))
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(
- dynamic_cast<Border*>(mouseBorder->getThis()));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatStyle(Style::MausRahmen));
- }
- }
- else
- {
- if (hatMsStyle(i, Style::MausBuffer) && msAuswAf)
- {
- tmpBuffer = tf->getAlphaField();
- tf->setAlphaFieldZ(msMausAf->get(i));
- tmpB = tf->hatStyle(TextField::Style::Buffered);
- tf->setStyle(TextField::Style::Buffered,
- hatMsStyle(i, Style::MausBuffer));
- }
- if (hatMsStyle(i, Style::MausHintergrund))
- {
- tmpH = tf->hatStyle(Style::Hintergrund);
- tf->setStyle(TextField::Style::Hintergrund,
- hatMsStyle(i, Style::MausHintergrund));
- if (msMausBgF && msMausBgF->hat(i))
- {
- tmpHFarbe = tf->getHintergrundFarbe();
- tf->setHintergrundFarbe(msMausBgF->get(i));
- }
- if (hatMsStyle(i, Style::MausHImage) && msMausBgB)
- {
- tmpHImage = tf->getHintergrundImage();
- tf->setHintergrundImageZ(msMausBgB->get(i));
- tmpHB = tf->hatStyle(TextField::Style::HImage);
- tf->setStyle(TextField::Style::HImage,
- hatMsStyle(i, Style::HImage));
- }
- if (hatMsStyle(i, Style::MausHAlpha))
- {
- tmpHAlpha
- = tf->hatStyle(TextField::Style::HAlpha);
- tf->setStyle(TextField::Style::HAlpha,
- hatMsStyle(i, Style::MausHAlpha));
- }
- }
- if (hatMsStyle(i, Style::MausRahmen) && msMouseBorder)
- {
- tmpBorder = tf->getBorder();
- tf->setBorderZ(msMouseBorder->get(i));
- tmpR = tf->hatStyle(TextField::Style::Border);
- tf->setStyle(TextField::Style::Border,
- hatMsStyle(i, Style::MausRahmen));
- }
- }
- }
- tf->render(zRObj);
- if (selected)
- {
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::AuswahlBuffer))
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatStyle(Style::AuswahlHintergrund))
- {
- tf->setHintergrundFarbe(tmpHFarbe);
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (hatStyle(Style::AuswahlHImage))
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatStyle(Style::AuswahlHAlpha))
- tf->setStyle(
- TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatStyle(Style::SelectionBorder))
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- else
- {
- if (hatMsStyle(i, Style::AuswahlBuffer) && msAuswAf)
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatMsStyle(i, Style::AuswahlHintergrund))
- {
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (msAuswBgF && msAuswBgF->hat(i))
- tf->setHintergrundFarbe(tmpHFarbe);
- if (hatMsStyle(i, Style::AuswahlHImage) && msAuswBgB)
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatMsStyle(i, Style::AuswahlHAlpha))
- tf->setStyle(
- TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatMsStyle(i, Style::SelectionBorder) && msSelBorder)
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- }
- else if (mausEintrag == i)
- {
- if (hatStyleNicht(Style::MultiStyled) || !msStyle)
- {
- if (hatStyle(Style::MausBuffer))
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatStyle(Style::MausHintergrund))
- {
- tf->setHintergrundFarbe(tmpHFarbe);
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (hatStyle(Style::MausHImage))
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatStyle(Style::MausHAlpha))
- tf->setStyle(
- TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatStyle(Style::MausRahmen))
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- else
- {
- if (hatMsStyle(i, Style::MausBuffer) && msAuswAf)
- {
- tf->setAlphaFieldZ(tmpBuffer);
- tf->setStyle(TextField::Style::Buffered, tmpB);
- }
- if (hatMsStyle(i, Style::MausHintergrund))
- {
- tf->setStyle(TextField::Style::Hintergrund, tmpH);
- if (msAuswBgF && msAuswBgF->hat(i))
- tf->setHintergrundFarbe(tmpHFarbe);
- if (hatMsStyle(i, Style::MausHImage) && msAuswBgB)
- {
- tf->setHintergrundImageZ(tmpHImage);
- tf->setStyle(TextField::Style::HImage, tmpHB);
- }
- if (hatMsStyle(i, Style::MausHAlpha))
- tf->setStyle(
- TextField::Style::HAlpha, tmpHAlpha);
- }
- if (hatMsStyle(i, Style::MausRahmen) && msSelBorder)
- {
- tf->setBorderZ(tmpBorder);
- tf->setStyle(TextField::Style::Border, tmpR);
- }
- }
- }
- dy += tf->getHeight();
- }
- if (vertikalScrollBar)
- vertikalScrollBar->getScrollData()->max = maxHeight;
- zRObj.releaseDrawOptions();
- }
- zRObj.releaseDrawOptions();
- zRObj.releaseDrawOptions();
- unlockDrawable();
- }
- }
- // constant
- int SelectionBox::getEintragPos(
- const char* txt) const // returns the entry position
- {
- for (int i = 0; i < anzahl; ++i)
- if (members->z(i) && members->z(i)->zText()->istGleich(txt)) return i;
- return -1;
- }
- int SelectionBox::getEintragPos(Text* txt) const
- {
- for (int i = 0; i < anzahl; ++i)
- {
- if (members->z(i) && members->z(i)->zText()->istGleich(txt->getText()))
- {
- txt->release();
- return i;
- }
- }
- txt->release();
- return -1;
- }
- Text* SelectionBox::getEintragText(int i) const // returns the entry text
- {
- if (i >= anzahl) return 0;
- return members->z(i) ? members->z(i)->getText() : 0;
- }
- Text* SelectionBox::zEintragText(int i) const
- {
- if (i >= anzahl) return 0;
- return members->z(i) ? members->z(i)->zText() : 0;
- }
- TextField* SelectionBox::getEintrag(int i) const // returns the entry
- {
- if (i >= anzahl) return 0;
- return members->get(i);
- }
- TextField* SelectionBox::zEintrag(int i) const
- {
- if (i >= anzahl) return 0;
- return members->z(i);
- }
- int SelectionBox::getAuswahl() const // returns the position of the selected entry
- {
- return auswahl;
- }
- int SelectionBox::getEntryCount() const // returns the number of entries
- {
- return anzahl;
- }
- bool SelectionBox::istAusgeklappt() const // checks if the list is expanded
- {
- return ausgeklappt;
- }
- int SelectionBox::getMaxHeight() const // returns the maximum list height
- {
- if (!hatStyle(Style::MaxHeight)) return 0;
- return ausklapMaxHeight;
- }
- int SelectionBox::getEintragHeight() const // returns the height of the entries
- {
- return eintragHeight;
- }
- Button*
- SelectionBox::getDropDownButton() const // returns the expand/collapse button
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return ausfahren ? dynamic_cast<Button*>(ausfahren->getThis()) : 0;
- }
- Button* SelectionBox::zDropDownButton() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return ausfahren;
- }
- Border* SelectionBox::getEntryBorder(int i) const // returns the entry border
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getBorder();
- }
- Border* SelectionBox::zEntryBorder(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->zBorder();
- }
- int SelectionBox::getEintragRahmenFarbe(
- int i) const // returns the entry border color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getBorderColor();
- }
- int SelectionBox::getEintragRahmenBreite(
- int i) const // returns the entry border width
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getBorderWidth();
- }
- AlphaField* SelectionBox::getEntryAlphaField(
- int i) const // returns the entry AlphaField
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getAlphaField();
- }
- AlphaField* SelectionBox::zEntryAlphaField(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->zAlphaField();
- }
- int SelectionBox::getEintragAlphaFeldFarbe(
- int i) const // returns the entry AlphaField color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getAlphaFieldColor();
- }
- int SelectionBox::getEintragAlphaFeldStrength(
- int i) const // returns the entry AlphaField strength
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getAlphaFieldStrength();
- }
- int SelectionBox::getEintragHintergrundFarbe(
- int i) const // returns the entry background color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getHintergrundFarbe();
- }
- Image* SelectionBox::getEintragHintergrundImage(
- int i) const // returns the entry background image
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->getHintergrundImage();
- }
- Image* SelectionBox::zEintragHintergrundImage(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!members->z(i)) return 0;
- return members->z(i)->zHintergrundImage();
- }
- Border* SelectionBox::getSelBorder() const // returns the selection border
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return selBorder ? dynamic_cast<Border*>(selBorder->getThis()) : 0;
- }
- Border* SelectionBox::zSelBorder() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return selBorder;
- }
- int SelectionBox::getAuswRahmenFarbe() const // returns the selection border color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return selBorder ? selBorder->getFarbe() : 0;
- }
- int SelectionBox::getAuswRahmenBreite()
- const // returns the selection border width
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return selBorder ? selBorder->getRBreite() : 0;
- }
- AlphaField*
- SelectionBox::getSelAlphaField() const // returns the selection AlphaField
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswAf ? dynamic_cast<AlphaField*>(auswAf->getThis()) : 0;
- }
- AlphaField* SelectionBox::zSelAlphaField() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswAf;
- }
- int SelectionBox::getAuswAlphaFeldFarbe()
- const // returns the selection AlphaField color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswAf ? auswAf->getFarbe() : 0;
- }
- int SelectionBox::getAuswAlphaFeldStrength()
- const // returns the selection AlphaField strength
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswAf ? auswAf->getStrength() : 0;
- }
- int SelectionBox::getAuswHintergrundFarbe()
- const // returns the selection background color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswBgF;
- }
- Image* SelectionBox::getAuswHintergrundImage()
- const // returns the selection background image
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswBgB ? dynamic_cast<Image*>(auswBgB->getThis()) : 0;
- }
- Image* SelectionBox::zAuswHintergrundImage() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return auswBgB;
- }
- Border* SelectionBox::getMsSelBorder(
- int i) const // returns the multistyle selection border
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msSelBorder) return 0;
- return msSelBorder->z(i)
- ? dynamic_cast<Border*>(msSelBorder->z(i)->getThis())
- : 0;
- }
- Border* SelectionBox::zMsSelBorder(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msSelBorder) return 0;
- return msSelBorder->z(i);
- }
- int SelectionBox::getMsAuswRahmenFarbe(
- int i) const // returns the multistyle selection border color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msSelBorder) return 0;
- return msSelBorder->z(i) ? msSelBorder->z(i)->getFarbe() : 0;
- }
- int SelectionBox::getMsAuswRahmenBreite(
- int i) const // returns the multistyle selection border width
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msSelBorder) return 0;
- return msSelBorder->z(i) ? msSelBorder->z(i)->getRBreite() : 0;
- }
- AlphaField* SelectionBox::getMsSelAlphaField(
- int i) const // returns the multistyle selection AlphaField
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswAf) return 0;
- return msAuswAf->z(i) ? dynamic_cast<AlphaField*>(msAuswAf->z(i)->getThis())
- : 0;
- }
- AlphaField* SelectionBox::zMsSelAlphaField(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswAf) return 0;
- return msAuswAf->z(i);
- }
- int SelectionBox::getMsAuswAlphaFeldFarbe(
- int i) const // returns the multistyle selection AlphaField color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswAf) return 0;
- return msAuswAf->z(i) ? msAuswAf->z(i)->getFarbe() : 0;
- }
- int SelectionBox::getMsAuswAlphaFeldStrength(
- int i) const // returns the multistyle selection AlphaField strength
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswAf) return 0;
- return msAuswAf->z(i) ? msAuswAf->z(i)->getStrength() : 0;
- }
- int SelectionBox::getMsAuswHintergrundFarbe(
- int i) const // returns the multistyle selection background color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswBgF || !msAuswBgF->hat(i)) return 0;
- return msAuswBgF->get(i);
- }
- Image* SelectionBox::getMsAuswHintergrundImage(
- int i) const // returns the multistyle selection background image
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswBgB) return 0;
- return msAuswBgB->get(i);
- }
- Image* SelectionBox::zMsAuswHintergrundImage(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msAuswBgB) return 0;
- return msAuswBgB->z(i);
- }
- Border* SelectionBox::getMouseBorder() const // returns the mouse border
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mouseBorder ? dynamic_cast<Border*>(mouseBorder->getThis()) : 0;
- }
- Border* SelectionBox::zMouseBorder() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mouseBorder;
- }
- int SelectionBox::getMausRahmenFarbe() const // returns the mouse border color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mouseBorder ? mouseBorder->getFarbe() : 0;
- }
- int SelectionBox::getMausRahmenBreite() const // returns the mouse border width
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mouseBorder ? mouseBorder->getRBreite() : 0;
- }
- AlphaField* SelectionBox::getMouseAlphaField() const // returns the mouse AlphaField
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausAf ? dynamic_cast<AlphaField*>(mausAf->getThis()) : 0;
- }
- AlphaField* SelectionBox::zMouseAlphaField() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausAf;
- }
- int SelectionBox::getMausAlphaFeldFarbe()
- const // returns the mouse AlphaField color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausAf ? mausAf->getFarbe() : 0;
- }
- int SelectionBox::getMausAlphaFeldStrength()
- const // returns the mouse AlphaField strength
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausAf ? mausAf->getStrength() : 0;
- }
- int SelectionBox::getMausHintergrundFarbe()
- const // returns the mouse background color
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausBgF;
- }
- Image* SelectionBox::getMausHintergrundImage()
- const // returns the mouse background image
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausBgB ? dynamic_cast<Image*>(mausBgB->getThis()) : 0;
- }
- Image* SelectionBox::zMausHintergrundImage() const
- {
- if (hatStyle(Style::MultiStyled)) return 0;
- return mausBgB;
- }
- Border* SelectionBox::getMsMouseBorder(
- int i) const // returns the multistyle mouse border
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMouseBorder) return 0;
- return msMouseBorder->get(i);
- }
- Border* SelectionBox::zMsMouseBorder(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMouseBorder) return 0;
- return msMouseBorder->z(i);
- }
- int SelectionBox::getMsMausRahmenFarbe(
- int i) const // returns the multistyle mouse border color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMouseBorder) return 0;
- return msMouseBorder->z(i) ? msMouseBorder->z(i)->getFarbe() : 0;
- }
- int SelectionBox::getMsMausRahmenBreite(
- int i) const // returns the multistyle mouse border width
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMouseBorder) return 0;
- return msMouseBorder->z(i) ? msMouseBorder->z(i)->getRBreite() : 0;
- }
- AlphaField* SelectionBox::getMsMouseAlphaField(
- int i) const // returns the multistyle mouse AlphaField
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausAf) return 0;
- return msMausAf->get(i);
- }
- AlphaField* SelectionBox::zMsMouseAlphaField(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausAf) return 0;
- return msMausAf->z(i);
- }
- int SelectionBox::getMsMausAlphaFeldFarbe(
- int i) const // returns the multistyle mouse AlphaField color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausAf) return 0;
- return msMausAf->z(i) ? msMausAf->z(i)->getFarbe() : 0;
- }
- int SelectionBox::getMsMausAlphaFeldStrength(
- int i) const // returns the multistyle mouse AlphaField strength
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausAf) return 0;
- return msMausAf->z(i) ? msMausAf->z(i)->getStrength() : 0;
- }
- int SelectionBox::getMsMausHintergrundFarbe(
- int i) const // returns the multistyle mouse background color
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausBgF || !msMausBgF->hat(i)) return 0;
- return msMausBgF->get(i);
- }
- Image* SelectionBox::getMsMausHintergrundImage(
- int i) const // returns the multistyle mouse background image
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausBgB) return 0;
- return msMausBgB->get(i);
- }
- Image* SelectionBox::zMsMausHintergrundImage(int i) const
- {
- if (!hatStyle(Style::MultiStyled)) return 0;
- if (!msMausBgB) return 0;
- return msMausBgB->z(i);
- }
- // Checks if a point is inside this object
- // x: the x coordinate of the point
- // y: the y coordinate of the point
- // return: 1 if the point is inside, 0 otherwise
- bool SelectionBox::istPunktInnen(int x, int y) const
- {
- return x >= pos.x && x < pos.x + gr.x && y >= pos.y
- && y < pos.y + gr.y + ausklappHeight;
- }
- bool SelectionBox::hatMsStyle(
- int i, __int64 abStyle) const // checks if multistyle style is present
- {
- if ((style | Style::MultiStyled) != style || !msStyle || !msStyle->hat(i))
- return 0;
- return (msStyle->get(i) | abStyle) == msStyle->get(i);
- }
- bool SelectionBox::hatMsStyleNicht(
- int i, __int64 abStyle) const // checks if multistyle style is not present
- {
- if ((style | Style::MultiStyled) != style || !msStyle || !msStyle->hat(i))
- return 1;
- return (msStyle->get(i) | abStyle) != msStyle->get(i);
- }
- Drawable* SelectionBox::dublizieren() const // Creates a copy of the drawing
- {
- SelectionBox* obj = new SelectionBox();
- obj->setPosition(pos);
- obj->setSize(gr);
- obj->setMouseEventParameter(makParam);
- obj->setKeyboardEventParameter(takParam);
- obj->setMouseEvent(mak);
- obj->setKeyboardEvent(tak);
- if (toolTip) obj->setToolTipZ((ToolTip*)toolTip->dublizieren());
- obj->setStyle(style);
- if (textRd)
- obj->setTextRendererZ(dynamic_cast<TextRenderer*>(textRd->getThis()));
- if (rahmen) obj->setBorderZ((Border*)rahmen->dublizieren());
- if (ausfahren) obj->setDropDownButtonZ((Button*)ausfahren->dublizieren());
- obj->setHintergrundFarbe(hintergrundFarbe);
- if (hintergrundImage)
- obj->setHintergrundImage(
- dynamic_cast<Image*>(hintergrundImage->getThis()));
- if (hintergrundFeld)
- obj->setAlphaFieldZ((AlphaField*)hintergrundFeld->dublizieren());
- if (selBorder) obj->setSelBorderZ((Border*)selBorder->dublizieren());
- obj->setAuswHintergrundFarbe(auswBgF);
- if (auswBgB)
- obj->setAuswHintergrundImage(dynamic_cast<Image*>(auswBgB->getThis()));
- if (auswAf) obj->setSelAlphaFieldZ((AlphaField*)auswAf->dublizieren());
- if (mouseBorder) obj->setMouseBorderZ((Border*)mouseBorder->dublizieren());
- obj->setMausHintergrundFarbe(mausBgF);
- if (mausBgB)
- obj->setMausHintergrundImage(dynamic_cast<Image*>(mausBgB->getThis()));
- if (mausAf) obj->setMouseAlphaFieldZ((AlphaField*)mausAf->dublizieren());
- obj->setMaxAuskappHeight(ausklapMaxHeight);
- obj->setEintragHeight(eintragHeight);
- for (int i = 0; i < anzahl; ++i)
- {
- if (members->z(i))
- {
- obj->addEintrag("a");
- obj->setEintragZ(i, (TextField*)members->z(i)->dublizieren());
- if (msStyle && msStyle->hat(i)) obj->setMsStyle(i, msStyle->get(i));
- if (msSelBorder && msSelBorder->z(i))
- obj->setMsSelBorderZ(
- i, (Border*)msSelBorder->z(i)->dublizieren());
- if (msAuswBgF && msAuswBgF->hat(i))
- obj->setMsAuswHintergrundFarbe(i, msAuswBgF->get(i));
- if (msAuswBgB && msAuswBgB->z(i))
- obj->setMsAuswHintergrundImage(i, msAuswBgB->get(i));
- if (msAuswAf && msAuswAf->z(i))
- obj->setMsSelAlphaFieldZ(
- i, (AlphaField*)msAuswAf->z(i)->dublizieren());
- if (msMouseBorder && msMouseBorder->z(i))
- obj->setMsMouseBorderZ(
- i, (Border*)msMouseBorder->z(i)->dublizieren());
- if (msMausBgF && msMausBgF->hat(i))
- obj->setMsMausHintergrundFarbe(i, msMausBgF->get(i));
- if (msMausBgB && msMausBgB->z(i))
- obj->setMsMausHintergrundImage(i, msMausBgB->get(i));
- if (msMausAf && msMausAf->z(i))
- obj->setMsMouseAlphaFieldZ(
- i, (AlphaField*)msMausAf->z(i)->dublizieren());
- }
- }
- obj->setAlphaFieldColor(auswahl);
- return obj;
- }
|