-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathItemPicker.h
85 lines (75 loc) · 2.19 KB
/
ItemPicker.h
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
#if !defined(AFX_ITEMPICKER_H__B178BA11_12F0_4003_ACA4_6495441F7A38__INCLUDED_)
#define AFX_ITEMPICKER_H__B178BA11_12F0_4003_ACA4_6495441F7A38__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ItemPicker.h : header file
//
#include "creature.h"
#include "item.h"
#include "spell.h"
#include "store.h"
#include "ImageView.h"
/////////////////////////////////////////////////////////////////////////////
// CItemPicker dialog
class CItemPicker : public CDialog
{
// Construction
public:
CItemPicker(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CItemPicker)
enum { IDD = IDD_ITEMPICKER };
CButton m_play_control;
CButton m_preview_control;
CButton m_resolve_control;
CButton m_animlist_control;
CListBox m_pick_control;
CString m_text;
//}}AFX_DATA
CString m_picked;
int m_restype;
int m_oldrestype;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CItemPicker)
public:
virtual BOOL PreTranslateMessage(MSG* pMsg);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void PostNcDestroy();
//}}AFX_VIRTUAL
// Implementation
protected:
CToolTipCtrl m_tooltip;
CImageView m_preview;
Ccreature my_creature;
Citem my_item;
Cspell my_spell;
Cstore my_store;
Carea my_area;
Cbam my_bam;
Cmos my_mos;
Cchui my_chui;
CVVC my_vvc;
void FillList(int restype, CListBox &list);
void Preview(CString &key, loc_entry &fileloc, int restype);
void ResolveKey(CString &key, loc_entry &fileloc, int restype);
void RefreshDialog();
// Generated message map functions
//{{AFX_MSG(CItemPicker)
afx_msg void OnOK();
afx_msg void OnDblclkPick();
virtual BOOL OnInitDialog();
afx_msg void OnSearch();
afx_msg void OnResolve();
afx_msg void OnPreview();
afx_msg void OnSelchangePick();
afx_msg void OnPlay();
afx_msg void OnAnimlist();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_ITEMPICKER_H__B178BA11_12F0_4003_ACA4_6495441F7A38__INCLUDED_)