-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCALENDAR.H
109 lines (98 loc) · 3.38 KB
/
CALENDAR.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#if !defined(AFX_CALENDAR_H__5640C380_839F_11D3_8919_44455354616F__INCLUDED_)
#define AFX_CALENDAR_H__5640C380_839F_11D3_8919_44455354616F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your modifications will be overwritten.
// Dispatch interfaces referenced by this interface
class COleFont;
/////////////////////////////////////////////////////////////////////////////
// CCalendar wrapper class
class CCalendar : public CWnd
{
protected:
DECLARE_DYNCREATE(CCalendar)
public:
CLSID const& GetClsid()
{
static CLSID const clsid
= { 0x8e27c92b, 0x1264, 0x101c, { 0x8a, 0x2f, 0x4, 0x2, 0x24, 0x0, 0x9c, 0x2 } };
return clsid;
}
virtual BOOL Create(LPCTSTR lpszClassName,
LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect,
CWnd* pParentWnd, UINT nID,
CCreateContext* pContext = NULL)
{ return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID); }
BOOL Create(LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect, CWnd* pParentWnd, UINT nID,
CFile* pPersist = NULL, BOOL bStorage = FALSE,
BSTR bstrLicKey = NULL)
{ return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID,
pPersist, bStorage, bstrLicKey); }
// Attributes
public:
// Operations
public:
unsigned long GetBackColor();
void SetBackColor(unsigned long newValue);
short GetDay();
void SetDay(short nNewValue);
COleFont GetDayFont();
void SetDayFont(LPDISPATCH newValue);
unsigned long GetDayFontColor();
void SetDayFontColor(unsigned long newValue);
short GetDayLength();
void SetDayLength(short nNewValue);
short GetFirstDay();
void SetFirstDay(short nNewValue);
long GetGridCellEffect();
void SetGridCellEffect(long nNewValue);
COleFont GetGridFont();
void SetGridFont(LPDISPATCH newValue);
unsigned long GetGridFontColor();
void SetGridFontColor(unsigned long newValue);
unsigned long GetGridLinesColor();
void SetGridLinesColor(unsigned long newValue);
short GetMonth();
void SetMonth(short nNewValue);
short GetMonthLength();
void SetMonthLength(short nNewValue);
BOOL GetShowDateSelectors();
void SetShowDateSelectors(BOOL bNewValue);
BOOL GetShowDays();
void SetShowDays(BOOL bNewValue);
BOOL GetShowHorizontalGrid();
void SetShowHorizontalGrid(BOOL bNewValue);
BOOL GetShowTitle();
void SetShowTitle(BOOL bNewValue);
BOOL GetShowVerticalGrid();
void SetShowVerticalGrid(BOOL bNewValue);
COleFont GetTitleFont();
void SetTitleFont(LPDISPATCH newValue);
unsigned long GetTitleFontColor();
void SetTitleFontColor(unsigned long newValue);
VARIANT GetValue();
void SetValue(const VARIANT& newValue);
BOOL GetValueIsNull();
void SetValueIsNull(BOOL bNewValue);
short GetYear();
void SetYear(short nNewValue);
void NextDay();
void NextMonth();
void NextWeek();
void NextYear();
void PreviousDay();
void PreviousMonth();
void PreviousWeek();
void PreviousYear();
void Refresh();
void Today();
void AboutBox();
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CALENDAR_H__5640C380_839F_11D3_8919_44455354616F__INCLUDED_)