forked from qiutianshuchangsha/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFullScreenTitleBar.cpp
657 lines (550 loc) · 16.6 KB
/
FullScreenTitleBar.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
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
//===========================================================================
// FullScreen Titlebar
// 2004 - All rights reservered
//===========================================================================
//
// Project/Product : FullScreenTitlebar
// FileName : FullScreenTitleBar.cpp
// Author(s) : Lars Werner
// Homepage : http://lars.werner.no
//
// Description : Creates a titlebar window used on fullscreen apps.
//
// Classes : CTitleBar
//
// Information :
// Compiler(s) : Visual C++ 6.0 Ent.
// Target(s) : Win32 / MFC
// Editor : Microsoft Visual Studio 6.0 editor
//
// History
// Vers. Date Aut. Type Description
// ----- -------- ---- ------- -----------------------------------------
// 1.00 20 01 04 LW Create Original
// 1.01 03 02 80 LW Updated Added contextmenus and restore feature
//===========================================================================
#include "stdafx.h"
#include "resource.h"
#include "FullScreenTitleBar.h"
//***************************************************************************************
CTitleBar *TitleBarThis=NULL;
//***************************************************************************************
CTitleBar::CTitleBar()
{
hInstance=NULL;
Parent=NULL;
this->Init();
}
CTitleBar::CTitleBar(HINSTANCE hInst, HWND ParentWindow)
{
hInstance=hInst;
Parent=ParentWindow;
this->Init();
}
//***************************************************************************************
CTitleBar::~CTitleBar()
{
DeleteObject(Font);
DestroyWindow(m_hWnd);
}
//***************************************************************************************
void CTitleBar::Init()
{
SlideDown=TRUE; //Slide down at startup
AutoHide=FALSE;
IntAutoHideCounter=0;
HideAfterSlide=FALSE;
//Create font
HDC hdc;
long lfHeight;
hdc = GetDC(NULL);
lfHeight = -MulDiv(10, GetDeviceCaps(hdc, LOGPIXELSY), 72);
ReleaseDC(NULL, hdc);
Font=CreateFont(lfHeight, 0, 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, "Arial");
Text=""; //No text at startup...
m_hWnd=NULL;
if(Parent!=NULL&&hInstance!=NULL)
{
TitleBarThis=this;
this->CreateDisplay();
}
}
//***************************************************************************************
void CTitleBar::Create(HINSTANCE hInst, HWND ParentWindow)
{
hInstance=hInst;
Parent=ParentWindow;
this->Init();
}
//***************************************************************************************
void CTitleBar::CreateDisplay()
{
//Consts are used to select margins
//GetParent size and size after that!
RECT lpRect;
::GetWindowRect(::GetDesktopWindow(), &lpRect);
// Create the window
WNDCLASS wndclass;
wndclass.style = CS_DBLCLKS;
wndclass.lpfnWndProc = CTitleBar::WndProc;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.hInstance = hInstance;
wndclass.hIcon=NULL;
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
wndclass.lpszMenuName = (const TCHAR *) NULL;
wndclass.lpszClassName = _T("FSTITLEBAR");
RegisterClass(&wndclass);
//Create window without any titlbar
DWORD winstyle = WS_POPUP | WS_SYSMENU ;
int CenterX=(lpRect.right-lpRect.left)/2-tbWidth/2;
int HeightPlacement=-tbHeigth+1;
if(tbScrollWindow==FALSE)
HeightPlacement=0;
m_hWnd = CreateWindow(_T("FSTITLEBAR"),
/*_T("Titlebar")*/NULL,
winstyle,
CenterX,
HeightPlacement,
tbWidth, // x-size
tbHeigth, // y-size
Parent, // Parent handle
NULL, // Menu handle
hInstance,
NULL);
//Set region to window so it is non rectangular
HRGN Range;
POINT Points[4];
Points[0].x=0;
Points[0].y=0;
Points[1].x=tbTriangularPoint;
Points[1].y=tbHeigth;
Points[2].x=tbWidth-tbTriangularPoint;
Points[2].y=tbHeigth;
Points[3].x=tbWidth;
Points[3].y=0;
Range=::CreatePolygonRgn(Points, 4, ALTERNATE );
::SetWindowRgn(m_hWnd, Range, TRUE);
//Close button
HWND Close=CreateWindow("STATIC",
"Close",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-tbcxPicture, tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_CLOSE,
hInstance,
NULL);
//Maximize button
HWND Maximize=CreateWindow("STATIC",
"Maximize",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-(tbcxPicture*2)-(tbButtonSpace*1), tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_MAXIMIZE,
hInstance,
NULL);
//Minimize button
HWND Minimize=CreateWindow("STATIC",
"Minimize",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-(tbcxPicture*3)-(tbButtonSpace*2), tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_MINIMIZE,
hInstance,
NULL);
//Pin button
Pin=CreateWindow("STATIC",
"Pin",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbLeftSpace, tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_PIN,
hInstance,
NULL);
//Set the creation of the window
SetWindowLong(m_hWnd, GWL_USERDATA, (LONG) this);
//Load pictures
this->LoadPictures();
//Show window and start animation
if(tbHideAtStartup==FALSE)
ShowWindow(m_hWnd, SW_SHOW);
if(tbScrollWindow==TRUE)
SetTimer(m_hWnd, tbScrollTimerID, tbScrollDelay, NULL);
if(AutoHide==TRUE)
SetTimer(m_hWnd, tbAutoScrollTimer, tbAutoScrollDelay, NULL);
}
//***************************************************************************************
LRESULT CALLBACK CTitleBar::WndProc(HWND hwnd, UINT iMsg,
WPARAM wParam, LPARAM lParam)
{
switch (iMsg)
{
case WM_CREATE:
return 0;
case WM_PAINT:
TitleBarThis->Draw();
return 0;
case WM_CLOSE:
{
HWND Window=TitleBarThis->GetSafeHwnd();
TitleBarThis->FreePictures();
DestroyWindow(Window);
PostQuitMessage(0);
return 0;
}
case WM_DESTROY:
TitleBarThis->FreePictures();
PostQuitMessage(0);
return 0;
case WM_DRAWITEM:
{
HDC hdcMem;
LPDRAWITEMSTRUCT lpdis;
lpdis = (LPDRAWITEMSTRUCT) lParam;
hdcMem = CreateCompatibleDC(lpdis->hDC);
if(lpdis->CtlID==tbIDC_CLOSE)
SelectObject(hdcMem, TitleBarThis->hClose);
if(lpdis->CtlID==tbIDC_MAXIMIZE)
SelectObject(hdcMem, TitleBarThis->hMaximize);
if(lpdis->CtlID==tbIDC_MINIMIZE)
SelectObject(hdcMem, TitleBarThis->hMinimize);
if(lpdis->CtlID==tbIDC_PIN)
{
if(TitleBarThis->AutoHide==TRUE)
SelectObject(hdcMem, TitleBarThis->hPinUp);
else
SelectObject(hdcMem, TitleBarThis->hPinDown);
}
BitBlt(lpdis->hDC,
lpdis->rcItem.left,
lpdis->rcItem.top,
lpdis->rcItem.right - lpdis->rcItem.left,
lpdis->rcItem.bottom - lpdis->rcItem.top,
hdcMem,
0,
0,
SRCCOPY);
DeleteDC(hdcMem);
return TRUE;
}
case WM_COMMAND:
if (HIWORD(wParam) == BN_CLICKED)
{
//Handle the Pin for holding the window
if(LOWORD(wParam) == tbIDC_PIN)
{
if(TitleBarThis->AutoHide==TRUE)
{
TitleBarThis->AutoHide=FALSE;
TitleBarThis->DisplayWindow(TRUE);
}
else
{
TitleBarThis->AutoHide=TRUE;
TitleBarThis->DisplayWindow(FALSE);
}
//Redraw window to show the new gfx...
::RedrawWindow(TitleBarThis->Pin, NULL, NULL, TRUE);
}
//If default = true we'll send usally showwindow and close messages
if(tbDefault==TRUE)
{
if(LOWORD(wParam) == tbIDC_CLOSE)
::SendMessage(TitleBarThis->Parent, WM_CLOSE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MAXIMIZE)
{
if(::IsZoomed(TitleBarThis->Parent)==TRUE)
ShowWindow(TitleBarThis->Parent, SW_RESTORE);
else
ShowWindow(TitleBarThis->Parent, SW_MAXIMIZE);
}
if(LOWORD(wParam) == tbIDC_MINIMIZE)
ShowWindow(TitleBarThis->Parent, SW_MINIMIZE);
}
else //default = false - send custom message on buttons
{
if(LOWORD(wParam) == tbIDC_CLOSE)
::SendMessage(TitleBarThis->Parent, tbWM_CLOSE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MAXIMIZE)
::SendMessage(TitleBarThis->Parent, tbWM_MAXIMIZE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MINIMIZE)
::SendMessage(TitleBarThis->Parent, tbWM_MINIMIZE, NULL, NULL);
}
}
//Menu part starts here
{
UINT IDNum=LOWORD(wParam);
if(IDNum>=tbWMCOMMANDIDStart&&IDNum<tbWMCOMMANDIDEnd) //The ID is in range for a menuclick
{
UINT Num=IDNum-tbWMCOMMANDIDStart;
//When the close,minimize, maximize is not present just send! :)
if(tbLastIsStandard==FALSE)
::SendMessage(TitleBarThis->Parent, WM_USER+tbWMUSERID+Num, NULL,NULL);
else //Handle close, minimize and maximize
{
HMENU Menu=LoadMenu(TitleBarThis->hInstance,MAKEINTRESOURCE (tbMENUID));
HMENU SubMenu=GetSubMenu(Menu,0);;
UINT Total=0;
//Get the real number of entries (exluding seperators)
for(int i=0;i<GetMenuItemCount(SubMenu);i++)
{
int res=::GetMenuString(SubMenu, i, NULL, 0, MF_BYPOSITION);
if(res!=0)
Total++;
}
if(Num==Total-1) //Close button
::SendMessage(TitleBarThis->m_hWnd,WM_COMMAND,MAKEWPARAM(tbIDC_CLOSE,BN_CLICKED),NULL);
else if(Num==Total-2) //Minimize button
::SendMessage(TitleBarThis->m_hWnd,WM_COMMAND,MAKEWPARAM(tbIDC_MINIMIZE,BN_CLICKED),NULL);
else if(Num==Total-3) //Maximize button
::SendMessage(TitleBarThis->m_hWnd,WM_COMMAND,MAKEWPARAM(tbIDC_MAXIMIZE,BN_CLICKED),NULL);
else
::SendMessage(TitleBarThis->Parent, WM_USER+tbWMUSERID+Num, NULL,NULL);
DestroyMenu (SubMenu);
DestroyMenu (Menu);
}
}
}
break;
case WM_MOUSEMOVE:
if(TitleBarThis->HideAfterSlide==FALSE)
{
TitleBarThis->SlideDown=TRUE;
::SetTimer(TitleBarThis->m_hWnd, tbScrollTimerID, 20, NULL);
}
break;
case WM_LBUTTONDBLCLK:
//If the default entries on the context menu is activated then doubleclick is restore :)
if(tbLastIsStandard==TRUE)
::SendMessage(TitleBarThis->m_hWnd,WM_COMMAND,MAKEWPARAM(tbIDC_MAXIMIZE,BN_CLICKED),NULL);
break;
case WM_RBUTTONDOWN:
{
HMENU Menu=LoadMenu(TitleBarThis->hInstance,MAKEINTRESOURCE (tbMENUID));
HMENU SubMenu=GetSubMenu(Menu,0);;
POINT lpPoint;
::GetCursorPos(&lpPoint);
int Pos=0;
//Set ID values to each item
for(int i=0;i<GetMenuItemCount(SubMenu);i++)
{
TCHAR Text[MAX_PATH];
ZeroMemory(Text,sizeof(LPTSTR));
int res=::GetMenuString(SubMenu, i, Text, MAX_PATH, MF_BYPOSITION);
if(res!=0)
{
::ModifyMenu(SubMenu,i,MF_BYPOSITION, tbWMCOMMANDIDStart+Pos,Text);
Pos++;
}
}
//Loop through each item from pos to set the default value on restore
if(tbLastIsStandard==TRUE)
{
int RealPos=0;
for(int i=0;i<GetMenuItemCount(SubMenu);i++)
{
TCHAR Text[MAX_PATH];
ZeroMemory(Text,sizeof(LPTSTR));
int res=::GetMenuString(SubMenu, i, Text, MAX_PATH, MF_BYPOSITION);
if(res!=0)
{
RealPos++;
if(RealPos==Pos-2)
::SetMenuDefaultItem(SubMenu, i, TRUE);
}
}
}
TrackPopupMenu(SubMenu,TPM_LEFTALIGN, lpPoint.x, lpPoint.y, 0, TitleBarThis->m_hWnd, NULL);
SetForegroundWindow (TitleBarThis->m_hWnd);
DestroyMenu (SubMenu);
DestroyMenu (Menu);
break;
}
/**/
case WM_TIMER:
{
UINT TimerID=(UINT)wParam;
if(TimerID==tbScrollTimerID)
{
RECT lpRect;
::GetWindowRect(TitleBarThis->m_hWnd, &lpRect);
if( ((lpRect.top==0)&&(TitleBarThis->SlideDown==TRUE))
||
((lpRect.top==-tbHeigth+1)&&(TitleBarThis->SlideDown==FALSE)))
{
KillTimer(TitleBarThis->m_hWnd, tbScrollTimerID);
if(TitleBarThis->HideAfterSlide==TRUE)
{
TitleBarThis->HideAfterSlide=FALSE;
ShowWindow(TitleBarThis->GetSafeHwnd(), SW_HIDE);
}
return 0;
}
if(TitleBarThis->SlideDown==TRUE)
{
lpRect.top++; lpRect.bottom++;
}
else
{
lpRect.top--; lpRect.bottom--;
}
::MoveWindow(TitleBarThis->m_hWnd, lpRect.left, lpRect.top, lpRect.right-lpRect.left, lpRect.bottom-lpRect.top, TRUE);
}
//Check mouse cordinates and hide if the mouse haven't been in the window for a few seconds
if(TimerID==tbAutoScrollTimer)
{
RECT lpRect;
POINT pt;
::GetWindowRect(TitleBarThis->m_hWnd, &lpRect);
::GetCursorPos(&pt);
if(PtInRect(&lpRect, pt)==FALSE)
{
TitleBarThis->IntAutoHideCounter++;
if(TitleBarThis->IntAutoHideCounter==tbAutoScrollTime)
{
TitleBarThis->SlideDown=FALSE;
::SetTimer(TitleBarThis->m_hWnd, tbScrollTimerID, tbScrollDelay, NULL);
}
}
else
{
TitleBarThis->IntAutoHideCounter=0;
}
}
break;
}
}//Case - end
return DefWindowProc(hwnd, iMsg, wParam, lParam);
}
//***************************************************************************************
void CTitleBar::LoadPictures()
{
hClose=LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_CLOSE));
hMaximize=LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_MAXIMIZE));
hMinimize=LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_MINIMIZE));
hPinUp=LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_PINUP));
hPinDown=LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_PINDOWN));
}
void CTitleBar::FreePictures()
{
DeleteObject(hClose);
DeleteObject(hMaximize);
DeleteObject(hMinimize);
DeleteObject(hPinUp);
DeleteObject(hPinDown);
}
//***************************************************************************************
void CTitleBar::Draw()
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(m_hWnd, &ps);
int r1 = GetRValue(tbStartColor);
int g1 = GetGValue(tbStartColor);
int b1 = GetBValue(tbStartColor);
int r2 = GetRValue(tbEndColor);
int g2 = GetGValue(tbEndColor);
int b2 = GetBValue(tbEndColor);
//2 different styles of gradient is available... :)
if(tbGradientWay==TRUE)
{
for ( int x = 0; x<tbWidth; x++)
{
RECT Rect;
Rect.left=x;
Rect.top=0;
Rect.right=x+1;
Rect.bottom=tbHeigth;
HBRUSH Brush=CreateSolidBrush(RGB(r1 * (tbWidth-x)/tbWidth + r2 * x/tbWidth,
g1 * (tbWidth-x)/tbWidth + g2 * x/tbWidth, b1 * (tbWidth-x)/tbWidth + b2 * x/tbWidth));
::FillRect(hdc, &Rect, Brush);
DeleteObject(Brush);
}
}
else
{
for ( int y = 0; y<tbHeigth; y++)
{
RECT Rect;
Rect.left=0;
Rect.top=y;
Rect.right=tbWidth;
Rect.bottom=y+1;
HBRUSH Brush=CreateSolidBrush(RGB(r1 * (tbHeigth-y)/tbHeigth + r2 * y/tbHeigth,
g1 * (tbHeigth-y)/tbHeigth + g2 * y/tbHeigth, b1 * (tbHeigth-y)/tbHeigth + b2 * y/tbHeigth));
::FillRect(hdc, &Rect, Brush);
DeleteObject(Brush);
}
}
//Draw border around window
HPEN Border=::CreatePen(PS_SOLID, tbBorderWidth, tbBorderPenColor);
::SelectObject(hdc, Border);
//Draw border around window
::MoveToEx(hdc, 0,0, NULL);
::LineTo(hdc, tbTriangularPoint, tbHeigth);
::LineTo(hdc, tbWidth-tbTriangularPoint, tbHeigth);
::LineTo(hdc, tbWidth, 0);
::LineTo(hdc, 0,0);
//Draw extra shadow at bottom
DeleteObject(Border);
Border=::CreatePen(PS_SOLID, tbBorderWidth, tbBorderPenShadow);
::SelectObject(hdc, Border);
::MoveToEx(hdc, tbTriangularPoint+1,tbHeigth-1, NULL);
::LineTo(hdc, tbWidth-tbTriangularPoint-1, tbHeigth-1);
//Create rect for drawin the text
RECT lpRect;
lpRect.left=tbLeftSpace+tbcxPicture+tbButtonSpace;
lpRect.top=tbBorderWidth;
lpRect.right=tbWidth-tbRightSpace-(tbcxPicture*3)-(tbButtonSpace*3);
lpRect.bottom=tbHeigth-tbBorderWidth;
//Draw text
::SelectObject(hdc, Font);
::SetBkMode(hdc, TRANSPARENT);
::SetTextColor(hdc, tbTextColor);
::DrawText(hdc, Text,-1,&lpRect, DT_CENTER|DT_SINGLELINE|DT_VCENTER);
EndPaint(m_hWnd, &ps);
}
//***************************************************************************************
void CTitleBar::SetText(LPTSTR TextOut)
{
Text=TextOut;
}
//***************************************************************************************
void CTitleBar::DisplayWindow(BOOL Show, BOOL SetHideFlag)
{
IntAutoHideCounter=0;
if(Show==TRUE)
{
if(tbScrollWindow==TRUE)
{
if(SetHideFlag==TRUE)
{
HideAfterSlide=FALSE;
SlideDown=TRUE;
}
ShowWindow(m_hWnd, SW_SHOW);
SetTimer(m_hWnd, tbScrollTimerID, tbScrollDelay, NULL);
}
else
ShowWindow(m_hWnd, SW_SHOW);
if(AutoHide==TRUE)
SetTimer(m_hWnd, tbAutoScrollTimer, tbAutoScrollDelay, NULL);
else
KillTimer(m_hWnd, tbAutoScrollTimer);
}
else
{
if(tbScrollWindow==TRUE)
{
if(SetHideFlag==TRUE)
{
HideAfterSlide=TRUE;
SlideDown=FALSE;
}
SetTimer(m_hWnd, tbScrollTimerID, tbScrollDelay, NULL);
}
else
ShowWindow(m_hWnd, SW_HIDE);
if(AutoHide==TRUE)
SetTimer(m_hWnd, tbAutoScrollTimer, tbAutoScrollDelay, NULL);
else
KillTimer(m_hWnd, tbAutoScrollTimer);
}
}
//***************************************************************************************