aboutsummaryrefslogtreecommitdiff
path: root/c/episodelistview.h
blob: 7061944608de464dbca90bc4c6500de8a78dde5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef EPISODELISTVIEW_H
#define EPISODELISTVIEW_H

#include <windows.h>
#include <commctrl.h>

#include "listview.h"

#define ELVSIEPISODE 0
#define ELVSITITLE 1
#define ELVSIRATING 2

struct EpisodeListView : public ListView
{
	EpisodeListView(HWND hWndParent);
	void DoSort(void);
	void EnsureFocusVisible(void);
	LRESULT HandleNotify(LPARAM lParam);
	void Redraw(void);
	void SaveFocus(void);
	void SetTop(int iItem);
	void RestoreFocus(void);
	void SelectUnwatched(int iDir);
	void ShowFocus(void);
	void Update(void);
	void UpdateItem(const LVITEM* pLvi);
	LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) override;
private:
	int m_iSort;
	LVITEM m_lviFocus;
	friend int CALLBACK ElvSort(LPARAM lParam1, LPARAM lParam2, LPARAM lExtra);
};

#endif