-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathUndoBar.cpp
195 lines (159 loc) · 6.36 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
188
189
190
191
192
193
194
195
/*===========================================================================
*
* File: UndoBar.CPP
* Author: Dave Humphrey ([email protected])
* Created On: 26 November 2011
*
* 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 CSrUndoBar Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CSrUndoBar, CSizingControlBarG)
//{{AFX_MSG_MAP(CSrUndoBar)
ON_WM_CREATE()
ON_LBN_DBLCLK(12345, OnDblclkUndoList)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CSrUndoBar Message Map
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Constructor
*
*=========================================================================*/
CSrUndoBar::CSrUndoBar() {
m_pLastUndoArray = NULL;
}
/*===========================================================================
* End of Class CSrUndoBar Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Destructor
*
*=========================================================================*/
CSrUndoBar::~CSrUndoBar() {
}
/*===========================================================================
* End of Class CSrUndoBar Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Event - int OnCreate (lpCreateStruct);
*
*=========================================================================*/
int CSrUndoBar::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 CSrUndoBar::OnCreate()
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Method - void UpdateList (pUndoItems);
*
*=========================================================================*/
void CSrUndoBar::UpdateList (CSrUndoItemArray* pUndoItems) {
CSrUndoItem* 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 CSrUndoBar::UpdateList()
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Method - CSrUndoItem* GetCurrentUndoItem (void);
*
*=========================================================================*/
CSrUndoItem* CSrUndoBar::GetCurrentUndoItem (void) {
CSrUndoItem* pItem;
int ListIndex;
ListIndex = m_wndChild.GetCurSel();
if (ListIndex < 0) return (NULL);
pItem = (CSrUndoItem *) m_wndChild.GetItemData(ListIndex);
return (pItem);
}
int CSrUndoBar::GetCurrentUndoItemCount (void)
{
int ListIndex = m_wndChild.GetCurSel();
if (ListIndex < 0) return 0;
return ListIndex + 1;
}
/*===========================================================================
* End of Class Method CSrUndoBar::GetCurrentUndoItem()
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Method - void LockUpdates (Lock);
*
*=========================================================================*/
void CSrUndoBar::LockUpdates (const bool Lock) {
if (Lock) {
m_wndChild.SetRedraw(FALSE);
}
else {
m_wndChild.SetRedraw(TRUE);
m_wndChild.RedrawWindow();
}
}
/*===========================================================================
* End of Class Method CSrUndoBar::LockUpdates()
*=========================================================================*/
/*===========================================================================
*
* Class CSrUndoBar Event - void OnDblclkUndoList (void);
*
*=========================================================================*/
void CSrUndoBar::OnDblclkUndoList (void) {
AfxGetMainWnd()->SendMessage(SRE_MSG_UNDOITEMS, 0, 0);
}
/*===========================================================================
* End of Class Event CSrUndoBar::OnDblclkUndoList()
*=========================================================================*/