libui/windows
Angelo Haller 79bb0057c8 Add new API functions to get and set the visibility of table headers.
Added API functions:
uiTableHeaderVisible() to determine whether the table header is visible.
uiTableHeaderSetVisible() to set the visibility of the table header.

Implementation provided for unix, darwin, and windows.

Notes: as darwin does not provide an API for hiding or recreating the
table header I opted for saving a reference and restoring that when the
visibility is set back to true. Setting the header to nil to hide it is
the suggested method for hiding the header according to the docs.
2020-09-15 08:41:44 -05:00
..
_rc2bin And removed the rc file copying stuff from CMakeLists.txt. I wonder if this fixes the msbuild generators in cmake, so let's find out... 2018-05-02 23:04:43 -04:00
_uipriv_migrate.hpp Moved the old Windows text code out of the way. 2018-03-11 21:04:38 -04:00
alloc.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
area.cpp clickCounter -> uiprivClickCounter. 2018-04-15 22:26:51 -04:00
area.hpp clickCounter -> uiprivClickCounter. 2018-04-15 22:26:51 -04:00
areadraw.cpp Implemented WM_PRINTCLIENT for uiArea and the Direct2D scratch windows. 2016-05-22 16:16:20 -04:00
areaevents.cpp fromScancode() -> uiprivFromScancode(). 2018-04-15 22:31:17 -04:00
areascroll.cpp Got rid of the last bit of intmax_t. Now to verify everything. 2016-06-13 22:00:18 -04:00
areautil.cpp Fixed the MinGW ABI stuff again... 2016-06-05 16:07:40 -04:00
attrstr.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
attrstr.hpp Decided to keep attrstr.h for now; removed extern "C" hack from attrstr.hpp on Windows and moved it into attrstr.h. Let's merge back. 2018-04-18 00:54:24 -04:00
box.cpp Fixed uiBox hidden control nonsense on Windows. FINALLY. 2016-06-14 16:06:39 -04:00
button.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
checkbox.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
colorbutton.cpp Removed most of the intmax_ts, which are all MinimumSize()s. 2016-06-13 21:54:15 -04:00
colordialog.cpp windows/direct2d: fix ID2D1RenderTarget::GetPixelFormat() and ID2D1RenderTarget::GetSize() typedefs in MinGW-w64 ABI workaround 2019-04-07 21:56:35 -04:00
combobox.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
compilerver.hpp Cleanup of previous merge, including TODOs and massive infodumps. 2018-04-30 21:55:54 -04:00
container.cpp Got rid of the last bit of intmax_t. Now to verify everything. 2016-06-13 22:00:18 -04:00
control.cpp Implemented visibility change detection on Windows. Now to refine the actual implementation of hidden controls. 2016-06-14 15:55:24 -04:00
d2dscratch.cpp Fixed the MinGW ABI stuff again... 2016-06-05 16:07:40 -04:00
datetimepicker.cpp Cleaned up from the previous merge and added it to the README. 2018-05-13 12:05:09 -04:00
debug.cpp Fixed VS2017 build for now. 2019-04-03 10:05:00 -04:00
draw.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
draw.hpp Moved the old Windows text code out of the way. 2018-03-11 21:04:38 -04:00
drawmatrix.cpp Added uipriv prefixes to the matrix functions. 2018-04-15 22:39:34 -04:00
drawpath.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
drawtext.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
dwrite.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
editablecombo.cpp More work on winrebarexplorertheme.cpp, including the boilerplate for custom draw. More TODOs in general. 2018-10-11 22:19:10 -04:00
entry.cpp Removed most of the intmax_ts, which are all MinimumSize()s. 2016-06-13 21:54:15 -04:00
events.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
fontbutton.cpp Added a uiFreeFontButtonFont() function to free resources allocated by uiFontButtonFont(), implemented it on Windows, and integrated it into the drawtext example. I'm going to continue chipping away at the Windows code for a bit longer, so I'll add this to the other platforms later. 2018-03-17 23:07:40 -04:00
fontdialog.cpp Try again again. 2019-04-03 10:20:07 -04:00
fontmatch.cpp Fixed build errors. Now to test. 2018-03-17 15:49:00 -04:00
form.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
graphemes.cpp struct graphemes -> uiprivGraphemes. Also deleted OLD_uipriv.h now that that one is settled. 2018-04-15 22:43:14 -04:00
grid.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
group.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
image.cpp Sigh MinGW 2018-09-01 20:03:15 -04:00
init.cpp Try again again. 2019-04-03 10:20:07 -04:00
label.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
libui.manifest Added Windows 7 compatibility to the manifest. 2015-12-31 19:58:03 -05:00
main.cpp Cleaned up timers in uiUninit() on GTK+. Update #395. 2018-08-09 04:49:07 -04:00
menu.cpp shouldQuit() -> uiprivShouldQuit(). 2018-04-15 21:54:46 -04:00
meson.build Clean up specification of Windows dependency listp also suggested by TheQwertiest in freenode #mesonbuild. Also more TODOs. 2019-03-29 11:03:07 -04:00
multilineentry.cpp Fixed a typo that led to CRLF bugs in uiMultilineEntry on Windows. Thanks to @mimecorg for spotting it. 2018-05-28 13:38:36 -04:00
notes More notes. 2015-11-27 12:35:23 -05:00
opentype.cpp Fixed build errors. Now to test. 2018-03-17 15:49:00 -04:00
parent.cpp Fixed all compiiler errors. Now for runtime errors! 2016-04-29 17:08:31 -04:00
progressbar.cpp Migrated implbug() and userbug() to uipriv forms. 2018-04-15 21:46:08 -04:00
radiobuttons.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
resources.hpp Pinned down resource numbers now. 2016-06-04 14:36:55 -04:00
resources.rc And the color dialog. All done! Now we just need to clean up and remove the kludge. 2018-05-02 21:13:35 -04:00
separator.cpp More TODOs. 2017-05-30 22:57:38 -04:00
sizing.cpp More TODOs. 2017-01-27 15:39:24 -05:00
slider.cpp More intmax_t elminiation. 2016-06-13 20:55:50 -04:00
spinbox.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
stddialogs.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
tab.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
table.cpp Add new API functions to get and set the visibility of table headers. 2020-09-15 08:41:44 -05:00
table.hpp Fixed up AddColumn parameter and private fields names; made them consistent. 2018-06-24 09:52:01 -04:00
tabledispinfo.cpp Turned the direct method calls on uiTableModel into functions to make the call sites look a bit cleaner. More stuff will go into common/tablemodel.c... 2018-06-23 23:35:42 -04:00
tabledraw.cpp Cleaned up color access across platforms. 2018-06-24 14:22:05 -04:00
tableediting.cpp Deduplicated editable logic across platforms. 2018-06-24 11:41:19 -04:00
tablemetrics.cpp Integrated tablemetrics.cpp with tabledraw.cpp. 2018-06-20 18:03:56 -04:00
tabpage.cpp Removed rcTabPageDIalog from the resources. Also removed CRs from the out file. Need to fix that generator... 2018-05-02 20:17:08 -04:00
text.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
uipriv_windows.hpp Cleaned up timers in uiUninit() on Windows. Update #395. 2018-08-09 04:29:16 -04:00
utf16.cpp Cleanup of previous merge, including TODOs and massive infodumps. 2018-04-30 21:55:54 -04:00
utilwin.cpp Cleaned up timers in uiUninit() on Windows. Update #395. 2018-08-09 04:29:16 -04:00
winapi.hpp Started a more flexible indeterminate-state implementation. Now to build and test it. 2018-06-16 19:05:36 -04:00
window.cpp uiAlloc() et al -> uiprivAlloc() et al, Windows code. 2018-04-15 18:12:58 -04:00
winpublic.cpp Removed intmax_t from the rest of the public API. 2016-06-13 21:23:05 -04:00
winutil.cpp windows/direct2d: fix ID2D1RenderTarget::GetPixelFormat() and ID2D1RenderTarget::GetSize() typedefs in MinGW-w64 ABI workaround 2019-04-07 21:56:35 -04:00