summaryrefslogtreecommitdiffstats
path: root/src/list.h
blob: f3ff1d5f91bd8fd39046a45d1e11474051f8db4c (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// list.h

#ifndef _LIST_H_
#define	_LIST_H_


#include "control.h"


class CD3DEngine;
class CButton;
class CScroll;


#define LISTMAXDISPLAY	20		// nb max de lignes visibles
#define LISTMAXTOTAL	100		// nb max de lignes total



class CList : public CControl
{
public:
	CList(CInstanceManager* iMan);
	~CList();

	BOOL		Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg, float expand);

	void		SetPos(FPOINT pos);
	void		SetDim(FPOINT dim);

	BOOL		SetState(int state, BOOL bState);
	BOOL		SetState(int state);
	BOOL		ClearState(int state);

	BOOL		EventProcess(const Event &event);
	void		Draw();

	void		Flush();

	void		SetTotal(int i);
	int			RetTotal();

	void		SetSelect(int i);
	int			RetSelect();

	void		SetSelectCap(BOOL bEnable);
	BOOL		RetSelectCap();

	void		SetBlink(BOOL bEnable);
	BOOL		RetBlink();

	void		SetName(int i, char* name);
	char*		RetName(int i);

	void		SetCheck(int i, BOOL bMode);
	BOOL		RetCheck(int i);

	void		SetEnable(int i, BOOL bEnable);
	BOOL		RetEnable(int i);

	void		SetTabs(int i, float pos, int justif=1);
	float		RetTabs(int i);

	void		ShowSelect(BOOL bFixed);

	EventMsg	RetEventMsgButton(int i);
	EventMsg	RetEventMsgScroll();

protected:
	BOOL		MoveAdjust();
	void		UpdateButton();
	void		UpdateScroll();
	void		MoveScroll();
	void		DrawCase(char *text, FPOINT pos, float width, int justif);

protected:
	CButton*	m_button[LISTMAXDISPLAY];
	CScroll*	m_scroll;

	EventMsg	m_eventButton[LISTMAXDISPLAY];
	EventMsg	m_eventScroll;

	float		m_expand;
	int			m_totalLine;	// nb total de lignes
	int			m_displayLine;	// nb de lignes visibles
	int			m_selectLine;	// ligne s�lectionn�e
	int			m_firstLine;	// premi�re ligne visible
	BOOL		m_bBlink;
	BOOL		m_bSelectCap;
	float		m_blinkTime;
	float		m_tabs[10];
	int			m_justifs[10];

	char		m_text[LISTMAXTOTAL][100];
	char		m_check[LISTMAXTOTAL];
	char		m_enable[LISTMAXTOTAL];
};


#endif //_LIST_H_