DragonNest/Server/ServiceMonitorEx/Source/MainDialogBar.h
2024-12-20 16:56:44 +08:00

30 lines
1.1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
// CMainDialogBar
class CMainDialogBar : public CDialogBar
{
DECLARE_DYNAMIC(CMainDialogBar)
public:
enum EF_UI_SIZE // UI 크기 정의
{
EV_UIS_TITLELINE_PAD_X = 8, // 메인 다이얼로그 바 제목 외부 간격 X
EV_UIS_TITLELINE_PAD_Y = 8, // 메인 다이얼로그 바 제목 외부 간격 Y
EV_UIS_TITLELINE_HGT = 18, // 메인 다이얼로그 바 제목 높이
EV_UIS_TITLETEXT_PAD_X = 10, // 메인 다이얼로그 바 제목 외부 간격 X
};
public:
CMainDialogBar();
virtual ~CMainDialogBar();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnPaint();
};