aboutsummaryrefslogtreecommitdiff
path: root/c/listview.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-23 22:42:03 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-24 00:30:03 +0200
commit647fd553af9054b89f4a0d751ea89a98439ae5ac (patch)
treec8f80284b012a35172c298fcc2950b63238394e1 /c/listview.h
parentc6cd2f1f164baac1414f2cf658566de146b10552 (diff)
downloadEpisodeBrowser-647fd553af9054b89f4a0d751ea89a98439ae5ac.tar.gz
Improve window layout.
This reverts much of 97f0a27. 1. It turns out not to be a good idea to resize the list view columns based on the list view window's own rectangle, as it will change depending on whether a scrollbar is visible. The problem is that resizing the columns may add a horizontal scrollbar -- which in turn may add a vertical scrollbar. 2. The WS_EX_CLIENTEDGE style does not look very good in "modern" (non-classic) themes. In 97f0a27, I tried solving this by extending the dimensions of the child windows such that their edges were hidden. However, this type of overlapping causes problems with the status bar. My new solution is to instead *reduce* the child windows' dimensions. This achieves a visual impression similar to the thicker (more well-designed) edges of the "classically themed" list view control. To make it look even better, the main window background is changed from COLOR_WINDOWFRAME (white) to COLOR_WINDOW (light gray).
Diffstat (limited to 'c/listview.h')
-rw-r--r--c/listview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/listview.h b/c/listview.h
index 528ddc3..478819f 100644
--- a/c/listview.h
+++ b/c/listview.h
@@ -9,7 +9,7 @@ struct ListView
ListView(HWND hWndParent, HMENU hMenu, DWORD dwStyle);
int Height(int bHeader = -1);
- virtual void ResizeColumns();
+ virtual void ResizeColumns(int w);
virtual void UpdateTheme(BOOL bThemeActive);
virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
protected: