diff options
| author | Pietro Gagliardi <[email protected]> | 2014-12-22 20:15:10 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-12-22 20:15:10 -0500 |
| commit | 7ba7222976b1260065d633855830ffd20e153bf0 (patch) | |
| tree | bdad516974e9664a530a768dc13122071e7f6ccb /wintable/new/main.c | |
| parent | cc165b48ff08ac93202446f5a10bb1ce4f095857 (diff) | |
Mostly done with the implementation of checkboxes!
Diffstat (limited to 'wintable/new/main.c')
| -rw-r--r-- | wintable/new/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wintable/new/main.c b/wintable/new/main.c index 43e4391..56aee2f 100644 --- a/wintable/new/main.c +++ b/wintable/new/main.c @@ -32,6 +32,7 @@ // - WM_THEMECHANGED, etc. // - see if vertical centering is really what we want or if we just want to offset by a few pixels or so // - going right from column 0 to column 2 with the right arrow key deselects +// - make sure all error messages involving InvalidateRect() are consistent with regards to "redrawing" and "queueing for redraw" #define tableWindowClass L"gouitable" @@ -77,6 +78,9 @@ struct table { int checkboxHeight; BOOL checkboxMouseOverLast; LPARAM checkboxMouseOverLastPoint; + BOOL checkboxMouseDown; + intptr_t checkboxMouseDownRow; + intptr_t checkboxMouseDownColumn; }; #include "util.h" |
