123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- #ifndef AuswahlBox_H
- #define AuswahlBox_H
- #include "Zeichnung.h"
- #include "Array.h"
- namespace Framework
- {
- class TextFeld;
- class VScrollBar;
- class Rahmen;
- class Knopf;
- class AlphaFeld;
- class Text;
- class Schrift;
- class TextRenderer;
-
- class AuswahlBox : public ZeichnungHintergrund
- {
- public:
- class Style : public ZeichnungHintergrund::Style
- {
- public:
- const static __int64 FeldRahmen = 0x000001000;
- const static __int64 FeldHintergrund = 0x000002000;
- const static __int64 FeldHBild = 0x000004000;
- const static __int64 FeldHAlpha = 0x000008000;
- const static __int64 FeldBuffer = 0x000010000;
- const static __int64 AuswahlHintergrund = 0x000020000;
- const static __int64 AuswahlHBild = 0x000040000;
- const static __int64 AuswahlHAlpha = 0x000080000;
- const static __int64 AuswahlBuffer = 0x000100000;
- const static __int64 AuswahlRahmen = 0x000200000;
- const static __int64 MultiStyled = 0x000400000;
- const static __int64 MaxHeight = 0x004000000;
- const static __int64 MausHintergrund = 0x008000000;
- const static __int64 MausHBild = 0x010000000;
- const static __int64 MausHAlpha = 0x020000000;
- const static __int64 MausBuffer = 0x040000000;
- const static __int64 MausRahmen = 0x080000000;
-
-
- const static __int64 Normal = Sichtbar | Erlaubt | Rahmen | FeldRahmen | AuswahlBuffer | AuswahlRahmen | MaxHeight | VScroll | MausRahmen | MausBuffer;
- };
- private:
- TextRenderer *textRd;
- Array< __int64 > *msStyle;
- RCArray< TextFeld > *members;
- Knopf *ausfahren;
- Rahmen *auswRahmen;
- int auswBgF;
- Bild *auswBgB;
- AlphaFeld *auswAf;
- RCArray< Rahmen > *msAuswRahmen;
- Array< int > *msAuswBgF;
- RCArray< Bild > *msAuswBgB;
- RCArray< AlphaFeld > *msAuswAf;
- Rahmen *mausRahmen;
- int mausBgF;
- Bild *mausBgB;
- AlphaFeld *mausAf;
- RCArray< Rahmen > *msMausRahmen;
- Array< int > *msMausBgF;
- RCArray< Bild > *msMausBgB;
- RCArray< AlphaFeld > *msMausAf;
- int anzahl;
- int auswahl;
- bool ausgeklappt;
- int ausklappHeight;
- int ausklapMaxHeight;
- int eintragHeight;
- double tickval;
- int mausEintrag;
- bool scrollAnzeigen;
- void *eAkP;
- std::function< void( void *, AuswahlBox *, int, int ) > eAk;
- public:
-
- __declspec( dllexport ) AuswahlBox();
-
- __declspec( dllexport ) virtual ~AuswahlBox();
-
-
- __declspec( dllexport ) void setEventParam( void *p );
-
-
- __declspec( dllexport ) void setEventAktion( std::function< void( void *, AuswahlBox *, int, int ) > event );
-
-
- __declspec( dllexport ) void setTextRendererZ( TextRenderer *textRd );
-
-
- __declspec( dllexport ) void setSchriftZ( Schrift *schrift );
-
-
- __declspec( dllexport ) void addEintrag( const char *txt );
-
-
- __declspec( dllexport ) void addEintrag( Text *txt );
-
-
- __declspec( dllexport ) void addEintragZ( TextFeld *txt );
-
-
-
- __declspec( dllexport ) void setEintrag( int i, const char *txt );
-
-
-
- __declspec( dllexport ) void setEintrag( int i, Text *txt );
-
-
-
- __declspec( dllexport ) void setEintragZ( int i, TextFeld *txt );
-
-
- __declspec( dllexport ) void removeEintrag( int i );
-
-
- __declspec( dllexport ) void setAusklappKnopfZ( Knopf *ausK );
-
-
-
- __declspec( dllexport ) void setEintragRahmenZ( int i, Rahmen *rahmen );
-
-
-
- __declspec( dllexport ) void setEintragRahmenFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setEintragRahmenBreite( int i, int rbr );
-
-
-
- __declspec( dllexport ) void setEintragHintergrundFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setEintragHintergrundBildZ( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setEintragHintergrundBild( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setEintragAlphaFeldZ( int i, AlphaFeld *af );
-
-
-
- __declspec( dllexport ) void setEintragAlphaFeldFarbe( int i, int afF );
-
-
-
- __declspec( dllexport ) void setEintragAlphaFeldStrength( int i, int afSt );
-
-
- __declspec( dllexport ) void setAuswRahmenZ( Rahmen *rahmen );
-
-
- __declspec( dllexport ) void setAuswRahmenFarbe( int f );
-
-
- __declspec( dllexport ) void setAuswRahmenBreite( int rbr );
-
-
- __declspec( dllexport ) void setAuswHintergrundFarbe( int f );
-
-
- __declspec( dllexport ) void setAuswHintergrundBildZ( Bild *bgB );
-
-
- __declspec( dllexport ) void setAuswHintergrundBild( Bild *bgB );
-
-
- __declspec( dllexport ) void setAuswAlphaFeldZ( AlphaFeld *af );
-
-
- __declspec( dllexport ) void setAuswAlphaFeldFarbe( int afF );
-
-
- __declspec( dllexport ) void setAuswAlphaFeldStrength( int afSt );
-
-
-
- __declspec( dllexport ) void setMsAuswRahmenZ( int i, Rahmen *rahmen );
-
-
-
- __declspec( dllexport ) void setMsAuswRahmenFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setMsAuswRahmenBreite( int i, int rbr );
-
-
-
- __declspec( dllexport ) void setMsAuswHintergrundFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setMsAuswHintergrundBildZ( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setMsAuswHintergrundBild( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setMsAuswAlphaFeldZ( int i, AlphaFeld *af );
-
-
-
- __declspec( dllexport ) void setMsAuswAlphaFeldFarbe( int i, int afF );
-
-
-
- __declspec( dllexport ) void setMsAuswAlphaFeldStrength( int i, int afSt );
-
-
- __declspec( dllexport ) void setMausRahmenZ( Rahmen *rahmen );
-
-
- __declspec( dllexport ) void setMausRahmenFarbe( int f );
-
-
- __declspec( dllexport ) void setMausRahmenBreite( int rbr );
-
-
- __declspec( dllexport ) void setMausHintergrundFarbe( int f );
-
-
- __declspec( dllexport ) void setMausHintergrundBildZ( Bild *bgB );
-
-
- __declspec( dllexport ) void setMausHintergrundBild( Bild *bgB );
-
-
- __declspec( dllexport ) void setMausAlphaFeldZ( AlphaFeld *af );
-
-
- __declspec( dllexport ) void setMausAlphaFeldFarbe( int afF );
-
-
- __declspec( dllexport ) void setMausAlphaFeldStrength( int afSt );
-
-
-
- __declspec( dllexport ) void setMsMausRahmenZ( int i, Rahmen *rahmen );
-
-
-
- __declspec( dllexport ) void setMsMausRahmenFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setMsMausRahmenBreite( int i, int rbr );
-
-
-
- __declspec( dllexport ) void setMsMausHintergrundFarbe( int i, int f );
-
-
-
- __declspec( dllexport ) void setMsMausHintergrundBildZ( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setMsMausHintergrundBild( int i, Bild *bgB );
-
-
-
- __declspec( dllexport ) void setMsMausAlphaFeldZ( int i, AlphaFeld *af );
-
-
-
- __declspec( dllexport ) void setMsMausAlphaFeldFarbe( int i, int afF );
-
-
-
- __declspec( dllexport ) void setMsMausAlphaFeldStrength( int i, int afSt );
-
-
- __declspec( dllexport ) void setAuswahl( int i );
-
- __declspec( dllexport ) void ausklappen();
-
- __declspec( dllexport ) void einklappen();
-
-
- __declspec( dllexport ) void scrollZuEintrag( int i );
-
-
- __declspec( dllexport ) void setMaxAuskappHeight( int maxHeight );
-
-
- __declspec( dllexport ) void setEintragHeight( int height );
-
-
-
- __declspec( dllexport ) void addMsStyle( int i, __int64 abStyle );
-
-
-
-
- __declspec( dllexport ) void setMsStyle( int i, __int64 abStyle, bool add );
-
-
-
- __declspec( dllexport ) void setMsStyle( int i, __int64 abStyle );
-
-
-
- __declspec( dllexport ) void removeMsStyle( int i, __int64 abStyle );
-
-
-
- __declspec( dllexport ) bool tick( double tickVal ) override;
-
-
- __declspec( dllexport ) void doMausEreignis( MausEreignis &me ) override;
-
-
- __declspec( dllexport ) void doTastaturEreignis( TastaturEreignis &te ) override;
-
-
- __declspec( dllexport ) void render( Bild &zRObj ) override;
-
-
- __declspec( dllexport ) int getEintragPos( const char *txt ) const;
-
-
- __declspec( dllexport ) int getEintragPos( Text *txt ) const;
-
-
- __declspec( dllexport ) Text *getEintragText( int i ) const;
-
-
- __declspec( dllexport ) Text *zEintragText( int i ) const;
-
-
- __declspec( dllexport ) TextFeld *getEintrag( int i ) const;
-
-
- __declspec( dllexport ) TextFeld *zEintrag( int i ) const;
-
- __declspec( dllexport ) int getAuswahl() const;
-
- __declspec( dllexport ) int getEintragAnzahl() const;
-
- __declspec( dllexport ) bool istAusgeklappt() const;
-
- __declspec( dllexport ) int getMaxHeight() const;
-
- __declspec( dllexport ) int getEintragHeight() const;
-
- __declspec( dllexport ) Knopf *getAusklappKnopf() const;
-
- __declspec( dllexport ) Knopf *zAusklappKnopf() const;
-
-
- __declspec( dllexport ) Rahmen *getEintragRahmen( int i ) const;
-
-
- __declspec( dllexport ) Rahmen *zEintragRahmen( int i ) const;
-
-
- __declspec( dllexport ) int getEintragRahmenFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getEintragRahmenBreite( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *getEintragAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *zEintragAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) int getEintragAlphaFeldFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getEintragAlphaFeldStrength( int i ) const;
-
-
- __declspec( dllexport ) int getEintragHintergrundFarbe( int i ) const;
-
-
- __declspec( dllexport ) Bild *getEintragHintergrundBild( int i ) const;
-
-
- __declspec( dllexport ) Bild *zEintragHintergrundBild( int i ) const;
-
- __declspec( dllexport ) Rahmen *getAuswRahmen() const;
-
- __declspec( dllexport ) Rahmen *zAuswRahmen() const;
-
- __declspec( dllexport ) int getAuswRahmenFarbe() const;
-
- __declspec( dllexport ) int getAuswRahmenBreite() const;
-
- __declspec( dllexport ) AlphaFeld *getAuswAlphaFeld() const;
-
- __declspec( dllexport ) AlphaFeld *zAuswAlphaFeld() const;
-
- __declspec( dllexport ) int getAuswAlphaFeldFarbe() const;
-
- __declspec( dllexport ) int getAuswAlphaFeldStrength() const;
-
- __declspec( dllexport ) int getAuswHintergrundFarbe() const;
-
- __declspec( dllexport ) Bild *getAuswHintergrundBild() const;
-
- __declspec( dllexport ) Bild *zAuswHintergrundBild() const;
-
-
- __declspec( dllexport ) Rahmen *getMsAuswRahmen( int i ) const;
-
-
- __declspec( dllexport ) Rahmen *zMsAuswRahmen( int i ) const;
-
-
- __declspec( dllexport ) int getMsAuswRahmenFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getMsAuswRahmenBreite( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *getMsAuswAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *zMsAuswAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) int getMsAuswAlphaFeldFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getMsAuswAlphaFeldStrength( int i ) const;
-
-
- __declspec( dllexport ) int getMsAuswHintergrundFarbe( int i ) const;
-
-
- __declspec( dllexport ) Bild *getMsAuswHintergrundBild( int i ) const;
-
-
- __declspec( dllexport ) Bild *zMsAuswHintergrundBild( int i ) const;
-
- __declspec( dllexport ) Rahmen *getMausRahmen() const;
-
- __declspec( dllexport ) Rahmen *zMausRahmen() const;
-
- __declspec( dllexport ) int getMausRahmenFarbe() const;
-
- __declspec( dllexport ) int getMausRahmenBreite() const;
-
- __declspec( dllexport ) AlphaFeld *getMausAlphaFeld() const;
-
- __declspec( dllexport ) AlphaFeld *zMausAlphaFeld() const;
-
- __declspec( dllexport ) int getMausAlphaFeldFarbe() const;
-
- __declspec( dllexport ) int getMausAlphaFeldStrength() const;
-
- __declspec( dllexport ) int getMausHintergrundFarbe() const;
-
- __declspec( dllexport ) Bild *getMausHintergrundBild() const;
-
- __declspec( dllexport ) Bild *zMausHintergrundBild() const;
-
-
- __declspec( dllexport ) Rahmen *getMsMausRahmen( int i ) const;
-
-
- __declspec( dllexport ) Rahmen *zMsMausRahmen( int i ) const;
-
-
- __declspec( dllexport ) int getMsMausRahmenFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getMsMausRahmenBreite( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *getMsMausAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) AlphaFeld *zMsMausAlphaFeld( int i ) const;
-
-
- __declspec( dllexport ) int getMsMausAlphaFeldFarbe( int i ) const;
-
-
- __declspec( dllexport ) int getMsMausAlphaFeldStrength( int i ) const;
-
-
- __declspec( dllexport ) int getMsMausHintergrundFarbe( int i ) const;
-
-
- __declspec( dllexport ) Bild *getMsMausHintergrundBild( int i ) const;
-
-
- __declspec( dllexport ) Bild *zMsMausHintergrundBild( int i ) const;
-
-
-
- __declspec( dllexport ) inline bool hatMsStyle( int i, __int64 abStyle ) const;
-
-
-
- __declspec( dllexport ) inline bool hatMsStyleNicht( int i, __int64 abStyle ) const;
- __declspec( dllexport ) Zeichnung *dublizieren() const override;
- };
- }
- #endif
|