-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathControleurDlg.h
More file actions
34 lines (27 loc) · 798 Bytes
/
Copy pathControleurDlg.h
File metadata and controls
34 lines (27 loc) · 798 Bytes
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
#pragma once
#include "resource.h"
#include "skin\skinlistctrl.h"
#include "afxwin.h"
// Boîte de dialogue CControleurDlg
class CAppPointer;
class CControleurDlg : public CDialog
{
DECLARE_DYNAMIC(CControleurDlg)
void SetAPP(CAppPointer * m_APP);
public:
CControleurDlg(CWnd* pParent = NULL); // constructeur standard
virtual ~CControleurDlg();
// Données de boîte de dialogue
enum { IDD = IDD_CONTROLER };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // Prise en charge DDX/DDV
DECLARE_MESSAGE_MAP()
virtual void PostNcDestroy();
CAppPointer * APP;
public:
::CFont font;
void Update();
virtual BOOL OnInitDialog();
CSkinListCtrl m_lstcontroleur;
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
};