summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-22notebook: save layout flags to control font and bg inheritanceJonas Kümmerlin
this makes setting fonts and background color for tab panels work, instead of appearing to work but then being overridden later
2020-04-21embarrassing notebook content flicker fixesJonas Kümmerlin
2020-04-21notebook: add option of using a solid backgroundJonas Kümmerlin
unfortunately, only xp supplies actually matching color hints the color hint of Vista and later is very different from the texture used, so it looks quite ugly there :/
2020-04-21make ALF_SetBackgroundColor disable color inheritanceJonas Kümmerlin
2020-04-21fix GDI leak in notebookJonas Kümmerlin
2020-04-20fixup transparent background work and add test in widgetfactoryJonas Kümmerlin
Win32s bites once again with its 16bit WPARAM
2020-04-19TMP window bg testJonas Kümmerlin
2020-04-19window: add paint vfuncJonas Kümmerlin
2020-04-19panel vtbl first implementationJonas Kümmerlin
still basically untested
2020-04-19calc edit sizes in layout, no more subclassingJonas Kümmerlin
2020-04-19widget factory: add more tabs to simulate full notebookJonas Kümmerlin
2020-04-18notebook: draw themed background tiled like winxp does itJonas Kümmerlin
2020-04-18implement background colorJonas Kümmerlin
reduce flickering by keeping pixels if we know the background didn't change panel text is now gone, it would require us to redraw every transparent widget on top, which is a bad tradeoff since that panel text isn't very useful anyway.
2020-04-18extract toplevel window stuff into alfwindow.cppJonas Kümmerlin
2020-04-16remove toplevel WS_EX_COMPOSITED.Jonas Kümmerlin
WS_EX_COMPOSITED is buggy on XP and seemingly unimplemented both pre-XP and Vista+
2020-04-16make it build with -WconversionJonas Kümmerlin
2020-04-16rework grid layoutJonas Kümmerlin
Fractional expand is now supported like Qt, and also per row/column instead of as a widget attribute. Instead of margins, you're now supposed to use empty rows/columns instead. Spacer is also gone, use empty rows/columns with minimum size. Layout engine is prepared to directly calculate edit, button, etc. sizes without subclassing these controls
2020-04-16layout: invalidate and recalculate, automaticallyJonas Kümmerlin
2020-04-16fix embarrassing bug in ALF_TextJonas Kümmerlin
2020-04-16font handling change: allow controls to inherit fontsJonas Kümmerlin
also do it automatically when adding widget to layout, no more calling applyfonts manually
2020-04-16panel: show centered text like DelphiJonas Kümmerlin
2020-04-14replace GetVersion() calls with helper functionsJonas Kümmerlin
2020-04-14fix disabled label on Win32sJonas Kümmerlin
2020-04-14use Win95 fonts and colors even when running on Win32s/NT3.51Jonas Kümmerlin
2020-04-14Make notebook bg gradient work. Anti-flicker work throughout the codebase.Jonas Kümmerlin
2019-07-07first notebook implementationJonas Kümmerlin
2019-07-07label: invalidate on text setJonas Kümmerlin
2019-06-30remove and restore button default state on window inactiveJonas Kümmerlin
2019-06-30label reimplementJonas Kümmerlin
2019-06-29get rid of last usages of InterlockedIncrementJonas Kümmerlin
doesn't work right on Win95/NT 3.51
2019-05-01redo compat function architectureJonas Kümmerlin
way less code at the expense of explicit initialization
2019-05-01reorganize how combobox text is being handled.Jonas Kümmerlin
fixes some weird issues with MSLU.
2019-04-29remove app, use global variables insteadJonas Kümmerlin
also some unrelated combobox fixes
2019-04-28add owner-drawn themed button with animationJonas Kümmerlin
2019-01-25remove edit control margins to match up with buttonJonas Kümmerlin
we'll owner-draw the button to get rid of the margin
2019-01-25add memory allocation functionsJonas Kümmerlin
2019-01-12add amalgamation targetJonas Kümmerlin
2019-01-11ALF_Text(): use GetWindowText instead of sending WM_GETTEXT directlyJonas Kümmerlin
2019-01-11add pretranslate message hookJonas Kümmerlin
2019-01-09add spacer widgetJonas Kümmerlin
2019-01-08reingineer compat layerJonas Kümmerlin
not totally sure whether that's actually better
2019-01-07fixup panel supportJonas Kümmerlin
2019-01-06initial panel implementationJonas Kümmerlin
2019-01-06move some message handling code into layoutJonas Kümmerlin
2019-01-05changed my mind about how fonts should be applied to new widgetsJonas Kümmerlin
2019-01-05move layout into own file, implement expand flagJonas Kümmerlin
2019-01-05make combobox look better on NT 3.51Jonas Kümmerlin
still broken on Win32s for whatever reason
2019-01-04improve label display on Win32s/NT3.x and make it actually run on NT 3.1Jonas Kümmerlin
NT 3.1 doesn't have GetSysColorBrush(), and the label display isn't broken enough for us to worry about it, since we're gonna replace it anyway at some point
2019-01-04skip initialization of priv on class unregisterJonas Kümmerlin
2019-01-04implement WM_NOTIFY handlingJonas Kümmerlin