-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUndoBar.cpp
187 lines (153 loc) · 6.21 KB
/
UndoBar.cpp
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*===========================================================================
*
* File: UndoBar.CPP
* Author: Dave Humphrey ([email protected])
* Created On: September 28, 2006
*
* Implements the dockable undo control bar in the main frame.
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "undobar.h"
#include "mainfrm.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
//#ifdef _DEBUG
// #define new DEBUG_NEW
// #undef THIS_FILE
// static char THIS_FILE[] = __FILE__;
//#endif
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CObUndoBar Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CObUndoBar, CSizingControlBarG)
//{{AFX_MSG_MAP(CObUndoBar)
ON_WM_CREATE()
ON_LBN_DBLCLK(12345, OnDblclkUndoList)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CObUndoBar Message Map
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Constructor
*
*=========================================================================*/
CObUndoBar::CObUndoBar() {
m_pLastUndoArray = NULL;
}
/*===========================================================================
* End of Class CObUndoBar Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Destructor
*
*=========================================================================*/
CObUndoBar::~CObUndoBar() {
}
/*===========================================================================
* End of Class CObUndoBar Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Event - int OnCreate (lpCreateStruct);
*
*=========================================================================*/
int CObUndoBar::OnCreate (LPCREATESTRUCT lpCreateStruct) {
if (CSizingControlBarG::OnCreate(lpCreateStruct) == -1) return -1;
SetSCBStyle(GetSCBStyle() | SCBS_SIZECHILD);
if (!m_wndChild.Create(WS_CHILD|WS_VISIBLE| LBS_HASSTRINGS | LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | WS_VSCROLL,
CRect(0,0,0,0), this, 12345)) {
return -1;
}
m_wndChild.ModifyStyleEx(0, WS_EX_CLIENTEDGE);
if (!m_font.CreateStockObject(DEFAULT_GUI_FONT)) {
if (!m_font.CreatePointFont(80, "MS Sans Serif")) {
return -1;
}
}
m_wndChild.SetFont(&m_font);
return 0;
}
/*===========================================================================
* End of Class Event CObUndoBar::OnCreate()
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Method - void UpdateList (pUndoItems);
*
*=========================================================================*/
void CObUndoBar::UpdateList (CObUndoItemArray* pUndoItems) {
CObUndoItem* pItem;
CSString Buffer;
int Index;
int ListIndex;
m_pLastUndoArray = pUndoItems;
/* Clear the current content */
m_wndChild.ResetContent();
if (pUndoItems == NULL) return;
for (Index = (int)pUndoItems->GetSize() - 1; Index >= 0; --Index) {
pItem = pUndoItems->GetAt(Index);
ListIndex = m_wndChild.AddString(pItem->MakeString(Buffer));
if (ListIndex >= 0) m_wndChild.SetItemData(ListIndex, (DWORD) pItem);
}
//int ID = m_wndChild.GetDlgCtrlID();
}
/*===========================================================================
* End of Class Method CObUndoBar::UpdateList()
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Method - CObUndoItem* GetCurrentUndoItem (void);
*
*=========================================================================*/
CObUndoItem* CObUndoBar::GetCurrentUndoItem (void) {
CObUndoItem* pItem;
int ListIndex;
ListIndex = m_wndChild.GetCurSel();
if (ListIndex < 0) return (NULL);
pItem = (CObUndoItem *) m_wndChild.GetItemData(ListIndex);
return (pItem);
}
/*===========================================================================
* End of Class Method CObUndoBar::GetCurrentUndoItem()
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Method - void LockUpdates (Lock);
*
*=========================================================================*/
void CObUndoBar::LockUpdates (const bool Lock) {
if (Lock) {
m_wndChild.SetRedraw(FALSE);
}
else {
m_wndChild.SetRedraw(TRUE);
m_wndChild.RedrawWindow();
}
}
/*===========================================================================
* End of Class Method CObUndoBar::LockUpdates()
*=========================================================================*/
/*===========================================================================
*
* Class CObUndoBar Event - void OnDblclkUndoList (void);
*
*=========================================================================*/
void CObUndoBar::OnDblclkUndoList (void) {
AfxGetMainWnd()->SendMessage(OBE_MSG_UNDOITEMS, 0, 0);
}
/*===========================================================================
* End of Class Event CObUndoBar::OnDblclkUndoList()
*=========================================================================*/