-
Notifications
You must be signed in to change notification settings - Fork 8
/
STabCtrlEx.h
495 lines (453 loc) · 13.9 KB
/
STabCtrlEx.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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
/**
* Copyright (C)宇宙爆炸 9527
* All rights reserved.
*
* @file stabctrlex.h
* @brief
* @version v1.0
* @author 359501300
* @date 2017-5-28
*
* Describe 扩展tab
*/
#pragma once
#include "core/SWnd.h"
namespace SOUI
{
/**
* @class STabPageEx
* @brief tab标签页面
*
* Describe tab标签页面
*/
class STabPageEx : public SWindow
{
SOUI_CLASS_NAME(STabPageEx, L"pageex")
public:
virtual CSize GetDesiredSize(LPCRECT pRcContainer)override
{
CSize size = __super::GetDesiredSize(pRcContainer);
return CSize(size.cx, max(m_iHeight, size.cy));
}
/**
* STabPageEx::STabPageEx
* @brief 构造函数
*
* Describe 构造函数
*/
STabPageEx():m_iIcon(-1), m_iHeight(0), m_strTitle(this)
{
}
void SetHeight(int Height)
{
m_iHeight = Height;
}
int GetHeight()
{
return m_iHeight;
}
/**/
/**
* STabPageEx::~STabPageEx
* @brief 析构函数
*
* Describe 析构函数
*/
virtual ~STabPageEx()
{
}
/**
* STabPageEx::GetTitle
* @brief 获取标题
* @return LPCTSTR --- 标题
*
* Describe 获取标题
*/
LPCTSTR GetTitle()
{
return m_strTitle.GetText();
}
/**
* STabPageEx::SetTitle
* @brief 设置标题
* @param LPCTSTR lpszTitle --- 标题
*
* Describe 设置标题
*/
void SetTitle(LPCTSTR lpszTitle)
{
m_strTitle.SetText(lpszTitle);
}
int GetIconIndex() const {return m_iIcon;}
void SetIconIndex(int iIcon) {m_iIcon=iIcon;}
SStringT GetToolTipText(){return m_strToolTipText.GetText();}
/**
* OnUpdateToolTip
* @brief 处理tooltip
* @param const CPoint & pt -- 测试点
* @param [out] SwndToolTipInfo & tipInfo -- tip信息
* @return BOOL -- FALSE
*
* Describe 总是返回FALSE,禁止在page页面上显示tooltip
*/
virtual BOOL OnUpdateToolTip(CPoint pt, SwndToolTipInfo &tipInfo){return FALSE;}
SOUI_ATTRS_BEGIN()
ATTR_I18NSTRT(L"title", m_strTitle, FALSE)
ATTR_INT(L"iconIndex", m_iIcon,FALSE)
SOUI_ATTRS_END()
protected:
STrText m_strTitle; /**< 标题 */
int m_iIcon;
int m_iHeight;
};
/**
* @class STabCtrl
* @brief tab控件
*
* Describe tab控件
*/
class STabCtrlEx : public SWindow
{
SOUI_CLASS_NAME(STabCtrlEx, L"tabctrlex")
protected:
int m_nHoverTabItem; /**< hover状态item */
int m_nCurrentPage; /**< 当前页码 */
int m_nTabInterSize; /**< tab页面间距 */
SIZE m_szTab; /**< tab SIZE */
int m_nTabPos; /**< tab位置 */
ISkinObj *m_pSkinTab; /**< ISkibObj对象 */
ISkinObj *m_pSkinIcon; /**< ISkibObj对象 */
ISkinObj *m_pSkinTabInter; /**< ISkibObj对象 */
ISkinObj *m_pSkinFrame; /**< ISkibObj对象 */
CPoint m_ptIcon; /**< 图标位置 */
CPoint m_ptText; /**< 标题位置 */
SArray<STabPageEx*> m_lstPages; /**< tab标签页面链表 */
SScrollView *m_pItemPanel;
enum
{
AlignTop,
AlignLeft,
AlignBottom,
AlignRight,
};
enum TEXTDIR
{
Text_Horz,
Text_Vert,
}m_txtDir;
int m_nAnimateSteps; /**< 动画次数 */
public:
/**
* STabCtrl::STabCtrl
* @brief 构造函数
*
* Describe 构造函数
*/
STabCtrlEx();
/**
* STabCtrl::~STabCtrl
* @brief 析构函数
*
* Describe 析构函数
*/
virtual ~STabCtrlEx() {}
/**
* STabCtrl::GetCurSel
* @brief 获取当前选中
* @return 返回int
*
* Describe 获取当前选中
*/
int GetCurSel()
{
return m_nCurrentPage;
}
SWindow * GetPage(int iPage);
SWindow * GetPage(LPCTSTR pszName,BOOL bTitle=TRUE);
/**
* STabCtrl::SetCurSel
* @brief 设置当前选中
* @param int nIndex -- 索引
* @param bool bScrollView -- 是否滚动视图默认滚动
* @return 返回BOOL
*
* Describe 获取当前选中
*/
BOOL SetCurSel(int nIndex, bool bScrollView=true);
//BOOL SetCurSel(int nIndex);
/**
* STabCtrl::SetCurSel
* @brief 设置当前选中
* @param LPCTSTR pszTitle -- 标题
* @return 返回BOOL
*
* Describe 获取当前选中
*/
BOOL SetCurSel(LPCTSTR pszName,BOOL bTitle=TRUE);
/**
* STabCtrl::SetItemTitle
* @brief 设置标题
* @param int nIndex -- 索引
* @param LPCTSTR lpszTitle -- 标题
* @return 返回BOOL
*
* Describe 获取当前选中
*/
BOOL SetItemTitle(int nIndex, LPCTSTR lpszTitle);
bool OnScrollviewOrginChanger(EventArgs * ev);
/**
* STabCtrl::CreateChildren
* @brief 创建tab页面
* @param pugi::xml_node xmlNode -- xml文件
* @return 返回BOOL
*
* Describe 创建tab页面
*/
virtual BOOL CreateChildren(pugi::xml_node xmlNode);
/**
* STabCtrl::InsertItem
* @brief 插入tab页面
* @param LPCWSTR lpContent -- XML描述的page信息
* @param int iInsert -- 位置
* @return 返回插入位置
*
* Describe 插入tab页面
*/
virtual int InsertItem(LPCWSTR lpContent,int iInsert=-1);
/**
* STabCtrl::InsertItem
* @brief 插入tab页面
* @param pugi::xml_node xmlNode -- xml文件
* @param int iInsert -- 位置
* @param BOOL bLoading -- 是否加载
* @return 返回int
*
* Describe 插入tab页面
*/
virtual int InsertItem(pugi::xml_node xmlNode,int iInsert=-1,BOOL bLoading=FALSE);
/**
* STabCtrl::GetItemCount
* @brief 获取tab页面数
* @return 返回int
*
* Describe 获取tab页面数
*/
size_t GetItemCount()
{
return m_lstPages.GetCount();
}
/**
* STabCtrl::GetItem
* @brief 获取指定tab页面
* @param int nIndex -- 索引
* @return 返回int
*
* Describe 获取当前选中
*/
STabPageEx* GetItem(int nIndex);
/**
* STabCtrl::RemoveItem
* @brief 删除指定tab页面
* @param int nIndex -- 索引
* @param int nSelPage -- 选中页面
* @return 删除指定tab页面
*
* Describe 获取当前选中
*/
BOOL RemoveItem(int nIndex, int nSelPage=0);
/**
* STabCtrl::RemoveAllItems
* @brief 删除所有页面
*
* Describe 删除所有页面
*/
void RemoveAllItems(void);
/**
* STabCtrl::GetPageIndex
* @brief 获取指定页面的索引
* @param LPCTSTR pszName -- 查询字符串
* @param BOOL bTitle -- TRUE:pszName代表的是page的title属性,FALSE:pszName代表的是page的name属性
* @return 找到的页面索引号
*
* Describe
*/
int GetPageIndex(LPCTSTR pszName,BOOL bTitle);
protected:
/**
* OnItemInserted
* @brief 插入page状态
* @param STabPageEx *pItem -- 插入的PAGE
* @return void
*
* Describe
*/
virtual void OnItemInserted(STabPageEx *pItem){}
/**
* OnItemRemoved
* @brief 删除page状态
* @param STabPageEx *pItem -- 删除的PAGE
* @return void
*
* Describe
*/
virtual void OnItemRemoved(STabPageEx *pItem){}
/**
* BeforePaint
* @brief 为RT准备好当前窗口的绘图环境
* @param IRenderTarget * pRT --
* @param SPainter & painter --
* @return void
*
* Describe 和SWindow不同,STabCtrl中强制使用normal状态配置字体及颜色,其它状态给tab头使用
*/
virtual void BeforePaint(IRenderTarget *pRT, SPainter &painter);
/**
* STabCtrl::GetChildrenLayoutRect
* @brief
*
* Describe
*/
virtual CRect GetChildrenLayoutRect();
/**
* GetTitleRect
* @brief 获取tab头的矩形
* @return CRect
*
* Describe
*/
virtual CRect GetTitleRect();
/**
* STabCtrl::GetItemRect
* @brief 获取指定item位置
* @param int nIndex -- 索引
* @param CRect &rcItem -- 位置
*
* Describe 获取指定item位置
*/
virtual BOOL GetItemRect(int nIndex, CRect &rcItem);
/**
* STabCtrl::DrawItem
* @brief 绘制item
* @param IRenderTarget *pRT -- 绘制设备
* @param const CRect &rcItem -- 绘制区域
* @param int iItem -- 索引
* @param DWORD dwState -- 状态
*
* Describe 绘制item
*/
virtual void DrawItem(IRenderTarget *pRT,const CRect &rcItem,int iItem,DWORD dwState);
virtual STabPageEx * CreatePageFromXml(pugi::xml_node xmlPage);
/**
* STabCtrl::OnGetDlgCode
* @brief 获取窗口消息码
* @return 返回UINT
*
* Describe 获取窗口消息码
*/
virtual UINT OnGetDlgCode()
{
return SC_WANTARROWS;
}
virtual BOOL OnUpdateToolTip(CPoint pt, SwndToolTipInfo & tipInfo);
/**
* UpdateChildrenPosition
* @brief 更新子窗口位置
* @return void
*
* Describe
*/
virtual void UpdateChildrenPosition();
virtual void OnInitFinished(pugi::xml_node xmlNode);
virtual void OnColorize(COLORREF cr);
protected:
int HitTest(CPoint pt);
protected:
void TextOutV(IRenderTarget *pRT,int x,int y , const SStringT & strText);
void DrawTextV(IRenderTarget *pRT, CRect rcText, const SStringT & strText);
SIZE MeasureTextV(IRenderTarget *pRT, const SStringT & strText);
protected:
/**
* STabCtrl::OnPaint
* @brief 绘画消息
* @param IRenderTarget *pRT -- 绘制设备句柄
*
* Describe 此函数是消息响应函数
*/
void OnPaint(IRenderTarget *pRT);
/**
* STabCtrl::OnLButtonDown
* @brief 鼠标左键按下事件
* @param UINT nFlags -- 标志
* @param CPoint point -- 鼠标坐标
*
* Describe 此函数是消息响应函数
*/
void OnLButtonDown(UINT nFlags, CPoint point);
/**
* STabCtrl::OnMouseMove
* @brief 鼠标移动事件
* @param UINT nFlags -- 标志
* @param CPoint point -- 鼠标坐标
*
* Describe 此函数是消息响应函数
*/
void OnMouseMove(UINT nFlags, CPoint point);
/**
* STabCtrl::OnMouseLeave
* @brief 鼠标离开事件
*
* Describe 此函数是消息响应函数
*/
void OnMouseLeave()
{
OnMouseMove(0,CPoint(-1,-1));
}
/**
* STabCtrl::OnKeyDown
* @brief 键盘按下
* @param UINT nChar -- 键码
* @param UINT nRepCnt -- 重复次数
* @param UINT nFlags -- 标志
*
* Describe 此函数是消息响应函数
*/
void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
/**
* STabCtrl::OnDestroy
* @brief 销毁
*
* Describe 此函数是消息响应函数
*/
void OnDestroy();
SOUI_MSG_MAP_BEGIN()
MSG_WM_PAINT_EX(OnPaint)
MSG_WM_DESTROY(OnDestroy)
MSG_WM_LBUTTONDOWN(OnLButtonDown)
MSG_WM_MOUSEMOVE(OnMouseMove)
MSG_WM_MOUSELEAVE(OnMouseLeave)
MSG_WM_KEYDOWN(OnKeyDown)
SOUI_MSG_MAP_END()
SOUI_ATTRS_BEGIN()
ATTR_INT(L"curSel", m_nCurrentPage, FALSE)
ATTR_SIZE(L"tabSize",m_szTab,TRUE)
ATTR_INT(L"tabWidth", m_szTab.cx, FALSE)
ATTR_INT(L"tabHeight", m_szTab.cy, FALSE)
ATTR_INT(L"tabPos", m_nTabPos, FALSE)
ATTR_INT(L"tabInterSize", m_nTabInterSize, FALSE)
ATTR_SKIN(L"tabInterSkin", m_pSkinTabInter, FALSE)
ATTR_SKIN(L"tabSkin", m_pSkinTab, FALSE)
ATTR_SKIN(L"iconSkin", m_pSkinIcon, FALSE)
ATTR_SKIN(L"frameSkin", m_pSkinFrame, FALSE)
ATTR_INT(L"icon-x", m_ptIcon.x, FALSE)
ATTR_INT(L"icon-y", m_ptIcon.y, FALSE)
ATTR_INT(L"text-x", m_ptText.x, FALSE)
ATTR_INT(L"text-y", m_ptText.y, FALSE)
ATTR_ENUM_BEGIN(L"textDir", TEXTDIR, TRUE)
ATTR_ENUM_VALUE(L"hori", Text_Horz)
ATTR_ENUM_VALUE(L"horizontal", Text_Horz)
ATTR_ENUM_VALUE(L"vert", Text_Vert)
ATTR_ENUM_VALUE(L"vertical", Text_Vert)
ATTR_ENUM_END(m_txtDir)
SOUI_ATTRS_END()
};
}//namespace SOUI