73 lines
2.0 KiB
C++
Executable File
73 lines
2.0 KiB
C++
Executable File
#if !defined(AFX_SYSSETTINGDLG_H__85E499E6_1C92_4A54_A8BD_E8F52B897971__INCLUDED_)
|
|
#define AFX_SYSSETTINGDLG_H__85E499E6_1C92_4A54_A8BD_E8F52B897971__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// SysSettingDlg.h : header file
|
|
//
|
|
|
|
#include "BmpTxtButton.h"
|
|
#include "PowerDlg.h"
|
|
#include "SetSoundDlg.h"
|
|
#include "SetBacklightDlg.h"
|
|
#include "SetDateTimeDlg.h"
|
|
#include "SetLanguageDlg.h"
|
|
#include "SysInfoDlg.h"
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSysSettingDlg dialog
|
|
|
|
class CSysSettingDlg : public CDialog
|
|
{
|
|
private:
|
|
CBrush m_BgBrush; // ±³¾°»Ë¢
|
|
CDC m_BgDC;
|
|
// Construction
|
|
public:
|
|
void SetButtonTitle();
|
|
CSysSettingDlg(CWnd* pParent = NULL); // standard constructor
|
|
~CSysSettingDlg();
|
|
// Dialog Data
|
|
//{{AFX_DATA(CSysSettingDlg)
|
|
enum { IDD = IDD_DIALOG_SETTING };
|
|
CBmpTxtButton m_butExit;
|
|
CBmpTxtButton m_butSysInfo;
|
|
CBmpTxtButton m_butSound;
|
|
CBmpTxtButton m_butPower;
|
|
CBmpTxtButton m_butLanguage;
|
|
CBmpTxtButton m_butDateTime;
|
|
CBmpTxtButton m_butBacklight;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSysSettingDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CSysSettingDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnButtonSound();
|
|
afx_msg void OnButtonPower();
|
|
afx_msg void OnButtonBacklight();
|
|
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
|
|
afx_msg void OnPaint();
|
|
afx_msg void OnButtonDatatime();
|
|
afx_msg void OnButtonLanguage();
|
|
afx_msg void OnButtonSysinfo();
|
|
afx_msg void OnButtonSetExit();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_SYSSETTINGDLG_H__85E499E6_1C92_4A54_A8BD_E8F52B897971__INCLUDED_)
|