-
Notifications
You must be signed in to change notification settings - Fork 0
/
TRXAllMaps.h
36 lines (29 loc) · 1006 Bytes
/
TRXAllMaps.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
#pragma once
#include "TRXDialogBase.h"
#include "resource.h"
#include "afxwin.h"
//
/////////////////////////////////////////////////////////////////////////////
// Boîte de dialogue CTRXAllMaps
//
/////////////////////////////////////////////////////////////////////////////
class CTRXAllMaps : public CTRXDialogBase
{
DECLARE_DYNAMIC(CTRXAllMaps)
public:
CTRXAllMaps(CWnd* pParent = NULL); // constructeur standard
virtual ~CTRXAllMaps();
// Données de boîte de dialogue
enum { IDD = IDD_TRXALLMAPS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // Prise en charge de DDX/DDV
DECLARE_MESSAGE_MAP()
public:
CTRXCComboBoxBase m_Versions;
CTRXCComboBoxBase m_Areas;
CTRXButtonBase m_Show;
virtual BOOL OnInitDialog();
afx_msg void OnSelchangeVersions();
afx_msg void OnSelchangeAreas();
afx_msg void OnBnClickedShow();
};