123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- #include "Fenster.h"
- #include "AlphaFeld.h"
- #include "Bild.h"
- #include "Bildschirm.h"
- #include "Globals.h"
- #include "MausEreignis.h"
- #include "Rahmen.h"
- #include "Scroll.h"
- #include "TastaturEreignis.h"
- #include "Text.h"
- #include "TextFeld.h"
- #include "ToolTip.h"
- #ifdef WIN32
- # include "Maus.h"
- #endif
- #include <iostream>
- #include "Zeit.h"
- using namespace Framework;
- #ifdef WIN32
- // Fensterklasse erzeugen
- WNDCLASS Framework::F_Normal(
- HINSTANCE hInst) // Erzeugen einer normalen Fensterklasse
- {
- if (!hInst) hInst = _hinst;
- WNDCLASS ret;
- ret.cbClsExtra = 0;
- ret.cbWndExtra = 0;
- ret.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
- ret.hCursor = LoadCursor(NULL, IDC_ARROW);
- ret.hIcon = LoadIcon(NULL, IDI_APPLICATION);
- ret.hInstance = hInst;
- ret.lpszMenuName = "";
- ret.lpfnWndProc = WindowProc;
- ret.style = CS_HREDRAW | CS_VREDRAW;
- return ret;
- }
- WNDCLASSEX Framework::F_NormalEx(HINSTANCE hInst)
- {
- if (!hInst) hInst = _hinst;
- WNDCLASSEX ret;
- ret.cbSize = sizeof(WNDCLASSEX);
- ret.cbClsExtra = 0;
- ret.cbWndExtra = 0;
- ret.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
- ret.hCursor = LoadCursor(NULL, IDC_ARROW);
- ret.hIcon = LoadIcon(NULL, IDI_APPLICATION);
- ret.hInstance = hInst;
- ret.lpszMenuName = "";
- ret.lpfnWndProc = WindowProc;
- ret.style = CS_HREDRAW | CS_VREDRAW;
- ret.hIconSm = 0;
- return ret;
- }
- // WinAPI
- LRESULT CALLBACK Framework::WindowProc(
- HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
- {
- setShowCursor(cursorVisible);
- if (msgExit) return (DefWindowProc(hwnd, message, wparam, lparam));
- switch (message)
- {
- // Maus Zeiger
- case WM_SETCURSOR:
- MausZeiger.update();
- return 0;
- // Fenster
- case WM_SIZE:
- if (wparam == SIZE_RESTORED) WFensterA.sendRestoreMessage(hwnd);
- break;
- // Schließen
- case WM_CLOSE:
- if (WFensterA.sendVSchließMessage(hwnd))
- return 0;
- else
- break;
- case WM_DESTROY:
- if (WFensterA.sendNSchließMessage(hwnd))
- return 0;
- else
- break;
- // Maus
- case WM_LBUTTONDOWN: // Linksklick
- if (1)
- {
- MausStand[M_Links] = 1;
- MausEreignis me = {ME_PLinks,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_RBUTTONDOWN: // Rechtsklick
- if (1)
- {
- MausStand[M_Rechts] = 1;
- MausEreignis me = {ME_PRechts,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MBUTTONDOWN: // Mittelklick
- if (1)
- {
- MausStand[M_Mitte] = 1;
- MausEreignis me = {ME_PMitte,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_LBUTTONUP: // Linksrelease
- if (1)
- {
- MausStand[M_Links] = 0;
- MausEreignis me = {ME_RLinks,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_RBUTTONUP: // Rechtsrelease
- if (1)
- {
- MausStand[M_Rechts] = 0;
- MausEreignis me = {ME_RRechts,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MBUTTONUP: // Mittelrelease
- if (1)
- {
- MausStand[M_Mitte] = 0;
- MausEreignis me = {ME_RMitte,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_LBUTTONDBLCLK: // Linksdoppelklick
- if (1)
- {
- MausEreignis me = {ME_DKLinks,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_RBUTTONDBLCLK: // Rechtsdoppelklick
- if (1)
- {
- MausEreignis me = {ME_DKRechts,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MBUTTONDBLCLK: // Mitteldoppelklick
- if (1)
- {
- MausEreignis me = {ME_DKMitte,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MOUSEHOVER: // Maus betritt Fenster
- if (1)
- {
- MausTrack = 1;
- MausEreignis me = {ME_Betritt,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MOUSELEAVE: // Maus verlässt Fenster
- if (1)
- {
- MausTrack = 1;
- MausEreignis me = {ME_Leaves,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MOUSEMOVE: // Maus wird bewegt
- if (1)
- {
- if (MausTrack)
- {
- TRACKMOUSEEVENT lptme;
- lptme.cbSize = sizeof(TRACKMOUSEEVENT);
- lptme.dwFlags = TME_HOVER | TME_LEAVE;
- lptme.dwHoverTime = 0;
- lptme.hwndTrack = hwnd;
- TrackMouseEvent(&lptme);
- MausTrack = 0;
- }
- MausEreignis me = {ME_Bewegung,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam),
- 0,
- 1,
- (int)LOWORD(lparam),
- (int)HIWORD(lparam)};
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- case WM_MOUSEWHEEL: // Maus scroll
- if (1)
- {
- Punkt pos = getMausPos();
- RECT r;
- GetWindowRect(hwnd, &r);
- pos.x -= r.left;
- pos.y -= r.top;
- MausEreignis me = {0, pos.x, pos.y, 0, 1, pos.x, pos.y};
- if ((int)(short)HIWORD(wparam) < 0)
- me.id = !getTastenStand(T_Shift) ? ME_DScroll : ME_RScroll;
- else
- me.id = !getTastenStand(T_Shift) ? ME_UScroll : ME_LScroll;
- WFensterA.sendMausMessage(hwnd, me);
- break;
- }
- // Tastatur
- case WM_KEYDOWN:
- if (1)
- {
- TastaturEreignis te = {
- TE_Press, {0, 0, 0},
- 0, 0
- };
- CalculateEnteredString((int)wparam, 0, te);
- WFensterA.sendTastaturMessage(hwnd, te);
- break;
- } // Taste wird gedrückt
- case WM_KEYUP:
- if (1)
- {
- TastaturEreignis te = {
- TE_Release, {0, 0, 0},
- 0, 0
- };
- CalculateEnteredString((int)wparam, HIWORD(lparam) & 0xFF, te);
- WFensterA.sendTastaturMessage(hwnd, te);
- break;
- } // Taste wird losgelassen
- }
- return (DefWindowProc(hwnd, message, wparam, lparam));
- }
- void Framework::StartNachrichtenSchleife()
- {
- MSG msg;
- while (GetMessage(&msg, NULL, 0, 0) > 0 && !msgExit)
- {
- if (!msgExit)
- {
- TranslateMessage(&msg);
- DispatchMessage(&msg);
- }
- }
- msgExit = 0;
- }
- void Framework::StopNachrichtenSchleife(HWND hwnd)
- {
- msgExit = 1;
- PostMessage(hwnd, WM_MOUSELEAVE, 0, 0);
- }
- void Framework::CalculateEnteredString(
- int virtualKeyCode, int scanCode, TastaturEreignis& te)
- {
- memset(te.taste, 0, sizeof(te.taste));
- te.virtualKey = virtualKeyCode;
- # ifdef WIN32
- unsigned char keyState[256];
- memset(keyState, 0, sizeof(keyState));
- if (GetKeyboardState(keyState))
- {
- unsigned short str[2] = {0, 0};
- int count = ToAscii(virtualKeyCode, scanCode, keyState, str, 0);
- if (count == 1 && (str[0] & 0xFF) == str[0])
- te.taste[0] = (unsigned char)str[0];
- else if (count == 2 && (str[0] & 0xFF) == str[0]
- && (str[1] & 0xFF) == str[1])
- te.taste[0] = (unsigned char)str[0],
- te.taste[1] = (unsigned char)str[1];
- }
- # endif // WIN32
- }
- // Inhalt der WFenster Klasse aus Fenster.h
- // Konstruktor
- WFenster::WFenster()
- : ReferenceCounter(),
- hWnd(0),
- style(0),
- makParam(0),
- sakParam(0),
- takParam(0),
- mausAktion(0),
- vCloseAktion(0),
- nCloseAktion(0),
- tastaturAktion(0),
- screen(0),
- mx(-1),
- my(-1),
- verschiebbar(0),
- rahmen(0),
- bitmap(0),
- hdc(0)
- {
- WFensterA.addFenster(this);
- }
- WFenster::WFenster(HWND hwnd)
- : WFenster()
- {
- hWnd = hwnd;
- }
- // Destruktor
- WFenster::~WFenster()
- {
- if (WFensterA.removeFenster(this))
- {
- WFensterA.del();
- }
- if (hWnd) zerstören();
- if (screen) screen->release();
- }
- // nicht constant
- void WFenster::erstellen(
- int style, WNDCLASS wc) // Erstellt ein Fenster in Windows
- {
- if (!GetClassInfo(wc.hInstance, wc.lpszClassName, &wc))
- {
- # pragma warning(suppress : 6102)
- if (!RegisterClass(&wc)) // Register Fensterklasse
- {
- MessageBox(hWnd,
- "Fehler beim Registrieren der Fensterklasse!",
- "Error",
- MB_ICONERROR); // Fehlermeldung bei Fehler
- return;
- }
- }
- hWnd = CreateWindow(wc.lpszClassName,
- wc.lpszClassName,
- style,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- wc.hInstance,
- 0); // Fenster Erstellen
- if (hWnd == 0)
- {
- MessageBox(hWnd,
- "Fehler beim erstellen des Fensters!",
- "Error",
- MB_ICONERROR); // Fehlermeldung bei Fehler
- return;
- }
- this->style = style;
- }
- void WFenster::erstellenEx(
- int exStyle, int style, WNDCLASSEX wc) // Das Fenster Erstellen
- {
- if (!GetClassInfoEx(wc.hInstance, wc.lpszClassName, &wc))
- {
- # pragma warning(suppress : 6102)
- if (!RegisterClassEx(&wc)) // Register Fensterklasse
- {
- MessageBox(hWnd,
- "Fehler beim Registrieren der Fensterklasse!",
- "Error",
- MB_ICONERROR); // Fehlermeldung bei Fehler
- return;
- }
- }
- hWnd = CreateWindowEx(exStyle,
- wc.lpszClassName,
- wc.lpszClassName,
- style,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- wc.hInstance,
- 0); // Fenster Erstellen
- if (hWnd == 0)
- {
- MessageBox(hWnd,
- "Fehler beim erstellen des Fensters!",
- "Error",
- MB_ICONERROR); // Fehlermeldung bei Fehler
- return;
- }
- this->style = style;
- }
- void WFenster::setAnzeigeModus(int mod) // Fenster Anzeigen
- {
- if (rahmen)
- {
- if (mod == 2)
- ShowWindow(rahmen, 0);
- else
- ShowWindow(rahmen, mod);
- }
- ShowWindow(hWnd, mod);
- }
- bool WFenster::setFokus() // Setzt den Fokus auf das Fenster
- {
- DWORD dwCurrentThread = GetCurrentThreadId();
- DWORD dwFGThread = GetWindowThreadProcessId(GetForegroundWindow(), NULL);
- AttachThreadInput(dwCurrentThread, dwFGThread, TRUE);
- SetFocus(hWnd);
- AttachThreadInput(dwCurrentThread, dwFGThread, FALSE);
- SetWindowPos(hWnd,
- HWND_TOPMOST,
- 0,
- 0,
- 0,
- 0,
- SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
- SetWindowPos(hWnd,
- HWND_NOTOPMOST,
- 0,
- 0,
- 0,
- 0,
- SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
- return GetFocus() == hWnd;
- }
- void WFenster::setPosition(const Punkt& p) // Fenster Position
- {
- setPosition(p.x, p.y);
- }
- void WFenster::setPosition(int x, int y)
- {
- RECT r;
- GetWindowRect(hWnd, &r); // Vorherige Position herausfinden
- RECT res;
- res.left = x, res.top = y, res.right = r.right - r.left,
- res.bottom = r.bottom - r.top;
- AdjustWindowRect(&res, style, 0);
- SetWindowPos(hWnd,
- 0,
- res.left,
- res.top,
- res.right,
- res.bottom,
- 0); // Position ändern
- }
- void WFenster::setSize(Punkt& g) // Fenster Größe
- {
- RECT r;
- GetWindowRect(hWnd, &r); // vorherige Größe herausfinden
- RECT res;
- res.left = r.left, res.top = r.top, res.right = g.x, res.bottom = g.y;
- AdjustWindowRect(&res, style, 0);
- SetWindowPos(
- hWnd, 0, res.left, res.top, res.right, res.bottom, 0); // Größe ändern
- }
- void WFenster::setSize(int breite, int höhe)
- {
- RECT r;
- GetWindowRect(hWnd, &r); // vorherige Größe herausfinden
- RECT res;
- res.left = r.left, res.top = r.top, res.right = breite, res.bottom = höhe;
- AdjustWindowRect(&res, style, 0);
- SetWindowPos(
- hWnd, 0, res.left, res.top, res.right, res.bottom, 0); // Größe ändern
- }
- void WFenster::setBounds(Punkt& p, Punkt& g) // setzt größe und Position
- {
- SetWindowPos(hWnd, 0, p.x, p.y, g.x, g.y, 0); // Größe und Position ändern
- }
- void WFenster::setBildschirm(Bildschirm* screen)
- {
- if (this->screen) this->screen->release();
- this->screen = screen;
- }
- void WFenster::zerstören()
- {
- DestroyWindow(hWnd);
- hWnd = 0;
- if (rahmen) DestroyWindow(rahmen);
- rahmen = 0;
- if (bitmap) DeleteObject(bitmap);
- bitmap = 0;
- if (hdc) DeleteDC(hdc);
- hdc = 0;
- }
- void WFenster::doMausAktion(MausEreignis& me)
- {
- if (!mausAktion || !mausAktion(makParam, this, me)) return;
- if (screen && me.id != ME_Betritt && me.id != ME_Leaves)
- {
- screen->doMausEreignis(me);
- if (!me.verarbeitet && verschiebbar)
- {
- if (mx != -1 && my != -1) // verschieben
- {
- RECT r;
- if (rahmen)
- {
- GetWindowRect(rahmen, &r);
- r.right -= r.left, r.bottom -= r.top;
- r.left += me.mx - mx;
- r.top += me.my - my;
- SetWindowPos(rahmen,
- 0,
- r.left,
- r.top,
- r.right,
- r.bottom,
- 0); // Position setzen
- }
- GetWindowRect(hWnd, &r); // Vorherige Position herausfinden
- r.right -= r.left, r.bottom -= r.top; // Position updaten
- r.left += me.mx - mx;
- r.top += me.my - my;
- SetWindowPos(hWnd,
- 0,
- r.left,
- r.top,
- r.right,
- r.bottom,
- 0); // Position setzen
- }
- else if (me.id == ME_PLinks) // verschieben starten
- mx = me.mx, my = me.my;
- if (me.id == ME_RLinks) // verschieben beenden
- mx = -1, my = -1;
- me.verarbeitet = 1;
- }
- }
- }
- void WFenster::doVSchließAktion()
- {
- if (!vCloseAktion) return;
- vCloseAktion(sakParam, this);
- }
- void WFenster::doNSchließAktion()
- {
- if (!nCloseAktion) return;
- nCloseAktion(sakParam, this);
- }
- void WFenster::doTastaturAktion(TastaturEreignis& te)
- {
- if (!tastaturAktion || !tastaturAktion(takParam, this, te)) return;
- if (screen) screen->doTastaturEreignis(te);
- }
- void WFenster::doRestoreMessage() // macht den Rahmen sichtbar
- {
- if (rahmen) ShowWindow(rahmen, 1);
- ShowWindow(hWnd, 1);
- }
- void WFenster::setMausEreignisParameter(
- void* p) // setzt den Parameter vom Maus Ereignis
- {
- makParam = p;
- }
- void WFenster::setSchließEreignisParameter(
- void* p) // setzt den Parameter vom Schließ Ereignis
- {
- sakParam = p;
- }
- void WFenster::setTastaturEreignisParameter(
- void* p) // setzt den Parameter vom Tastatur Ereignis
- {
- takParam = p;
- }
- void WFenster::setMausAktion(MausAktion mausAk)
- {
- mausAktion = mausAk;
- }
- void WFenster::setVSchließAktion(std::function<void(void*, void*)> vSchließAk)
- {
- vCloseAktion = vSchließAk;
- }
- void WFenster::setNSchließAktion(std::function<void(void*, void*)> nSchließAk)
- {
- nCloseAktion = nSchließAk;
- }
- void WFenster::setTastaturAktion(TastaturAktion tastaturAk)
- {
- tastaturAktion = tastaturAk;
- }
- void WFenster::setFensterHandle(HWND hWnd) // setzt das operationsfenster
- {
- this->hWnd = hWnd;
- }
- void WFenster::setVerschiebbar(
- bool verschiebbar) // legt fest, ob das Fenster durch ziehen mit Maus
- // verschoben werden kann
- {
- this->verschiebbar = verschiebbar;
- }
- void WFenster::ladeRahmenFenster(Bild* zBild,
- HINSTANCE hinst) // setzt einen Transpatenten Rahmen um das Fenster
- {
- if (!zBild) return;
- // Fenster erstellen
- WNDCLASSEX wcl = {0};
- wcl.cbSize = sizeof(wcl);
- wcl.style = CS_HREDRAW | CS_VREDRAW;
- wcl.lpfnWndProc = WindowProc;
- wcl.cbClsExtra = 0;
- wcl.cbWndExtra = 0;
- wcl.hInstance = hinst;
- wcl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
- wcl.hCursor = LoadCursor(NULL, IDC_ARROW);
- wcl.hbrBackground = NULL;
- wcl.lpszMenuName = NULL;
- wcl.lpszClassName = TEXT("LayeredWindowClass");
- wcl.hIconSm = NULL;
- // Bitmap erstellen
- hdc = CreateCompatibleDC(NULL);
- if (!hdc) return;
- BITMAPINFO info;
- info.bmiHeader.biSize = sizeof(info.bmiHeader);
- info.bmiHeader.biBitCount = 32;
- info.bmiHeader.biWidth = zBild->getBreite();
- info.bmiHeader.biHeight = -zBild->getHeight();
- info.bmiHeader.biCompression = BI_RGB;
- info.bmiHeader.biPlanes = 1;
- unsigned char* pPixels = 0;
- bitmap
- = CreateDIBSection(hdc, &info, DIB_RGB_COLORS, (void**)&pPixels, 0, 0);
- if (!bitmap) DeleteDC(hdc);
- GdiFlush();
- // bitmap füllen
- int pitch = ((zBild->getBreite() * 32 + 31) & ~31) >> 3;
- unsigned char* pRow = 0;
- int* buffer = zBild->getBuffer();
- for (int i = 0; i < zBild->getHeight(); ++i)
- {
- pRow = &pPixels[i * pitch];
- for (int i2 = 0; i2 < zBild->getBreite(); ++i2)
- {
- pRow[i2 * 4]
- = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 16)
- & 0xFF);
- pRow[i2 * 4 + 1]
- = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 8)
- & 0xFF);
- pRow[i2 * 4 + 2]
- = (unsigned char)((buffer[i2 + i * zBild->getBreite()]) & 0xFF);
- pRow[i2 * 4 + 3]
- = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 24)
- & 0xFF);
- }
- }
- // alpha berechnen
- unsigned char* pPixel = 0;
- if (zBild->getBreite() * 4 == pitch)
- {
- int i = 0;
- int totalBytes = zBild->getBreite() * zBild->getHeight() * 4;
- for (i = 0; i < totalBytes; i += 4)
- {
- pPixel = &pPixels[i];
- pPixel[0] *= (unsigned char)((float)pPixel[3] / 255.0f);
- pPixel[1] *= (unsigned char)((float)pPixel[3] / 255.0f);
- pPixel[2] *= (unsigned char)((float)pPixel[3] / 255.0f);
- }
- }
- else
- {
- int x = 0;
- int y = 0;
- for (y = 0; y < zBild->getHeight(); ++y)
- {
- for (x = 0; x < zBild->getBreite(); ++x)
- {
- pPixel = &pPixels[(y * pitch) + (x * 4)];
- pPixel[0] *= (unsigned char)((float)pPixel[3] / 255.0f);
- pPixel[1] *= (unsigned char)((float)pPixel[3] / 255.0f);
- pPixel[2] *= (unsigned char)((float)pPixel[3] / 255.0f);
- }
- }
- }
- // Fenster erstellen fortsetzen
- if (RegisterClassEx(&wcl))
- {
- rahmen = CreateWindowEx(WS_EX_TOOLWINDOW | WS_EX_LAYERED,
- wcl.lpszClassName,
- TEXT("Transparentes Fenster"),
- WS_POPUP,
- 0,
- 0,
- zBild->getBreite(),
- zBild->getHeight(),
- 0,
- 0,
- wcl.hInstance,
- 0);
- if (rahmen)
- {
- // zeichnen
- HDC h = 0;
- if ((h = GetDC(rahmen)) && bitmap)
- {
- HGDIOBJ hPrevObj = NULL;
- POINT ptDest = {0, 0};
- POINT ptSrc = {0, 0};
- SIZE client = {zBild->getBreite(), zBild->getHeight()};
- BLENDFUNCTION blendFunc = {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA};
- hPrevObj = SelectObject(hdc, bitmap);
- ClientToScreen(rahmen, &ptDest);
- UpdateLayeredWindow(rahmen,
- h,
- &ptDest,
- &client,
- hdc,
- &ptSrc,
- 0,
- &blendFunc,
- ULW_ALPHA);
- SelectObject(hdc, hPrevObj);
- ReleaseDC(rahmen, h);
- }
- UpdateWindow(rahmen);
- Punkt pos = getPosition() + (getGröße() - zBild->getSize()) / 2;
- SetWindowPos(rahmen,
- 0,
- pos.x,
- pos.y,
- zBild->getBreite(),
- zBild->getHeight(),
- 0);
- }
- }
- }
- // constant
- Punkt WFenster::getPosition() const // gibt die Position zurück
- {
- RECT r;
- GetWindowRect(hWnd, &r); // Position herausfinden
- return {r.left, r.top};
- }
- Punkt WFenster::getGröße() const // gibt die Größe zurück
- {
- RECT r;
- GetWindowRect(hWnd, &r); // Größe herausfinden
- return {r.right - r.left, r.bottom - r.top};
- }
- Punkt WFenster::getKörperGröße() const // gibt die Fenster Körpergröße zurück
- {
- RECT r;
- GetClientRect(hWnd, &r); // Größe herausfinden
- return {r.right - r.left, r.bottom - r.top};
- }
- int WFenster::getKörperBreite() const // gibt die Fenster Körperbreite zurück
- {
- RECT r;
- GetClientRect(hWnd, &r); // Größe herausfinden
- return r.right;
- }
- int WFenster::getKörperHöhe() const // gibt die Fenster Körperhöhe zurück
- {
- RECT r;
- GetClientRect(hWnd, &r); // Größe herausfinden
- return r.bottom;
- }
- HWND WFenster::getFensterHandle() const // gibt ein Handle zum Fenster zurück
- {
- return hWnd;
- }
- bool WFenster::hatMausAktion() const
- {
- return mausAktion != 0;
- }
- bool WFenster::hatVSchließAktion() const
- {
- return vCloseAktion != 0;
- }
- bool WFenster::hatNSchließAktion() const
- {
- return nCloseAktion != 0;
- }
- bool WFenster::hatTastaturAktion() const
- {
- return tastaturAktion != 0;
- }
- Bildschirm* WFenster::getBildschirm() const
- {
- if (!screen) return 0;
- return dynamic_cast<Bildschirm*>(screen->getThis());
- }
- Bildschirm* WFenster::zBildschirm() const
- {
- return screen;
- }
- bool WFenster::istVerschiebbar()
- const // prüft, ob das Fenster durch ziehen mit Maus verschoben werden kann
- {
- return verschiebbar;
- }
- // Inhalt der WFensterArray Klasse aus Fenster.h
- // Konstruktor
- WFensterArray::WFensterArray()
- : next(0),
- This(0)
- {}
- // Destruktor
- WFensterArray::~WFensterArray()
- {
- if (next) delete next;
- }
- // add und remove
- bool WFensterArray::addFenster(WFenster* fenster)
- {
- if (fenster == This) return 0;
- if (!This)
- {
- This = fenster;
- return 1;
- }
- if (!next) next = new WFensterArray();
- return next->addFenster(fenster);
- }
- bool WFensterArray::removeFenster(WFenster* fenster)
- {
- if (fenster == This) return 1;
- if (!next) return 0;
- if (next->removeFenster(fenster))
- {
- WFensterArray* tmp = next->getNext();
- next->setNext0();
- delete next;
- next = tmp;
- }
- return 0;
- }
- WFensterArray* WFensterArray::getNext()
- {
- return next;
- }
- void WFensterArray::setNext0()
- {
- next = 0;
- }
- void WFensterArray::del()
- {
- if (next)
- {
- This = next->getThis();
- WFensterArray* tmp = next->getNext();
- next->setNext0();
- delete next;
- next = tmp;
- }
- else
- This = 0;
- }
- // Messages
- bool WFensterArray::sendVSchließMessage(HWND hwnd)
- {
- if (!This) return 0;
- bool ret = 0;
- if (This->getFensterHandle() == hwnd && This->hatVSchließAktion())
- {
- This->doVSchließAktion();
- ret = 1;
- }
- if (!next) return ret;
- return ret || next->sendVSchließMessage(hwnd);
- }
- bool WFensterArray::sendNSchließMessage(HWND hwnd)
- {
- if (!This) return 0;
- bool ret = 0;
- if (This->getFensterHandle() == hwnd && This->hatNSchließAktion())
- {
- This->doNSchließAktion();
- ret = 1;
- }
- if (!next) return ret;
- return ret || next->sendNSchließMessage(hwnd);
- }
- bool WFensterArray::sendMausMessage(HWND hwnd, MausEreignis& me)
- {
- if (!This) return 0;
- bool ret = 0;
- if (This->getFensterHandle() == hwnd && This->hatMausAktion())
- {
- This->doMausAktion(me);
- ret = 1;
- }
- if (!next) return ret;
- return ret || next->sendMausMessage(hwnd, me);
- }
- bool WFensterArray::sendTastaturMessage(HWND hwnd, TastaturEreignis& te)
- {
- if (!This) return 0;
- bool ret = 0;
- if (This->getFensterHandle() == hwnd && This->hatTastaturAktion())
- {
- This->doTastaturAktion(te);
- ret = 1;
- }
- if (!next) return ret;
- return ret || next->sendTastaturMessage(hwnd, te);
- }
- bool WFensterArray::sendRestoreMessage(HWND hwnd)
- {
- if (!This) return 0;
- bool ret = 0;
- if (This->getFensterHandle() == hwnd && This->hatMausAktion())
- {
- This->doRestoreMessage();
- ret = 1;
- }
- if (!next) return ret;
- return ret || next->sendRestoreMessage(hwnd);
- }
- WFenster* WFensterArray::getThis()
- {
- return This;
- }
- // WMessageBox
- void Framework::WMessageBox(HWND hWnd, Text* titel, Text* meldung, UINT style)
- {
- MessageBox(
- hWnd, meldung->getText(), titel->getText(), style); // Message Box
- titel->release();
- meldung->release();
- }
- #endif
- // Inhalt der Fenster Klasse aus Fenster.h
- // Konstruktor
- Fenster::Fenster()
- : Zeichnung(),
- closingMe(0),
- closingMeParam(0),
- rahmen(0),
- titel(0),
- members(new RCArray<Zeichnung>()),
- bgBodyColor(0xFF000000),
- bgBodyPicture(0),
- bodyBuffer(0),
- bgClosingFarbe(0xFF000000),
- bgClosingBild(0),
- closeBuffer(0),
- closeKlickBuffer(0),
- vScroll(0),
- hScroll(0),
- kMin(0, 0),
- kMax(0, 0),
- closeKlick(0),
- klick(0),
- moving(0),
- mx(0),
- my(0)
- {
- style = Style::MEIgnoreVerarbeitet | Style::MEIgnoreSichtbar
- | Style::MEIgnoreParentInside | Style::MEIgnoreInside;
- this->setMausEreignis(_ret1ME);
- this->setTastaturEreignis(_ret1TE);
- min = Punkt(0, 0), max = Punkt(0, 0);
- }
- // Destruktor
- Fenster::~Fenster()
- {
- if (rahmen) rahmen->release();
- if (titel) titel->release();
- members->release();
- if (bodyBuffer) bodyBuffer->release();
- if (bgBodyPicture) bgBodyPicture->release();
- if (bgClosingBild) bgClosingBild->release();
- if (closeBuffer) closeBuffer->release();
- if (closeKlickBuffer) closeKlickBuffer->release();
- if (vScroll) vScroll->release();
- if (hScroll) hScroll->release();
- }
- void Fenster::doMausEreignis(MausEreignis& me, bool userRet)
- {
- if (me.id == ME_Leaves)
- {
- if (closeKlick != 0) rend = 1;
- closeKlick = 0, klick = 0;
- }
- if (hatStyleNicht(Style::Sichtbar) || !me.insideParent || me.verarbeitet
- || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet)
- {
- bool insideParent = me.insideParent;
- bool verarbeitet = me.verarbeitet;
- me.verarbeitet |= hatStyleNicht(Style::Sichtbar);
- me.insideParent = 0;
- int rbr = 0;
- if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
- int th = 0;
- if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
- me.mx -= rbr;
- me.my -= rbr + th;
- if (hatStyle(Style::VScroll) && vScroll) me.my += vScroll->getScroll();
- if (hatStyle(Style::HScroll) && hScroll) me.mx += hScroll->getScroll();
- if (me.id != ME_Betritt && me.id != ME_Leaves)
- {
- for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
- members->z(i)->doPublicMausEreignis(me);
- }
- me.mx += rbr;
- me.my += rbr + th;
- if (hatStyle(Style::VScroll) && vScroll) me.my -= vScroll->getScroll();
- if (hatStyle(Style::HScroll) && hScroll) me.mx -= hScroll->getScroll();
- me.insideParent = insideParent;
- if (hatStyleNicht(Style::Sichtbar)) me.verarbeitet = verarbeitet;
- if (!moving) return;
- }
- bool mvtmp = me.verarbeitet;
- if (hatStyleNicht(Style::Erlaubt)) me.verarbeitet = 1;
- int rbr = 0;
- if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
- int th = 0;
- if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
- bool hSc = hatStyle(Style::HScroll) && hScroll;
- bool vSc = hatStyle(Style::VScroll) && vScroll;
- if (me.id == ME_Bewegung && moving && getMausStand(M_Links))
- {
- if (hatStyle(Style::Beweglich) || hatStyle(Style::HeightChangeable)
- || hatStyle(Style::BreiteChangeable)
- || hatStyle(Style::TitelHeightChangeable))
- {
- bool ret1 = 0;
- bool mset = 0;
- int schi = 0;
- int scbr = 0;
- if (hSc)
- {
- schi = 15;
- }
- if (vSc)
- {
- scbr += 15;
- }
- bool minXb, maxXb, minYb, maxYb;
- bool kMinXb, kMaxXb, kMinYb, kMaxYb;
- minXb = hatStyle(Style::MinBr);
- maxXb = hatStyle(Style::MaxBr);
- minYb = hatStyle(Style::MinHi);
- maxYb = hatStyle(Style::MaxHi);
- kMinXb = hatStyle(Style::BodyMinBr);
- kMaxXb = hatStyle(Style::BodyMaxBr);
- kMinYb = hatStyle(Style::BodyMinHi);
- kMaxYb = hatStyle(Style::BodyMaxHi);
- int fMinBr = rbr * 2 + scbr;
- if (minXb) fMinBr = fMinBr < min.x ? min.x : fMinBr;
- if (kMinXb)
- fMinBr = fMinBr < (rbr * 2 + kMin.x + scbr)
- ? (rbr * 2 + kMin.x + scbr)
- : fMinBr;
- int fMinHi = rbr * 2 + th + schi;
- if (minYb) fMinHi = fMinHi < min.y ? min.y : fMinHi;
- if (kMinYb)
- fMinHi = fMinHi < (rbr * 2 + kMin.y + th + schi)
- ? (rbr * 2 + kMin.y + th + schi)
- : fMinHi;
- int fMaxBr = 0;
- if (maxXb) fMaxBr = max.x;
- if (kMaxXb)
- fMaxBr = fMaxBr < (rbr * 2 + kMax.x + scbr)
- ? (rbr * 2 + kMax.x + scbr)
- : fMaxBr;
- int fMaxHi = 0;
- if (maxYb) fMaxHi = max.y;
- if (kMaxYb)
- fMaxHi = fMaxHi < (rbr * 2 + kMax.y + th + schi)
- ? (rbr * 2 + kMax.y + th + schi)
- : fMaxHi;
- minXb |= kMinXb, maxXb |= kMaxXb, minYb |= kMinYb, maxYb |= kMaxYb;
- if (hatStyle(Style::HeightChangeable))
- {
- if ((moving | 0x1) == moving) // top
- {
- pos.y -= my - me.my;
- gr.y += my - me.my;
- if (gr.y < fMinHi)
- {
- pos.y -= fMinHi - gr.y;
- gr.y = fMinHi;
- }
- else if (maxYb && gr.y > fMaxHi)
- {
- pos.y -= gr.y - fMaxHi;
- gr.y = fMaxHi;
- }
- else if (vSc)
- vScroll->getScrollData()->anzeige = gr.y;
- rend = 1;
- ret1 = 1;
- }
- else if ((moving | 0x2) == moving) // bottom
- {
- gr.y += me.my - my;
- if (gr.y < fMinHi)
- gr.y = fMinHi;
- else if (maxYb && gr.y > fMaxHi)
- gr.y = fMaxHi;
- else
- {
- mset = 1;
- if (vSc) vScroll->getScrollData()->anzeige = gr.y;
- }
- rend = 1;
- ret1 = 1;
- }
- }
- if (hatStyle(Style::BreiteChangeable))
- {
- if ((moving | 0x4) == moving) // left
- {
- pos.x -= mx - me.mx;
- gr.x += mx - me.mx;
- if (gr.x < fMinBr)
- {
- pos.x -= fMinBr - gr.x;
- gr.x = fMinBr;
- }
- else if (maxXb && gr.x > fMaxBr)
- {
- pos.x -= gr.x - fMaxBr;
- gr.x = fMaxBr;
- }
- else if (hSc)
- hScroll->getScrollData()->anzeige = gr.x;
- rend = 1;
- ret1 = 1;
- }
- else if ((moving | 0x8) == moving) // right
- {
- gr.x += me.mx - mx;
- if (gr.x < rbr * 2 + fMinBr)
- gr.x = rbr * 2 + fMinBr;
- else if (maxXb && gr.x > fMaxBr)
- gr.x = fMaxBr;
- else
- {
- mset = 1;
- if (hSc) hScroll->getScrollData()->anzeige = gr.x;
- }
- rend = 1;
- ret1 = 1;
- }
- }
- if (hatStyle(Style::TitelHeightChangeable) && titel
- && (moving | 0x10) == moving) // titel height
- {
- int maxTh = gr.y - rbr * 2 - schi;
- if (kMaxYb)
- maxTh = maxTh < (gr.x - rbr * 2 - kMin.y)
- ? maxTh
- : (gr.x - rbr * 2 - kMin.y);
- if (hatStyle(Style::Closable))
- maxTh = (gr.x - th - 5 - rbr * 2 - me.my + my) < 0 ? th
- : maxTh;
- titel->setSize(
- titel->getBreite(), titel->getHeight() + me.my - my);
- if (titel->getHeight() > maxTh)
- titel->setSize(titel->getBreite(), maxTh);
- else if (titel->getHeight() < 5)
- titel->setSize(titel->getBreite(), 5);
- else
- mset = 1;
- rend = 1;
- ret1 = 1;
- }
- if (ret1)
- {
- if (mset) mx = me.mx, my = me.my;
- me.verarbeitet = 1;
- }
- if (hatStyle(Style::Beweglich) && (moving | 0x20) == moving) // move
- {
- pos.x += me.mx - mx;
- pos.y += me.my - my;
- rend = 1;
- ret1 = 1;
- }
- if (ret1) me.verarbeitet = 1;
- }
- }
- if (me.id == ME_RLinks)
- {
- if (closeKlick) rend = 1;
- closeKlick = 0, klick = 0;
- moving = 0;
- mx = -1, my = -1;
- }
- if (me.id == ME_Leaves)
- {
- if (closeKlick != 0) rend = 1;
- closeKlick = 0, klick = 0;
- }
- if (hatStyleNicht(Style::Sichtbar) || !me.insideParent || me.verarbeitet
- || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet)
- return;
- if (!me.verarbeitet)
- {
- if (hatStyle(Style::Closable) && me.my <= th + rbr
- && me.mx >= gr.x + rbr - th && me.my >= rbr && me.mx <= gr.x - rbr)
- {
- if (!closingMe || closingMe(closingMeParam, this, me))
- {
- if (me.id == ME_PLinks)
- {
- closeKlick = 1;
- rend = 1;
- }
- if (!closeKlick && MausStand[M_Links])
- {
- closeKlick = 1;
- rend = 1;
- }
- me.verarbeitet = 1;
- }
- }
- else if (closeKlick)
- {
- closeKlick = 0;
- rend = 1;
- }
- if (me.id == ME_PLinks && !closeKlick)
- {
- klick = 1;
- mx = me.mx, my = me.my;
- if (me.mx >= 0 && me.mx < gr.x && me.my >= 0 && me.my < rbr + 5
- && !hatStyle(Style::TopPositionFixed))
- moving |= 0x1;
- if (me.mx >= 0 && me.mx < gr.x && me.my >= gr.y - (rbr + 5)
- && me.my < gr.y && !hatStyle(Style::BottomPositionFixed))
- moving |= 0x2;
- if (me.mx >= 0 && me.mx < rbr + 5 && me.my >= 0 && me.my < gr.y
- && !hatStyle(Style::LeftPositionFixed))
- moving |= 0x4;
- if (me.mx >= gr.x - rbr - 5 && me.mx < gr.x && me.my >= 0
- && me.my < gr.y && !hatStyle(Style::RightPositionFixed))
- moving |= 0x8;
- if (titel && me.mx >= 0 && me.mx < gr.x
- && me.my >= titel->getHeight()
- && me.my < titel->getHeight() + 2 * (rbr + 5))
- moving |= 0x10;
- if (titel && me.mx >= 0 && me.mx < gr.x && me.my >= rbr + 5
- && me.my < titel->getHeight())
- moving |= 0x20;
- }
- }
- if (vSc)
- {
- vScroll->doMausMessage(
- gr.x - rbr - 15, rbr + th, 15, gr.y - rbr * 2 - th, me);
- if (hSc)
- hScroll->doMausMessage(
- rbr, gr.y - rbr - 15, gr.x - rbr * 2 - 15, 15, me);
- }
- else if (hSc)
- hScroll->doMausMessage(rbr, gr.y - rbr - 15, gr.x - rbr * 2, 15, me);
- me.mx -= rbr;
- me.my -= rbr + th;
- if (hatStyle(Style::VScroll) && vScroll) me.my += vScroll->getScroll();
- if (hatStyle(Style::HScroll) && hScroll) me.mx += hScroll->getScroll();
- if (me.id != ME_Betritt && me.id != ME_Leaves)
- {
- for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
- members->z(i)->doPublicMausEreignis(me);
- }
- me.mx += rbr;
- me.my += rbr + th;
- if (hatStyle(Style::VScroll) && vScroll) me.my -= vScroll->getScroll();
- if (hatStyle(Style::HScroll) && hScroll) me.mx -= hScroll->getScroll();
- if (hatStyleNicht(Style::METransparenz)) me.verarbeitet = 1;
- if (hatStyleNicht(Style::Erlaubt)) me.verarbeitet = mvtmp;
- }
- // nicht const
- // -- Rahmen --
- void Fenster::setRahmenZ(Rahmen* ram) // setzt den rahmen
- {
- if (rahmen) rahmen->release();
- rahmen = ram;
- rend = 1;
- }
- void Fenster::setRFarbe(int f) // setzt die Rahmen Farbe
- {
- if (!rahmen) rahmen = new LRahmen();
- rahmen->setFarbe(f);
- rend = 1;
- }
- void Fenster::setRBreite(int br) // setzt die Breite des Rahmens
- {
- if (!rahmen) rahmen = new LRahmen();
- rahmen->setRamenBreite(br);
- rend = 1;
- }
- // -- Titel --
- void Fenster::setTitel(Text* txt) // setzt den Titel
- {
- if (!titel) titel = new TextFeld();
- titel->setText(txt);
- rend = 1;
- }
- void Fenster::setTitelZ(Text* txt)
- {
- if (!titel) titel = new TextFeld();
- titel->setTextZ(txt);
- rend = 1;
- }
- void Fenster::setTitel(const char* txt)
- {
- if (!titel) titel = new TextFeld();
- titel->setText(txt);
- rend = 1;
- }
- void Fenster::setTTextFeldZ(TextFeld* tf) // setzt das Titel TextFeld
- {
- if (titel) titel->release();
- titel = tf;
- rend = 1;
- }
- // -- Schrift --
- void Fenster::setTSchriftZ(Schrift* schrift) // setzt die Titel Schrift
- {
- if (!titel) titel = new TextFeld();
- titel->setSchriftZ(schrift);
- rend = 1;
- }
- void Fenster::setTSFarbe(int f) // setzt die Titel Schrift Farbe
- {
- if (!titel) titel = new TextFeld();
- titel->setSchriftFarbe(f);
- rend = 1;
- }
- void Fenster::setTSSize(int gr) // setzt die Titel Schrift Größe
- {
- if (!titel) titel = new TextFeld();
- titel->setSchriftSize((unsigned char)gr);
- rend = 1;
- }
- // -- Titel Hintergrund --
- void Fenster::setTBgFarbe(int f) // setzt Titel Hintergrund farbe
- {
- if (!titel) titel = new TextFeld();
- titel->setHintergrundFarbe(f);
- rend = 1;
- }
- // -- Titel AlphaFeld --
- void Fenster::setTAlphaFeldZ(AlphaFeld* af) // setzt das Titel AlphaFeld
- {
- if (!titel) titel = new TextFeld();
- titel->setAlphaFeldZ(af);
- rend = 1;
- }
- void Fenster::setTAfFarbe(int f) // setzt die Titel AlphFeld Farbe
- {
- if (!titel) titel = new TextFeld();
- titel->setAlphaFeldFarbe(f);
- rend = 1;
- }
- void Fenster::setTAfStrength(int st) // setzt die Stärke des Titel AlphaFeldes
- {
- if (!titel) titel = new TextFeld();
- titel->setAlphaFeldStrength(st);
- rend = 1;
- }
- // -- Titel Hintergrund Bild --
- void Fenster::setTBgBild(Bild* b) // setzt das Titel Hintergrund Bild
- {
- if (!titel) titel = new TextFeld();
- titel->setHintergrundBild(b);
- rend = 1;
- }
- void Fenster::setTBgBildZ(Bild* b)
- {
- if (!titel) titel = new TextFeld();
- titel->setHintergrundBildZ(b);
- rend = 1;
- }
- // -- Titel Rahmen --
- void Fenster::setTRahmenZ(Rahmen* ram) // set Titel Rahmen
- {
- if (!titel) titel = new TextFeld();
- titel->setRahmenZ(ram);
- rend = 1;
- }
- void Fenster::setTRFarbe(int f) // setzt die Titel Rahmen Farbe
- {
- if (!titel) titel = new TextFeld();
- titel->setRahmenFarbe(f);
- rend = 1;
- }
- void Fenster::setTRBreite(int br) // setzt die Titel Rahmen Breite
- {
- if (!titel) titel = new TextFeld();
- titel->setRahmenBreite(br);
- rend = 1;
- }
- // -- Körper Hintergrund --
- void Fenster::setKBgFarbe(int f) // setzt die Körper Hintergrund Farbe
- {
- bgBodyColor = f;
- rend = 1;
- }
- // -- Körper Hintergrund Bild --
- void Fenster::setKBgBild(Bild* b) // setzt das Körper Hintergrund Bild
- {
- if (!bgBodyPicture) bgBodyPicture = new Bild();
- bgBodyPicture->neuBild(b->getBreite(), b->getHeight(), 0);
- int* buff1 = bgBodyPicture->getBuffer();
- int* buff2 = b->getBuffer();
- int gr = bgBodyPicture->getBreite() * bgBodyPicture->getHeight();
- for (int i = 0; i < gr; ++i)
- buff1[i] = buff2[i];
- b->release();
- rend = 1;
- }
- void Fenster::setKBgBildZ(Bild* b)
- {
- if (bgBodyPicture) bgBodyPicture->release();
- bgBodyPicture = b;
- rend = 1;
- }
- // -- Körper AlphaFeld --
- void Fenster::setKAlphaFeldZ(AlphaFeld* af) // setzt das Körper AlphaFeld
- {
- if (bodyBuffer) bodyBuffer->release();
- bodyBuffer = af;
- rend = 1;
- }
- void Fenster::setKAfFarbe(int f) // setzt Körper AlphaFeld Farbe
- {
- if (!bodyBuffer) bodyBuffer = new AlphaFeld();
- bodyBuffer->setFarbe(f);
- rend = 1;
- }
- void Fenster::setKAfStrength(int st) // setzt die Stärke des Körper AlphaFeldes
- {
- if (!bodyBuffer) bodyBuffer = new AlphaFeld();
- bodyBuffer->setStrength(st);
- rend = 1;
- }
- // -- Schließen --
- void Fenster::setClosingMeParam(void* param)
- {
- closingMeParam = param;
- }
- void Fenster::setClosingMe(
- MausAktion closingMe) // setzt das Schließen Mausereignis
- {
- this->closingMe = closingMe;
- }
- // -- Schließen Hintergrund --
- void Fenster::setSBgFarbe(int f) // setzt die Schließ Hintergrund Farbe
- {
- bgClosingFarbe = f;
- rend = 1;
- }
- // -- Schließen Hintergrund Bild --
- void Fenster::setSBgBild(Bild* b) // setzt das Schließ Hintergrund Bild
- {
- if (!bgClosingBild) bgClosingBild = new Bild();
- bgClosingBild->neuBild(b->getBreite(), b->getHeight(), 0);
- int* buff1 = bgClosingBild->getBuffer();
- int* buff2 = b->getBuffer();
- int gr = bgClosingBild->getBreite() * bgClosingBild->getHeight();
- for (int i = 0; i < gr; ++i)
- buff1[i] = buff2[i];
- b->release();
- rend = 1;
- }
- void Fenster::setSBgBildZ(Bild* b)
- {
- if (bgClosingBild) bgClosingBild->release();
- bgClosingBild = b;
- rend = 1;
- }
- // -- Schließen AlphaFeld --
- void Fenster::setSAlphaFeldZ(AlphaFeld* af) // setzt das Schließ AlphaFeld
- {
- if (closeBuffer) closeBuffer->release();
- closeBuffer = af;
- rend = 1;
- }
- void Fenster::setSAfFarbe(int f) // setzt die Farbe des Schließ AlphaFeldes
- {
- if (!closeBuffer) closeBuffer = new AlphaFeld();
- closeBuffer->setFarbe(f);
- rend = 1;
- }
- void Fenster::setSAfStrength(int st) // setzt die Stärke des Schließ AlphaFeldes
- {
- if (!closeBuffer) closeBuffer = new AlphaFeld();
- closeBuffer->setStrength(st);
- rend = 1;
- }
- // -- Schließen Klick AlphaFeld --
- void Fenster::setSKAlphaFeldZ(
- AlphaFeld* af) // setzt das Schließ klick AlphaFeld
- {
- if (closeKlickBuffer) closeKlickBuffer->release();
- closeKlickBuffer = af;
- rend = 1;
- }
- void Fenster::setSKAfFarbe(
- int f) // setzt die Farbe des Schließ klick AlphaFeldes
- {
- if (!closeKlickBuffer) closeKlickBuffer = new AlphaFeld();
- closeKlickBuffer->setFarbe(f);
- rend = 1;
- }
- void Fenster::setSKAfStrength(
- int st) // setzt die Stärke des Schließ klick AlphaFeldes
- {
- if (!closeKlickBuffer) closeKlickBuffer = new AlphaFeld();
- closeKlickBuffer->setStrength(st);
- rend = 1;
- }
- // -- min max --
- void Fenster::setMin(int mx, int my) // setzt die Mindest Fenster Größe
- {
- min.x = mx;
- min.y = my;
- }
- void Fenster::setMin(const Punkt& min)
- {
- this->min = min;
- }
- void Fenster::setMax(int mx, int my) // setzt die Maximale Fenster Größe
- {
- max.x = mx;
- max.y = my;
- }
- void Fenster::setMax(const Punkt& max)
- {
- this->max = max;
- }
- void Fenster::setKMin(int mx, int my) // setzt die Mindest Körper Größe
- {
- kMin.x = mx;
- kMin.y = my;
- }
- void Fenster::setKMin(const Punkt& min)
- {
- kMin = min;
- }
- void Fenster::setKMax(int mx, int my) // setzt die Maximale Körper Größe
- {
- kMax.x = mx;
- kMax.y = my;
- }
- void Fenster::setKMax(const Punkt& max)
- {
- kMax = max;
- }
- // -- scroll --
- void Fenster::setHScrollBarZ(
- HScrollBar* hScroll) // setzt die Horizontale Scroll Bar
- {
- if (this->hScroll) this->hScroll->release();
- this->hScroll = hScroll;
- rend = 1;
- }
- void Fenster::setVScrollBarZ(
- VScrollBar* vScroll) // setzt die Vertikale Scroll BAr
- {
- if (this->vScroll) this->vScroll->release();
- this->vScroll = vScroll;
- rend = 1;
- }
- void Fenster::setHSBMax(int max) // setzt das Scroll Maximum
- {
- if (!hScroll) hScroll = new HScrollBar();
- int rbr = 0;
- if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
- int vsh = 0;
- if (hatStyle(Style::VScroll) && vScroll) vsh = 15;
- hScroll->update(max, gr.x - rbr * 2 - vsh);
- rend = 1;
- }
- void Fenster::setVSBMax(int max)
- {
- if (!vScroll) vScroll = new VScrollBar();
- int rbr = 0;
- int th = 0;
- if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
- if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
- int hsh = 0;
- if (hatStyle(Style::HScroll) && hScroll) hsh = 15;
- vScroll->update(max, gr.y - rbr * 2 - th - hsh);
- rend = 1;
- }
- void Fenster::setHSBScroll(int scroll) // setzt die momentane Scroll Position
- {
- if (!hScroll) hScroll = new HScrollBar();
- hScroll->scroll(scroll);
- rend = 1;
- }
- void Fenster::setVSBScroll(int scroll)
- {
- if (!vScroll) vScroll = new VScrollBar();
- vScroll->scroll(scroll);
- rend = 1;
- }
- // -- Members --
- void Fenster::addMember(Zeichnung* obj) // fügt einen Member hinzu
- {
- members->add(obj);
- rend = 1;
- }
- void Framework::Fenster::setMemberIndex(Zeichnung* zMember, int index)
- {
- if (index < 0 || index >= members->getEintragAnzahl()) return;
- int currentIndex = members->indexOf(zMember);
- members->setPosition(currentIndex, index);
- }
- void Fenster::removeMember(Zeichnung* zObj) // entfernt einen Member
- {
- for (int i = 0; i < members->getEintragAnzahl(); i++)
- {
- if (members->z(i) == zObj)
- {
- members->remove(i);
- rend = 1;
- }
- }
- }
- void Fenster::removeAll()
- {
- members->leeren();
- rend = 1;
- }
- // -- Messages --
- bool Fenster::tick(double tickval) // tick
- {
- if (hatStyle(Style::Sichtbar))
- {
- for (Zeichnung* i : *members)
- rend |= i->tick(tickval);
- }
- else
- {
- for (Zeichnung* i : *members)
- i->tick(tickval);
- }
- if (vScroll && hatStyle(Style::VScroll)) rend |= vScroll->getRend();
- if (hScroll && hatStyle(Style::HScroll)) rend |= hScroll->getRend();
- return Zeichnung::tick(tickval);
- }
- void Fenster::doTastaturEreignis(TastaturEreignis& te)
- {
- bool ntakc = !te.verarbeitet;
- if (hatStyle(Style::Sichtbar))
- {
- if (te.verarbeitet)
- {
- for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
- members->z(i)->doTastaturEreignis(te);
- }
- else
- {
- if (tak && tak(takParam, this, te))
- {
- for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
- members->z(i)->doTastaturEreignis(te);
- }
- }
- }
- if (ntakc && te.verarbeitet && nTak)
- te.verarbeitet = nTak(ntakParam, this, te);
- }
- // -- Render --
- void Fenster::render(Bild& zRObj) // zeichent nach zRObj
- {
- if (hatStyle(Style::Sichtbar))
- {
- lockZeichnung();
- if (!zRObj.setDrawOptions(pos, gr))
- {
- unlockZeichnung();
- return;
- }
- Zeichnung::render(zRObj);
- int rbr = 0;
- if (hatStyle(Style::Rahmen) && rahmen)
- {
- rahmen->setSize(gr);
- rahmen->render(zRObj);
- rbr = rahmen->getRBreite();
- }
- int th = 0;
- if (titel)
- titel->setStyle(TextFeld::Style::Sichtbar, hatStyle(Style::Titel));
- if (hatStyle(Style::Titel) && titel)
- {
- titel->setStyle(TextFeld::Style::Hintergrund,
- hatStyle(Style::TitelHintergrund));
- titel->setStyle(
- TextFeld::Style::HAlpha, hatStyle(Style::TitelHAlpha));
- titel->setStyle(
- TextFeld::Style::HBild, hatStyle(Style::TitelHBild));
- titel->setStyle(
- TextFeld::Style::Buffered, hatStyle(Style::TitelBuffered));
- th = titel->getHeight();
- if (!zRObj.setDrawOptions(rbr, rbr, gr.x - rbr * 2, th))
- {
- zRObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- int sbr = 0;
- if (hatStyle(Style::Closable))
- {
- sbr = th;
- if (hatStyle(Style::ClosingHintergrund))
- {
- if (hatStyle(Style::ClosingHAlpha))
- zRObj.alphaRegion(
- gr.x - th - rbr * 2, 0, th, th, bgClosingFarbe);
- else
- zRObj.fillRegion(
- gr.x - th - rbr * 2, 0, th, th, bgClosingFarbe);
- if (hatStyle(Style::ClosingHBild) && bgClosingBild)
- {
- if (hatStyle(Style::ClosingHAlpha))
- zRObj.alphaBild(
- gr.x - th - rbr * 2, 0, th, th, *bgClosingBild);
- else
- zRObj.drawBild(
- gr.x - th - rbr * 2, 0, th, th, *bgClosingBild);
- }
- }
- if (!hatStyle(Style::ClosingHBild) || !bgClosingBild)
- {
- zRObj.drawLinie(Punkt(gr.x - th - rbr * 2, 0),
- Punkt(gr.x - rbr * 2, th),
- 0xFFFFFFFF);
- zRObj.drawLinie(Punkt(gr.x - rbr * 2, 0),
- Punkt(gr.x - th - rbr * 2, th),
- 0xFFFFFFFF);
- }
- if (hatStyle(Style::ClosingBuffer) && closeBuffer)
- {
- closeBuffer->setPosition(gr.x - th - rbr * 2, 0);
- closeBuffer->setSize(th, th);
- closeBuffer->render(zRObj);
- }
- if (hatStyle(Style::ClosingKlickBuffer) && closeKlickBuffer
- && closeKlick)
- {
- closeKlickBuffer->setPosition(gr.x - th - rbr * 2, 0);
- closeKlickBuffer->setSize(th, th);
- closeKlickBuffer->render(zRObj);
- }
- }
- if (!hatStyle(Style::CustomTitle))
- titel->setSize(gr.x - rbr * 2 - sbr, th);
- titel->render(zRObj);
- zRObj.releaseDrawOptions();
- }
- bool vSc = hatStyle(Style::VScroll) && vScroll;
- bool hSc = hatStyle(Style::HScroll) && hScroll;
- if (vSc)
- {
- vScroll->render(
- gr.x - rbr - 15, rbr + th, 15, gr.y - rbr * 2 - th, zRObj);
- if (hSc)
- hScroll->render(
- rbr, gr.y - rbr - 15, gr.x - rbr * 2 - 15, 15, zRObj);
- }
- else if (hSc)
- hScroll->render(rbr, gr.y - rbr - 15, gr.x - rbr * 2, 15, zRObj);
- int x = rbr;
- int y = rbr + th;
- int br = gr.x - rbr * 2;
- int hi = gr.y - rbr * 2 - th;
- if (vSc) br -= 15;
- if (hSc) hi -= 15;
- if (!zRObj.setDrawOptions(x, y, br, hi))
- {
- zRObj.releaseDrawOptions();
- unlockZeichnung();
- return;
- }
- if (hatStyle(Style::BodyHintergrund))
- {
- if (hatStyle(Style::BodyHAlpha))
- zRObj.alphaRegion(0, 0, br, hi, bgBodyColor);
- else
- zRObj.fillRegion(0, 0, br, hi, bgBodyColor);
- if (hatStyle(Style::BodyHBild) && bgBodyPicture)
- {
- if (hatStyle(Style::BodyHAlpha))
- zRObj.alphaBild(0, 0, br, hi, *bgBodyPicture);
- else
- zRObj.drawBild(0, 0, br, hi, *bgBodyPicture);
- }
- }
- if (hatStyle(Style::BodyBuffered) && bodyBuffer)
- {
- bodyBuffer->setSize(br, hi);
- bodyBuffer->render(zRObj);
- }
- if (!vSc && !hSc)
- {
- for (Zeichnung* i : *members)
- i->render(zRObj);
- }
- else
- {
- zRObj.addScrollOffset(hSc ? hScroll->getScroll() : 0,
- vSc ? vScroll->getScroll() : 0);
- for (Zeichnung* i : *members)
- i->render(zRObj);
- }
- zRObj.releaseDrawOptions();
- zRObj.releaseDrawOptions();
- unlockZeichnung();
- }
- }
- // constant
- // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
- int Fenster::getInnenBreite() const
- {
- return getBreite() - 2 * getRBreite();
- }
- // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
- int Fenster::getInnenHeight() const
- {
- int th = 0;
- if (hatStyle(Style::Titel) && titel) th += titel->getHeight();
- return getHeight() - 2 * getRBreite() - th;
- }
- // -- Rahmen --
- Rahmen* Fenster::getRahmen() const // gibt den Rahmen zurück
- {
- if (!rahmen) return 0;
- return dynamic_cast<Rahmen*>(rahmen->getThis());
- }
- Rahmen* Fenster::zRahmen() const
- {
- return rahmen;
- }
- int Fenster::getRFarbe() const // gibt die Farbe des Rahmens zurück
- {
- if (!rahmen) return 0;
- return rahmen->getFarbe();
- }
- int Fenster::getRBreite() const // gibt die breite des Rahmens zurück
- {
- if (!rahmen || hatStyleNicht(Style::Rahmen)) return 0;
- return rahmen->getRBreite();
- }
- // -- Titel --
- Text* Fenster::getTitel() const // gibt den Titel zurück
- {
- if (!titel) return 0;
- return titel->getText();
- }
- Text* Fenster::zTitel() const
- {
- if (!titel) return 0;
- return titel->zText();
- }
- TextFeld* Fenster::getTTextFeld() const // gibt das Titel TextFeld zurück
- {
- if (!titel) return 0;
- return dynamic_cast<TextFeld*>(titel->getThis());
- }
- TextFeld* Fenster::zTTextFeld() const
- {
- return titel;
- }
- // -- Titel Schrift --
- Schrift* Fenster::getTSchrift() const // gibt die Titel Schrift zurück
- {
- if (!titel) return 0;
- return titel->getSchrift();
- }
- Schrift* Fenster::zTSchrift() const
- {
- if (!titel) return 0;
- return titel->zSchrift();
- }
- int Fenster::getTSFarbe() const // gibt die Titel Schrift Farbe zurück
- {
- if (!titel) return 0;
- return titel->getSchriftFarbe();
- }
- int Fenster::getTSSize() const // gibt die Titel Schrift Größe zurück
- {
- if (!titel) return 0;
- return titel->getSchriftSize();
- }
- // -- Titel Hintergrund --
- int Fenster::getTBgFarbe() const // gibt die Titel Hintergrund Farbe zurück
- {
- if (!titel) return 0;
- return titel->getHintergrundFarbe();
- }
- // -- Titel AlphaFeld --
- AlphaFeld* Fenster::getTAlphaFeld() const // gibt das Titel AlphaFeld zurück
- {
- if (!titel) return 0;
- return titel->getAlphaFeld();
- }
- AlphaFeld* Fenster::zTAlphaFeld() const
- {
- if (!titel) return 0;
- return titel->zAlphaFeld();
- }
- int Fenster::getTAfFarbe() const // gibt die Farbe des Titel AlphaFeldes zurück
- {
- if (!titel) return 0;
- return titel->getAlphaFeldFarbe();
- }
- int Fenster::getTAfStrength()
- const // gibt die Stärke des TitelAlphaFeldes zurück
- {
- if (!titel) return 0;
- return titel->getAlphaFeldStrength();
- }
- // -- Titel Hintergrund Bild --
- Bild* Fenster::getTBgBild() const // gibt das Titel Hintergrund Bild zurück
- {
- if (!titel) return 0;
- return titel->getHintergrundBild();
- }
- Bild* Fenster::zTBgBild() const
- {
- if (!titel) return 0;
- return titel->zHintergrundBild();
- }
- // -- Titel Rahmen --
- Rahmen* Fenster::getTRahmen() const // gibt den Titel Rahmen zurück
- {
- if (!titel) return 0;
- return titel->getRahmen();
- }
- Rahmen* Fenster::zTRahmen() const
- {
- if (!titel) return 0;
- return titel->zRahmen();
- }
- int Fenster::getTRFarbe() const // gibt die Farbe des Titel Rahmens zurück
- {
- if (!titel) return 0;
- return titel->getRahmenFarbe();
- }
- int Fenster::getTRBreite() const // gibt die Breite des Titel Rahmens zurück
- {
- if (!titel) return 0;
- return titel->getRahmenBreite();
- }
- // -- Körper Hintergrund --
- int Fenster::getKBgFarbe() const // gibt die Körper Hintergrund Farbe zurück
- {
- return bgBodyColor;
- }
- // -- Körper Hintergrund Bild --
- Bild* Fenster::getKBgBild() const // gibt das Körper Hintergrund Bild zurück
- {
- if (!bgBodyPicture) return 0;
- return dynamic_cast<Bild*>(bgBodyPicture->getThis());
- }
- Bild* Fenster::zKBgBild() const
- {
- return bgBodyPicture;
- }
- // -- Körper AlphaFeld --
- AlphaFeld* Fenster::getKAlphaFeld() const // gibt das Körper AlphaFeld zurück
- {
- if (!bodyBuffer) return 0;
- return dynamic_cast<AlphaFeld*>(bodyBuffer->getThis());
- }
- AlphaFeld* Fenster::zKAlphaFeld() const
- {
- return bodyBuffer;
- }
- int Fenster::getKAfFarbe() const // gibt die Farbe des Körper AlphaFeldes zurück
- {
- if (!bodyBuffer) return 0;
- return bodyBuffer->getFarbe();
- }
- int Fenster::getKAfStrength()
- const // gibt die Stärke des Körper AlphaFeldes zurück
- {
- if (!bodyBuffer) return 0;
- return bodyBuffer->getStrength();
- }
- // -- Schließen Hintergrund --
- int Fenster::getSBgFarbe() const // gibt die Schließ Hintergrund Farbe zurück
- {
- return bgClosingFarbe;
- }
- // -- Schließen Hintergrund Bild --
- Bild* Fenster::getSBgBild() const // gibt das Schließ Hintergrund Bild zurück
- {
- if (!bgClosingBild) return 0;
- return dynamic_cast<Bild*>(bgClosingBild->getThis());
- }
- Bild* Fenster::zSBgBild() const
- {
- return bgClosingBild;
- }
- // -- Schließen AlphaFeld --
- AlphaFeld* Fenster::getSAlphaFeld() const // gibt das Schließ AlphaFeld zurück
- {
- if (!closeBuffer) return 0;
- return dynamic_cast<AlphaFeld*>(closeBuffer->getThis());
- }
- AlphaFeld* Fenster::zSAlphaFeld() const
- {
- return closeBuffer;
- }
- int Fenster::getSAfFarbe()
- const // gibt die Farbe des Schließ AlphaFeldes zurück
- {
- if (!closeBuffer) return 0;
- return closeBuffer->getFarbe();
- }
- int Fenster::getSAfStrength()
- const // gibt die Stärke des Schließ AlphaFeldes zurück
- {
- if (!closeBuffer) return 0;
- return closeBuffer->getStrength();
- }
- // -- Schließen Klick AlphaFeld --
- AlphaFeld*
- Fenster::getSKAlphaFeld() const // gibt das Schließ Klick AlphaFeld zurück
- {
- if (!closeKlickBuffer) return 0;
- return dynamic_cast<AlphaFeld*>(closeKlickBuffer->getThis());
- }
- AlphaFeld* Fenster::zSKAlphaFeld() const
- {
- return closeKlickBuffer;
- }
- int Fenster::getSKAfFarbe()
- const // gibt die Farbe des Schließ Klick AlphaFeldes zurück
- {
- if (!closeKlickBuffer) return 0;
- return closeKlickBuffer->getFarbe();
- }
- int Fenster::getSKAfStrength()
- const // gibt die Stärke des Schließ Klick AlphaFeldes zurück
- {
- if (!closeKlickBuffer) return 0;
- return closeKlickBuffer->getStrength();
- }
- // -- min max --
- const Punkt& Fenster::getMin() const // gibt die minimale Fenstergröße zurück
- {
- return min;
- }
- const Punkt& Fenster::getMax() const // gibt die maximale Fenstergröße zurück
- {
- return max;
- }
- const Punkt& Fenster::getKMin() const // gibt die minimale Fenstergröße zurück
- {
- return kMin;
- }
- const Punkt& Fenster::getKMax() const // gibt die maximale Fenstergröße zurück
- {
- return kMax;
- }
- // -- scroll --
- VScrollBar*
- Fenster::getVScrollBar() const // gibt die Vertikale Scroll Bar zurück
- {
- if (!vScroll) return 0;
- return dynamic_cast<VScrollBar*>(vScroll->getThis());
- }
- VScrollBar* Fenster::zVScrollBar() const
- {
- return vScroll;
- }
- HScrollBar*
- Fenster::getHScrollBar() const // gibt die Horizontale Scroll Bar zurück
- {
- if (!hScroll) return 0;
- return dynamic_cast<HScrollBar*>(hScroll->getThis());
- }
- HScrollBar* Fenster::zHScrollBar() const
- {
- return hScroll;
- }
- // -- Members --
- const RCArray<Zeichnung>& Fenster::getMembers() const // gibt die Members zurück
- {
- return *members;
- }
- // -- Kopie --
- Zeichnung* Fenster::dublizieren() const // Erzeugt eine Kopie des Fensters
- {
- Fenster* ret = new Fenster();
- ret->setPosition(pos);
- ret->setSize(gr);
- ret->setMausEreignisParameter(makParam);
- ret->setTastaturEreignisParameter(takParam);
- ret->setMausEreignis(mak);
- ret->setTastaturEreignis(tak);
- if (toolTip) ret->setToolTipZ((ToolTip*)toolTip->dublizieren());
- ret->setStyle(style);
- ret->setClosingMeParam(closingMeParam);
- ret->setClosingMe(closingMe);
- if (rahmen)
- {
- ret->setRBreite(rahmen->getRBreite());
- ret->setRFarbe(rahmen->getFarbe());
- }
- if (titel) ret->setTTextFeldZ((TextFeld*)titel->dublizieren());
- ret->setKBgFarbe(bgBodyColor);
- if (bgBodyPicture)
- ret->setKBgBild(dynamic_cast<Bild*>(bgBodyPicture->getThis()));
- if (bodyBuffer)
- {
- ret->setKAfFarbe(bodyBuffer->getFarbe());
- ret->setKAfStrength(bodyBuffer->getStrength());
- }
- ret->setSBgFarbe(bgClosingFarbe);
- if (bgClosingBild)
- ret->setSBgBild(dynamic_cast<Bild*>(bgClosingBild->getThis()));
- if (closeBuffer)
- {
- ret->setSAfFarbe(closeBuffer->getFarbe());
- ret->setSAfStrength(closeBuffer->getStrength());
- }
- if (closeKlickBuffer)
- {
- ret->setSKAfFarbe(closeKlickBuffer->getFarbe());
- ret->setSKAfStrength(closeKlickBuffer->getStrength());
- }
- if (vScroll)
- {
- ret->setVSBMax(vScroll->getScrollData()->max);
- ret->setVSBScroll(vScroll->getScroll());
- }
- if (hScroll)
- {
- ret->setHSBMax(hScroll->getScrollData()->max);
- ret->setHSBScroll(hScroll->getScroll());
- }
- ret->setMin(min);
- ret->setMax(max);
- ret->setKMin(kMin);
- ret->setKMax(kMax);
- return ret;
- }
|