123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756 |
- #ifndef Fenster_H
- #define Fenster_H
- #include "Array.h"
- #include "Zeichnung.h"
- namespace Framework
- {
- class VScrollBar;
- class HScrollBar;
- class TextFeld;
- class Rahmen;
- class Bildschirm;
- class AlphaFeld;
- class Schrift;
- class Text;
- class Bild;
- class WFenster;
- class WFensterArray;
- class Fenster;
- #ifdef WIN32
-
-
-
- DLLEXPORT WNDCLASS F_Normal(HINSTANCE hInst);
-
-
-
- DLLEXPORT WNDCLASSEX F_NormalEx(HINSTANCE hInst);
-
-
- DLLEXPORT LRESULT CALLBACK WindowProc(
- HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);
-
-
-
- DLLEXPORT void StartNachrichtenSchleife();
-
-
-
-
-
- DLLEXPORT void StopNachrichtenSchleife(HWND hwnd);
-
-
- DLLEXPORT void CalculateEnteredString(
- int virtualKeyCode, int scanCode, TastaturEreignis& te);
-
- class WFenster : public virtual ReferenceCounter
- {
- private:
- HWND hWnd;
- int style;
- void* makParam;
- void* sakParam;
- void* takParam;
- MausAktion mausAktion;
- std::function<void(void*, void*)> vCloseAktion;
- std::function<void(void*, void*)> nCloseAktion;
- TastaturAktion tastaturAktion;
- Bildschirm* screen;
- int mx, my;
- bool verschiebbar;
- HWND rahmen;
- HBITMAP bitmap;
- HDC hdc;
- public:
-
- DLLEXPORT WFenster();
-
-
-
- DLLEXPORT WFenster(HWND hWnd);
-
- DLLEXPORT ~WFenster();
-
-
-
-
-
-
- DLLEXPORT void erstellen(int style, WNDCLASS wc);
-
-
-
-
-
-
-
-
- DLLEXPORT void erstellenEx(int exStyle, int style, WNDCLASSEX wc);
-
-
-
- DLLEXPORT void setAnzeigeModus(int mod);
-
-
- DLLEXPORT bool setFokus();
-
-
- DLLEXPORT void setPosition(const Punkt& pos);
-
-
-
- DLLEXPORT void setPosition(int x, int y);
-
-
- DLLEXPORT void setSize(Punkt& größe);
-
-
-
- DLLEXPORT void setSize(int breite, int höhe);
-
-
-
- DLLEXPORT void setBounds(const Punkt& pos, const Punkt& größe);
-
-
-
-
- DLLEXPORT void setBildschirm(Bildschirm* screen);
-
- DLLEXPORT void zerstören();
-
-
-
-
- DLLEXPORT void doMausAktion(MausEreignis& me);
-
- DLLEXPORT void doVSchließAktion();
-
- DLLEXPORT void doNSchließAktion();
-
-
-
-
- DLLEXPORT void doTastaturAktion(TastaturEreignis& et);
-
-
- DLLEXPORT void doRestoreMessage();
-
-
- DLLEXPORT void setMausEreignisParameter(void* p);
-
-
- DLLEXPORT void setSchließEreignisParameter(void* p);
-
-
- DLLEXPORT void setTastaturEreignisParameter(void* p);
-
-
-
-
-
-
- DLLEXPORT void setMausAktion(MausAktion ak);
-
-
- DLLEXPORT void setVSchließAktion(std::function<void(void*, void*)> ak);
-
-
- DLLEXPORT void setNSchließAktion(std::function<void(void*, void*)> ak);
-
-
-
-
-
-
-
-
- DLLEXPORT void setTastaturAktion(TastaturAktion ak);
-
-
-
- DLLEXPORT void setFensterHandle(HWND hWnd);
-
-
- DLLEXPORT void setVerschiebbar(bool verschiebbar);
-
-
-
-
- DLLEXPORT void ladeRahmenFenster(Bild* zBild,
- HINSTANCE
- hinst);
-
- DLLEXPORT HWND getFensterHandle() const;
-
- DLLEXPORT Punkt getPosition() const;
-
- DLLEXPORT Punkt getGröße() const;
-
- DLLEXPORT Punkt getKörperGröße() const;
-
- DLLEXPORT int getKörperBreite() const;
-
- DLLEXPORT int getKörperHöhe() const;
-
-
- DLLEXPORT bool hatMausAktion() const;
-
-
- DLLEXPORT bool hatVSchließAktion() const;
-
-
- DLLEXPORT bool hatNSchließAktion() const;
-
-
- DLLEXPORT bool hatTastaturAktion() const;
-
-
- DLLEXPORT Bildschirm* getBildschirm() const;
-
-
- DLLEXPORT Bildschirm* zBildschirm() const;
-
- DLLEXPORT bool istVerschiebbar() const;
- };
-
- class WFensterArray
- {
- private:
- WFensterArray* next;
- WFenster* This;
- public:
-
- DLLEXPORT WFensterArray();
-
- DLLEXPORT ~WFensterArray();
-
-
- DLLEXPORT bool addFenster(WFenster* fenster);
-
-
- DLLEXPORT bool removeFenster(WFenster* fenster);
-
- DLLEXPORT WFensterArray* getNext();
-
- DLLEXPORT void setNext0();
-
- DLLEXPORT void del();
-
-
- DLLEXPORT bool sendVSchließMessage(HWND hWnd);
-
-
- DLLEXPORT bool sendNSchließMessage(HWND hwnd);
-
-
-
- DLLEXPORT bool sendMausMessage(HWND hWnd, MausEreignis& me);
-
-
-
-
- DLLEXPORT bool sendTastaturMessage(HWND hwnd, TastaturEreignis& te);
-
-
- DLLEXPORT bool sendRestoreMessage(HWND hwnd);
-
- DLLEXPORT WFenster* getThis();
- };
-
-
-
-
-
-
- DLLEXPORT void WMessageBox(
- HWND hWnd, Text* titel, Text* meldung, UINT style);
- #endif
-
- class Fenster : public Zeichnung
- {
- public:
- class Style : public Zeichnung::Style
- {
- public:
-
- static const __int64 BodyHintergrund = 0x000000008;
-
-
- static const __int64 BodyHAlpha = 0x000000010;
-
-
- static const __int64 BodyHBild = 0x000000020;
-
- static const __int64 BodyBuffered = 0x000000040;
-
- static const __int64 Titel = 0x000000080;
-
- static const __int64 TitelHintergrund = 0x000000100;
-
-
- static const __int64 TitelHAlpha = 0x000000200;
-
-
- static const __int64 TitelHBild = 0x000000400;
-
- static const __int64 TitelBuffered = 0x000000800;
-
-
- static const __int64 Closable = 0x000001000;
-
- static const __int64 ClosingHintergrund = 0x000002000;
-
-
- static const __int64 ClosingHAlpha = 0x000004000;
-
-
- static const __int64 ClosingHBild = 0x000008000;
-
- static const __int64 ClosingBuffer = 0x000010000;
-
-
- static const __int64 ClosingKlickBuffer = 0x000020000;
-
-
- static const __int64 Beweglich = 0x000040000;
-
-
-
- static const __int64 BreiteChangeable = 0x000080000;
-
-
-
- static const __int64 HeightChangeable = 0x000100000;
-
-
-
- static const __int64 TitelHeightChangeable = 0x000200000;
-
- static const __int64 MinBr = 0x000400000;
-
- static const __int64 MaxBr = 0x000800000;
-
- static const __int64 MinHi = 0x001000000;
-
- static const __int64 MaxHi = 0x002000000;
-
- static const __int64 BodyMinBr = 0x004000000;
-
- static const __int64 BodyMaxBr = 0x008000000;
-
- static const __int64 BodyMinHi = 0x010000000;
-
- static const __int64 BodyMaxHi = 0x020000000;
-
-
- static const __int64 VScroll = 0x040000000;
-
-
- static const __int64 HScroll = 0x080000000;
-
-
- static const __int64 METransparenz = 0x100000000;
-
- static const __int64 Rahmen = 0x200000000;
-
-
- static const __int64 LeftPositionFixed = 0x400000000;
-
-
- static const __int64 RightPositionFixed = 0x800000000;
-
-
- static const __int64 TopPositionFixed = 0x1000000000;
-
-
- static const __int64 BottomPositionFixed = 0x2000000000;
-
-
- static const __int64 CustomTitle = 0x4000000000;
-
- static const __int64 min_max = MinHi | MaxHi | MaxBr | MaxHi;
-
-
- static const __int64 body_min_max
- = BodyMinBr | BodyMaxBr | BodyMinHi | BodyMaxBr;
-
- static const __int64 scroll = VScroll | HScroll;
-
-
- static const __int64 nichtfixiert = TitelHeightChangeable
- | HeightChangeable
- | BreiteChangeable | Beweglich;
-
-
-
- static const __int64 normal
- = Sichtbar | Erlaubt | Rahmen | Titel | TitelBuffered | Closable
- | ClosingHBild | ClosingKlickBuffer | Beweglich
- | MEIgnoreVerarbeitet | MEIgnoreSichtbar | MEIgnoreParentInside
- | MEIgnoreInside;
- };
- private:
- MausAktion closingMe;
- void* closingMeParam;
- Rahmen* rahmen;
- TextFeld* titel;
- RCArray<Zeichnung>* members;
- int bgBodyColor;
- Bild* bgBodyPicture;
- AlphaFeld* bodyBuffer;
- int bgClosingFarbe;
- Bild* bgClosingBild;
- AlphaFeld* closeBuffer;
- AlphaFeld* closeKlickBuffer;
- VScrollBar* vScroll;
- HScrollBar* hScroll;
- Punkt min, max;
- Punkt kMin, kMax;
- bool closeKlick, klick;
- int moving;
- int mx, my;
- protected:
-
-
- DLLEXPORT void doMausEreignis(MausEreignis& me, bool userRet) override;
- public:
-
- DLLEXPORT Fenster();
-
- DLLEXPORT virtual ~Fenster();
-
-
- DLLEXPORT void setRahmenZ(Rahmen* ram);
-
-
- DLLEXPORT void setRFarbe(int f);
-
-
- DLLEXPORT void setRBreite(int br);
-
-
- DLLEXPORT void setTitel(Text* txt);
-
-
- DLLEXPORT void setTitelZ(Text* txt);
-
-
- DLLEXPORT void setTitel(const char* txt);
-
-
- DLLEXPORT void setTTextFeldZ(TextFeld* tf);
-
-
- DLLEXPORT void setTSchriftZ(Schrift* schrift);
-
-
- DLLEXPORT void setTSFarbe(int f);
-
-
- DLLEXPORT void setTSSize(int gr);
-
-
- DLLEXPORT void setTBgFarbe(int f);
-
-
- DLLEXPORT void setTAlphaFeldZ(AlphaFeld* af);
-
-
- DLLEXPORT void setTAfFarbe(int f);
-
-
- DLLEXPORT void setTAfStrength(int st);
-
-
- DLLEXPORT void setTBgBild(Bild* b);
-
-
- DLLEXPORT void setTBgBildZ(Bild* b);
-
-
- DLLEXPORT void setTRahmenZ(Rahmen* ram);
-
-
- DLLEXPORT void setTRFarbe(int f);
-
-
- DLLEXPORT void setTRBreite(int br);
-
-
- DLLEXPORT void setKBgFarbe(int f);
-
-
- DLLEXPORT void setKBgBild(Bild* b);
-
-
- DLLEXPORT void setKBgBildZ(Bild* b);
-
-
- DLLEXPORT void setKAlphaFeldZ(AlphaFeld* af);
-
-
- DLLEXPORT void setKAfFarbe(int f);
-
-
- DLLEXPORT void setKAfStrength(int st);
-
-
-
- DLLEXPORT void setClosingMeParam(void* param);
-
-
-
-
-
-
-
- DLLEXPORT void setClosingMe(MausAktion closingMe);
-
-
- DLLEXPORT void setSBgFarbe(int f);
-
-
- DLLEXPORT void setSBgBild(Bild* b);
-
-
- DLLEXPORT void setSBgBildZ(Bild* b);
-
-
- DLLEXPORT void setSAlphaFeldZ(AlphaFeld* af);
-
-
- DLLEXPORT void setSAfFarbe(int f);
-
-
- DLLEXPORT void setSAfStrength(int st);
-
-
- DLLEXPORT void setSKAlphaFeldZ(AlphaFeld* af);
-
-
- DLLEXPORT void setSKAfFarbe(int f);
-
-
- DLLEXPORT void setSKAfStrength(int st);
-
-
-
- DLLEXPORT void setMin(int mx, int my);
-
-
- DLLEXPORT void setMin(const Punkt& min);
-
-
-
- DLLEXPORT void setMax(int mx, int my);
-
-
- DLLEXPORT void setMax(const Punkt& max);
-
-
-
- DLLEXPORT void setKMin(int mx, int my);
-
-
- DLLEXPORT void setKMin(const Punkt& min);
-
-
-
- DLLEXPORT void setKMax(int mx, int my);
-
-
- DLLEXPORT void setKMax(const Punkt& max);
-
-
- DLLEXPORT void setHScrollBarZ(HScrollBar* hScroll);
-
-
- DLLEXPORT void setVScrollBarZ(VScrollBar* vScroll);
-
-
- DLLEXPORT void setHSBMax(int max);
-
-
- DLLEXPORT void setVSBMax(int max);
-
-
-
- DLLEXPORT void setHSBScroll(int scroll);
-
-
-
- DLLEXPORT void setVSBScroll(int scroll);
-
-
- DLLEXPORT void updateHScroll();
-
-
- DLLEXPORT void updateVScroll();
-
-
- DLLEXPORT virtual void addMember(Zeichnung* obj);
-
-
- DLLEXPORT void setMemberIndex(Zeichnung* zMember, int index);
-
-
- DLLEXPORT virtual void removeMember(Zeichnung* zObj);
-
- DLLEXPORT virtual void removeAll();
-
-
-
-
- DLLEXPORT bool tick(double tickval) override;
-
-
-
- DLLEXPORT void doTastaturEreignis(TastaturEreignis& te) override;
-
-
- DLLEXPORT void render(Bild& zRObj) override;
-
- DLLEXPORT int getInnenBreite() const override;
-
- DLLEXPORT int getInnenHeight() const override;
-
- DLLEXPORT Rahmen* getRahmen() const;
-
- DLLEXPORT Rahmen* zRahmen() const;
-
- DLLEXPORT int getRFarbe() const;
-
- DLLEXPORT int getRBreite() const;
-
- DLLEXPORT Text* getTitel() const;
-
- DLLEXPORT Text* zTitel() const;
-
- DLLEXPORT TextFeld* getTTextFeld() const;
-
-
- DLLEXPORT TextFeld* zTTextFeld() const;
-
- DLLEXPORT Schrift* getTSchrift() const;
-
-
- DLLEXPORT Schrift* zTSchrift() const;
-
- DLLEXPORT int getTSFarbe() const;
-
- DLLEXPORT int getTSSize() const;
-
- DLLEXPORT int getTBgFarbe() const;
-
- DLLEXPORT AlphaFeld* getTAlphaFeld() const;
-
-
- DLLEXPORT AlphaFeld* zTAlphaFeld() const;
-
-
- DLLEXPORT int getTAfFarbe() const;
-
- DLLEXPORT int getTAfStrength() const;
-
- DLLEXPORT Bild* getTBgBild() const;
-
-
- DLLEXPORT Bild* zTBgBild() const;
-
- DLLEXPORT Rahmen* getTRahmen() const;
-
- DLLEXPORT Rahmen* zTRahmen() const;
-
- DLLEXPORT int getTRFarbe() const;
-
- DLLEXPORT int getTRBreite() const;
-
- DLLEXPORT int getKBgFarbe() const;
-
- DLLEXPORT Bild* getKBgBild() const;
-
-
- DLLEXPORT Bild* zKBgBild() const;
-
- DLLEXPORT AlphaFeld* getKAlphaFeld() const;
-
-
- DLLEXPORT AlphaFeld* zKAlphaFeld() const;
-
-
- DLLEXPORT int getKAfFarbe() const;
-
- DLLEXPORT int getKAfStrength() const;
-
-
- DLLEXPORT int getSBgFarbe() const;
-
- DLLEXPORT Bild* getSBgBild() const;
-
-
- DLLEXPORT Bild* zSBgBild() const;
-
- DLLEXPORT AlphaFeld* getSAlphaFeld() const;
-
-
- DLLEXPORT AlphaFeld* zSAlphaFeld() const;
-
-
- DLLEXPORT int getSAfFarbe() const;
-
- DLLEXPORT int getSAfStrength() const;
-
-
- DLLEXPORT AlphaFeld* getSKAlphaFeld() const;
-
-
- DLLEXPORT AlphaFeld* zSKAlphaFeld() const;
-
-
- DLLEXPORT int getSKAfFarbe() const;
-
-
- DLLEXPORT int getSKAfStrength() const;
-
- DLLEXPORT const Punkt& getMin() const;
-
- DLLEXPORT const Punkt& getMax() const;
-
- DLLEXPORT const Punkt& getKMin() const;
-
- DLLEXPORT const Punkt& getKMax() const;
-
- DLLEXPORT VScrollBar* getVScrollBar() const;
-
-
- DLLEXPORT VScrollBar* zVScrollBar() const;
-
- DLLEXPORT HScrollBar* getHScrollBar() const;
-
-
- DLLEXPORT HScrollBar* zHScrollBar() const;
-
- DLLEXPORT const RCArray<Zeichnung>& getMembers() const;
-
- DLLEXPORT int getNeededChildWidth() const;
-
- DLLEXPORT int getNeededChildHeight() const;
-
-
- DLLEXPORT Zeichnung* dublizieren() const override;
- };
- }
- #endif
|