Fenster.cpp 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400
  1. #include "Fenster.h"
  2. #include "AlphaFeld.h"
  3. #include "Bild.h"
  4. #include "Bildschirm.h"
  5. #include "Globals.h"
  6. #include "MausEreignis.h"
  7. #include "Rahmen.h"
  8. #include "Scroll.h"
  9. #include "TastaturEreignis.h"
  10. #include "Text.h"
  11. #include "TextFeld.h"
  12. #include "ToolTip.h"
  13. #ifdef WIN32
  14. # include "Maus.h"
  15. #endif
  16. #include <iostream>
  17. #include "Logging.h"
  18. #include "Zeit.h"
  19. using namespace Framework;
  20. #ifdef WIN32
  21. // Fensterklasse erzeugen
  22. WNDCLASS Framework::F_Normal(
  23. HINSTANCE hInst) // Erzeugen einer normalen Fensterklasse
  24. {
  25. if (!hInst) hInst = _hinst;
  26. WNDCLASS ret;
  27. ret.cbClsExtra = 0;
  28. ret.cbWndExtra = 0;
  29. ret.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
  30. ret.hCursor = LoadCursor(NULL, IDC_ARROW);
  31. ret.hIcon = LoadIcon(NULL, IDI_APPLICATION);
  32. ret.hInstance = hInst;
  33. ret.lpszMenuName = "";
  34. ret.lpfnWndProc = WindowProc;
  35. ret.style = CS_HREDRAW | CS_VREDRAW;
  36. return ret;
  37. }
  38. WNDCLASSEX Framework::F_NormalEx(HINSTANCE hInst)
  39. {
  40. if (!hInst) hInst = _hinst;
  41. WNDCLASSEX ret;
  42. ret.cbSize = sizeof(WNDCLASSEX);
  43. ret.cbClsExtra = 0;
  44. ret.cbWndExtra = 0;
  45. ret.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
  46. ret.hCursor = LoadCursor(NULL, IDC_ARROW);
  47. ret.hIcon = LoadIcon(NULL, IDI_APPLICATION);
  48. ret.hInstance = hInst;
  49. ret.lpszMenuName = "";
  50. ret.lpfnWndProc = WindowProc;
  51. ret.style = CS_HREDRAW | CS_VREDRAW;
  52. ret.hIconSm = 0;
  53. return ret;
  54. }
  55. // WinAPI
  56. LRESULT CALLBACK Framework::WindowProc(
  57. HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
  58. {
  59. setShowCursor(cursorVisible);
  60. if (msgExit) return (DefWindowProc(hwnd, message, wparam, lparam));
  61. switch (message)
  62. {
  63. case WM_SETCURSOR: // Maus Zeiger
  64. MausZeiger.update();
  65. return 0;
  66. case WM_SIZE: // Fenster
  67. if (wparam == SIZE_RESTORED) WFensterA.sendRestoreMessage(hwnd);
  68. break;
  69. case WM_CLOSE: // Schließen
  70. if (WFensterA.sendVSchließMessage(hwnd)) return 0;
  71. break;
  72. case WM_DESTROY:
  73. if (WFensterA.sendNSchließMessage(hwnd)) return 0;
  74. break; // Maus
  75. case WM_LBUTTONDOWN: // Linksklick
  76. {
  77. MausStand[M_Links] = 1;
  78. MausEreignis me = {ME_PLinks,
  79. (int)LOWORD(lparam),
  80. (int)HIWORD(lparam),
  81. 0,
  82. 1,
  83. (int)LOWORD(lparam),
  84. (int)HIWORD(lparam)};
  85. WFensterA.sendMausMessage(hwnd, me);
  86. break;
  87. }
  88. case WM_RBUTTONDOWN: // Rechtsklick
  89. {
  90. MausStand[M_Rechts] = 1;
  91. MausEreignis me = {ME_PRechts,
  92. (int)LOWORD(lparam),
  93. (int)HIWORD(lparam),
  94. 0,
  95. 1,
  96. (int)LOWORD(lparam),
  97. (int)HIWORD(lparam)};
  98. WFensterA.sendMausMessage(hwnd, me);
  99. break;
  100. }
  101. case WM_MBUTTONDOWN: // Mittelklick
  102. {
  103. MausStand[M_Mitte] = 1;
  104. MausEreignis me = {ME_PMitte,
  105. (int)LOWORD(lparam),
  106. (int)HIWORD(lparam),
  107. 0,
  108. 1,
  109. (int)LOWORD(lparam),
  110. (int)HIWORD(lparam)};
  111. WFensterA.sendMausMessage(hwnd, me);
  112. break;
  113. }
  114. case WM_LBUTTONUP: // Linksrelease
  115. {
  116. MausStand[M_Links] = 0;
  117. MausEreignis me = {ME_RLinks,
  118. (int)LOWORD(lparam),
  119. (int)HIWORD(lparam),
  120. 0,
  121. 1,
  122. (int)LOWORD(lparam),
  123. (int)HIWORD(lparam)};
  124. WFensterA.sendMausMessage(hwnd, me);
  125. break;
  126. }
  127. case WM_RBUTTONUP: // Rechtsrelease
  128. {
  129. MausStand[M_Rechts] = 0;
  130. MausEreignis me = {ME_RRechts,
  131. (int)LOWORD(lparam),
  132. (int)HIWORD(lparam),
  133. 0,
  134. 1,
  135. (int)LOWORD(lparam),
  136. (int)HIWORD(lparam)};
  137. WFensterA.sendMausMessage(hwnd, me);
  138. break;
  139. }
  140. case WM_MBUTTONUP: // Mittelrelease
  141. {
  142. MausStand[M_Mitte] = 0;
  143. MausEreignis me = {ME_RMitte,
  144. (int)LOWORD(lparam),
  145. (int)HIWORD(lparam),
  146. 0,
  147. 1,
  148. (int)LOWORD(lparam),
  149. (int)HIWORD(lparam)};
  150. WFensterA.sendMausMessage(hwnd, me);
  151. break;
  152. }
  153. case WM_LBUTTONDBLCLK: // Linksdoppelklick
  154. {
  155. MausEreignis me = {ME_DKLinks,
  156. (int)LOWORD(lparam),
  157. (int)HIWORD(lparam),
  158. 0,
  159. 1,
  160. (int)LOWORD(lparam),
  161. (int)HIWORD(lparam)};
  162. WFensterA.sendMausMessage(hwnd, me);
  163. break;
  164. }
  165. case WM_RBUTTONDBLCLK: // Rechtsdoppelklick
  166. {
  167. MausEreignis me = {ME_DKRechts,
  168. (int)LOWORD(lparam),
  169. (int)HIWORD(lparam),
  170. 0,
  171. 1,
  172. (int)LOWORD(lparam),
  173. (int)HIWORD(lparam)};
  174. WFensterA.sendMausMessage(hwnd, me);
  175. break;
  176. }
  177. case WM_MBUTTONDBLCLK: // Mitteldoppelklick
  178. {
  179. MausEreignis me = {ME_DKMitte,
  180. (int)LOWORD(lparam),
  181. (int)HIWORD(lparam),
  182. 0,
  183. 1,
  184. (int)LOWORD(lparam),
  185. (int)HIWORD(lparam)};
  186. WFensterA.sendMausMessage(hwnd, me);
  187. break;
  188. }
  189. case WM_MOUSEHOVER: // Maus betritt Fenster
  190. {
  191. MausTrack = 1;
  192. MausEreignis me = {ME_Betritt,
  193. (int)LOWORD(lparam),
  194. (int)HIWORD(lparam),
  195. 0,
  196. 1,
  197. (int)LOWORD(lparam),
  198. (int)HIWORD(lparam)};
  199. WFensterA.sendMausMessage(hwnd, me);
  200. break;
  201. }
  202. case WM_MOUSELEAVE: // Maus verlässt Fenster
  203. {
  204. MausTrack = 1;
  205. MausEreignis me = {ME_Leaves,
  206. (int)LOWORD(lparam),
  207. (int)HIWORD(lparam),
  208. 0,
  209. 1,
  210. (int)LOWORD(lparam),
  211. (int)HIWORD(lparam)};
  212. WFensterA.sendMausMessage(hwnd, me);
  213. break;
  214. }
  215. case WM_MOUSEMOVE: // Maus wird bewegt
  216. {
  217. if (MausTrack)
  218. {
  219. TRACKMOUSEEVENT lptme;
  220. lptme.cbSize = sizeof(TRACKMOUSEEVENT);
  221. lptme.dwFlags = TME_HOVER | TME_LEAVE;
  222. lptme.dwHoverTime = 0;
  223. lptme.hwndTrack = hwnd;
  224. TrackMouseEvent(&lptme);
  225. MausTrack = 0;
  226. }
  227. MausEreignis me = {ME_Bewegung,
  228. (int)LOWORD(lparam),
  229. (int)HIWORD(lparam),
  230. 0,
  231. 1,
  232. (int)LOWORD(lparam),
  233. (int)HIWORD(lparam)};
  234. WFensterA.sendMausMessage(hwnd, me);
  235. break;
  236. }
  237. case WM_MOUSEWHEEL: // Maus scroll
  238. {
  239. Punkt pos = getMausPos();
  240. RECT r;
  241. GetWindowRect(hwnd, &r);
  242. pos.x -= r.left;
  243. pos.y -= r.top;
  244. MausEreignis me = {0, pos.x, pos.y, 0, 1, pos.x, pos.y};
  245. if ((int)(short)HIWORD(wparam) < 0)
  246. me.id = !getTastenStand(T_Shift) ? ME_DScroll : ME_RScroll;
  247. else
  248. me.id = !getTastenStand(T_Shift) ? ME_UScroll : ME_LScroll;
  249. WFensterA.sendMausMessage(hwnd, me);
  250. break;
  251. }
  252. // Tastatur
  253. case WM_KEYDOWN:
  254. {
  255. TastaturEreignis te = {
  256. TE_Press, {0, 0, 0},
  257. 0, 0
  258. };
  259. CalculateEnteredString((int)wparam, 0, te);
  260. WFensterA.sendTastaturMessage(hwnd, te);
  261. return 0;
  262. } // Taste wird gedrückt
  263. case WM_KEYUP:
  264. {
  265. TastaturEreignis te = {
  266. TE_Release, {0, 0, 0},
  267. 0, 0
  268. };
  269. CalculateEnteredString((int)wparam, HIWORD(lparam) & 0xFF, te);
  270. WFensterA.sendTastaturMessage(hwnd, te);
  271. return 0;
  272. } // Taste wird losgelassen
  273. }
  274. return (DefWindowProc(hwnd, message, wparam, lparam));
  275. }
  276. void Framework::StartNachrichtenSchleife()
  277. {
  278. MSG msg;
  279. while (GetMessage(&msg, NULL, 0, 0) > 0 && !msgExit)
  280. {
  281. if (!msgExit)
  282. {
  283. TranslateMessage(&msg);
  284. DispatchMessage(&msg);
  285. }
  286. }
  287. msgExit = 0;
  288. }
  289. void Framework::StopNachrichtenSchleife(HWND hwnd)
  290. {
  291. msgExit = 1;
  292. PostMessage(hwnd, WM_MOUSELEAVE, 0, 0);
  293. }
  294. void Framework::CalculateEnteredString(
  295. int virtualKeyCode, int scanCode, TastaturEreignis& te)
  296. {
  297. memset(te.taste, 0, sizeof(te.taste));
  298. te.virtualKey = virtualKeyCode;
  299. # ifdef WIN32
  300. unsigned char keyState[256];
  301. memset(keyState, 0, sizeof(keyState));
  302. if (GetKeyboardState(keyState))
  303. {
  304. unsigned short str[2] = {0, 0};
  305. int count = ToAscii(virtualKeyCode, scanCode, keyState, str, 0);
  306. if (count == 1 && (str[0] & 0xFF) == str[0])
  307. te.taste[0] = (unsigned char)str[0];
  308. else if (count == 2 && (str[0] & 0xFF) == str[0]
  309. && (str[1] & 0xFF) == str[1])
  310. te.taste[0] = (unsigned char)str[0],
  311. te.taste[1] = (unsigned char)str[1];
  312. }
  313. # endif // WIN32
  314. }
  315. // Inhalt der WFenster Klasse aus Fenster.h
  316. // Konstruktor
  317. WFenster::WFenster()
  318. : ReferenceCounter(),
  319. hWnd(0),
  320. style(0),
  321. makParam(0),
  322. sakParam(0),
  323. takParam(0),
  324. mausAktion(0),
  325. vCloseAktion(0),
  326. nCloseAktion(0),
  327. tastaturAktion(0),
  328. screen(0),
  329. mx(-1),
  330. my(-1),
  331. verschiebbar(0),
  332. rahmen(0),
  333. bitmap(0),
  334. hdc(0)
  335. {
  336. WFensterA.addFenster(this);
  337. }
  338. WFenster::WFenster(HWND hwnd)
  339. : WFenster()
  340. {
  341. hWnd = hwnd;
  342. }
  343. // Destruktor
  344. WFenster::~WFenster()
  345. {
  346. if (WFensterA.removeFenster(this))
  347. {
  348. WFensterA.del();
  349. }
  350. if (hWnd) zerstören();
  351. if (screen) screen->release();
  352. }
  353. // nicht constant
  354. void WFenster::erstellen(
  355. int style, WNDCLASS wc) // Erstellt ein Fenster in Windows
  356. {
  357. if (!GetClassInfo(wc.hInstance, wc.lpszClassName, &wc))
  358. {
  359. # pragma warning(suppress : 6102)
  360. if (!RegisterClass(&wc)) // Register Fensterklasse
  361. {
  362. MessageBox(hWnd,
  363. "Fehler beim Registrieren der Fensterklasse!",
  364. "Error",
  365. MB_ICONERROR); // Fehlermeldung bei Fehler
  366. return;
  367. }
  368. }
  369. hWnd = CreateWindow(wc.lpszClassName,
  370. wc.lpszClassName,
  371. style,
  372. 0,
  373. 0,
  374. 0,
  375. 0,
  376. 0,
  377. 0,
  378. wc.hInstance,
  379. 0); // Fenster Erstellen
  380. if (hWnd == 0)
  381. {
  382. MessageBox(hWnd,
  383. "Fehler beim erstellen des Fensters!",
  384. "Error",
  385. MB_ICONERROR); // Fehlermeldung bei Fehler
  386. return;
  387. }
  388. this->style = style;
  389. }
  390. void WFenster::erstellenEx(
  391. int exStyle, int style, WNDCLASSEX wc) // Das Fenster Erstellen
  392. {
  393. if (!GetClassInfoEx(wc.hInstance, wc.lpszClassName, &wc))
  394. {
  395. # pragma warning(suppress : 6102)
  396. if (!RegisterClassEx(&wc)) // Register Fensterklasse
  397. {
  398. MessageBox(hWnd,
  399. "Fehler beim Registrieren der Fensterklasse!",
  400. "Error",
  401. MB_ICONERROR); // Fehlermeldung bei Fehler
  402. return;
  403. }
  404. }
  405. hWnd = CreateWindowEx(exStyle,
  406. wc.lpszClassName,
  407. wc.lpszClassName,
  408. style,
  409. 0,
  410. 0,
  411. 0,
  412. 0,
  413. 0,
  414. 0,
  415. wc.hInstance,
  416. 0); // Fenster Erstellen
  417. if (hWnd == 0)
  418. {
  419. MessageBox(hWnd,
  420. "Fehler beim erstellen des Fensters!",
  421. "Error",
  422. MB_ICONERROR); // Fehlermeldung bei Fehler
  423. return;
  424. }
  425. this->style = style;
  426. }
  427. void WFenster::setAnzeigeModus(int mod) // Fenster Anzeigen
  428. {
  429. if (rahmen)
  430. {
  431. if (mod == 2)
  432. ShowWindow(rahmen, 0);
  433. else
  434. ShowWindow(rahmen, mod);
  435. }
  436. ShowWindow(hWnd, mod);
  437. }
  438. bool WFenster::setFokus() // Setzt den Fokus auf das Fenster
  439. {
  440. DWORD dwCurrentThread = GetCurrentThreadId();
  441. DWORD dwFGThread = GetWindowThreadProcessId(GetForegroundWindow(), NULL);
  442. AttachThreadInput(dwCurrentThread, dwFGThread, TRUE);
  443. SetFocus(hWnd);
  444. AttachThreadInput(dwCurrentThread, dwFGThread, FALSE);
  445. SetWindowPos(hWnd,
  446. HWND_TOPMOST,
  447. 0,
  448. 0,
  449. 0,
  450. 0,
  451. SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
  452. SetWindowPos(hWnd,
  453. HWND_NOTOPMOST,
  454. 0,
  455. 0,
  456. 0,
  457. 0,
  458. SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
  459. return GetFocus() == hWnd;
  460. }
  461. void WFenster::setPosition(const Punkt& p) // Fenster Position
  462. {
  463. setPosition(p.x, p.y);
  464. }
  465. void WFenster::setPosition(int x, int y)
  466. {
  467. RECT r;
  468. GetWindowRect(hWnd, &r); // Vorherige Position herausfinden
  469. RECT res;
  470. res.left = x, res.top = y, res.right = r.right - r.left,
  471. res.bottom = r.bottom - r.top;
  472. AdjustWindowRect(&res, style, 0);
  473. SetWindowPos(hWnd,
  474. 0,
  475. res.left,
  476. res.top,
  477. res.right,
  478. res.bottom,
  479. 0); // Position ändern
  480. }
  481. void WFenster::setSize(Punkt& g) // Fenster Größe
  482. {
  483. RECT r;
  484. GetWindowRect(hWnd, &r); // vorherige Größe herausfinden
  485. RECT res;
  486. res.left = r.left, res.top = r.top, res.right = g.x, res.bottom = g.y;
  487. AdjustWindowRect(&res, style, 0);
  488. SetWindowPos(
  489. hWnd, 0, res.left, res.top, res.right, res.bottom, 0); // Größe ändern
  490. }
  491. void WFenster::setSize(int breite, int höhe)
  492. {
  493. RECT r;
  494. GetWindowRect(hWnd, &r); // vorherige Größe herausfinden
  495. RECT res;
  496. res.left = r.left, res.top = r.top, res.right = breite, res.bottom = höhe;
  497. AdjustWindowRect(&res, style, 0);
  498. SetWindowPos(
  499. hWnd, 0, res.left, res.top, res.right, res.bottom, 0); // Größe ändern
  500. }
  501. void WFenster::setBounds(
  502. const Punkt& p, const Punkt& g) // setzt größe und Position
  503. {
  504. SetWindowPos(hWnd, 0, p.x, p.y, g.x, g.y, 0); // Größe und Position ändern
  505. }
  506. void WFenster::setBildschirm(Bildschirm* screen)
  507. {
  508. if (this->screen) this->screen->release();
  509. this->screen = screen;
  510. }
  511. void WFenster::zerstören()
  512. {
  513. DestroyWindow(hWnd);
  514. hWnd = 0;
  515. if (rahmen) DestroyWindow(rahmen);
  516. rahmen = 0;
  517. if (bitmap) DeleteObject(bitmap);
  518. bitmap = 0;
  519. if (hdc) DeleteDC(hdc);
  520. hdc = 0;
  521. }
  522. void WFenster::doMausAktion(MausEreignis& me)
  523. {
  524. if (!mausAktion || !mausAktion(makParam, this, me)) return;
  525. if (screen && me.id != ME_Betritt && me.id != ME_Leaves)
  526. {
  527. screen->doMausEreignis(me);
  528. if (!me.verarbeitet && verschiebbar)
  529. {
  530. if (mx != -1 && my != -1) // verschieben
  531. {
  532. RECT r;
  533. if (rahmen)
  534. {
  535. GetWindowRect(rahmen, &r);
  536. r.right -= r.left, r.bottom -= r.top;
  537. r.left += me.mx - mx;
  538. r.top += me.my - my;
  539. SetWindowPos(rahmen,
  540. 0,
  541. r.left,
  542. r.top,
  543. r.right,
  544. r.bottom,
  545. 0); // Position setzen
  546. }
  547. GetWindowRect(hWnd, &r); // Vorherige Position herausfinden
  548. r.right -= r.left, r.bottom -= r.top; // Position updaten
  549. r.left += me.mx - mx;
  550. r.top += me.my - my;
  551. SetWindowPos(hWnd,
  552. 0,
  553. r.left,
  554. r.top,
  555. r.right,
  556. r.bottom,
  557. 0); // Position setzen
  558. }
  559. else if (me.id == ME_PLinks) // verschieben starten
  560. mx = me.mx, my = me.my;
  561. if (me.id == ME_RLinks) // verschieben beenden
  562. mx = -1, my = -1;
  563. me.verarbeitet = 1;
  564. }
  565. }
  566. }
  567. void WFenster::doVSchließAktion()
  568. {
  569. if (!vCloseAktion) return;
  570. vCloseAktion(sakParam, this);
  571. }
  572. void WFenster::doNSchließAktion()
  573. {
  574. if (!nCloseAktion) return;
  575. nCloseAktion(sakParam, this);
  576. }
  577. void WFenster::doTastaturAktion(TastaturEreignis& te)
  578. {
  579. if (!tastaturAktion || !tastaturAktion(takParam, this, te)) return;
  580. if (screen) screen->doTastaturEreignis(te);
  581. }
  582. void WFenster::doRestoreMessage() // macht den Rahmen sichtbar
  583. {
  584. if (rahmen) ShowWindow(rahmen, 1);
  585. ShowWindow(hWnd, 1);
  586. }
  587. void WFenster::setMausEreignisParameter(
  588. void* p) // setzt den Parameter vom Maus Ereignis
  589. {
  590. makParam = p;
  591. }
  592. void WFenster::setSchließEreignisParameter(
  593. void* p) // setzt den Parameter vom Schließ Ereignis
  594. {
  595. sakParam = p;
  596. }
  597. void WFenster::setTastaturEreignisParameter(
  598. void* p) // setzt den Parameter vom Tastatur Ereignis
  599. {
  600. takParam = p;
  601. }
  602. void WFenster::setMausAktion(MausAktion mausAk)
  603. {
  604. mausAktion = mausAk;
  605. }
  606. void WFenster::setVSchließAktion(std::function<void(void*, void*)> vSchließAk)
  607. {
  608. vCloseAktion = vSchließAk;
  609. }
  610. void WFenster::setNSchließAktion(std::function<void(void*, void*)> nSchließAk)
  611. {
  612. nCloseAktion = nSchließAk;
  613. }
  614. void WFenster::setTastaturAktion(TastaturAktion tastaturAk)
  615. {
  616. tastaturAktion = tastaturAk;
  617. }
  618. void WFenster::setFensterHandle(HWND hWnd) // setzt das operationsfenster
  619. {
  620. this->hWnd = hWnd;
  621. }
  622. void WFenster::setVerschiebbar(
  623. bool verschiebbar) // legt fest, ob das Fenster durch ziehen mit Maus
  624. // verschoben werden kann
  625. {
  626. this->verschiebbar = verschiebbar;
  627. }
  628. void WFenster::ladeRahmenFenster(Bild* zBild,
  629. HINSTANCE hinst) // setzt einen Transpatenten Rahmen um das Fenster
  630. {
  631. if (!zBild) return;
  632. // Fenster erstellen
  633. WNDCLASSEX wcl = {0};
  634. wcl.cbSize = sizeof(wcl);
  635. wcl.style = CS_HREDRAW | CS_VREDRAW;
  636. wcl.lpfnWndProc = WindowProc;
  637. wcl.cbClsExtra = 0;
  638. wcl.cbWndExtra = 0;
  639. wcl.hInstance = hinst;
  640. wcl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
  641. wcl.hCursor = LoadCursor(NULL, IDC_ARROW);
  642. wcl.hbrBackground = NULL;
  643. wcl.lpszMenuName = NULL;
  644. wcl.lpszClassName = TEXT("LayeredWindowClass");
  645. wcl.hIconSm = NULL;
  646. // Bitmap erstellen
  647. hdc = CreateCompatibleDC(NULL);
  648. if (!hdc) return;
  649. BITMAPINFO info;
  650. info.bmiHeader.biSize = sizeof(info.bmiHeader);
  651. info.bmiHeader.biBitCount = 32;
  652. info.bmiHeader.biWidth = zBild->getBreite();
  653. info.bmiHeader.biHeight = -zBild->getHeight();
  654. info.bmiHeader.biCompression = BI_RGB;
  655. info.bmiHeader.biPlanes = 1;
  656. unsigned char* pPixels = 0;
  657. bitmap
  658. = CreateDIBSection(hdc, &info, DIB_RGB_COLORS, (void**)&pPixels, 0, 0);
  659. if (!bitmap) DeleteDC(hdc);
  660. GdiFlush();
  661. // bitmap füllen
  662. int pitch = ((zBild->getBreite() * 32 + 31) & ~31) >> 3;
  663. unsigned char* pRow = 0;
  664. int* buffer = zBild->getBuffer();
  665. for (int i = 0; i < zBild->getHeight(); ++i)
  666. {
  667. pRow = &pPixels[i * pitch];
  668. for (int i2 = 0; i2 < zBild->getBreite(); ++i2)
  669. {
  670. pRow[i2 * 4]
  671. = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 16)
  672. & 0xFF);
  673. pRow[i2 * 4 + 1]
  674. = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 8)
  675. & 0xFF);
  676. pRow[i2 * 4 + 2]
  677. = (unsigned char)((buffer[i2 + i * zBild->getBreite()]) & 0xFF);
  678. pRow[i2 * 4 + 3]
  679. = (unsigned char)((buffer[i2 + i * zBild->getBreite()] >> 24)
  680. & 0xFF);
  681. }
  682. }
  683. // alpha berechnen
  684. unsigned char* pPixel = 0;
  685. if (zBild->getBreite() * 4 == pitch)
  686. {
  687. int i = 0;
  688. int totalBytes = zBild->getBreite() * zBild->getHeight() * 4;
  689. for (i = 0; i < totalBytes; i += 4)
  690. {
  691. pPixel = &pPixels[i];
  692. pPixel[0] *= (unsigned char)((float)pPixel[3] / 255.0f);
  693. pPixel[1] *= (unsigned char)((float)pPixel[3] / 255.0f);
  694. pPixel[2] *= (unsigned char)((float)pPixel[3] / 255.0f);
  695. }
  696. }
  697. else
  698. {
  699. int x = 0;
  700. int y = 0;
  701. for (y = 0; y < zBild->getHeight(); ++y)
  702. {
  703. for (x = 0; x < zBild->getBreite(); ++x)
  704. {
  705. pPixel = &pPixels[(y * pitch) + (x * 4)];
  706. pPixel[0] *= (unsigned char)((float)pPixel[3] / 255.0f);
  707. pPixel[1] *= (unsigned char)((float)pPixel[3] / 255.0f);
  708. pPixel[2] *= (unsigned char)((float)pPixel[3] / 255.0f);
  709. }
  710. }
  711. }
  712. // Fenster erstellen fortsetzen
  713. if (RegisterClassEx(&wcl))
  714. {
  715. rahmen = CreateWindowEx(WS_EX_TOOLWINDOW | WS_EX_LAYERED,
  716. wcl.lpszClassName,
  717. TEXT("Transparentes Fenster"),
  718. WS_POPUP,
  719. 0,
  720. 0,
  721. zBild->getBreite(),
  722. zBild->getHeight(),
  723. 0,
  724. 0,
  725. wcl.hInstance,
  726. 0);
  727. if (rahmen)
  728. {
  729. // zeichnen
  730. HDC h = 0;
  731. if ((h = GetDC(rahmen)) && bitmap)
  732. {
  733. HGDIOBJ hPrevObj = NULL;
  734. POINT ptDest = {0, 0};
  735. POINT ptSrc = {0, 0};
  736. SIZE client = {zBild->getBreite(), zBild->getHeight()};
  737. BLENDFUNCTION blendFunc = {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA};
  738. hPrevObj = SelectObject(hdc, bitmap);
  739. ClientToScreen(rahmen, &ptDest);
  740. UpdateLayeredWindow(rahmen,
  741. h,
  742. &ptDest,
  743. &client,
  744. hdc,
  745. &ptSrc,
  746. 0,
  747. &blendFunc,
  748. ULW_ALPHA);
  749. SelectObject(hdc, hPrevObj);
  750. ReleaseDC(rahmen, h);
  751. }
  752. UpdateWindow(rahmen);
  753. Punkt pos = getPosition() + (getGröße() - zBild->getSize()) / 2;
  754. SetWindowPos(rahmen,
  755. 0,
  756. pos.x,
  757. pos.y,
  758. zBild->getBreite(),
  759. zBild->getHeight(),
  760. 0);
  761. }
  762. }
  763. }
  764. // constant
  765. Punkt WFenster::getPosition() const // gibt die Position zurück
  766. {
  767. RECT r;
  768. GetWindowRect(hWnd, &r); // Position herausfinden
  769. return {r.left, r.top};
  770. }
  771. Punkt WFenster::getGröße() const // gibt die Größe zurück
  772. {
  773. RECT r;
  774. GetWindowRect(hWnd, &r); // Größe herausfinden
  775. return {r.right - r.left, r.bottom - r.top};
  776. }
  777. Punkt WFenster::getKörperGröße() const // gibt die Fenster Körpergröße zurück
  778. {
  779. RECT r;
  780. GetClientRect(hWnd, &r); // Größe herausfinden
  781. return {r.right - r.left, r.bottom - r.top};
  782. }
  783. int WFenster::getKörperBreite() const // gibt die Fenster Körperbreite zurück
  784. {
  785. RECT r;
  786. GetClientRect(hWnd, &r); // Größe herausfinden
  787. return r.right;
  788. }
  789. int WFenster::getKörperHöhe() const // gibt die Fenster Körperhöhe zurück
  790. {
  791. RECT r;
  792. GetClientRect(hWnd, &r); // Größe herausfinden
  793. return r.bottom;
  794. }
  795. HWND WFenster::getFensterHandle() const // gibt ein Handle zum Fenster zurück
  796. {
  797. return hWnd;
  798. }
  799. bool WFenster::hatMausAktion() const
  800. {
  801. return mausAktion != 0;
  802. }
  803. bool WFenster::hatVSchließAktion() const
  804. {
  805. return vCloseAktion != 0;
  806. }
  807. bool WFenster::hatNSchließAktion() const
  808. {
  809. return nCloseAktion != 0;
  810. }
  811. bool WFenster::hatTastaturAktion() const
  812. {
  813. return tastaturAktion != 0;
  814. }
  815. Bildschirm* WFenster::getBildschirm() const
  816. {
  817. if (!screen) return 0;
  818. return dynamic_cast<Bildschirm*>(screen->getThis());
  819. }
  820. Bildschirm* WFenster::zBildschirm() const
  821. {
  822. return screen;
  823. }
  824. bool WFenster::istVerschiebbar()
  825. const // prüft, ob das Fenster durch ziehen mit Maus verschoben werden kann
  826. {
  827. return verschiebbar;
  828. }
  829. // Inhalt der WFensterArray Klasse aus Fenster.h
  830. // Konstruktor
  831. WFensterArray::WFensterArray()
  832. : next(0),
  833. This(0)
  834. {}
  835. // Destruktor
  836. WFensterArray::~WFensterArray()
  837. {
  838. if (next) delete next;
  839. }
  840. // add und remove
  841. bool WFensterArray::addFenster(WFenster* fenster)
  842. {
  843. if (fenster == This) return 0;
  844. if (!This)
  845. {
  846. This = fenster;
  847. return 1;
  848. }
  849. if (!next) next = new WFensterArray();
  850. return next->addFenster(fenster);
  851. }
  852. bool WFensterArray::removeFenster(WFenster* fenster)
  853. {
  854. if (fenster == This) return 1;
  855. if (!next) return 0;
  856. if (next->removeFenster(fenster))
  857. {
  858. WFensterArray* tmp = next->getNext();
  859. next->setNext0();
  860. delete next;
  861. next = tmp;
  862. }
  863. return 0;
  864. }
  865. WFensterArray* WFensterArray::getNext()
  866. {
  867. return next;
  868. }
  869. void WFensterArray::setNext0()
  870. {
  871. next = 0;
  872. }
  873. void WFensterArray::del()
  874. {
  875. if (next)
  876. {
  877. This = next->getThis();
  878. WFensterArray* tmp = next->getNext();
  879. next->setNext0();
  880. delete next;
  881. next = tmp;
  882. }
  883. else
  884. This = 0;
  885. }
  886. // Messages
  887. bool WFensterArray::sendVSchließMessage(HWND hwnd)
  888. {
  889. if (!This) return 0;
  890. bool ret = 0;
  891. if (This->getFensterHandle() == hwnd && This->hatVSchließAktion())
  892. {
  893. This->doVSchließAktion();
  894. ret = 1;
  895. }
  896. if (!next) return ret;
  897. return ret || next->sendVSchließMessage(hwnd);
  898. }
  899. bool WFensterArray::sendNSchließMessage(HWND hwnd)
  900. {
  901. if (!This) return 0;
  902. bool ret = 0;
  903. if (This->getFensterHandle() == hwnd && This->hatNSchließAktion())
  904. {
  905. This->doNSchließAktion();
  906. ret = 1;
  907. }
  908. if (!next) return ret;
  909. return ret || next->sendNSchließMessage(hwnd);
  910. }
  911. bool WFensterArray::sendMausMessage(HWND hwnd, MausEreignis& me)
  912. {
  913. if (!This) return 0;
  914. bool ret = 0;
  915. if (This->getFensterHandle() == hwnd && This->hatMausAktion())
  916. {
  917. This->doMausAktion(me);
  918. ret = 1;
  919. }
  920. if (!next) return ret;
  921. return ret || next->sendMausMessage(hwnd, me);
  922. }
  923. bool WFensterArray::sendTastaturMessage(HWND hwnd, TastaturEreignis& te)
  924. {
  925. if (!This) return 0;
  926. bool ret = 0;
  927. if (This->getFensterHandle() == hwnd && This->hatTastaturAktion())
  928. {
  929. This->doTastaturAktion(te);
  930. ret = 1;
  931. }
  932. if (!next) return ret;
  933. return ret || next->sendTastaturMessage(hwnd, te);
  934. }
  935. bool WFensterArray::sendRestoreMessage(HWND hwnd)
  936. {
  937. if (!This) return 0;
  938. bool ret = 0;
  939. if (This->getFensterHandle() == hwnd && This->hatMausAktion())
  940. {
  941. This->doRestoreMessage();
  942. ret = 1;
  943. }
  944. if (!next) return ret;
  945. return ret || next->sendRestoreMessage(hwnd);
  946. }
  947. WFenster* WFensterArray::getThis()
  948. {
  949. return This;
  950. }
  951. // WMessageBox
  952. void Framework::WMessageBox(HWND hWnd, Text* titel, Text* meldung, UINT style)
  953. {
  954. MessageBox(
  955. hWnd, meldung->getText(), titel->getText(), style); // Message Box
  956. titel->release();
  957. meldung->release();
  958. }
  959. #endif
  960. // Inhalt der Fenster Klasse aus Fenster.h
  961. // Konstruktor
  962. Fenster::Fenster()
  963. : Zeichnung(),
  964. closingMe(0),
  965. closingMeParam(0),
  966. rahmen(0),
  967. titel(0),
  968. members(new RCArray<Zeichnung>()),
  969. bgBodyColor(0xFF000000),
  970. bgBodyPicture(0),
  971. bodyBuffer(0),
  972. bgClosingFarbe(0xFF000000),
  973. bgClosingBild(0),
  974. closeBuffer(0),
  975. closeKlickBuffer(0),
  976. vScroll(0),
  977. hScroll(0),
  978. kMin(0, 0),
  979. kMax(0, 0),
  980. closeKlick(0),
  981. klick(0),
  982. moving(0),
  983. mx(0),
  984. my(0)
  985. {
  986. style = Style::MEIgnoreVerarbeitet | Style::MEIgnoreSichtbar
  987. | Style::MEIgnoreParentInside | Style::MEIgnoreInside;
  988. this->setMausEreignis(_ret1ME);
  989. this->setTastaturEreignis(_ret1TE);
  990. min = Punkt(0, 0), max = Punkt(0, 0);
  991. }
  992. // Destruktor
  993. Fenster::~Fenster()
  994. {
  995. if (rahmen) rahmen->release();
  996. if (titel) titel->release();
  997. members->release();
  998. if (bodyBuffer) bodyBuffer->release();
  999. if (bgBodyPicture) bgBodyPicture->release();
  1000. if (bgClosingBild) bgClosingBild->release();
  1001. if (closeBuffer) closeBuffer->release();
  1002. if (closeKlickBuffer) closeKlickBuffer->release();
  1003. if (vScroll) vScroll->release();
  1004. if (hScroll) hScroll->release();
  1005. }
  1006. void Fenster::doMausEreignis(MausEreignis& me, bool userRet)
  1007. {
  1008. if (me.id == ME_Leaves)
  1009. {
  1010. if (closeKlick != 0) rend = 1;
  1011. closeKlick = 0, klick = 0;
  1012. }
  1013. if (hatStyleNicht(Style::Sichtbar) || !me.insideParent || me.verarbeitet
  1014. || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet)
  1015. {
  1016. bool insideParent = me.insideParent;
  1017. bool verarbeitet = me.verarbeitet;
  1018. me.verarbeitet |= hatStyleNicht(Style::Sichtbar);
  1019. me.insideParent = 0;
  1020. int rbr = 0;
  1021. if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
  1022. int th = 0;
  1023. if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
  1024. me.mx -= rbr;
  1025. me.my -= rbr + th;
  1026. if (hatStyle(Style::VScroll) && vScroll) me.my += vScroll->getScroll();
  1027. if (hatStyle(Style::HScroll) && hScroll) me.mx += hScroll->getScroll();
  1028. if (me.id != ME_Betritt && me.id != ME_Leaves)
  1029. {
  1030. for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
  1031. members->z(i)->doPublicMausEreignis(me);
  1032. }
  1033. me.mx += rbr;
  1034. me.my += rbr + th;
  1035. if (hatStyle(Style::VScroll) && vScroll) me.my -= vScroll->getScroll();
  1036. if (hatStyle(Style::HScroll) && hScroll) me.mx -= hScroll->getScroll();
  1037. me.insideParent = insideParent;
  1038. if (hatStyleNicht(Style::Sichtbar)) me.verarbeitet = verarbeitet;
  1039. if (!moving) return;
  1040. }
  1041. bool mvtmp = me.verarbeitet;
  1042. if (hatStyleNicht(Style::Erlaubt)) me.verarbeitet = 1;
  1043. int rbr = 0;
  1044. if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
  1045. int th = 0;
  1046. if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
  1047. bool hSc = hatStyle(Style::HScroll) && hScroll;
  1048. bool vSc = hatStyle(Style::VScroll) && vScroll;
  1049. if (me.id == ME_Bewegung && moving && getMausStand(M_Links))
  1050. {
  1051. if (hatStyle(Style::Beweglich) || hatStyle(Style::HeightChangeable)
  1052. || hatStyle(Style::BreiteChangeable)
  1053. || hatStyle(Style::TitelHeightChangeable))
  1054. {
  1055. bool ret1 = 0;
  1056. bool mset = 0;
  1057. int schi = 0;
  1058. int scbr = 0;
  1059. if (hSc)
  1060. {
  1061. schi = 15;
  1062. }
  1063. if (vSc)
  1064. {
  1065. scbr += 15;
  1066. }
  1067. bool minXb, maxXb, minYb, maxYb;
  1068. bool kMinXb, kMaxXb, kMinYb, kMaxYb;
  1069. minXb = hatStyle(Style::MinBr);
  1070. maxXb = hatStyle(Style::MaxBr);
  1071. minYb = hatStyle(Style::MinHi);
  1072. maxYb = hatStyle(Style::MaxHi);
  1073. kMinXb = hatStyle(Style::BodyMinBr);
  1074. kMaxXb = hatStyle(Style::BodyMaxBr);
  1075. kMinYb = hatStyle(Style::BodyMinHi);
  1076. kMaxYb = hatStyle(Style::BodyMaxHi);
  1077. int fMinBr = rbr * 2 + scbr;
  1078. if (minXb) fMinBr = fMinBr < min.x ? min.x : fMinBr;
  1079. if (kMinXb)
  1080. fMinBr = fMinBr < (rbr * 2 + kMin.x + scbr)
  1081. ? (rbr * 2 + kMin.x + scbr)
  1082. : fMinBr;
  1083. int fMinHi = rbr * 2 + th + schi;
  1084. if (minYb) fMinHi = fMinHi < min.y ? min.y : fMinHi;
  1085. if (kMinYb)
  1086. fMinHi = fMinHi < (rbr * 2 + kMin.y + th + schi)
  1087. ? (rbr * 2 + kMin.y + th + schi)
  1088. : fMinHi;
  1089. int fMaxBr = 0;
  1090. if (maxXb) fMaxBr = max.x;
  1091. if (kMaxXb)
  1092. fMaxBr = fMaxBr < (rbr * 2 + kMax.x + scbr)
  1093. ? (rbr * 2 + kMax.x + scbr)
  1094. : fMaxBr;
  1095. int fMaxHi = 0;
  1096. if (maxYb) fMaxHi = max.y;
  1097. if (kMaxYb)
  1098. fMaxHi = fMaxHi < (rbr * 2 + kMax.y + th + schi)
  1099. ? (rbr * 2 + kMax.y + th + schi)
  1100. : fMaxHi;
  1101. minXb |= kMinXb, maxXb |= kMaxXb, minYb |= kMinYb, maxYb |= kMaxYb;
  1102. if (hatStyle(Style::HeightChangeable))
  1103. {
  1104. if ((moving | 0x1) == moving) // top
  1105. {
  1106. pos.y -= my - me.my;
  1107. gr.y += my - me.my;
  1108. if (gr.y < fMinHi)
  1109. {
  1110. pos.y -= fMinHi - gr.y;
  1111. gr.y = fMinHi;
  1112. }
  1113. else if (maxYb && gr.y > fMaxHi)
  1114. {
  1115. pos.y -= gr.y - fMaxHi;
  1116. gr.y = fMaxHi;
  1117. }
  1118. else if (vSc)
  1119. vScroll->getScrollData()->anzeige = gr.y;
  1120. rend = 1;
  1121. ret1 = 1;
  1122. }
  1123. else if ((moving | 0x2) == moving) // bottom
  1124. {
  1125. gr.y += me.my - my;
  1126. if (gr.y < fMinHi)
  1127. gr.y = fMinHi;
  1128. else if (maxYb && gr.y > fMaxHi)
  1129. gr.y = fMaxHi;
  1130. else
  1131. {
  1132. mset = 1;
  1133. if (vSc) vScroll->getScrollData()->anzeige = gr.y;
  1134. }
  1135. rend = 1;
  1136. ret1 = 1;
  1137. }
  1138. }
  1139. if (hatStyle(Style::BreiteChangeable))
  1140. {
  1141. if ((moving | 0x4) == moving) // left
  1142. {
  1143. pos.x -= mx - me.mx;
  1144. gr.x += mx - me.mx;
  1145. if (gr.x < fMinBr)
  1146. {
  1147. pos.x -= fMinBr - gr.x;
  1148. gr.x = fMinBr;
  1149. }
  1150. else if (maxXb && gr.x > fMaxBr)
  1151. {
  1152. pos.x -= gr.x - fMaxBr;
  1153. gr.x = fMaxBr;
  1154. }
  1155. else if (hSc)
  1156. hScroll->getScrollData()->anzeige = gr.x;
  1157. rend = 1;
  1158. ret1 = 1;
  1159. }
  1160. else if ((moving | 0x8) == moving) // right
  1161. {
  1162. gr.x += me.mx - mx;
  1163. if (gr.x < rbr * 2 + fMinBr)
  1164. gr.x = rbr * 2 + fMinBr;
  1165. else if (maxXb && gr.x > fMaxBr)
  1166. gr.x = fMaxBr;
  1167. else
  1168. {
  1169. mset = 1;
  1170. if (hSc) hScroll->getScrollData()->anzeige = gr.x;
  1171. }
  1172. rend = 1;
  1173. ret1 = 1;
  1174. }
  1175. }
  1176. if (hatStyle(Style::TitelHeightChangeable) && titel
  1177. && (moving | 0x10) == moving) // titel height
  1178. {
  1179. int maxTh = gr.y - rbr * 2 - schi;
  1180. if (kMaxYb)
  1181. maxTh = maxTh < (gr.x - rbr * 2 - kMin.y)
  1182. ? maxTh
  1183. : (gr.x - rbr * 2 - kMin.y);
  1184. if (hatStyle(Style::Closable))
  1185. maxTh = (gr.x - th - 5 - rbr * 2 - me.my + my) < 0 ? th
  1186. : maxTh;
  1187. titel->setSize(
  1188. titel->getBreite(), titel->getHeight() + me.my - my);
  1189. if (titel->getHeight() > maxTh)
  1190. titel->setSize(titel->getBreite(), maxTh);
  1191. else if (titel->getHeight() < 5)
  1192. titel->setSize(titel->getBreite(), 5);
  1193. else
  1194. mset = 1;
  1195. rend = 1;
  1196. ret1 = 1;
  1197. }
  1198. if (ret1)
  1199. {
  1200. if (mset) mx = me.mx, my = me.my;
  1201. me.verarbeitet = 1;
  1202. }
  1203. if (hatStyle(Style::Beweglich) && (moving | 0x20) == moving) // move
  1204. {
  1205. pos.x += me.mx - mx;
  1206. pos.y += me.my - my;
  1207. rend = 1;
  1208. ret1 = 1;
  1209. }
  1210. if (ret1) me.verarbeitet = 1;
  1211. }
  1212. }
  1213. if (me.id == ME_RLinks)
  1214. {
  1215. if (closeKlick) rend = 1;
  1216. closeKlick = 0, klick = 0;
  1217. moving = 0;
  1218. mx = -1, my = -1;
  1219. }
  1220. if (me.id == ME_Leaves)
  1221. {
  1222. if (closeKlick != 0) rend = 1;
  1223. closeKlick = 0, klick = 0;
  1224. }
  1225. if (hatStyleNicht(Style::Sichtbar) || !me.insideParent || me.verarbeitet
  1226. || me.mx < 0 || me.my < 0 || me.mx >= gr.x || me.my >= gr.y || !userRet)
  1227. return;
  1228. if (!me.verarbeitet)
  1229. {
  1230. if (hatStyle(Style::Closable) && me.my <= th + rbr
  1231. && me.mx >= gr.x + rbr - th && me.my >= rbr && me.mx <= gr.x - rbr)
  1232. {
  1233. if (!closingMe || closingMe(closingMeParam, this, me))
  1234. {
  1235. if (me.id == ME_PLinks)
  1236. {
  1237. closeKlick = 1;
  1238. rend = 1;
  1239. }
  1240. if (!closeKlick && MausStand[M_Links])
  1241. {
  1242. closeKlick = 1;
  1243. rend = 1;
  1244. }
  1245. me.verarbeitet = 1;
  1246. }
  1247. }
  1248. else if (closeKlick)
  1249. {
  1250. closeKlick = 0;
  1251. rend = 1;
  1252. }
  1253. if (me.id == ME_PLinks && !closeKlick)
  1254. {
  1255. klick = 1;
  1256. mx = me.mx, my = me.my;
  1257. if (me.mx >= 0 && me.mx < gr.x && me.my >= 0 && me.my < rbr + 5
  1258. && !hatStyle(Style::TopPositionFixed))
  1259. moving |= 0x1;
  1260. if (me.mx >= 0 && me.mx < gr.x && me.my >= gr.y - (rbr + 5)
  1261. && me.my < gr.y && !hatStyle(Style::BottomPositionFixed))
  1262. moving |= 0x2;
  1263. if (me.mx >= 0 && me.mx < rbr + 5 && me.my >= 0 && me.my < gr.y
  1264. && !hatStyle(Style::LeftPositionFixed))
  1265. moving |= 0x4;
  1266. if (me.mx >= gr.x - rbr - 5 && me.mx < gr.x && me.my >= 0
  1267. && me.my < gr.y && !hatStyle(Style::RightPositionFixed))
  1268. moving |= 0x8;
  1269. if (titel && me.mx >= 0 && me.mx < gr.x
  1270. && me.my >= titel->getHeight()
  1271. && me.my < titel->getHeight() + 2 * (rbr + 5))
  1272. moving |= 0x10;
  1273. if (titel && me.mx >= 0 && me.mx < gr.x && me.my >= rbr + 5
  1274. && me.my < titel->getHeight())
  1275. moving |= 0x20;
  1276. }
  1277. }
  1278. if (vSc)
  1279. {
  1280. vScroll->doMausMessage(
  1281. gr.x - rbr - 15, rbr + th, 15, gr.y - rbr * 2 - th, me);
  1282. if (hSc)
  1283. hScroll->doMausMessage(
  1284. rbr, gr.y - rbr - 15, gr.x - rbr * 2 - 15, 15, me);
  1285. }
  1286. else if (hSc)
  1287. hScroll->doMausMessage(rbr, gr.y - rbr - 15, gr.x - rbr * 2, 15, me);
  1288. me.mx -= rbr;
  1289. me.my -= rbr + th;
  1290. if (hatStyle(Style::VScroll) && vScroll) me.my += vScroll->getScroll();
  1291. if (hatStyle(Style::HScroll) && hScroll) me.mx += hScroll->getScroll();
  1292. if (me.id != ME_Betritt && me.id != ME_Leaves)
  1293. {
  1294. for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
  1295. members->z(i)->doPublicMausEreignis(me);
  1296. }
  1297. me.mx += rbr;
  1298. me.my += rbr + th;
  1299. if (hatStyle(Style::VScroll) && vScroll) me.my -= vScroll->getScroll();
  1300. if (hatStyle(Style::HScroll) && hScroll) me.mx -= hScroll->getScroll();
  1301. if (hatStyleNicht(Style::METransparenz)) me.verarbeitet = 1;
  1302. if (hatStyleNicht(Style::Erlaubt)) me.verarbeitet = mvtmp;
  1303. }
  1304. // nicht const
  1305. // -- Rahmen --
  1306. void Fenster::setRahmenZ(Rahmen* ram) // setzt den rahmen
  1307. {
  1308. if (rahmen) rahmen->release();
  1309. rahmen = ram;
  1310. rend = 1;
  1311. }
  1312. void Fenster::setRFarbe(int f) // setzt die Rahmen Farbe
  1313. {
  1314. if (!rahmen) rahmen = new LRahmen();
  1315. rahmen->setFarbe(f);
  1316. rend = 1;
  1317. }
  1318. void Fenster::setRBreite(int br) // setzt die Breite des Rahmens
  1319. {
  1320. if (!rahmen) rahmen = new LRahmen();
  1321. rahmen->setRamenBreite(br);
  1322. rend = 1;
  1323. }
  1324. // -- Titel --
  1325. void Fenster::setTitel(Text* txt) // setzt den Titel
  1326. {
  1327. if (!titel) titel = new TextFeld();
  1328. titel->setText(txt);
  1329. rend = 1;
  1330. }
  1331. void Fenster::setTitelZ(Text* txt)
  1332. {
  1333. if (!titel) titel = new TextFeld();
  1334. titel->setTextZ(txt);
  1335. rend = 1;
  1336. }
  1337. void Fenster::setTitel(const char* txt)
  1338. {
  1339. if (!titel) titel = new TextFeld();
  1340. titel->setText(txt);
  1341. rend = 1;
  1342. }
  1343. void Fenster::setTTextFeldZ(TextFeld* tf) // setzt das Titel TextFeld
  1344. {
  1345. if (titel) titel->release();
  1346. titel = tf;
  1347. rend = 1;
  1348. }
  1349. // -- Schrift --
  1350. void Fenster::setTSchriftZ(Schrift* schrift) // setzt die Titel Schrift
  1351. {
  1352. if (!titel) titel = new TextFeld();
  1353. titel->setSchriftZ(schrift);
  1354. rend = 1;
  1355. }
  1356. void Fenster::setTSFarbe(int f) // setzt die Titel Schrift Farbe
  1357. {
  1358. if (!titel) titel = new TextFeld();
  1359. titel->setSchriftFarbe(f);
  1360. rend = 1;
  1361. }
  1362. void Fenster::setTSSize(int gr) // setzt die Titel Schrift Größe
  1363. {
  1364. if (!titel) titel = new TextFeld();
  1365. titel->setSchriftSize((unsigned char)gr);
  1366. rend = 1;
  1367. }
  1368. // -- Titel Hintergrund --
  1369. void Fenster::setTBgFarbe(int f) // setzt Titel Hintergrund farbe
  1370. {
  1371. if (!titel) titel = new TextFeld();
  1372. titel->setHintergrundFarbe(f);
  1373. rend = 1;
  1374. }
  1375. // -- Titel AlphaFeld --
  1376. void Fenster::setTAlphaFeldZ(AlphaFeld* af) // setzt das Titel AlphaFeld
  1377. {
  1378. if (!titel) titel = new TextFeld();
  1379. titel->setAlphaFeldZ(af);
  1380. rend = 1;
  1381. }
  1382. void Fenster::setTAfFarbe(int f) // setzt die Titel AlphFeld Farbe
  1383. {
  1384. if (!titel) titel = new TextFeld();
  1385. titel->setAlphaFeldFarbe(f);
  1386. rend = 1;
  1387. }
  1388. void Fenster::setTAfStrength(int st) // setzt die Stärke des Titel AlphaFeldes
  1389. {
  1390. if (!titel) titel = new TextFeld();
  1391. titel->setAlphaFeldStrength(st);
  1392. rend = 1;
  1393. }
  1394. // -- Titel Hintergrund Bild --
  1395. void Fenster::setTBgBild(Bild* b) // setzt das Titel Hintergrund Bild
  1396. {
  1397. if (!titel) titel = new TextFeld();
  1398. titel->setHintergrundBild(b);
  1399. rend = 1;
  1400. }
  1401. void Fenster::setTBgBildZ(Bild* b)
  1402. {
  1403. if (!titel) titel = new TextFeld();
  1404. titel->setHintergrundBildZ(b);
  1405. rend = 1;
  1406. }
  1407. // -- Titel Rahmen --
  1408. void Fenster::setTRahmenZ(Rahmen* ram) // set Titel Rahmen
  1409. {
  1410. if (!titel) titel = new TextFeld();
  1411. titel->setRahmenZ(ram);
  1412. rend = 1;
  1413. }
  1414. void Fenster::setTRFarbe(int f) // setzt die Titel Rahmen Farbe
  1415. {
  1416. if (!titel) titel = new TextFeld();
  1417. titel->setRahmenFarbe(f);
  1418. rend = 1;
  1419. }
  1420. void Fenster::setTRBreite(int br) // setzt die Titel Rahmen Breite
  1421. {
  1422. if (!titel) titel = new TextFeld();
  1423. titel->setRahmenBreite(br);
  1424. rend = 1;
  1425. }
  1426. // -- Körper Hintergrund --
  1427. void Fenster::setKBgFarbe(int f) // setzt die Körper Hintergrund Farbe
  1428. {
  1429. bgBodyColor = f;
  1430. rend = 1;
  1431. }
  1432. // -- Körper Hintergrund Bild --
  1433. void Fenster::setKBgBild(Bild* b) // setzt das Körper Hintergrund Bild
  1434. {
  1435. if (!bgBodyPicture) bgBodyPicture = new Bild();
  1436. bgBodyPicture->neuBild(b->getBreite(), b->getHeight(), 0);
  1437. int* buff1 = bgBodyPicture->getBuffer();
  1438. int* buff2 = b->getBuffer();
  1439. int gr = bgBodyPicture->getBreite() * bgBodyPicture->getHeight();
  1440. for (int i = 0; i < gr; ++i)
  1441. buff1[i] = buff2[i];
  1442. b->release();
  1443. rend = 1;
  1444. }
  1445. void Fenster::setKBgBildZ(Bild* b)
  1446. {
  1447. if (bgBodyPicture) bgBodyPicture->release();
  1448. bgBodyPicture = b;
  1449. rend = 1;
  1450. }
  1451. // -- Körper AlphaFeld --
  1452. void Fenster::setKAlphaFeldZ(AlphaFeld* af) // setzt das Körper AlphaFeld
  1453. {
  1454. if (bodyBuffer) bodyBuffer->release();
  1455. bodyBuffer = af;
  1456. rend = 1;
  1457. }
  1458. void Fenster::setKAfFarbe(int f) // setzt Körper AlphaFeld Farbe
  1459. {
  1460. if (!bodyBuffer) bodyBuffer = new AlphaFeld();
  1461. bodyBuffer->setFarbe(f);
  1462. rend = 1;
  1463. }
  1464. void Fenster::setKAfStrength(int st) // setzt die Stärke des Körper AlphaFeldes
  1465. {
  1466. if (!bodyBuffer) bodyBuffer = new AlphaFeld();
  1467. bodyBuffer->setStrength(st);
  1468. rend = 1;
  1469. }
  1470. // -- Schließen --
  1471. void Fenster::setClosingMeParam(void* param)
  1472. {
  1473. closingMeParam = param;
  1474. }
  1475. void Fenster::setClosingMe(
  1476. MausAktion closingMe) // setzt das Schließen Mausereignis
  1477. {
  1478. this->closingMe = closingMe;
  1479. }
  1480. // -- Schließen Hintergrund --
  1481. void Fenster::setSBgFarbe(int f) // setzt die Schließ Hintergrund Farbe
  1482. {
  1483. bgClosingFarbe = f;
  1484. rend = 1;
  1485. }
  1486. // -- Schließen Hintergrund Bild --
  1487. void Fenster::setSBgBild(Bild* b) // setzt das Schließ Hintergrund Bild
  1488. {
  1489. if (!bgClosingBild) bgClosingBild = new Bild();
  1490. bgClosingBild->neuBild(b->getBreite(), b->getHeight(), 0);
  1491. int* buff1 = bgClosingBild->getBuffer();
  1492. int* buff2 = b->getBuffer();
  1493. int gr = bgClosingBild->getBreite() * bgClosingBild->getHeight();
  1494. for (int i = 0; i < gr; ++i)
  1495. buff1[i] = buff2[i];
  1496. b->release();
  1497. rend = 1;
  1498. }
  1499. void Fenster::setSBgBildZ(Bild* b)
  1500. {
  1501. if (bgClosingBild) bgClosingBild->release();
  1502. bgClosingBild = b;
  1503. rend = 1;
  1504. }
  1505. // -- Schließen AlphaFeld --
  1506. void Fenster::setSAlphaFeldZ(AlphaFeld* af) // setzt das Schließ AlphaFeld
  1507. {
  1508. if (closeBuffer) closeBuffer->release();
  1509. closeBuffer = af;
  1510. rend = 1;
  1511. }
  1512. void Fenster::setSAfFarbe(int f) // setzt die Farbe des Schließ AlphaFeldes
  1513. {
  1514. if (!closeBuffer) closeBuffer = new AlphaFeld();
  1515. closeBuffer->setFarbe(f);
  1516. rend = 1;
  1517. }
  1518. void Fenster::setSAfStrength(int st) // setzt die Stärke des Schließ AlphaFeldes
  1519. {
  1520. if (!closeBuffer) closeBuffer = new AlphaFeld();
  1521. closeBuffer->setStrength(st);
  1522. rend = 1;
  1523. }
  1524. // -- Schließen Klick AlphaFeld --
  1525. void Fenster::setSKAlphaFeldZ(
  1526. AlphaFeld* af) // setzt das Schließ klick AlphaFeld
  1527. {
  1528. if (closeKlickBuffer) closeKlickBuffer->release();
  1529. closeKlickBuffer = af;
  1530. rend = 1;
  1531. }
  1532. void Fenster::setSKAfFarbe(
  1533. int f) // setzt die Farbe des Schließ klick AlphaFeldes
  1534. {
  1535. if (!closeKlickBuffer) closeKlickBuffer = new AlphaFeld();
  1536. closeKlickBuffer->setFarbe(f);
  1537. rend = 1;
  1538. }
  1539. void Fenster::setSKAfStrength(
  1540. int st) // setzt die Stärke des Schließ klick AlphaFeldes
  1541. {
  1542. if (!closeKlickBuffer) closeKlickBuffer = new AlphaFeld();
  1543. closeKlickBuffer->setStrength(st);
  1544. rend = 1;
  1545. }
  1546. // -- min max --
  1547. void Fenster::setMin(int mx, int my) // setzt die Mindest Fenster Größe
  1548. {
  1549. min.x = mx;
  1550. min.y = my;
  1551. }
  1552. void Fenster::setMin(const Punkt& min)
  1553. {
  1554. this->min = min;
  1555. }
  1556. void Fenster::setMax(int mx, int my) // setzt die Maximale Fenster Größe
  1557. {
  1558. max.x = mx;
  1559. max.y = my;
  1560. }
  1561. void Fenster::setMax(const Punkt& max)
  1562. {
  1563. this->max = max;
  1564. }
  1565. void Fenster::setKMin(int mx, int my) // setzt die Mindest Körper Größe
  1566. {
  1567. kMin.x = mx;
  1568. kMin.y = my;
  1569. }
  1570. void Fenster::setKMin(const Punkt& min)
  1571. {
  1572. kMin = min;
  1573. }
  1574. void Fenster::setKMax(int mx, int my) // setzt die Maximale Körper Größe
  1575. {
  1576. kMax.x = mx;
  1577. kMax.y = my;
  1578. }
  1579. void Fenster::setKMax(const Punkt& max)
  1580. {
  1581. kMax = max;
  1582. }
  1583. // -- scroll --
  1584. void Fenster::setHScrollBarZ(
  1585. HScrollBar* hScroll) // setzt die Horizontale Scroll Bar
  1586. {
  1587. if (this->hScroll) this->hScroll->release();
  1588. this->hScroll = hScroll;
  1589. rend = 1;
  1590. }
  1591. void Fenster::setVScrollBarZ(
  1592. VScrollBar* vScroll) // setzt die Vertikale Scroll BAr
  1593. {
  1594. if (this->vScroll) this->vScroll->release();
  1595. this->vScroll = vScroll;
  1596. rend = 1;
  1597. }
  1598. void Fenster::setHSBMax(int max) // setzt das Scroll Maximum
  1599. {
  1600. if (!hScroll) hScroll = new HScrollBar();
  1601. int rbr = 0;
  1602. if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
  1603. int vsh = 0;
  1604. if (hatStyle(Style::VScroll) && vScroll) vsh = 15;
  1605. hScroll->update(max, gr.x - rbr * 2 - vsh);
  1606. rend = 1;
  1607. }
  1608. void Fenster::setVSBMax(int max)
  1609. {
  1610. if (!vScroll) vScroll = new VScrollBar();
  1611. int rbr = 0;
  1612. int th = 0;
  1613. if (hatStyle(Style::Rahmen) && rahmen) rbr = rahmen->getRBreite();
  1614. if (hatStyle(Style::Titel) && titel) th = titel->getHeight();
  1615. int hsh = 0;
  1616. if (hatStyle(Style::HScroll) && hScroll) hsh = 15;
  1617. vScroll->update(max, gr.y - rbr * 2 - th - hsh);
  1618. rend = 1;
  1619. }
  1620. void Fenster::setHSBScroll(int scroll) // setzt die momentane Scroll Position
  1621. {
  1622. if (!hScroll) hScroll = new HScrollBar();
  1623. hScroll->scroll(scroll);
  1624. rend = 1;
  1625. }
  1626. void Fenster::setVSBScroll(int scroll)
  1627. {
  1628. if (!vScroll) vScroll = new VScrollBar();
  1629. vScroll->scroll(scroll);
  1630. rend = 1;
  1631. }
  1632. void Framework::Fenster::updateHScroll()
  1633. {
  1634. if (hScroll)
  1635. {
  1636. hScroll->update(getNeededChildWidth(), getInnenBreite());
  1637. }
  1638. }
  1639. void Framework::Fenster::updateVScroll()
  1640. {
  1641. if (vScroll)
  1642. {
  1643. vScroll->update(getNeededChildHeight(), getInnenHeight());
  1644. }
  1645. }
  1646. // -- Members --
  1647. void Fenster::addMember(Zeichnung* obj) // fügt einen Member hinzu
  1648. {
  1649. members->add(obj);
  1650. rend = 1;
  1651. }
  1652. void Framework::Fenster::setMemberIndex(Zeichnung* zMember, int index)
  1653. {
  1654. if (index < 0 || index >= members->getEintragAnzahl()) return;
  1655. int currentIndex = members->indexOf(zMember);
  1656. members->setPosition(currentIndex, index);
  1657. }
  1658. void Fenster::removeMember(Zeichnung* zObj) // entfernt einen Member
  1659. {
  1660. for (int i = 0; i < members->getEintragAnzahl(); i++)
  1661. {
  1662. if (members->z(i) == zObj)
  1663. {
  1664. members->remove(i);
  1665. rend = 1;
  1666. }
  1667. }
  1668. }
  1669. void Fenster::removeAll()
  1670. {
  1671. members->leeren();
  1672. rend = 1;
  1673. }
  1674. // -- Messages --
  1675. bool Fenster::tick(double tickval) // tick
  1676. {
  1677. if (hatStyle(Style::Sichtbar))
  1678. {
  1679. for (Zeichnung* i : *members)
  1680. rend |= i->tick(tickval);
  1681. }
  1682. else
  1683. {
  1684. for (Zeichnung* i : *members)
  1685. i->tick(tickval);
  1686. }
  1687. if (vScroll && hatStyle(Style::VScroll)) rend |= vScroll->getRend();
  1688. if (hScroll && hatStyle(Style::HScroll)) rend |= hScroll->getRend();
  1689. return Zeichnung::tick(tickval);
  1690. }
  1691. void Fenster::doTastaturEreignis(TastaturEreignis& te)
  1692. {
  1693. bool ntakc = !te.verarbeitet;
  1694. if (hatStyle(Style::Sichtbar))
  1695. {
  1696. if (te.verarbeitet)
  1697. {
  1698. for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
  1699. members->z(i)->doTastaturEreignis(te);
  1700. }
  1701. else
  1702. {
  1703. if (tak && tak(takParam, this, te))
  1704. {
  1705. for (int i = members->getEintragAnzahl() - 1; i >= 0; i--)
  1706. members->z(i)->doTastaturEreignis(te);
  1707. }
  1708. }
  1709. }
  1710. if (ntakc && te.verarbeitet && nTak)
  1711. te.verarbeitet = nTak(ntakParam, this, te);
  1712. }
  1713. // -- Render --
  1714. void Fenster::render(Bild& zRObj) // zeichent nach zRObj
  1715. {
  1716. if (hatStyle(Style::Sichtbar))
  1717. {
  1718. lockZeichnung();
  1719. if (!zRObj.setDrawOptions(pos, gr))
  1720. {
  1721. unlockZeichnung();
  1722. return;
  1723. }
  1724. Zeichnung::render(zRObj);
  1725. int rbr = 0;
  1726. if (hatStyle(Style::Rahmen) && rahmen)
  1727. {
  1728. rahmen->setSize(gr);
  1729. rahmen->render(zRObj);
  1730. rbr = rahmen->getRBreite();
  1731. }
  1732. int th = 0;
  1733. if (titel)
  1734. titel->setStyle(TextFeld::Style::Sichtbar, hatStyle(Style::Titel));
  1735. if (hatStyle(Style::Titel) && titel)
  1736. {
  1737. titel->setStyle(TextFeld::Style::Hintergrund,
  1738. hatStyle(Style::TitelHintergrund));
  1739. titel->setStyle(
  1740. TextFeld::Style::HAlpha, hatStyle(Style::TitelHAlpha));
  1741. titel->setStyle(
  1742. TextFeld::Style::HBild, hatStyle(Style::TitelHBild));
  1743. titel->setStyle(
  1744. TextFeld::Style::Buffered, hatStyle(Style::TitelBuffered));
  1745. th = titel->getHeight();
  1746. if (!zRObj.setDrawOptions(rbr, rbr, gr.x - rbr * 2, th))
  1747. {
  1748. zRObj.releaseDrawOptions();
  1749. unlockZeichnung();
  1750. return;
  1751. }
  1752. int sbr = 0;
  1753. if (hatStyle(Style::Closable))
  1754. {
  1755. sbr = th;
  1756. if (hatStyle(Style::ClosingHintergrund))
  1757. {
  1758. if (hatStyle(Style::ClosingHAlpha))
  1759. zRObj.alphaRegion(
  1760. gr.x - th - rbr * 2, 0, th, th, bgClosingFarbe);
  1761. else
  1762. zRObj.fillRegion(
  1763. gr.x - th - rbr * 2, 0, th, th, bgClosingFarbe);
  1764. if (hatStyle(Style::ClosingHBild) && bgClosingBild)
  1765. {
  1766. if (hatStyle(Style::ClosingHAlpha))
  1767. zRObj.alphaBild(
  1768. gr.x - th - rbr * 2, 0, th, th, *bgClosingBild);
  1769. else
  1770. zRObj.drawBild(
  1771. gr.x - th - rbr * 2, 0, th, th, *bgClosingBild);
  1772. }
  1773. }
  1774. if (!hatStyle(Style::ClosingHBild) || !bgClosingBild)
  1775. {
  1776. zRObj.drawLinie(Punkt(gr.x - th - rbr * 2, 0),
  1777. Punkt(gr.x - rbr * 2, th),
  1778. 0xFFFFFFFF);
  1779. zRObj.drawLinie(Punkt(gr.x - rbr * 2, 0),
  1780. Punkt(gr.x - th - rbr * 2, th),
  1781. 0xFFFFFFFF);
  1782. }
  1783. if (hatStyle(Style::ClosingBuffer) && closeBuffer)
  1784. {
  1785. closeBuffer->setPosition(gr.x - th - rbr * 2, 0);
  1786. closeBuffer->setSize(th, th);
  1787. closeBuffer->render(zRObj);
  1788. }
  1789. if (hatStyle(Style::ClosingKlickBuffer) && closeKlickBuffer
  1790. && closeKlick)
  1791. {
  1792. closeKlickBuffer->setPosition(gr.x - th - rbr * 2, 0);
  1793. closeKlickBuffer->setSize(th, th);
  1794. closeKlickBuffer->render(zRObj);
  1795. }
  1796. }
  1797. if (!hatStyle(Style::CustomTitle))
  1798. titel->setSize(gr.x - rbr * 2 - sbr, th);
  1799. titel->render(zRObj);
  1800. zRObj.releaseDrawOptions();
  1801. }
  1802. bool vSc = hatStyle(Style::VScroll) && vScroll;
  1803. bool hSc = hatStyle(Style::HScroll) && hScroll;
  1804. if (vSc)
  1805. {
  1806. vScroll->render(
  1807. gr.x - rbr - 15, rbr + th, 15, gr.y - rbr * 2 - th, zRObj);
  1808. if (hSc)
  1809. hScroll->render(
  1810. rbr, gr.y - rbr - 15, gr.x - rbr * 2 - 15, 15, zRObj);
  1811. }
  1812. else if (hSc)
  1813. hScroll->render(rbr, gr.y - rbr - 15, gr.x - rbr * 2, 15, zRObj);
  1814. int x = rbr;
  1815. int y = rbr + th;
  1816. int br = gr.x - rbr * 2;
  1817. int hi = gr.y - rbr * 2 - th;
  1818. if (vSc) br -= 15;
  1819. if (hSc) hi -= 15;
  1820. if (!zRObj.setDrawOptions(x, y, br, hi))
  1821. {
  1822. zRObj.releaseDrawOptions();
  1823. unlockZeichnung();
  1824. return;
  1825. }
  1826. if (hatStyle(Style::BodyHintergrund))
  1827. {
  1828. if (hatStyle(Style::BodyHAlpha))
  1829. zRObj.alphaRegion(0, 0, br, hi, bgBodyColor);
  1830. else
  1831. zRObj.fillRegion(0, 0, br, hi, bgBodyColor);
  1832. if (hatStyle(Style::BodyHBild) && bgBodyPicture)
  1833. {
  1834. if (hatStyle(Style::BodyHAlpha))
  1835. zRObj.alphaBild(0, 0, br, hi, *bgBodyPicture);
  1836. else
  1837. zRObj.drawBild(0, 0, br, hi, *bgBodyPicture);
  1838. }
  1839. }
  1840. if (hatStyle(Style::BodyBuffered) && bodyBuffer)
  1841. {
  1842. bodyBuffer->setSize(br, hi);
  1843. bodyBuffer->render(zRObj);
  1844. }
  1845. if (!vSc && !hSc)
  1846. {
  1847. for (Zeichnung* i : *members)
  1848. i->render(zRObj);
  1849. }
  1850. else
  1851. {
  1852. zRObj.addScrollOffset(
  1853. hSc ? hScroll->getScroll() : 0, vSc ? vScroll->getScroll() : 0);
  1854. for (Zeichnung* i : *members)
  1855. i->render(zRObj);
  1856. }
  1857. zRObj.releaseDrawOptions();
  1858. zRObj.releaseDrawOptions();
  1859. unlockZeichnung();
  1860. }
  1861. }
  1862. // constant
  1863. // Gibt die Breite des Innenraumes in der Zeichnung in Pixeln zurück
  1864. int Fenster::getInnenBreite() const
  1865. {
  1866. return getBreite() - 2 * getRBreite();
  1867. }
  1868. // Gibt die Höhe des Innenraumes in der Zeichnung in Pixeln zurück
  1869. int Fenster::getInnenHeight() const
  1870. {
  1871. int th = 0;
  1872. if (hatStyle(Style::Titel) && titel) th += titel->getHeight();
  1873. return getHeight() - 2 * getRBreite() - th;
  1874. }
  1875. // -- Rahmen --
  1876. Rahmen* Fenster::getRahmen() const // gibt den Rahmen zurück
  1877. {
  1878. if (!rahmen) return 0;
  1879. return dynamic_cast<Rahmen*>(rahmen->getThis());
  1880. }
  1881. Rahmen* Fenster::zRahmen() const
  1882. {
  1883. return rahmen;
  1884. }
  1885. int Fenster::getRFarbe() const // gibt die Farbe des Rahmens zurück
  1886. {
  1887. if (!rahmen) return 0;
  1888. return rahmen->getFarbe();
  1889. }
  1890. int Fenster::getRBreite() const // gibt die breite des Rahmens zurück
  1891. {
  1892. if (!rahmen || hatStyleNicht(Style::Rahmen)) return 0;
  1893. return rahmen->getRBreite();
  1894. }
  1895. // -- Titel --
  1896. Text* Fenster::getTitel() const // gibt den Titel zurück
  1897. {
  1898. if (!titel) return 0;
  1899. return titel->getText();
  1900. }
  1901. Text* Fenster::zTitel() const
  1902. {
  1903. if (!titel) return 0;
  1904. return titel->zText();
  1905. }
  1906. TextFeld* Fenster::getTTextFeld() const // gibt das Titel TextFeld zurück
  1907. {
  1908. if (!titel) return 0;
  1909. return dynamic_cast<TextFeld*>(titel->getThis());
  1910. }
  1911. TextFeld* Fenster::zTTextFeld() const
  1912. {
  1913. return titel;
  1914. }
  1915. // -- Titel Schrift --
  1916. Schrift* Fenster::getTSchrift() const // gibt die Titel Schrift zurück
  1917. {
  1918. if (!titel) return 0;
  1919. return titel->getSchrift();
  1920. }
  1921. Schrift* Fenster::zTSchrift() const
  1922. {
  1923. if (!titel) return 0;
  1924. return titel->zSchrift();
  1925. }
  1926. int Fenster::getTSFarbe() const // gibt die Titel Schrift Farbe zurück
  1927. {
  1928. if (!titel) return 0;
  1929. return titel->getSchriftFarbe();
  1930. }
  1931. int Fenster::getTSSize() const // gibt die Titel Schrift Größe zurück
  1932. {
  1933. if (!titel) return 0;
  1934. return titel->getSchriftSize();
  1935. }
  1936. // -- Titel Hintergrund --
  1937. int Fenster::getTBgFarbe() const // gibt die Titel Hintergrund Farbe zurück
  1938. {
  1939. if (!titel) return 0;
  1940. return titel->getHintergrundFarbe();
  1941. }
  1942. // -- Titel AlphaFeld --
  1943. AlphaFeld* Fenster::getTAlphaFeld() const // gibt das Titel AlphaFeld zurück
  1944. {
  1945. if (!titel) return 0;
  1946. return titel->getAlphaFeld();
  1947. }
  1948. AlphaFeld* Fenster::zTAlphaFeld() const
  1949. {
  1950. if (!titel) return 0;
  1951. return titel->zAlphaFeld();
  1952. }
  1953. int Fenster::getTAfFarbe() const // gibt die Farbe des Titel AlphaFeldes zurück
  1954. {
  1955. if (!titel) return 0;
  1956. return titel->getAlphaFeldFarbe();
  1957. }
  1958. int Fenster::getTAfStrength()
  1959. const // gibt die Stärke des TitelAlphaFeldes zurück
  1960. {
  1961. if (!titel) return 0;
  1962. return titel->getAlphaFeldStrength();
  1963. }
  1964. // -- Titel Hintergrund Bild --
  1965. Bild* Fenster::getTBgBild() const // gibt das Titel Hintergrund Bild zurück
  1966. {
  1967. if (!titel) return 0;
  1968. return titel->getHintergrundBild();
  1969. }
  1970. Bild* Fenster::zTBgBild() const
  1971. {
  1972. if (!titel) return 0;
  1973. return titel->zHintergrundBild();
  1974. }
  1975. // -- Titel Rahmen --
  1976. Rahmen* Fenster::getTRahmen() const // gibt den Titel Rahmen zurück
  1977. {
  1978. if (!titel) return 0;
  1979. return titel->getRahmen();
  1980. }
  1981. Rahmen* Fenster::zTRahmen() const
  1982. {
  1983. if (!titel) return 0;
  1984. return titel->zRahmen();
  1985. }
  1986. int Fenster::getTRFarbe() const // gibt die Farbe des Titel Rahmens zurück
  1987. {
  1988. if (!titel) return 0;
  1989. return titel->getRahmenFarbe();
  1990. }
  1991. int Fenster::getTRBreite() const // gibt die Breite des Titel Rahmens zurück
  1992. {
  1993. if (!titel) return 0;
  1994. return titel->getRahmenBreite();
  1995. }
  1996. // -- Körper Hintergrund --
  1997. int Fenster::getKBgFarbe() const // gibt die Körper Hintergrund Farbe zurück
  1998. {
  1999. return bgBodyColor;
  2000. }
  2001. // -- Körper Hintergrund Bild --
  2002. Bild* Fenster::getKBgBild() const // gibt das Körper Hintergrund Bild zurück
  2003. {
  2004. if (!bgBodyPicture) return 0;
  2005. return dynamic_cast<Bild*>(bgBodyPicture->getThis());
  2006. }
  2007. Bild* Fenster::zKBgBild() const
  2008. {
  2009. return bgBodyPicture;
  2010. }
  2011. // -- Körper AlphaFeld --
  2012. AlphaFeld* Fenster::getKAlphaFeld() const // gibt das Körper AlphaFeld zurück
  2013. {
  2014. if (!bodyBuffer) return 0;
  2015. return dynamic_cast<AlphaFeld*>(bodyBuffer->getThis());
  2016. }
  2017. AlphaFeld* Fenster::zKAlphaFeld() const
  2018. {
  2019. return bodyBuffer;
  2020. }
  2021. int Fenster::getKAfFarbe() const // gibt die Farbe des Körper AlphaFeldes zurück
  2022. {
  2023. if (!bodyBuffer) return 0;
  2024. return bodyBuffer->getFarbe();
  2025. }
  2026. int Fenster::getKAfStrength()
  2027. const // gibt die Stärke des Körper AlphaFeldes zurück
  2028. {
  2029. if (!bodyBuffer) return 0;
  2030. return bodyBuffer->getStrength();
  2031. }
  2032. // -- Schließen Hintergrund --
  2033. int Fenster::getSBgFarbe() const // gibt die Schließ Hintergrund Farbe zurück
  2034. {
  2035. return bgClosingFarbe;
  2036. }
  2037. // -- Schließen Hintergrund Bild --
  2038. Bild* Fenster::getSBgBild() const // gibt das Schließ Hintergrund Bild zurück
  2039. {
  2040. if (!bgClosingBild) return 0;
  2041. return dynamic_cast<Bild*>(bgClosingBild->getThis());
  2042. }
  2043. Bild* Fenster::zSBgBild() const
  2044. {
  2045. return bgClosingBild;
  2046. }
  2047. // -- Schließen AlphaFeld --
  2048. AlphaFeld* Fenster::getSAlphaFeld() const // gibt das Schließ AlphaFeld zurück
  2049. {
  2050. if (!closeBuffer) return 0;
  2051. return dynamic_cast<AlphaFeld*>(closeBuffer->getThis());
  2052. }
  2053. AlphaFeld* Fenster::zSAlphaFeld() const
  2054. {
  2055. return closeBuffer;
  2056. }
  2057. int Fenster::getSAfFarbe()
  2058. const // gibt die Farbe des Schließ AlphaFeldes zurück
  2059. {
  2060. if (!closeBuffer) return 0;
  2061. return closeBuffer->getFarbe();
  2062. }
  2063. int Fenster::getSAfStrength()
  2064. const // gibt die Stärke des Schließ AlphaFeldes zurück
  2065. {
  2066. if (!closeBuffer) return 0;
  2067. return closeBuffer->getStrength();
  2068. }
  2069. // -- Schließen Klick AlphaFeld --
  2070. AlphaFeld*
  2071. Fenster::getSKAlphaFeld() const // gibt das Schließ Klick AlphaFeld zurück
  2072. {
  2073. if (!closeKlickBuffer) return 0;
  2074. return dynamic_cast<AlphaFeld*>(closeKlickBuffer->getThis());
  2075. }
  2076. AlphaFeld* Fenster::zSKAlphaFeld() const
  2077. {
  2078. return closeKlickBuffer;
  2079. }
  2080. int Fenster::getSKAfFarbe()
  2081. const // gibt die Farbe des Schließ Klick AlphaFeldes zurück
  2082. {
  2083. if (!closeKlickBuffer) return 0;
  2084. return closeKlickBuffer->getFarbe();
  2085. }
  2086. int Fenster::getSKAfStrength()
  2087. const // gibt die Stärke des Schließ Klick AlphaFeldes zurück
  2088. {
  2089. if (!closeKlickBuffer) return 0;
  2090. return closeKlickBuffer->getStrength();
  2091. }
  2092. // -- min max --
  2093. const Punkt& Fenster::getMin() const // gibt die minimale Fenstergröße zurück
  2094. {
  2095. return min;
  2096. }
  2097. const Punkt& Fenster::getMax() const // gibt die maximale Fenstergröße zurück
  2098. {
  2099. return max;
  2100. }
  2101. const Punkt& Fenster::getKMin() const // gibt die minimale Fenstergröße zurück
  2102. {
  2103. return kMin;
  2104. }
  2105. const Punkt& Fenster::getKMax() const // gibt die maximale Fenstergröße zurück
  2106. {
  2107. return kMax;
  2108. }
  2109. // -- scroll --
  2110. VScrollBar*
  2111. Fenster::getVScrollBar() const // gibt die Vertikale Scroll Bar zurück
  2112. {
  2113. if (!vScroll) return 0;
  2114. return dynamic_cast<VScrollBar*>(vScroll->getThis());
  2115. }
  2116. VScrollBar* Fenster::zVScrollBar() const
  2117. {
  2118. return vScroll;
  2119. }
  2120. HScrollBar*
  2121. Fenster::getHScrollBar() const // gibt die Horizontale Scroll Bar zurück
  2122. {
  2123. if (!hScroll) return 0;
  2124. return dynamic_cast<HScrollBar*>(hScroll->getThis());
  2125. }
  2126. HScrollBar* Fenster::zHScrollBar() const
  2127. {
  2128. return hScroll;
  2129. }
  2130. // -- Members --
  2131. const RCArray<Zeichnung>& Fenster::getMembers() const // gibt die Members zurück
  2132. {
  2133. return *members;
  2134. }
  2135. int Framework::Fenster::getNeededChildWidth() const
  2136. {
  2137. int max = 0;
  2138. for (Zeichnung* z : *members)
  2139. {
  2140. if (z->getX() + z->getBreite() > max) max = z->getX() + z->getBreite();
  2141. }
  2142. return max;
  2143. }
  2144. int Framework::Fenster::getNeededChildHeight() const
  2145. {
  2146. int max = 0;
  2147. for (Zeichnung* z : *members)
  2148. {
  2149. if (z->getY() + z->getHeight() > max) max = z->getY() + z->getHeight();
  2150. }
  2151. return max;
  2152. }
  2153. // -- Kopie --
  2154. Zeichnung* Fenster::dublizieren() const // Erzeugt eine Kopie des Fensters
  2155. {
  2156. Fenster* ret = new Fenster();
  2157. ret->setPosition(pos);
  2158. ret->setSize(gr);
  2159. ret->setMausEreignisParameter(makParam);
  2160. ret->setTastaturEreignisParameter(takParam);
  2161. ret->setMausEreignis(mak);
  2162. ret->setTastaturEreignis(tak);
  2163. if (toolTip) ret->setToolTipZ((ToolTip*)toolTip->dublizieren());
  2164. ret->setStyle(style);
  2165. ret->setClosingMeParam(closingMeParam);
  2166. ret->setClosingMe(closingMe);
  2167. if (rahmen)
  2168. {
  2169. ret->setRBreite(rahmen->getRBreite());
  2170. ret->setRFarbe(rahmen->getFarbe());
  2171. }
  2172. if (titel) ret->setTTextFeldZ((TextFeld*)titel->dublizieren());
  2173. ret->setKBgFarbe(bgBodyColor);
  2174. if (bgBodyPicture)
  2175. ret->setKBgBild(dynamic_cast<Bild*>(bgBodyPicture->getThis()));
  2176. if (bodyBuffer)
  2177. {
  2178. ret->setKAfFarbe(bodyBuffer->getFarbe());
  2179. ret->setKAfStrength(bodyBuffer->getStrength());
  2180. }
  2181. ret->setSBgFarbe(bgClosingFarbe);
  2182. if (bgClosingBild)
  2183. ret->setSBgBild(dynamic_cast<Bild*>(bgClosingBild->getThis()));
  2184. if (closeBuffer)
  2185. {
  2186. ret->setSAfFarbe(closeBuffer->getFarbe());
  2187. ret->setSAfStrength(closeBuffer->getStrength());
  2188. }
  2189. if (closeKlickBuffer)
  2190. {
  2191. ret->setSKAfFarbe(closeKlickBuffer->getFarbe());
  2192. ret->setSKAfStrength(closeKlickBuffer->getStrength());
  2193. }
  2194. if (vScroll)
  2195. {
  2196. ret->setVSBMax(vScroll->getScrollData()->max);
  2197. ret->setVSBScroll(vScroll->getScroll());
  2198. }
  2199. if (hScroll)
  2200. {
  2201. ret->setHSBMax(hScroll->getScrollData()->max);
  2202. ret->setHSBScroll(hScroll->getScroll());
  2203. }
  2204. ret->setMin(min);
  2205. ret->setMax(max);
  2206. ret->setKMin(kMin);
  2207. ret->setKMax(kMax);
  2208. return ret;
  2209. }