aboutsummaryrefslogtreecommitdiff
path: root/c/datalistview.h
blob: c094d0ebfbb92e7fa6649f90a82767279edec123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef DATALISTVIEW_H
#define DATALISTVIEW_H

#include "listview.h"

#define DLVSIKEY 0
#define DLVSIVALUE 1

struct DataListView : public ListView
{
	DataListView(HWND hWndParent);
	int Height(int bHeader = -1) override;
	void ResizeColumns(int w) override;
	void SetHeight(int h);
	void ShowEpisode(int iEpisode);
private:
	int m_height = 0;
};

#endif