AuswahlBox.cpp 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199
  1. #include "AuswahlBox.h"
  2. #include "AlphaFeld.h"
  3. #include "Bild.h"
  4. #include "MausEreignis.h"
  5. #include "TastaturEreignis.h"
  6. #include "Rahmen.h"
  7. #include "Scroll.h"
  8. #include "TextFeld.h"
  9. #include "Knopf.h"
  10. #include "Text.h"
  11. #include "Schrift.h"
  12. #include "ToolTip.h"
  13. using namespace Framework;
  14. // Inhalt der AuswahlBox Klasse aus AuswahlBox.h
  15. // Konstruktor
  16. AuswahlBox::AuswahlBox()
  17. : ZeichnungHintergrund(),
  18. textRd( 0 ),
  19. msStyle( 0 ),
  20. members( new RCArray< TextFeld >() ),
  21. ausfahren( new Knopf() ),
  22. auswRahmen( new LRahmen() ),
  23. auswBgF( 0xFF000000 ),
  24. auswBgB( 0 ),
  25. auswAf( new AlphaFeld() ),
  26. msAuswRahmen( 0 ),
  27. msAuswBgF( 0 ),
  28. msAuswBgB( 0 ),
  29. msAuswAf( 0 ),
  30. mausRahmen( new LRahmen() ),
  31. mausBgF( 0xFF000000 ),
  32. mausBgB( 0 ),
  33. mausAf( new AlphaFeld() ),
  34. msMausRahmen( 0 ),
  35. msMausBgF( 0 ),
  36. msMausBgB( 0 ),
  37. msMausAf( 0 ),
  38. anzahl( 0 ),
  39. auswahl( 0 ),
  40. ausgeklappt( 0 ),
  41. ausklappHeight( 0 ),
  42. ausklapMaxHeight( 200 ),
  43. eintragHeight( 15 ),
  44. tickval( 0 ),
  45. mausEintrag( 0 ),
  46. scrollAnzeigen( 0 ),
  47. eAkP( 0 ),
  48. eAk( 0 )
  49. {
  50. vertikalScrollBar = new VScrollBar();
  51. style = Style::Normal;
  52. rahmen = new LRahmen();
  53. rahmen->setFarbe( 0xFFFFFFFF );
  54. rahmen->setRamenBreite( 1 );
  55. ausfahren->setStyle( Knopf::Style::Sichtbar | Knopf::Style::Erlaubt | Knopf::Style::KlickBuffer );
  56. ausfahren->setKBFarbe( 0xA0000000 );
  57. ausfahren->setKBStrength( 10 );
  58. ausfahren->setSize( 18, 18 );
  59. ausfahren->setSchriftFarbe( 0xFFFFFFFF );
  60. ausfahren->setText( "\\/" );
  61. auswRahmen->setFarbe( 0xFF00FF00 );
  62. auswRahmen->setRamenBreite( 1 );
  63. auswAf->setFarbe( 0xA000FF00 );
  64. auswAf->setStrength( 7 );
  65. mausRahmen->setFarbe( 0xFF00FF00 );
  66. mausRahmen->setRamenBreite( 1 );
  67. mausAf->setFarbe( 0x5000FF00 );
  68. mausAf->setStrength( 7 );
  69. gr.x = 20;
  70. gr.y = 20;
  71. }
  72. // Destruktor
  73. AuswahlBox::~AuswahlBox()
  74. {
  75. if( textRd )
  76. textRd->release();
  77. if( msStyle )
  78. msStyle->release();
  79. if( members )
  80. members->release();
  81. if( ausfahren )
  82. ausfahren->release();
  83. if( auswRahmen )
  84. auswRahmen->release();
  85. if( auswBgB )
  86. auswBgB->release();
  87. if( auswAf )
  88. auswAf->release();
  89. if( msAuswRahmen )
  90. msAuswRahmen->release();
  91. if( msAuswAf )
  92. msAuswAf->release();
  93. if( msAuswBgB )
  94. msAuswBgB->release();
  95. if( msAuswBgF )
  96. msAuswBgF->release();
  97. if( mausRahmen )
  98. mausRahmen->release();
  99. if( mausAf )
  100. mausAf->release();
  101. if( mausBgB )
  102. mausBgB->release();
  103. if( msMausRahmen )
  104. msMausRahmen->release();
  105. if( msMausAf )
  106. msMausAf->release();
  107. if( msMausBgB )
  108. msMausBgB->release();
  109. if( msMausBgF )
  110. msMausBgF->release();
  111. }
  112. // nicht constant
  113. void AuswahlBox::setEventParam( void *p ) // setzt den Event Parameter
  114. {
  115. eAkP = p;
  116. }
  117. void AuswahlBox::setEventAktion( std::function< void( void *, AuswahlBox *, int, int ) > event ) // setzt die Event Funktion
  118. {
  119. this->eAk = event;
  120. }
  121. void AuswahlBox::setSchriftZ( Schrift *schrift ) // setzt die schrift
  122. {
  123. if( !this->textRd )
  124. textRd = new TextRenderer( schrift );
  125. else
  126. textRd->setSchriftZ( schrift );
  127. ausfahren->setSchriftZ( schrift->getThis() );
  128. rend = 1;
  129. }
  130. void AuswahlBox::setTextRendererZ( TextRenderer *textRd )
  131. {
  132. if( this->textRd )
  133. this->textRd->release();
  134. this->textRd = textRd;
  135. }
  136. void AuswahlBox::addEintrag( const char *txt ) // Eintrag hinzufügen
  137. {
  138. TextFeld *tf = new TextFeld();
  139. if( textRd )
  140. tf->setSchriftZ( textRd->getSchrift() );
  141. tf->addStyle( TextFeld::Style::Sichtbar | TextFeld::Style::Center | TextFeld::Style::Rahmen );
  142. tf->setText( txt );
  143. tf->setSchriftFarbe( 0xFFFFFFFF );
  144. tf->setRahmenFarbe( 0xFFFFFFFF );
  145. tf->setSize( 0, eintragHeight );
  146. members->add( tf, anzahl );
  147. ++anzahl;
  148. rend = 1;
  149. }
  150. void AuswahlBox::addEintrag( Text *txt )
  151. {
  152. TextFeld *tf = new TextFeld();
  153. if( textRd )
  154. tf->setSchriftZ( textRd->getSchrift() );
  155. tf->addStyle( TextFeld::Style::Sichtbar | TextFeld::Style::Center | TextFeld::Style::Rahmen );
  156. tf->setText( txt );
  157. tf->setSchriftFarbe( 0xFFFFFFFF );
  158. tf->setRahmenFarbe( 0xFFFFFFFF );
  159. tf->setSize( 0, eintragHeight );
  160. members->add( tf, anzahl );
  161. ++anzahl;
  162. rend = 1;
  163. }
  164. void AuswahlBox::addEintragZ( TextFeld *txt )
  165. {
  166. members->add( txt, anzahl );
  167. ++anzahl;
  168. rend = 1;
  169. }
  170. void AuswahlBox::setEintrag( int i, const char *txt ) // Eintrag setzen
  171. {
  172. if( members->z( i ) )
  173. members->z( i )->setText( txt );
  174. rend = 1;
  175. }
  176. void AuswahlBox::setEintrag( int i, Text *txt )
  177. {
  178. if( members->z( i ) )
  179. members->z( i )->setText( txt );
  180. else
  181. txt->release();
  182. rend = 1;
  183. }
  184. void AuswahlBox::setEintragZ( int i, TextFeld *txt )
  185. {
  186. if( i < anzahl )
  187. members->set( txt, i );
  188. else
  189. txt->release();
  190. rend = 1;
  191. }
  192. void AuswahlBox::removeEintrag( int i ) // Eintrag entfernen
  193. {
  194. if( i < anzahl )
  195. {
  196. members->remove( i );
  197. if( msStyle )
  198. msStyle->remove( i );
  199. if( msAuswRahmen )
  200. msAuswRahmen->remove( i );
  201. if( msAuswBgF )
  202. msAuswBgF->remove( i );
  203. if( msAuswBgB )
  204. msAuswBgB->remove( i );
  205. if( msAuswAf )
  206. msAuswAf->remove( i );
  207. if( msMausRahmen )
  208. msMausRahmen->remove( i );
  209. if( msMausBgF )
  210. msMausBgF->remove( i );
  211. if( msMausBgB )
  212. msMausBgB->remove( i );
  213. if( msMausAf )
  214. msMausAf->remove( i );
  215. if( auswahl > i )
  216. --auswahl;
  217. if( mausEintrag > i )
  218. --mausEintrag;
  219. --anzahl;
  220. rend = 1;
  221. }
  222. }
  223. void AuswahlBox::setAusklappKnopfZ( Knopf *ausK ) // Ausklapp Knopf setzen
  224. {
  225. if( ausfahren )
  226. ausfahren->release();
  227. ausfahren = ausK;
  228. rend = 1;
  229. }
  230. void AuswahlBox::setEintragRahmenZ( int i, Rahmen *rahmen ) // Eintrag Rahmen setzen
  231. {
  232. if( members->z( i ) )
  233. members->z( i )->setRahmenZ( rahmen );
  234. else
  235. rahmen->release();
  236. rend = 1;
  237. }
  238. void AuswahlBox::setEintragRahmenFarbe( int i, int f ) // Eintrag Rahmen Farbe setzen
  239. {
  240. if( members->z( i ) )
  241. members->z( i )->setRahmenFarbe( f );
  242. rend = 1;
  243. }
  244. void AuswahlBox::setEintragRahmenBreite( int i, int rbr ) // Eintrag Rahmen Breite setzen
  245. {
  246. if( members->z( i ) )
  247. members->z( i )->setRahmenBreite( rbr );
  248. rend = 1;
  249. }
  250. void AuswahlBox::setEintragHintergrundFarbe( int i, int f ) // Eintrag Hintergrund farbe setzen
  251. {
  252. if( members->z( i ) )
  253. members->z( i )->setHintergrundFarbe( f );
  254. rend = 1;
  255. }
  256. void AuswahlBox::setEintragHintergrundBildZ( int i, Bild *bgB ) // Eintrag Hintergrund Bild setzen
  257. {
  258. if( members->z( i ) )
  259. members->z( i )->setHintergrundBildZ( bgB );
  260. else
  261. bgB->release();
  262. rend = 1;
  263. }
  264. void AuswahlBox::setEintragHintergrundBild( int i, Bild *bgB )
  265. {
  266. if( members->z( i ) )
  267. members->z( i )->setHintergrundBild( bgB );
  268. else
  269. bgB->release();
  270. rend = 1;
  271. }
  272. void AuswahlBox::setEintragAlphaFeldZ( int i, AlphaFeld *af ) // Eintrag AlphaFeld setzen
  273. {
  274. if( members->z( i ) )
  275. members->z( i )->setAlphaFeldZ( af );
  276. rend = 1;
  277. }
  278. void AuswahlBox::setEintragAlphaFeldFarbe( int i, int afF ) // Eintrag AlphaFeld Farbe setzen
  279. {
  280. if( members->z( i ) )
  281. members->z( i )->setAlphaFeldFarbe( afF );
  282. rend = 1;
  283. }
  284. void AuswahlBox::setEintragAlphaFeldStrength( int i, int afSt ) // Eintrag AlphaFeld Stärke setzen
  285. {
  286. if( members->z( i ) )
  287. members->z( i )->setAlphaFeldStrength( afSt );
  288. rend = 1;
  289. }
  290. void AuswahlBox::setAuswRahmenZ( Rahmen *rahmen ) // Auswahl Rahmen setzen
  291. {
  292. if( auswRahmen )
  293. auswRahmen->release();
  294. auswRahmen = rahmen;
  295. rend = 1;
  296. }
  297. void AuswahlBox::setAuswRahmenFarbe( int f ) // Auswahl Rahmen Farbe setzen
  298. {
  299. if( !auswRahmen )
  300. auswRahmen = new LRahmen();
  301. auswRahmen->setFarbe( f );
  302. rend = 1;
  303. }
  304. void AuswahlBox::setAuswRahmenBreite( int rbr ) // Auswahl Rahmen Breite setzen
  305. {
  306. if( !auswRahmen )
  307. auswRahmen = new LRahmen();
  308. auswRahmen->setRamenBreite( rbr );
  309. rend = 1;
  310. }
  311. void AuswahlBox::setAuswHintergrundFarbe( int f ) // Auswahl Hintergrund Farbe setzen
  312. {
  313. auswBgF = f;
  314. rend = 1;
  315. }
  316. void AuswahlBox::setAuswHintergrundBildZ( Bild *bgB ) // Auswahl Hintergrund Bild setzen
  317. {
  318. if( auswBgB )
  319. auswBgB->release();
  320. auswBgB = bgB;
  321. rend = 1;
  322. }
  323. void AuswahlBox::setAuswHintergrundBild( Bild *bgB )
  324. {
  325. if( !auswBgB )
  326. auswBgB = new Bild();
  327. auswBgB->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  328. auswBgB->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  329. bgB->release();
  330. rend = 1;
  331. }
  332. void AuswahlBox::setAuswAlphaFeldZ( AlphaFeld *af ) // Auswahl AlphaFeld setzen
  333. {
  334. if( auswAf )
  335. auswAf->release();
  336. auswAf = af;
  337. rend = 1;
  338. }
  339. void AuswahlBox::setAuswAlphaFeldFarbe( int afF ) // Auswahl AlphaFeld Farbe setzen
  340. {
  341. if( !auswAf )
  342. auswAf = new AlphaFeld();
  343. auswAf->setFarbe( afF );
  344. rend = 1;
  345. }
  346. void AuswahlBox::setAuswAlphaFeldStrength( int afSt ) // Auswahl Alpha Feld stärke setzen
  347. {
  348. if( !auswAf )
  349. auswAf = new AlphaFeld();
  350. auswAf->setStrength( afSt );
  351. rend = 1;
  352. }
  353. void AuswahlBox::setMsAuswRahmenZ( int i, Rahmen *rahmen ) // Multistyle Auswahl Rahmen setzen
  354. {
  355. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  356. {
  357. rahmen->release();
  358. return;
  359. }
  360. if( !msAuswRahmen )
  361. msAuswRahmen = new RCArray< Rahmen >();
  362. msAuswRahmen->set( rahmen, i );
  363. rend = 1;
  364. }
  365. void AuswahlBox::setMsAuswRahmenFarbe( int i, int f ) // Multistyle Auswahl Rahmen Farbe setzen
  366. {
  367. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  368. return;
  369. if( !msAuswRahmen )
  370. msAuswRahmen = new RCArray< Rahmen >();
  371. if( !msAuswRahmen->z( i ) )
  372. msAuswRahmen->set( new LRahmen(), i );
  373. msAuswRahmen->z( i )->setFarbe( f );
  374. rend = 1;
  375. }
  376. void AuswahlBox::setMsAuswRahmenBreite( int i, int rbr ) // Multistyle Auswahl Breite setzen
  377. {
  378. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  379. return;
  380. if( !msAuswRahmen )
  381. msAuswRahmen = new RCArray< Rahmen >();
  382. if( !msAuswRahmen->z( i ) )
  383. msAuswRahmen->set( new LRahmen(), i );
  384. msAuswRahmen->z( i )->setRamenBreite( rbr );
  385. rend = 1;
  386. }
  387. void AuswahlBox::setMsAuswHintergrundFarbe( int i, int f ) // Multistyle Auswahl Hintergrund Farbe setzen
  388. {
  389. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  390. return;
  391. if( !msAuswBgF )
  392. msAuswBgF = new Array< int >();
  393. msAuswBgF->set( f, i );
  394. rend = 1;
  395. }
  396. void AuswahlBox::setMsAuswHintergrundBildZ( int i, Bild *bgB ) // Multistyle Auswahl Hintergrund Bild setzen
  397. {
  398. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  399. {
  400. bgB->release();
  401. return;
  402. }
  403. if( !msAuswBgB )
  404. msAuswBgB = new RCArray< Bild >();
  405. msAuswBgB->set( bgB, i );
  406. rend = 1;
  407. }
  408. void AuswahlBox::setMsAuswHintergrundBild( int i, Bild *bgB )
  409. {
  410. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  411. {
  412. bgB->release();
  413. return;
  414. }
  415. if( !msAuswBgB )
  416. msAuswBgB = new RCArray< Bild >();
  417. if( !msAuswBgB->z( i ) )
  418. {
  419. Bild *z = new Bild;
  420. z->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  421. z->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  422. msAuswBgB->set( z, i );
  423. }
  424. else
  425. {
  426. msAuswBgB->z( i )->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  427. msAuswBgB->z( i )->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  428. }
  429. bgB->release();
  430. rend = 1;
  431. }
  432. void AuswahlBox::setMsAuswAlphaFeldZ( int i, AlphaFeld *af ) // Multistyle Auswahl AlphaFeld setzen
  433. {
  434. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  435. {
  436. af->release();
  437. return;
  438. }
  439. if( !msAuswAf )
  440. msAuswAf = new RCArray< AlphaFeld >();
  441. msAuswAf->set( af, i );
  442. rend = 1;
  443. }
  444. void AuswahlBox::setMsAuswAlphaFeldFarbe( int i, int afF ) // Multistyle Auswahl AlphaFeld Farbe setzen
  445. {
  446. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  447. return;
  448. if( !msAuswAf )
  449. msAuswAf = new RCArray< AlphaFeld >();
  450. if( !msAuswAf->z( i ) )
  451. msAuswAf->set( new AlphaFeld(), i );
  452. msAuswAf->z( i )->setFarbe( afF );
  453. rend = 1;
  454. }
  455. void AuswahlBox::setMsAuswAlphaFeldStrength( int i, int afSt ) // Multistyle Auswahl AlphaFeld stärke setzen
  456. {
  457. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  458. return;
  459. if( !msAuswAf )
  460. msAuswAf = new RCArray< AlphaFeld >();
  461. if( !msAuswAf->z( i ) )
  462. msAuswAf->set( new AlphaFeld(), i );
  463. msAuswAf->z( i )->setStrength( afSt );
  464. rend = 1;
  465. }
  466. void AuswahlBox::setMausRahmenZ( Rahmen *rahmen ) // Maus Rahmen setzen
  467. {
  468. if( mausRahmen )
  469. mausRahmen->release();
  470. mausRahmen = rahmen;
  471. rend = 1;
  472. }
  473. void AuswahlBox::setMausRahmenFarbe( int f ) // Maus Rahmen Farbe setzen
  474. {
  475. if( !mausRahmen )
  476. mausRahmen = new LRahmen();
  477. mausRahmen->setFarbe( f );
  478. rend = 1;
  479. }
  480. void AuswahlBox::setMausRahmenBreite( int rbr ) // Maus Rahmen breite setzen
  481. {
  482. if( !mausRahmen )
  483. mausRahmen = new LRahmen();
  484. mausRahmen->setRamenBreite( rbr );
  485. rend = 1;
  486. }
  487. void AuswahlBox::setMausHintergrundFarbe( int f ) // Maus Hintergrund Farbe setzen
  488. {
  489. mausBgF = f;
  490. rend = 1;
  491. }
  492. void AuswahlBox::setMausHintergrundBildZ( Bild *bgB ) // Maus Hintergrund Bild setzen
  493. {
  494. if( mausBgB )
  495. mausBgB->release();
  496. mausBgB = bgB;
  497. rend = 1;
  498. }
  499. void AuswahlBox::setMausHintergrundBild( Bild *bgB )
  500. {
  501. if( !mausBgB )
  502. mausBgB = new Bild();
  503. mausBgB->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  504. mausBgB->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  505. bgB->release();
  506. rend = 1;
  507. }
  508. void AuswahlBox::setMausAlphaFeldZ( AlphaFeld *af ) // Maus AlphaFeld setzen
  509. {
  510. if( mausAf )
  511. mausAf->release();
  512. mausAf = af;
  513. rend = 1;
  514. }
  515. void AuswahlBox::setMausAlphaFeldFarbe( int afF ) // Maus AlphaFeld Farbe setzen
  516. {
  517. if( !mausAf )
  518. mausAf = new AlphaFeld();
  519. mausAf->setFarbe( afF );
  520. rend = 1;
  521. }
  522. void AuswahlBox::setMausAlphaFeldStrength( int afSt ) // Maus AlphaFeld stärke setzen
  523. {
  524. if( !mausAf )
  525. mausAf = new AlphaFeld();
  526. mausAf->setStrength( afSt );
  527. rend = 1;
  528. }
  529. void AuswahlBox::setMsMausRahmenZ( int i, Rahmen *rahmen ) // Multistyle Maus Rahmen setzen
  530. {
  531. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  532. {
  533. rahmen->release();
  534. return;
  535. }
  536. if( !msMausRahmen )
  537. msMausRahmen = new RCArray< Rahmen >();
  538. msMausRahmen->set( rahmen, i );
  539. rend = 1;
  540. }
  541. void AuswahlBox::setMsMausRahmenFarbe( int i, int f ) // Multistyle Maus Rahmen Farbe setzen
  542. {
  543. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  544. return;
  545. if( !msMausRahmen )
  546. msMausRahmen = new RCArray< Rahmen >();
  547. if( !msMausRahmen->z( i ) )
  548. msMausRahmen->set( new LRahmen(), i );
  549. msMausRahmen->z( i )->setFarbe( f );
  550. rend = 1;
  551. }
  552. void AuswahlBox::setMsMausRahmenBreite( int i, int rbr ) // Multistyle Maus Rahmen breite setzen
  553. {
  554. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  555. return;
  556. if( !msMausRahmen )
  557. msMausRahmen = new RCArray< Rahmen >();
  558. if( !msMausRahmen->z( i ) )
  559. msMausRahmen->set( new LRahmen(), i );
  560. msMausRahmen->z( i )->setRamenBreite( rbr );
  561. rend = 1;
  562. }
  563. void AuswahlBox::setMsMausHintergrundFarbe( int i, int f ) // Multistyle Maus Hintergrund Farbe setzen
  564. {
  565. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  566. return;
  567. if( !msMausBgF )
  568. msMausBgF = new Array< int >();
  569. msMausBgF->set( f, i );
  570. rend = 1;
  571. }
  572. void AuswahlBox::setMsMausHintergrundBildZ( int i, Bild *bgB ) // Multistyle Maus Hintergrund Bild setzen
  573. {
  574. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  575. {
  576. bgB->release();
  577. return;
  578. }
  579. if( !msMausBgB )
  580. msMausBgB = new RCArray< Bild >();
  581. msMausBgB->set( bgB, i );
  582. rend = 1;
  583. }
  584. void AuswahlBox::setMsMausHintergrundBild( int i, Bild *bgB )
  585. {
  586. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  587. {
  588. bgB->release();
  589. return;
  590. }
  591. if( !msMausBgB )
  592. msMausBgB = new RCArray< Bild >();
  593. if( !msMausBgB->z( i ) )
  594. {
  595. Bild *z = new Bild;
  596. z->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  597. z->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  598. msMausBgB->set( z, i );
  599. }
  600. else
  601. {
  602. msMausBgB->z( i )->neuBild( bgB->getBreite(), bgB->getHeight(), 0 );
  603. msMausBgB->z( i )->drawBild( 0, 0, bgB->getBreite(), bgB->getHeight(), *bgB );
  604. }
  605. bgB->release();
  606. rend = 1;
  607. }
  608. void AuswahlBox::setMsMausAlphaFeldZ( int i, AlphaFeld *af ) // Multistyle Maus AlphaFeld setzen
  609. {
  610. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  611. {
  612. af->release();
  613. return;
  614. }
  615. if( !msMausAf )
  616. msMausAf = new RCArray< AlphaFeld >();
  617. msMausAf->set( af, i );
  618. rend = 1;
  619. }
  620. void AuswahlBox::setMsMausAlphaFeldFarbe( int i, int afF ) // Multistyle Maus AlphaFeld Farbe setzen
  621. {
  622. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  623. return;
  624. if( !msMausAf )
  625. msMausAf = new RCArray< AlphaFeld >();
  626. if( !msMausAf->z( i ) )
  627. msMausAf->set( new AlphaFeld(), i );
  628. msMausAf->z( i )->setFarbe( afF );
  629. rend = 1;
  630. }
  631. void AuswahlBox::setMsMausAlphaFeldStrength( int i, int afSt ) // Multistyle Maus AlphaFeld stärke setzen
  632. {
  633. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  634. return;
  635. if( !msMausAf )
  636. msMausAf = new RCArray< AlphaFeld >();
  637. if( !msMausAf->z( i ) )
  638. msMausAf->set( new AlphaFeld(), i );
  639. msMausAf->z( i )->setStrength( afSt );
  640. rend = 1;
  641. }
  642. void AuswahlBox::setAuswahl( int i ) // Eintrag auswählen
  643. {
  644. if( i < anzahl && i != auswahl )
  645. {
  646. auswahl = i;
  647. if( eAk )
  648. eAk( eAkP, this, 0, auswahl );
  649. rend = 1;
  650. }
  651. }
  652. void AuswahlBox::ausklappen() // liste ausklappen
  653. {
  654. ausgeklappt = 1;
  655. }
  656. void AuswahlBox::einklappen() // liste einklappen
  657. {
  658. ausgeklappt = 0;
  659. }
  660. void AuswahlBox::scrollZuEintrag( int i ) // liste scrollen
  661. {
  662. if( hatStyle( Style::VScroll ) && vertikalScrollBar && i < anzahl )
  663. {
  664. int scrollPos = 0;
  665. if( hatStyle( Style::MultiStyled ) )
  666. {
  667. for( int j = 0; j < i; ++j )
  668. scrollPos += members->z( j ) ? members->z( j )->getHeight() : 0;
  669. }
  670. else
  671. scrollPos += i * eintragHeight;
  672. vertikalScrollBar->scroll( scrollPos );
  673. rend = 1;
  674. }
  675. }
  676. void AuswahlBox::setMaxAuskappHeight( int maxHeight ) // höhe der Liste beim ausklappen
  677. {
  678. ausklapMaxHeight = maxHeight;
  679. }
  680. void AuswahlBox::setEintragHeight( int height ) // setzt die Höhe der Einträge
  681. {
  682. eintragHeight = height;
  683. }
  684. void AuswahlBox::addMsStyle( int i, __int64 abStyle ) // Multistyle style hinzufügen
  685. {
  686. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  687. return;
  688. if( !msStyle )
  689. msStyle = new Array< __int64 >();
  690. msStyle->set( msStyle->get( i ) | abStyle, i );
  691. rend = 1;
  692. }
  693. void AuswahlBox::setMsStyle( int i, __int64 abStyle, bool add ) // Multistyle style setzen
  694. {
  695. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  696. return;
  697. if( !msStyle )
  698. msStyle = new Array< __int64 >();
  699. if( add )
  700. msStyle->set( msStyle->get( i ) | abStyle, i );
  701. else
  702. msStyle->set( msStyle->get( i ) & ~abStyle, i );
  703. rend = 1;
  704. }
  705. void AuswahlBox::setMsStyle( int i, __int64 abStyle )
  706. {
  707. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  708. return;
  709. if( !msStyle )
  710. msStyle = new Array< __int64 >();
  711. msStyle->set( abStyle, i );
  712. rend = 1;
  713. }
  714. void AuswahlBox::removeMsStyle( int i, __int64 abStyle ) // Multistyle style entfernen
  715. {
  716. if( hatStyleNicht( Style::MultiStyled ) || i >= anzahl )
  717. return;
  718. if( !msStyle )
  719. msStyle = new Array< __int64 >();
  720. msStyle->set( msStyle->get( i ) & ~abStyle, i );
  721. rend = 1;
  722. }
  723. bool AuswahlBox::tick( double tickVal ) // tick
  724. {
  725. if( ausgeklappt && ausfahren && !ausfahren->zText()->istGleich( "/\\" ) )
  726. {
  727. ausfahren->setText( "/\\" );
  728. rend = 1;
  729. }
  730. else if( !ausgeklappt && ausfahren && !ausfahren->zText()->istGleich( "\\/" ) )
  731. {
  732. ausfahren->setText( "\\/" );
  733. rend = 1;
  734. }
  735. if( hatStyleNicht( Style::Sichtbar ) || hatStyleNicht( Style::Erlaubt ) )
  736. ausgeklappt = 0;
  737. rend |= ausfahren->tick( tickVal );
  738. this->tickval += tickVal * 300;
  739. int val = (int)this->tickval;
  740. if( val < 1 )
  741. return ZeichnungHintergrund::tick( tickVal );
  742. this->tickval -= val;
  743. int maxHeight = rahmen ? rahmen->getRBreite() : 0;
  744. if( hatStyleNicht( Style::MultiStyled ) )
  745. maxHeight += anzahl * eintragHeight;
  746. else
  747. for( int i = 0; i < anzahl; ++i )
  748. maxHeight += members->z( i ) ? members->z( i )->getHeight() : 0;
  749. if( maxHeight > ausklapMaxHeight )
  750. {
  751. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  752. {
  753. scrollAnzeigen = 1;
  754. vertikalScrollBar->update( maxHeight, ausklapMaxHeight );
  755. }
  756. maxHeight = ausklapMaxHeight;
  757. }
  758. else
  759. scrollAnzeigen = 0;
  760. if( ausgeklappt )
  761. {
  762. if( ausklappHeight < maxHeight )
  763. {
  764. ausklappHeight += val;
  765. if( ausklappHeight > maxHeight )
  766. ausklappHeight = maxHeight;
  767. rend = 1;
  768. }
  769. }
  770. else
  771. {
  772. if( ausklappHeight > 0 )
  773. {
  774. ausklappHeight -= val;
  775. if( ausklappHeight < 0 )
  776. ausklappHeight = 0;
  777. rend = 1;
  778. }
  779. }
  780. for( int i = 0; i < anzahl; ++i )
  781. {
  782. if( i != auswahl )
  783. rend |= members->z( i )->tick( tickVal );
  784. else
  785. members->z( i )->tick( tickVal );
  786. }
  787. return ZeichnungHintergrund::tick( tickVal );
  788. }
  789. void AuswahlBox::doMausEreignis( MausEreignis &me ) // Maus
  790. {
  791. mausEintrag = -1;
  792. if( hatStyleNicht( Style::Sichtbar ) || hatStyleNicht( Style::Erlaubt ) )
  793. {
  794. if( toolTip )
  795. toolTip->setMausIn( 0 );
  796. ausgeklappt = 0;
  797. return;
  798. }
  799. bool removeFokus = 0;
  800. bool nmakc = me.verarbeitet == 0;
  801. if( me.verarbeitet || !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y + ausklappHeight ) )
  802. {
  803. if( mausIn )
  804. {
  805. if( toolTip )
  806. toolTip->setMausIn( 0 );
  807. mausIn = 0;
  808. MausEreignis me2;
  809. me2.id = ME_Leaves;
  810. me2.mx = me.mx;
  811. me2.my = me.my;
  812. me2.verarbeitet = 0;
  813. doMausEreignis( me2 );
  814. return;
  815. }
  816. removeFokus = 1;
  817. }
  818. if( !( me.mx >= pos.x && me.mx <= pos.x + gr.x && me.my >= pos.y && me.my <= pos.y + gr.y + ausklappHeight ) && me.id != ME_Leaves )
  819. {
  820. if( removeFokus && me.id == ME_RLinks )
  821. {
  822. if( mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  823. removeStyle( Style::Fokus );
  824. ausgeklappt = 0;
  825. me.mx -= pos.x, me.my -= pos.y;
  826. if( nmakc && me.verarbeitet && nMak )
  827. me.verarbeitet = nMak( nmakParam, this, me );
  828. me.mx += pos.x, me.my += pos.y;
  829. }
  830. if( toolTip )
  831. toolTip->setMausIn( 0 );
  832. return;
  833. }
  834. if( !mausIn && me.id != ME_Leaves )
  835. {
  836. mausIn = 1;
  837. if( toolTip )
  838. toolTip->setMausIn( 1 );
  839. MausEreignis me2;
  840. me2.id = ME_Betritt;
  841. me2.mx = me.mx;
  842. me2.my = me.my;
  843. me2.verarbeitet = 0;
  844. doMausEreignis( me2 );
  845. }
  846. me.mx -= pos.x, me.my -= pos.y;
  847. if( mak && ( me.verarbeitet || mak( makParam, this, me ) ) )
  848. {
  849. bool vera = me.verarbeitet;
  850. if( ausfahren )
  851. {
  852. int tmpMx = me.mx;
  853. int tmpMy = me.my;
  854. if( me.mx > 0 && me.my > 0 && me.mx < gr.x && me.my < gr.y )
  855. me.mx = ausfahren->getX() + 1, me.my = ausfahren->getY() + 1;
  856. else
  857. me.mx = ausfahren->getX() - 1, me.my = ausfahren->getY() - 1;
  858. ausfahren->doMausEreignis( me );
  859. me.mx = tmpMx, me.my = tmpMy;
  860. }
  861. if( me.verarbeitet && !vera && me.id == ME_RLinks )
  862. {
  863. ausgeklappt = !ausgeklappt;
  864. if( ausgeklappt )
  865. mausEintrag = auswahl;
  866. if( scrollAnzeigen )
  867. scrollZuEintrag( mausEintrag );
  868. }
  869. if( removeFokus && me.id == ME_RLinks )
  870. removeStyle( Style::Fokus );
  871. if( !me.verarbeitet && hatStyleNicht( Style::Fokus ) && me.id == ME_RLinks )
  872. addStyle( Style::Fokus );
  873. if( hatStyle( Style::VScroll ) && vertikalScrollBar && ausgeklappt && scrollAnzeigen )
  874. {
  875. int rbr = 0;
  876. if( rahmen && hatStyle( Style::Rahmen ) )
  877. rbr = rahmen->getRBreite();
  878. if( ( ( me.mx > gr.x - 15 - rbr && me.my > gr.y ) || me.id == ME_UScroll || me.id == ME_DScroll ) && me.id != ME_Betritt && me.id != ME_Leaves )
  879. {
  880. vertikalScrollBar->doMausMessage( gr.x - rbr - 15, gr.y, 15, vertikalScrollBar->getScrollData()->anzeige, me );
  881. me.verarbeitet = 1;
  882. }
  883. }
  884. if( !me.verarbeitet )
  885. {
  886. int eintr = -1;
  887. int tmp = me.my - gr.y + ( vertikalScrollBar ? vertikalScrollBar->getScroll() : 0 );
  888. if( hatStyle( Style::MultiStyled ) )
  889. {
  890. for( int i = 0; i < anzahl; ++i )
  891. {
  892. if( tmp > 0 && tmp < ( members->z( i ) ? members->z( i )->getHeight() : 0 ) )
  893. {
  894. eintr = i;
  895. break;
  896. }
  897. tmp -= members->z( i ) ? members->z( i )->getHeight() : 0;
  898. }
  899. }
  900. else
  901. {
  902. for( int i = 0; i < anzahl; ++i )
  903. {
  904. if( tmp > 0 && tmp < eintragHeight )
  905. {
  906. eintr = i;
  907. break;
  908. }
  909. tmp -= eintragHeight;
  910. }
  911. }
  912. if( ausgeklappt && me.mx > 0 && me.mx < gr.x && me.my > gr.y && me.my < gr.y + ausklappHeight )
  913. {
  914. if( eintr >= 0 )
  915. {
  916. if( me.id == ME_RLinks )
  917. {
  918. if( auswahl != eintr )
  919. rend = 1;
  920. auswahl = eintr;
  921. if( eAk )
  922. eAk( eAkP, this, 0, auswahl );
  923. }
  924. if( mausEintrag != eintr )
  925. rend = 1;
  926. mausEintrag = eintr;
  927. }
  928. }
  929. }
  930. me.verarbeitet = 1;
  931. }
  932. if( nmakc && me.verarbeitet && nMak )
  933. me.verarbeitet = nMak( nmakParam, this, me );
  934. me.mx += pos.x, me.my += pos.y;
  935. }
  936. void AuswahlBox::doTastaturEreignis( TastaturEreignis &te ) // Tastatur
  937. {
  938. if( te.verarbeitet || hatStyleNicht( Style::Fokus ) || hatStyleNicht( Style::Erlaubt ) )
  939. return;
  940. if( te.id == TE_Release )
  941. {
  942. switch( te.taste )
  943. {
  944. case T_Oben:
  945. if( auswahl > 0 )
  946. --auswahl;
  947. else
  948. auswahl = anzahl - 1;
  949. if( eAk )
  950. eAk( eAkP, this, 0, auswahl );
  951. scrollZuEintrag( auswahl );
  952. rend = 1;
  953. break;
  954. case T_Unten:
  955. if( auswahl < anzahl - 1 )
  956. ++auswahl;
  957. else
  958. auswahl = 0;
  959. if( eAk )
  960. eAk( eAkP, this, 0, auswahl );
  961. scrollZuEintrag( auswahl );
  962. rend = 1;
  963. break;
  964. }
  965. }
  966. if( te.verarbeitet && nTak )
  967. te.verarbeitet = nTak( ntakParam, this, te );
  968. }
  969. void AuswahlBox::render( Bild &zRObj ) // zeichnet nach zRObj
  970. {
  971. if( hatStyle( Style::Sichtbar ) )
  972. {
  973. lockZeichnung();
  974. int br = gr.x;
  975. int hi = gr.y + ausklappHeight;
  976. if( ( ausklappHeight && !zRObj.setDrawOptionsErzwingen( pos.x, pos.y, br, hi ) ) || ( !ausklappHeight && !zRObj.setDrawOptions( pos.x, pos.y, br, hi ) ) )
  977. {
  978. unlockZeichnung();
  979. return;
  980. }
  981. int rbr = 0;
  982. if( hatStyle( Style::Rahmen ) && rahmen ) // Rahmen zeichnen
  983. {
  984. rahmen->setSize( br, hi );
  985. rahmen->render( zRObj );
  986. rbr = rahmen->getRBreite();
  987. }
  988. if( ( ausklappHeight && !zRObj.setDrawOptionsErzwingen( rbr, rbr, br - rbr * 2, hi - rbr * 2 ) ) || ( !ausklappHeight && !zRObj.setDrawOptions( rbr, rbr, br - rbr * 2, hi - rbr * 2 ) ) )
  989. {
  990. zRObj.releaseDrawOptions();
  991. unlockZeichnung();
  992. return;
  993. }
  994. if( hatStyle( Style::Hintergrund ) )
  995. {
  996. if( hatStyle( Style::HAlpha ) )
  997. zRObj.alphaRegion( 0, 0, br, hi, hintergrundFarbe );
  998. else
  999. zRObj.fillRegion( 0, 0, br, hi, hintergrundFarbe );
  1000. if( hatStyle( Style::HBild ) && hintergrundBild )
  1001. {
  1002. if( hatStyle( Style::HAlpha ) )
  1003. zRObj.alphaBild( 0, 0, br, hi, *hintergrundBild );
  1004. else
  1005. zRObj.drawBild( 0, 0, br, hi, *hintergrundBild );
  1006. }
  1007. }
  1008. if( hatStyle( Style::Buffered ) && hintergrundFeld )
  1009. {
  1010. hintergrundFeld->setSize( br - rbr * 2, hi - rbr * 2 );
  1011. hintergrundFeld->render( zRObj );
  1012. }
  1013. if( ausfahren ) // Ausklapp Knopf zeichnen
  1014. {
  1015. ausfahren->setSize( gr.y - rbr * 2, gr.y - rbr * 2 );
  1016. ausfahren->setPosition( gr.x - rbr - ausfahren->getBreite(), rbr );
  1017. ausfahren->render( zRObj );
  1018. }
  1019. if( members ) // Ausgewähtes TextFeld zeichnen
  1020. {
  1021. if( auswahl < 0 )
  1022. {
  1023. auswahl = 0;
  1024. if( eAk )
  1025. eAk( eAkP, this, 0, auswahl );
  1026. }
  1027. if( auswahl >= anzahl )
  1028. {
  1029. auswahl = anzahl - 1;
  1030. if( eAk )
  1031. eAk( eAkP, this, 0, auswahl );
  1032. }
  1033. TextFeld *tf = auswahl >= 0 ? members->z( auswahl ) : 0;
  1034. if( tf )
  1035. {
  1036. AlphaFeld *tmpBuffer = 0;
  1037. bool tmpB = 0;
  1038. int tmpHFarbe = 0;
  1039. bool tmpH = 0;
  1040. Bild *tmpHBild = 0;
  1041. bool tmpHB = 0;
  1042. bool tmpHAlpha = 0;
  1043. Rahmen *tmpRahmen = 0;
  1044. bool tmpR = 0;
  1045. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1046. {
  1047. if( hatStyle( Style::AuswahlBuffer ) )
  1048. {
  1049. tmpBuffer = tf->getAlphaFeld();
  1050. tf->setAlphaFeldZ( (AlphaFeld*)auswAf->getThis() );
  1051. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1052. tf->setStyle( TextFeld::Style::Buffered, hatStyle( Style::AuswahlBuffer ) );
  1053. }
  1054. if( hatStyle( Style::AuswahlHintergrund ) )
  1055. {
  1056. tmpH = tf->hatStyle( TextFeld::Style::Hintergrund );
  1057. tmpHFarbe = tf->getHintergrundFarbe();
  1058. tf->setHintergrundFarbe( auswBgF );
  1059. tf->setStyle( TextFeld::Style::Hintergrund, hatStyle( Style::Hintergrund ) );
  1060. if( hatStyle( Style::AuswahlHBild ) )
  1061. {
  1062. tmpHBild = tf->getHintergrundBild();
  1063. tf->setHintergrundBildZ( auswBgB->getThis() );
  1064. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1065. tf->setStyle( TextFeld::Style::HBild, hatStyle( Style::HBild ) );
  1066. }
  1067. if( hatStyle( Style::AuswahlHAlpha ) )
  1068. {
  1069. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1070. tf->setStyle( TextFeld::Style::HAlpha, hatStyle( Style::AuswahlHAlpha ) );
  1071. }
  1072. }
  1073. if( hatStyle( Style::AuswahlRahmen ) )
  1074. {
  1075. tmpRahmen = tf->getRahmen();
  1076. tf->setRahmenZ( (Rahmen*)auswRahmen->getThis() );
  1077. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1078. tf->setStyle( TextFeld::Style::Rahmen, hatStyle( Style::AuswahlRahmen ) );
  1079. }
  1080. }
  1081. else
  1082. {
  1083. if( hatMsStyle( auswahl, Style::AuswahlBuffer ) && msAuswAf )
  1084. {
  1085. tmpBuffer = tf->getAlphaFeld();
  1086. tf->setAlphaFeldZ( msAuswAf->get( auswahl ) );
  1087. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1088. tf->setStyle( TextFeld::Style::Buffered, hatMsStyle( auswahl, Style::AuswahlBuffer ) );
  1089. }
  1090. if( hatMsStyle( auswahl, Style::AuswahlHintergrund ) )
  1091. {
  1092. tmpH = tf->hatStyle( Style::Hintergrund );
  1093. tf->setStyle( TextFeld::Style::Hintergrund, hatMsStyle( auswahl, Style::AuswahlHintergrund ) );
  1094. if( msAuswBgF && msAuswBgF->hat( auswahl ) )
  1095. {
  1096. tmpHFarbe = tf->getHintergrundFarbe();
  1097. tf->setHintergrundFarbe( msAuswBgF->get( auswahl ) );
  1098. }
  1099. if( hatMsStyle( auswahl, Style::AuswahlHBild ) && msAuswBgB )
  1100. {
  1101. tmpHBild = tf->getHintergrundBild();
  1102. tf->setHintergrundBildZ( msAuswBgB->get( auswahl ) );
  1103. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1104. tf->setStyle( TextFeld::Style::HBild, hatMsStyle( auswahl, Style::HBild ) );
  1105. }
  1106. if( hatMsStyle( auswahl, Style::AuswahlHAlpha ) )
  1107. {
  1108. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1109. tf->setStyle( TextFeld::Style::HAlpha, hatMsStyle( auswahl, Style::AuswahlHAlpha ) );
  1110. }
  1111. }
  1112. if( hatMsStyle( auswahl, Style::AuswahlRahmen ) && msAuswRahmen )
  1113. {
  1114. tmpRahmen = tf->getRahmen();
  1115. tf->setRahmenZ( msAuswRahmen->get( auswahl ) );
  1116. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1117. tf->setStyle( TextFeld::Style::Rahmen, hatMsStyle( auswahl, Style::AuswahlRahmen ) );
  1118. }
  1119. }
  1120. int tmpHi = tf->getHeight();
  1121. tf->setPosition( 0, 0 );
  1122. tf->setSize( gr.x - rbr * 2 - ( ausfahren ? ausfahren->getBreite() : 0 ), gr.y - rbr * 2 );
  1123. tf->render( zRObj );
  1124. tf->setSize( tf->getBreite(), tmpHi );
  1125. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1126. {
  1127. if( hatStyle( Style::AuswahlBuffer ) )
  1128. {
  1129. tf->setAlphaFeldZ( tmpBuffer );
  1130. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1131. }
  1132. if( hatStyle( Style::AuswahlHintergrund ) )
  1133. {
  1134. tf->setHintergrundFarbe( tmpHFarbe );
  1135. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1136. if( hatStyle( Style::AuswahlHBild ) )
  1137. {
  1138. tf->setHintergrundBildZ( tmpHBild );
  1139. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1140. }
  1141. if( hatStyle( Style::AuswahlHAlpha ) )
  1142. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1143. }
  1144. if( hatStyle( Style::AuswahlRahmen ) )
  1145. {
  1146. tf->setRahmenZ( tmpRahmen );
  1147. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1148. }
  1149. }
  1150. else
  1151. {
  1152. if( hatMsStyle( auswahl, Style::AuswahlBuffer ) && msAuswAf )
  1153. {
  1154. tf->setAlphaFeldZ( tmpBuffer );
  1155. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1156. }
  1157. if( hatMsStyle( auswahl, Style::AuswahlHintergrund ) )
  1158. {
  1159. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1160. if( msAuswBgF && msAuswBgF->hat( auswahl ) )
  1161. tf->setHintergrundFarbe( tmpHFarbe );
  1162. if( hatMsStyle( auswahl, Style::AuswahlHBild ) && msAuswBgB )
  1163. {
  1164. tf->setHintergrundBildZ( tmpHBild );
  1165. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1166. }
  1167. if( hatMsStyle( auswahl, Style::AuswahlHAlpha ) )
  1168. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1169. }
  1170. if( hatMsStyle( auswahl, Style::AuswahlRahmen ) && msAuswRahmen )
  1171. {
  1172. tf->setRahmenZ( tmpRahmen );
  1173. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1174. }
  1175. }
  1176. }
  1177. }
  1178. bool vsb = hatStyle( Style::VScroll ) && vertikalScrollBar; // Scroll bar zeichnen
  1179. if( auswahl >= anzahl )
  1180. {
  1181. auswahl = 0;
  1182. if( eAk )
  1183. eAk( eAkP, this, 0, auswahl );
  1184. }
  1185. if( members )
  1186. {
  1187. if( vsb && ausklappHeight )
  1188. {
  1189. br -= 15;
  1190. vertikalScrollBar->getScrollData()->anzeige = ausklappHeight - rbr;
  1191. vertikalScrollBar->render( br - rbr, gr.y, 15, ausklappHeight - rbr, zRObj );
  1192. }
  1193. 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 ) ) )
  1194. {
  1195. zRObj.releaseDrawOptions();
  1196. zRObj.releaseDrawOptions();
  1197. unlockZeichnung();
  1198. return;
  1199. }
  1200. int maxHeight = 0;
  1201. int dy = 0;
  1202. if( vsb )
  1203. dy -= vertikalScrollBar->getScroll();
  1204. int mdy = hi - rbr;
  1205. anzahl = members->getEintragAnzahl();
  1206. for( int i = 0; i < anzahl; ++i )
  1207. {
  1208. TextFeld *tf = members->z( i );
  1209. if( dy >= mdy && !vsb )
  1210. break;
  1211. tf->setPosition( 0, dy );
  1212. tf->setSize( br - rbr * 2, tf->getHeight() );
  1213. maxHeight += tf->getHeight();
  1214. bool selected = auswahl == i;
  1215. AlphaFeld *tmpBuffer = 0;
  1216. bool tmpB = 0;
  1217. int tmpHFarbe = 0;
  1218. bool tmpH = 0;
  1219. Bild *tmpHBild = 0;
  1220. bool tmpHB = 0;
  1221. bool tmpHAlpha = 0;
  1222. Rahmen *tmpRahmen = 0;
  1223. bool tmpR = 0;
  1224. if( selected )
  1225. {
  1226. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1227. {
  1228. if( hatStyle( Style::AuswahlBuffer ) )
  1229. {
  1230. tmpBuffer = tf->getAlphaFeld();
  1231. tf->setAlphaFeldZ( (AlphaFeld*)auswAf->getThis() );
  1232. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1233. tf->setStyle( TextFeld::Style::Buffered, hatStyle( Style::AuswahlBuffer ) );
  1234. }
  1235. if( hatStyle( Style::AuswahlHintergrund ) )
  1236. {
  1237. tmpH = tf->hatStyle( TextFeld::Style::Hintergrund );
  1238. tmpHFarbe = tf->getHintergrundFarbe();
  1239. tf->setHintergrundFarbe( auswBgF );
  1240. tf->setStyle( TextFeld::Style::Hintergrund, hatStyle( Style::Hintergrund ) );
  1241. if( hatStyle( Style::AuswahlHBild ) )
  1242. {
  1243. tmpHBild = tf->getHintergrundBild();
  1244. tf->setHintergrundBildZ( auswBgB->getThis() );
  1245. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1246. tf->setStyle( TextFeld::Style::HBild, hatStyle( Style::HBild ) );
  1247. }
  1248. if( hatStyle( Style::AuswahlHAlpha ) )
  1249. {
  1250. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1251. tf->setStyle( TextFeld::Style::HAlpha, hatStyle( Style::AuswahlHAlpha ) );
  1252. }
  1253. }
  1254. if( hatStyle( Style::AuswahlRahmen ) )
  1255. {
  1256. tmpRahmen = tf->getRahmen();
  1257. tf->setRahmenZ( (Rahmen*)auswRahmen->getThis() );
  1258. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1259. tf->setStyle( TextFeld::Style::Rahmen, hatStyle( Style::AuswahlRahmen ) );
  1260. }
  1261. }
  1262. else
  1263. {
  1264. if( hatMsStyle( i, Style::AuswahlBuffer ) && msAuswAf )
  1265. {
  1266. tmpBuffer = tf->getAlphaFeld();
  1267. tf->setAlphaFeldZ( msAuswAf->get( i ) );
  1268. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1269. tf->setStyle( TextFeld::Style::Buffered, hatMsStyle( i, Style::AuswahlBuffer ) );
  1270. }
  1271. if( hatMsStyle( i, Style::AuswahlHintergrund ) )
  1272. {
  1273. tmpH = tf->hatStyle( Style::Hintergrund );
  1274. tf->setStyle( TextFeld::Style::Hintergrund, hatMsStyle( i, Style::AuswahlHintergrund ) );
  1275. if( msAuswBgF && msAuswBgF->hat( i ) )
  1276. {
  1277. tmpHFarbe = tf->getHintergrundFarbe();
  1278. tf->setHintergrundFarbe( msAuswBgF->get( i ) );
  1279. }
  1280. if( hatMsStyle( i, Style::AuswahlHBild ) && msAuswBgB )
  1281. {
  1282. tmpHBild = tf->getHintergrundBild();
  1283. tf->setHintergrundBildZ( msAuswBgB->get( i ) );
  1284. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1285. tf->setStyle( TextFeld::Style::HBild, hatMsStyle( i, Style::HBild ) );
  1286. }
  1287. if( hatMsStyle( i, Style::AuswahlHAlpha ) )
  1288. {
  1289. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1290. tf->setStyle( TextFeld::Style::HAlpha, hatMsStyle( i, Style::AuswahlHAlpha ) );
  1291. }
  1292. }
  1293. if( hatMsStyle( i, Style::AuswahlRahmen ) && msAuswRahmen )
  1294. {
  1295. tmpRahmen = tf->getRahmen();
  1296. tf->setRahmenZ( msAuswRahmen->get( i ) );
  1297. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1298. tf->setStyle( TextFeld::Style::Rahmen, hatMsStyle( i, Style::AuswahlRahmen ) );
  1299. }
  1300. }
  1301. }
  1302. else if( mausEintrag == i )
  1303. {
  1304. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1305. {
  1306. if( hatStyle( Style::MausBuffer ) )
  1307. {
  1308. tmpBuffer = tf->getAlphaFeld();
  1309. tf->setAlphaFeldZ( (AlphaFeld*)mausAf->getThis() );
  1310. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1311. tf->setStyle( TextFeld::Style::Buffered, hatStyle( Style::MausBuffer ) );
  1312. }
  1313. if( hatStyle( Style::MausHintergrund ) )
  1314. {
  1315. tmpH = tf->hatStyle( TextFeld::Style::Hintergrund );
  1316. tmpHFarbe = tf->getHintergrundFarbe();
  1317. tf->setHintergrundFarbe( mausBgF );
  1318. tf->setStyle( TextFeld::Style::Hintergrund, hatStyle( Style::Hintergrund ) );
  1319. if( hatStyle( Style::MausHBild ) )
  1320. {
  1321. tmpHBild = tf->getHintergrundBild();
  1322. tf->setHintergrundBildZ( mausBgB->getThis() );
  1323. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1324. tf->setStyle( TextFeld::Style::HBild, hatStyle( Style::HBild ) );
  1325. }
  1326. if( hatStyle( Style::MausHAlpha ) )
  1327. {
  1328. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1329. tf->setStyle( TextFeld::Style::HAlpha, hatStyle( Style::MausHAlpha ) );
  1330. }
  1331. }
  1332. if( hatStyle( Style::MausRahmen ) )
  1333. {
  1334. tmpRahmen = tf->getRahmen();
  1335. tf->setRahmenZ( (Rahmen*)mausRahmen->getThis() );
  1336. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1337. tf->setStyle( TextFeld::Style::Rahmen, hatStyle( Style::MausRahmen ) );
  1338. }
  1339. }
  1340. else
  1341. {
  1342. if( hatMsStyle( i, Style::MausBuffer ) && msAuswAf )
  1343. {
  1344. tmpBuffer = tf->getAlphaFeld();
  1345. tf->setAlphaFeldZ( msMausAf->get( i ) );
  1346. tmpB = tf->hatStyle( TextFeld::Style::Buffered );
  1347. tf->setStyle( TextFeld::Style::Buffered, hatMsStyle( i, Style::MausBuffer ) );
  1348. }
  1349. if( hatMsStyle( i, Style::MausHintergrund ) )
  1350. {
  1351. tmpH = tf->hatStyle( Style::Hintergrund );
  1352. tf->setStyle( TextFeld::Style::Hintergrund, hatMsStyle( i, Style::MausHintergrund ) );
  1353. if( msMausBgF && msMausBgF->hat( i ) )
  1354. {
  1355. tmpHFarbe = tf->getHintergrundFarbe();
  1356. tf->setHintergrundFarbe( msMausBgF->get( i ) );
  1357. }
  1358. if( hatMsStyle( i, Style::MausHBild ) && msMausBgB )
  1359. {
  1360. tmpHBild = tf->getHintergrundBild();
  1361. tf->setHintergrundBildZ( msMausBgB->get( i ) );
  1362. tmpHB = tf->hatStyle( TextFeld::Style::HBild );
  1363. tf->setStyle( TextFeld::Style::HBild, hatMsStyle( i, Style::HBild ) );
  1364. }
  1365. if( hatMsStyle( i, Style::MausHAlpha ) )
  1366. {
  1367. tmpHAlpha = tf->hatStyle( TextFeld::Style::HAlpha );
  1368. tf->setStyle( TextFeld::Style::HAlpha, hatMsStyle( i, Style::MausHAlpha ) );
  1369. }
  1370. }
  1371. if( hatMsStyle( i, Style::MausRahmen ) && msMausRahmen )
  1372. {
  1373. tmpRahmen = tf->getRahmen();
  1374. tf->setRahmenZ( msMausRahmen->get( i ) );
  1375. tmpR = tf->hatStyle( TextFeld::Style::Rahmen );
  1376. tf->setStyle( TextFeld::Style::Rahmen, hatMsStyle( i, Style::MausRahmen ) );
  1377. }
  1378. }
  1379. }
  1380. tf->render( zRObj );
  1381. if( selected )
  1382. {
  1383. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1384. {
  1385. if( hatStyle( Style::AuswahlBuffer ) )
  1386. {
  1387. tf->setAlphaFeldZ( tmpBuffer );
  1388. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1389. }
  1390. if( hatStyle( Style::AuswahlHintergrund ) )
  1391. {
  1392. tf->setHintergrundFarbe( tmpHFarbe );
  1393. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1394. if( hatStyle( Style::AuswahlHBild ) )
  1395. {
  1396. tf->setHintergrundBildZ( tmpHBild );
  1397. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1398. }
  1399. if( hatStyle( Style::AuswahlHAlpha ) )
  1400. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1401. }
  1402. if( hatStyle( Style::AuswahlRahmen ) )
  1403. {
  1404. tf->setRahmenZ( tmpRahmen );
  1405. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1406. }
  1407. }
  1408. else
  1409. {
  1410. if( hatMsStyle( i, Style::AuswahlBuffer ) && msAuswAf )
  1411. {
  1412. tf->setAlphaFeldZ( tmpBuffer );
  1413. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1414. }
  1415. if( hatMsStyle( i, Style::AuswahlHintergrund ) )
  1416. {
  1417. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1418. if( msAuswBgF && msAuswBgF->hat( i ) )
  1419. tf->setHintergrundFarbe( tmpHFarbe );
  1420. if( hatMsStyle( i, Style::AuswahlHBild ) && msAuswBgB )
  1421. {
  1422. tf->setHintergrundBildZ( tmpHBild );
  1423. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1424. }
  1425. if( hatMsStyle( i, Style::AuswahlHAlpha ) )
  1426. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1427. }
  1428. if( hatMsStyle( i, Style::AuswahlRahmen ) && msAuswRahmen )
  1429. {
  1430. tf->setRahmenZ( tmpRahmen );
  1431. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1432. }
  1433. }
  1434. }
  1435. else if( mausEintrag == i )
  1436. {
  1437. if( hatStyleNicht( Style::MultiStyled ) || !msStyle )
  1438. {
  1439. if( hatStyle( Style::MausBuffer ) )
  1440. {
  1441. tf->setAlphaFeldZ( tmpBuffer );
  1442. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1443. }
  1444. if( hatStyle( Style::MausHintergrund ) )
  1445. {
  1446. tf->setHintergrundFarbe( tmpHFarbe );
  1447. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1448. if( hatStyle( Style::MausHBild ) )
  1449. {
  1450. tf->setHintergrundBildZ( tmpHBild );
  1451. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1452. }
  1453. if( hatStyle( Style::MausHAlpha ) )
  1454. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1455. }
  1456. if( hatStyle( Style::MausRahmen ) )
  1457. {
  1458. tf->setRahmenZ( tmpRahmen );
  1459. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1460. }
  1461. }
  1462. else
  1463. {
  1464. if( hatMsStyle( i, Style::MausBuffer ) && msAuswAf )
  1465. {
  1466. tf->setAlphaFeldZ( tmpBuffer );
  1467. tf->setStyle( TextFeld::Style::Buffered, tmpB );
  1468. }
  1469. if( hatMsStyle( i, Style::MausHintergrund ) )
  1470. {
  1471. tf->setStyle( TextFeld::Style::Hintergrund, tmpH );
  1472. if( msAuswBgF && msAuswBgF->hat( i ) )
  1473. tf->setHintergrundFarbe( tmpHFarbe );
  1474. if( hatMsStyle( i, Style::MausHBild ) && msAuswBgB )
  1475. {
  1476. tf->setHintergrundBildZ( tmpHBild );
  1477. tf->setStyle( TextFeld::Style::HBild, tmpHB );
  1478. }
  1479. if( hatMsStyle( i, Style::MausHAlpha ) )
  1480. tf->setStyle( TextFeld::Style::HAlpha, tmpHAlpha );
  1481. }
  1482. if( hatMsStyle( i, Style::MausRahmen ) && msAuswRahmen )
  1483. {
  1484. tf->setRahmenZ( tmpRahmen );
  1485. tf->setStyle( TextFeld::Style::Rahmen, tmpR );
  1486. }
  1487. }
  1488. }
  1489. dy += tf->getHeight();
  1490. }
  1491. if( vertikalScrollBar )
  1492. vertikalScrollBar->getScrollData()->max = maxHeight;
  1493. zRObj.releaseDrawOptions();
  1494. }
  1495. zRObj.releaseDrawOptions();
  1496. zRObj.releaseDrawOptions();
  1497. unlockZeichnung();
  1498. }
  1499. }
  1500. // constant
  1501. int AuswahlBox::getEintragPos( const char *txt ) const // gibt die Eintrag Position zurück
  1502. {
  1503. for( int i = 0; i < anzahl; ++i )
  1504. if( members->z( i ) && members->z( i )->zText()->istGleich( txt ) )
  1505. return i;
  1506. return -1;
  1507. }
  1508. int AuswahlBox::getEintragPos( Text *txt ) const
  1509. {
  1510. for( int i = 0; i < anzahl; ++i )
  1511. {
  1512. if( members->z( i ) && members->z( i )->zText()->istGleich( txt->getText() ) )
  1513. {
  1514. txt->release();
  1515. return i;
  1516. }
  1517. }
  1518. txt->release();
  1519. return -1;
  1520. }
  1521. Text *AuswahlBox::getEintragText( int i ) const // gibt den Eintrag Text zurück
  1522. {
  1523. if( i >= anzahl )
  1524. return 0;
  1525. return members->z( i ) ? members->z( i )->getText() : 0;
  1526. }
  1527. Text *AuswahlBox::zEintragText( int i ) const
  1528. {
  1529. if( i >= anzahl )
  1530. return 0;
  1531. return members->z( i ) ? members->z( i )->zText() : 0;
  1532. }
  1533. TextFeld *AuswahlBox::getEintrag( int i ) const // gibt den Eintrag zurück
  1534. {
  1535. if( i >= anzahl )
  1536. return 0;
  1537. return members->get( i );
  1538. }
  1539. TextFeld *AuswahlBox::zEintrag( int i ) const
  1540. {
  1541. if( i >= anzahl )
  1542. return 0;
  1543. return members->z( i );
  1544. }
  1545. int AuswahlBox::getAuswahl() const // gibt die Position des ausgewählten Eintrages zurück
  1546. {
  1547. return auswahl;
  1548. }
  1549. int AuswahlBox::getEintragAnzahl() const // gibt die Anzahl der Einträge zurück
  1550. {
  1551. return anzahl;
  1552. }
  1553. bool AuswahlBox::istAusgeklappt() const // prüft, ob die Liste ausgeklappt ist
  1554. {
  1555. return ausgeklappt;
  1556. }
  1557. int AuswahlBox::getMaxHeight() const // gibt die maximale Höhe der Liste zurück
  1558. {
  1559. if( !hatStyle( Style::MaxHeight ) )
  1560. return 0;
  1561. return ausklapMaxHeight;
  1562. }
  1563. int AuswahlBox::getEintragHeight() const // gibt die Höhe der Einträge zurück
  1564. {
  1565. return eintragHeight;
  1566. }
  1567. Knopf *AuswahlBox::getAusklappKnopf() const // gibt den aus-/einklapp Knopf zurück
  1568. {
  1569. if( hatStyle( Style::MultiStyled ) )
  1570. return 0;
  1571. return ausfahren ? (Knopf*)ausfahren->getThis() : 0;
  1572. }
  1573. Knopf *AuswahlBox::zAusklappKnopf() const
  1574. {
  1575. if( hatStyle( Style::MultiStyled ) )
  1576. return 0;
  1577. return ausfahren;
  1578. }
  1579. Rahmen *AuswahlBox::getEintragRahmen( int i ) const // gibt den Eintrag Rahmen zurück
  1580. {
  1581. if( !hatStyle( Style::MultiStyled ) )
  1582. return 0;
  1583. if( !members->z( i ) )
  1584. return 0;
  1585. return members->z( i )->getRahmen();
  1586. }
  1587. Rahmen *AuswahlBox::zEintragRahmen( int i ) const
  1588. {
  1589. if( !hatStyle( Style::MultiStyled ) )
  1590. return 0;
  1591. if( !members->z( i ) )
  1592. return 0;
  1593. return members->z( i )->zRahmen();
  1594. }
  1595. int AuswahlBox::getEintragRahmenFarbe( int i ) const // gibt die Eintrag Rahmen Frabe zurück
  1596. {
  1597. if( !hatStyle( Style::MultiStyled ) )
  1598. return 0;
  1599. if( !members->z( i ) )
  1600. return 0;
  1601. return members->z( i )->getRahmenFarbe();
  1602. }
  1603. int AuswahlBox::getEintragRahmenBreite( int i ) const // gibt die Eintrag Rahmen Breite zurück
  1604. {
  1605. if( !hatStyle( Style::MultiStyled ) )
  1606. return 0;
  1607. if( !members->z( i ) )
  1608. return 0;
  1609. return members->z( i )->getRahmenBreite();
  1610. }
  1611. AlphaFeld *AuswahlBox::getEintragAlphaFeld( int i ) const // gibt das Eintrag AlphaFeld zurück
  1612. {
  1613. if( !hatStyle( Style::MultiStyled ) )
  1614. return 0;
  1615. if( !members->z( i ) )
  1616. return 0;
  1617. return members->z( i )->getAlphaFeld();
  1618. }
  1619. AlphaFeld *AuswahlBox::zEintragAlphaFeld( int i ) const
  1620. {
  1621. if( !hatStyle( Style::MultiStyled ) )
  1622. return 0;
  1623. if( !members->z( i ) )
  1624. return 0;
  1625. return members->z( i )->zAlphaFeld();
  1626. }
  1627. int AuswahlBox::getEintragAlphaFeldFarbe( int i ) const // gibt die Eintrag AlphaFeld Farbe zurück
  1628. {
  1629. if( !hatStyle( Style::MultiStyled ) )
  1630. return 0;
  1631. if( !members->z( i ) )
  1632. return 0;
  1633. return members->z( i )->getAlphaFeldFarbe();
  1634. }
  1635. int AuswahlBox::getEintragAlphaFeldStrength( int i ) const // gibt die Eintrag AlphaFeld stärke zurück
  1636. {
  1637. if( !hatStyle( Style::MultiStyled ) )
  1638. return 0;
  1639. if( !members->z( i ) )
  1640. return 0;
  1641. return members->z( i )->getAlphaFeldStrength();
  1642. }
  1643. int AuswahlBox::getEintragHintergrundFarbe( int i ) const // gibt die Eintrag Hintergrund Farbe zurück
  1644. {
  1645. if( !hatStyle( Style::MultiStyled ) )
  1646. return 0;
  1647. if( !members->z( i ) )
  1648. return 0;
  1649. return members->z( i )->getHintergrundFarbe();
  1650. }
  1651. Bild *AuswahlBox::getEintragHintergrundBild( int i ) const // gibt das Eintrag Hintergrund Bild zurück
  1652. {
  1653. if( !hatStyle( Style::MultiStyled ) )
  1654. return 0;
  1655. if( !members->z( i ) )
  1656. return 0;
  1657. return members->z( i )->getHintergrundBild();
  1658. }
  1659. Bild *AuswahlBox::zEintragHintergrundBild( int i ) const
  1660. {
  1661. if( !hatStyle( Style::MultiStyled ) )
  1662. return 0;
  1663. if( !members->z( i ) )
  1664. return 0;
  1665. return members->z( i )->zHintergrundBild();
  1666. }
  1667. Rahmen *AuswahlBox::getAuswRahmen() const // gibt den Auswahl Rahmen zurück
  1668. {
  1669. if( hatStyle( Style::MultiStyled ) )
  1670. return 0;
  1671. return auswRahmen ? (Rahmen*)auswRahmen->getThis() : 0;
  1672. }
  1673. Rahmen *AuswahlBox::zAuswRahmen() const
  1674. {
  1675. if( hatStyle( Style::MultiStyled ) )
  1676. return 0;
  1677. return auswRahmen;
  1678. }
  1679. int AuswahlBox::getAuswRahmenFarbe() const // gibt die Auswahl Rahmen Frabe zurück
  1680. {
  1681. if( hatStyle( Style::MultiStyled ) )
  1682. return 0;
  1683. return auswRahmen ? auswRahmen->getFarbe() : 0;
  1684. }
  1685. int AuswahlBox::getAuswRahmenBreite() const // gibt die Auswahl Rahmen Breite zurück
  1686. {
  1687. if( hatStyle( Style::MultiStyled ) )
  1688. return 0;
  1689. return auswRahmen ? auswRahmen->getRBreite() : 0;
  1690. }
  1691. AlphaFeld *AuswahlBox::getAuswAlphaFeld() const // gibt das Auswahl AlphaFeld zurück
  1692. {
  1693. if( hatStyle( Style::MultiStyled ) )
  1694. return 0;
  1695. return auswAf ? (AlphaFeld*)auswAf->getThis() : 0;
  1696. }
  1697. AlphaFeld *AuswahlBox::zAuswAlphaFeld() const
  1698. {
  1699. if( hatStyle( Style::MultiStyled ) )
  1700. return 0;
  1701. return auswAf;
  1702. }
  1703. int AuswahlBox::getAuswAlphaFeldFarbe() const // gibt die Auswahl AlphaFeld Farbe zurück
  1704. {
  1705. if( hatStyle( Style::MultiStyled ) )
  1706. return 0;
  1707. return auswAf ? auswAf->getFarbe() : 0;
  1708. }
  1709. int AuswahlBox::getAuswAlphaFeldStrength() const // gibt die Auswahl AlphaFeld stärke zurück
  1710. {
  1711. if( hatStyle( Style::MultiStyled ) )
  1712. return 0;
  1713. return auswAf ? auswAf->getStrength() : 0;
  1714. }
  1715. int AuswahlBox::getAuswHintergrundFarbe() const // gibt die Auswahl Hintergrund Farbe zurück
  1716. {
  1717. if( hatStyle( Style::MultiStyled ) )
  1718. return 0;
  1719. return auswBgF;
  1720. }
  1721. Bild *AuswahlBox::getAuswHintergrundBild() const // gibt das Auswahl Hintergrund Bild zurück
  1722. {
  1723. if( hatStyle( Style::MultiStyled ) )
  1724. return 0;
  1725. return auswBgB ? auswBgB->getThis() : 0;
  1726. }
  1727. Bild *AuswahlBox::zAuswHintergrundBild() const
  1728. {
  1729. if( hatStyle( Style::MultiStyled ) )
  1730. return 0;
  1731. return auswBgB;
  1732. }
  1733. Rahmen *AuswahlBox::getMsAuswRahmen( int i ) const // gibt den Multistyle Auswahl Rahmen zurück
  1734. {
  1735. if( !hatStyle( Style::MultiStyled ) )
  1736. return 0;
  1737. if( !msAuswRahmen )
  1738. return 0;
  1739. return msAuswRahmen->z( i ) ? (Rahmen*)msAuswRahmen->z( i )->getThis() : 0;
  1740. }
  1741. Rahmen *AuswahlBox::zMsAuswRahmen( int i ) const
  1742. {
  1743. if( !hatStyle( Style::MultiStyled ) )
  1744. return 0;
  1745. if( !msAuswRahmen )
  1746. return 0;
  1747. return msAuswRahmen->z( i );
  1748. }
  1749. int AuswahlBox::getMsAuswRahmenFarbe( int i ) const // gibt die Multistyle Auswahl Rahmen Frabe zurück
  1750. {
  1751. if( !hatStyle( Style::MultiStyled ) )
  1752. return 0;
  1753. if( !msAuswRahmen )
  1754. return 0;
  1755. return msAuswRahmen->z( i ) ? msAuswRahmen->z( i )->getFarbe() : 0;
  1756. }
  1757. int AuswahlBox::getMsAuswRahmenBreite( int i ) const // gibt die Multistyle Auswahl Rahmen Breite zurück
  1758. {
  1759. if( !hatStyle( Style::MultiStyled ) )
  1760. return 0;
  1761. if( !msAuswRahmen )
  1762. return 0;
  1763. return msAuswRahmen->z( i ) ? msAuswRahmen->z( i )->getRBreite() : 0;
  1764. }
  1765. AlphaFeld *AuswahlBox::getMsAuswAlphaFeld( int i ) const // gibt das Multistyle Auswahl AlphaFeld zurück
  1766. {
  1767. if( !hatStyle( Style::MultiStyled ) )
  1768. return 0;
  1769. if( !msAuswAf )
  1770. return 0;
  1771. return msAuswAf->z( i ) ? (AlphaFeld*)msAuswAf->z( i )->getThis() : 0;
  1772. }
  1773. AlphaFeld *AuswahlBox::zMsAuswAlphaFeld( int i ) const
  1774. {
  1775. if( !hatStyle( Style::MultiStyled ) )
  1776. return 0;
  1777. if( !msAuswAf )
  1778. return 0;
  1779. return msAuswAf->z( i );
  1780. }
  1781. int AuswahlBox::getMsAuswAlphaFeldFarbe( int i ) const // gibt die Multistyle Auswahl AlphaFeld Farbe zurück
  1782. {
  1783. if( !hatStyle( Style::MultiStyled ) )
  1784. return 0;
  1785. if( !msAuswAf )
  1786. return 0;
  1787. return msAuswAf->z( i ) ? msAuswAf->z( i )->getFarbe() : 0;
  1788. }
  1789. int AuswahlBox::getMsAuswAlphaFeldStrength( int i ) const // gibt die Multistyle Auswahl AlphaFeld stärke zurück
  1790. {
  1791. if( !hatStyle( Style::MultiStyled ) )
  1792. return 0;
  1793. if( !msAuswAf )
  1794. return 0;
  1795. return msAuswAf->z( i ) ? msAuswAf->z( i )->getStrength() : 0;
  1796. }
  1797. int AuswahlBox::getMsAuswHintergrundFarbe( int i ) const // gibt die Multistyle Auswahl Hintergrund Farbe zurück
  1798. {
  1799. if( !hatStyle( Style::MultiStyled ) )
  1800. return 0;
  1801. if( !msAuswBgF || !msAuswBgF->hat( i ) )
  1802. return 0;
  1803. return msAuswBgF->get( i );
  1804. }
  1805. Bild *AuswahlBox::getMsAuswHintergrundBild( int i ) const // gibt das Multistyle Auswahl Hintergrund Bild zurück
  1806. {
  1807. if( !hatStyle( Style::MultiStyled ) )
  1808. return 0;
  1809. if( !msAuswBgB )
  1810. return 0;
  1811. return msAuswBgB->get( i );
  1812. }
  1813. Bild *AuswahlBox::zMsAuswHintergrundBild( int i ) const
  1814. {
  1815. if( !hatStyle( Style::MultiStyled ) )
  1816. return 0;
  1817. if( !msAuswBgB )
  1818. return 0;
  1819. return msAuswBgB->z( i );
  1820. }
  1821. Rahmen *AuswahlBox::getMausRahmen() const // gibt den Maus Rahmen zurück
  1822. {
  1823. if( hatStyle( Style::MultiStyled ) )
  1824. return 0;
  1825. return mausRahmen ? (Rahmen*)mausRahmen->getThis() : 0;
  1826. }
  1827. Rahmen *AuswahlBox::zMausRahmen() const
  1828. {
  1829. if( hatStyle( Style::MultiStyled ) )
  1830. return 0;
  1831. return mausRahmen;
  1832. }
  1833. int AuswahlBox::getMausRahmenFarbe() const // gibt die Maus Rahmen Frabe zurück
  1834. {
  1835. if( hatStyle( Style::MultiStyled ) )
  1836. return 0;
  1837. return mausRahmen ? mausRahmen->getFarbe() : 0;
  1838. }
  1839. int AuswahlBox::getMausRahmenBreite() const // gibt die Maus Rahmen Breite zurück
  1840. {
  1841. if( hatStyle( Style::MultiStyled ) )
  1842. return 0;
  1843. return mausRahmen ? mausRahmen->getRBreite() : 0;
  1844. }
  1845. AlphaFeld *AuswahlBox::getMausAlphaFeld() const // gibt das Maus AlphaFeld zurück
  1846. {
  1847. if( hatStyle( Style::MultiStyled ) )
  1848. return 0;
  1849. return mausAf ? (AlphaFeld*)mausAf->getThis() : 0;
  1850. }
  1851. AlphaFeld *AuswahlBox::zMausAlphaFeld() const
  1852. {
  1853. if( hatStyle( Style::MultiStyled ) )
  1854. return 0;
  1855. return mausAf;
  1856. }
  1857. int AuswahlBox::getMausAlphaFeldFarbe() const // gibt die Maus AlphaFeld Farbe zurück
  1858. {
  1859. if( hatStyle( Style::MultiStyled ) )
  1860. return 0;
  1861. return mausAf ? mausAf->getFarbe() : 0;
  1862. }
  1863. int AuswahlBox::getMausAlphaFeldStrength() const // gibt die Maus AlphaFeld stärke zurück
  1864. {
  1865. if( hatStyle( Style::MultiStyled ) )
  1866. return 0;
  1867. return mausAf ? mausAf->getStrength() : 0;
  1868. }
  1869. int AuswahlBox::getMausHintergrundFarbe() const // gibt die Maus Hintergrund Farbe zurück
  1870. {
  1871. if( hatStyle( Style::MultiStyled ) )
  1872. return 0;
  1873. return mausBgF;
  1874. }
  1875. Bild *AuswahlBox::getMausHintergrundBild() const // gibt das Maus Hintergrund Bild zurück
  1876. {
  1877. if( hatStyle( Style::MultiStyled ) )
  1878. return 0;
  1879. return mausBgB ? mausBgB->getThis() : 0;
  1880. }
  1881. Bild *AuswahlBox::zMausHintergrundBild() const
  1882. {
  1883. if( hatStyle( Style::MultiStyled ) )
  1884. return 0;
  1885. return mausBgB;
  1886. }
  1887. Rahmen *AuswahlBox::getMsMausRahmen( int i ) const // gibt den Multistyle Maus Rahmen zurück
  1888. {
  1889. if( !hatStyle( Style::MultiStyled ) )
  1890. return 0;
  1891. if( !msMausRahmen )
  1892. return 0;
  1893. return msMausRahmen->get( i );
  1894. }
  1895. Rahmen *AuswahlBox::zMsMausRahmen( int i ) const
  1896. {
  1897. if( !hatStyle( Style::MultiStyled ) )
  1898. return 0;
  1899. if( !msMausRahmen )
  1900. return 0;
  1901. return msMausRahmen->z( i );
  1902. }
  1903. int AuswahlBox::getMsMausRahmenFarbe( int i ) const // gibt die Multistyle Maus Rahmen Frabe zurück
  1904. {
  1905. if( !hatStyle( Style::MultiStyled ) )
  1906. return 0;
  1907. if( !msMausRahmen )
  1908. return 0;
  1909. return msMausRahmen->z( i ) ? msMausRahmen->z( i )->getFarbe() : 0;
  1910. }
  1911. int AuswahlBox::getMsMausRahmenBreite( int i ) const // gibt die Multistyle Maus Rahmen Breite zurück
  1912. {
  1913. if( !hatStyle( Style::MultiStyled ) )
  1914. return 0;
  1915. if( !msMausRahmen )
  1916. return 0;
  1917. return msMausRahmen->z( i ) ? msMausRahmen->z( i )->getRBreite() : 0;
  1918. }
  1919. AlphaFeld *AuswahlBox::getMsMausAlphaFeld( int i ) const // gibt das Multistyle Maus AlphaFeld zurück
  1920. {
  1921. if( !hatStyle( Style::MultiStyled ) )
  1922. return 0;
  1923. if( !msMausAf )
  1924. return 0;
  1925. return msMausAf->get( i );
  1926. }
  1927. AlphaFeld *AuswahlBox::zMsMausAlphaFeld( int i ) const
  1928. {
  1929. if( !hatStyle( Style::MultiStyled ) )
  1930. return 0;
  1931. if( !msMausAf )
  1932. return 0;
  1933. return msMausAf->z( i );
  1934. }
  1935. int AuswahlBox::getMsMausAlphaFeldFarbe( int i ) const // gibt die Multistyle Maus AlphaFeld Farbe zurück
  1936. {
  1937. if( !hatStyle( Style::MultiStyled ) )
  1938. return 0;
  1939. if( !msMausAf )
  1940. return 0;
  1941. return msMausAf->z( i ) ? msMausAf->z( i )->getFarbe() : 0;
  1942. }
  1943. int AuswahlBox::getMsMausAlphaFeldStrength( int i ) const // gibt die Multistyle Maus AlphaFeld stärke zurück
  1944. {
  1945. if( !hatStyle( Style::MultiStyled ) )
  1946. return 0;
  1947. if( !msMausAf )
  1948. return 0;
  1949. return msMausAf->z( i ) ? msMausAf->z( i )->getStrength() : 0;
  1950. }
  1951. int AuswahlBox::getMsMausHintergrundFarbe( int i ) const // gibt die Multistyle Maus Hintergrund Farbe zurück
  1952. {
  1953. if( !hatStyle( Style::MultiStyled ) )
  1954. return 0;
  1955. if( !msMausBgF || !msMausBgF->hat( i ) )
  1956. return 0;
  1957. return msMausBgF->get( i );
  1958. }
  1959. Bild *AuswahlBox::getMsMausHintergrundBild( int i ) const // gibt das Multistyle Maus Hintergrund Bild zurück
  1960. {
  1961. if( !hatStyle( Style::MultiStyled ) )
  1962. return 0;
  1963. if( !msMausBgB )
  1964. return 0;
  1965. return msMausBgB->get( i );
  1966. }
  1967. Bild *AuswahlBox::zMsMausHintergrundBild( int i ) const
  1968. {
  1969. if( !hatStyle( Style::MultiStyled ) )
  1970. return 0;
  1971. if( !msMausBgB )
  1972. return 0;
  1973. return msMausBgB->z( i );
  1974. }
  1975. bool AuswahlBox::hatMsStyle( int i, __int64 abStyle ) const // prüft ob Multistyle style vorhanden
  1976. {
  1977. if( ( style | Style::MultiStyled ) != style || !msStyle || !msStyle->hat( i ) )
  1978. return 0;
  1979. return ( msStyle->get( i ) | abStyle ) == msStyle->get( i );
  1980. }
  1981. bool AuswahlBox::hatMsStyleNicht( int i, __int64 abStyle ) const // prüft ob Multistyle style nicht vorhanden
  1982. {
  1983. if( ( style | Style::MultiStyled ) != style || !msStyle || !msStyle->hat( i ) )
  1984. return 1;
  1985. return ( msStyle->get( i ) | abStyle ) != msStyle->get( i );
  1986. }
  1987. Zeichnung *AuswahlBox::dublizieren() const // Erzeugt eine Kopie des Zeichnungs
  1988. {
  1989. AuswahlBox *obj = new AuswahlBox();
  1990. obj->setPosition( pos );
  1991. obj->setSize( gr );
  1992. obj->setMausEreignisParameter( makParam );
  1993. obj->setTastaturEreignisParameter( takParam );
  1994. obj->setMausEreignis( mak );
  1995. obj->setTastaturEreignis( tak );
  1996. if( toolTip )
  1997. obj->setToolTipText( toolTip->zText()->getText(), toolTip->zBildschirm() );
  1998. obj->setStyle( style );
  1999. if( textRd )
  2000. obj->setTextRendererZ( textRd->getThis() );
  2001. if( rahmen )
  2002. obj->setRahmenZ( (Rahmen*)rahmen->dublizieren() );
  2003. if( ausfahren )
  2004. obj->setAusklappKnopfZ( (Knopf*)ausfahren->dublizieren() );
  2005. obj->setHintergrundFarbe( hintergrundFarbe );
  2006. if( hintergrundBild )
  2007. obj->setHintergrundBild( hintergrundBild->getThis() );
  2008. if( hintergrundFeld )
  2009. obj->setAlphaFeldZ( (AlphaFeld*)hintergrundFeld->dublizieren() );
  2010. if( auswRahmen )
  2011. obj->setAuswRahmenZ( (Rahmen*)auswRahmen->dublizieren() );
  2012. obj->setAuswHintergrundFarbe( auswBgF );
  2013. if( auswBgB )
  2014. obj->setAuswHintergrundBild( auswBgB->getThis() );
  2015. if( auswAf )
  2016. obj->setAuswAlphaFeldZ( (AlphaFeld*)auswAf->dublizieren() );
  2017. if( mausRahmen )
  2018. obj->setMausRahmenZ( (Rahmen*)mausRahmen->dublizieren() );
  2019. obj->setMausHintergrundFarbe( mausBgF );
  2020. if( mausBgB )
  2021. obj->setMausHintergrundBild( mausBgB->getThis() );
  2022. if( mausAf )
  2023. obj->setMausAlphaFeldZ( (AlphaFeld*)mausAf->dublizieren() );
  2024. obj->setMaxAuskappHeight( ausklapMaxHeight );
  2025. obj->setEintragHeight( eintragHeight );
  2026. for( int i = 0; i < anzahl; ++i )
  2027. {
  2028. if( members->z( i ) )
  2029. {
  2030. obj->addEintrag( "a" );
  2031. obj->setEintragZ( i, (TextFeld*)members->z( i )->dublizieren() );
  2032. if( msStyle && msStyle->hat( i ) )
  2033. obj->setMsStyle( i, msStyle->get( i ) );
  2034. if( msAuswRahmen && msAuswRahmen->z( i ) )
  2035. obj->setMsAuswRahmenZ( i, (Rahmen*)msAuswRahmen->z( i )->dublizieren() );
  2036. if( msAuswBgF && msAuswBgF->hat( i ) )
  2037. obj->setMsAuswHintergrundFarbe( i, msAuswBgF->get( i ) );
  2038. if( msAuswBgB && msAuswBgB->z( i ) )
  2039. obj->setMsAuswHintergrundBild( i, msAuswBgB->get( i ) );
  2040. if( msAuswAf && msAuswAf->z( i ) )
  2041. obj->setMsAuswAlphaFeldZ( i, (AlphaFeld*)msAuswAf->z( i )->dublizieren() );
  2042. if( msMausRahmen && msMausRahmen->z( i ) )
  2043. obj->setMsMausRahmenZ( i, (Rahmen*)msMausRahmen->z( i )->dublizieren() );
  2044. if( msMausBgF && msMausBgF->hat( i ) )
  2045. obj->setMsMausHintergrundFarbe( i, msMausBgF->get( i ) );
  2046. if( msMausBgB && msMausBgB->z( i ) )
  2047. obj->setMsMausHintergrundBild( i, msMausBgB->get( i ) );
  2048. if( msMausAf && msMausAf->z( i ) )
  2049. obj->setMsMausAlphaFeldZ( i, (AlphaFeld*)msMausAf->z( i )->dublizieren() );
  2050. }
  2051. }
  2052. obj->setAlphaFeldFarbe( auswahl );
  2053. return obj;
  2054. }