-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxFrame.ctl
1168 lines (1031 loc) · 41.2 KB
/
xFrame.ctl
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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
VERSION 5.00
Begin VB.UserControl xFrame
ClientHeight = 495
ClientLeft = 0
ClientTop = 0
ClientWidth = 1920
ControlContainer= -1 'True
ScaleHeight = 495
ScaleWidth = 1920
ToolboxBitmap = "xFrame.ctx":0000
End
Attribute VB_Name = "xFrame"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'****************************************************************
' Project: Creates an Ownerdrawn Frame control
' Programmer: Alexander Mungall
' UserControl: xFrame
' Email: [email protected]
'----------------------------------------------------------------
' xFrame Copyright© Alexander Mungall, All Rights Reserved
' Feel free to use this code for personal use in anyway you see
' fit, but please give credit where credit is due...
' It's all I ask.
'****************************************************************
Option Explicit
' Booleans
Private bDisplayPicture As Boolean
Private bEnableGradient As Boolean
Private bExpanded As Boolean
Private bFontBold As Boolean
Private bFontItalic As Boolean
Private bFontStrikeThru As Boolean
Private bFontUnderline As Boolean
Private bFrameButton As Boolean
Private bFrameButtonPin As Boolean
Private bPaintHeader As Boolean
Private bPinned As Boolean
Private bMouseOver As Boolean
Private bMouseOverButtonPin As Boolean
Private bVerifyEnabledGradient As Boolean
' Controls
Private imgFramePic As Image
Private WithEvents picHeader As PictureBox
Attribute picHeader.VB_VarHelpID = -1
Private WithEvents tmrMouseMove As Timer
Attribute tmrMouseMove.VB_VarHelpID = -1
' Doubles
Private dFontSize As Double
' Enums
Public Enum xFrameStyles
xpDefault = 0
xpBlue = 1
xpOliveGreen = 2
xpSilver = 3
End Enum
Private m_ColorSchemes As xFrameStyles
' Events
Event Click()
Event DblClick()
Event MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Event MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Event MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
' Integers
Private iNumControls As Integer
' Longs
Private Col As Long
Private lBottomR As Long
Private lBottomG As Long
Private lBottomB As Long
Private lTopR As Long
Private lTopG As Long
Private lTopB As Long
Private lUserControlOrigHeight As Long
Private m_ArrowColor As Long
Private m_ArrowHighlightedColor As Long
Private m_ArrowOverColor As Long
Private m_ButtonColour As Long
Private m_BorderColor As Long
Private m_CaptionColor As Long
Private m_GradientBottom As Long
Private m_GradientTop As Long
Private m_HeaderGradientBottom As Long
Private m_HeaderGradientTop As Long
' Strings
Private sFrameCaption As String
' Types
Private Type POINTAPI
X As Long
Y As Long
End Type
' Functions
Private Declare Function WindowFromPointXY Lib "user32" Alias "WindowFromPoint" (ByVal xPoint As Long, ByVal yPoint As Long) As Long
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
'****************************************************************
' Gradient Code: Written by Mark Gordon (msg555)
'----------------------------------------------------------------
' Copyright© Mark Gordon, All Rights Reserved
'----------------------------------------------------------------
Private Declare Function CreateBitmap Lib "gdi32.dll" (ByVal nWidth As Long, ByVal nHeight As Long, ByVal nPlanes As Long, ByVal nBitCount As Long, ByRef lpBits As Any) As Long
Private Declare Function GetDIBits Lib "gdi32" (ByVal hdc As Long, ByVal hBitmap As Long, ByVal nStartScan As Long, ByVal nNumScans As Long, lpBits As Any, lpBI As BITMAPINFO, ByVal wUsage As Long) As Long
Private Declare Function SetDIBits Lib "gdi32" (ByVal hdc As Long, ByVal hBitmap As Long, ByVal nStartScan As Long, ByVal nNumScans As Long, lpBits As Any, lpBI As BITMAPINFO, ByVal wUsage As Long) As Long
Private Const DIB_RGB_COLORS = 0&
Private Const BI_RGB = 0&
Private Type BITMAPINFOHEADER '40 bytes
biSize As Long
biWidth As Long
biHeight As Long
biPlanes As Integer
biBitCount As Integer
biCompression As Long
biSizeImage As Long
biXPelsPerMeter As Long
biYPelsPerMeter As Long
biClrUsed As Long
biClrImportant As Long
End Type
Private Type RGBQUAD
rgbBlue As Byte
rgbGreen As Byte
rgbRed As Byte
rgbReserved As Byte
End Type
Private Type BITMAPINFO
bmiHeader As BITMAPINFOHEADER
bmiColors As RGBQUAD
End Type
Private Declare Function OleCreatePictureIndirect Lib "olepro32.dll" (lpPictDesc As PictDesc, riid As Guid, ByVal fPictureOwnsHandle As Long, iPic As StdPicture) As Long
Private Type PictDesc
cbSizeofStruct As Long
picType As Long
hImage As Long
xExt As Long
yExt As Long
End Type
Private Type Guid
Data1 As Long
Data2 As Integer
Data3 As Integer
Data4(0 To 7) As Byte
End Type
Private Enum Blends
RGBBlend = 0
HSLBlend = 1
End Enum
Private Function CreateGradient(Width As Long, Height As Long, LeftToRight As Boolean, LeftTopColor As Long, RightBottomColor As Long, BlendType As Blends) As StdPicture
Dim hBmp As Long, Bits() As Byte
Dim RS As Byte, GS As Byte, BS As Byte 'Start RGB
Dim RE As Byte, GE As Byte, BE As Byte 'End RGB
Dim HS As Single, SS As Single, LS As Single 'Start HSL
Dim HE As Single, SE As Single, LE As Single 'End HSL
Dim Rc As Byte, GC As Byte, BC As Byte 'Current iteration RGB
Dim X As Long, Y As Long
ReDim Bits(0 To 3, 0 To Width - 1, 0 To Height - 1)
RgbCol LeftTopColor, RS, GS, BS
RgbCol RightBottomColor, RE, GE, BE
If BlendType = RGBBlend Then
If LeftToRight Then
For X = 0 To Width - 1
Rc = (1& * RS - RE) * ((Width - 1 - X) / (Width - 1)) + RE
GC = (1& * GS - GE) * ((Width - 1 - X) / (Width - 1)) + GE
BC = (1& * BS - BE) * ((Width - 1 - X) / (Width - 1)) + BE
For Y = 0 To Height - 1
Bits(2, X, Y) = Rc
Bits(1, X, Y) = GC
Bits(0, X, Y) = BC
Next
Next
Else
For Y = 0 To Height - 1
Rc = (1& * RS - RE) * ((Height - 1 - Y) / (Height - 1)) + RE
GC = (1& * GS - GE) * ((Height - 1 - Y) / (Height - 1)) + GE
BC = (1& * BS - BE) * ((Height - 1 - Y) / (Height - 1)) + BE
For X = 0 To Width - 1
Bits(2, X, Y) = Rc
Bits(1, X, Y) = GC
Bits(0, X, Y) = BC
Next
Next
End If
ElseIf BlendType = HSLBlend Then
RGBToHSL RS, GS, BS, HS, SS, LS
RGBToHSL RE, GE, BE, HE, SE, LE
If LeftToRight Then
For X = 0 To Width - 1
HSLToRGB (1& * HS - HE) * ((Width - 1 - X) / (Width - 1)) + HE, _
(1& * SS - SE) * ((Width - 1 - X) / (Width - 1)) + SE, _
(1& * LS - LE) * ((Width - 1 - X) / (Width - 1)) + LE, _
Rc, GC, BC
For Y = 0 To Height - 1
Bits(2, X, Y) = Rc
Bits(1, X, Y) = GC
Bits(0, X, Y) = BC
Next
Next
Else
For Y = 0 To Height - 1
HSLToRGB (1& * HS - HE) * ((Height - 1 - Y) / (Height - 1)) + HE, _
(1& * SS - SE) * ((Height - 1 - Y) / (Height - 1)) + SE, _
(1& * LS - LE) * ((Height - 1 - Y) / (Height - 1)) + LE, _
Rc, GC, BC
For X = 0 To Width - 1
Bits(2, X, Y) = Rc
Bits(1, X, Y) = GC
Bits(0, X, Y) = BC
Next
Next
End If
End If
Dim BI As BITMAPINFO
With BI.bmiHeader
.biSize = Len(BI.bmiHeader)
.biWidth = Width
.biHeight = -Height
.biPlanes = 1
.biBitCount = 32
.biCompression = BI_RGB
.biSizeImage = ((((.biWidth * .biBitCount) + 31) \ 32) * 4) * Abs(.biHeight)
End With
hBmp = CreateBitmap(Width, Height, 1&, 32&, ByVal 0)
SetDIBits 0&, hBmp, 0, Abs(BI.bmiHeader.biHeight), Bits(0, 0, 0), BI, DIB_RGB_COLORS
Dim IGuid As Guid, PicDst As PictDesc
With IGuid
.Data1 = &H7BF80980
.Data2 = &HBF32
.Data3 = &H101A
.Data4(0) = &H8B
.Data4(1) = &HBB
.Data4(2) = &H0
.Data4(3) = &HAA
.Data4(4) = &H0
.Data4(5) = &H30
.Data4(6) = &HC
.Data4(7) = &HAB
End With
With PicDst
.cbSizeofStruct = Len(PicDst)
.hImage = hBmp
.picType = vbPicTypeBitmap
End With
OleCreatePictureIndirect PicDst, IGuid, True, CreateGradient
End Function
'Helper Functions
Private Sub RgbCol(Col As Long, ByRef R As Byte, ByRef G As Byte, ByRef B As Byte)
R = Col And &HFF&
G = (Col And &HFF00&) \ &H100&
B = (Col And &HFF0000) \ &H10000
End Sub
Private Sub RGBToHSL(ByVal R As Byte, ByVal G As Byte, ByVal B As Byte, H As Single, S As Single, L As Single)
'http://www.vbAccelerator.com
Dim Max As Single
Dim Min As Single
Dim delta As Single
Dim rR As Single, rG As Single, rB As Single
rR = R / 255: rG = G / 255: rB = B / 255
'{Given: rgb each in [0,1].
' Desired: h in [0,360] and s in [0,1], except if s=0, then h=UNDEFINED.}
Max = Maximum(rR, rG, rB)
Min = Minimum(rR, rG, rB)
L = (Max + Min) / 2 '{This is the lightness}
'{Next calculate saturation}
If Max = Min Then
'begin {Acrhomatic case}
S = 0
H = 0
'end {Acrhomatic case}
Else
'begin {Chromatic case}
'{First calculate the saturation.}
If L <= 0.5 Then
S = (Max - Min) / (Max + Min)
Else
S = (Max - Min) / (2 - Max - Min)
End If
'{Next calculate the hue.}
delta = Max - Min
If rR = Max Then
H = (rG - rB) / delta '{Resulting color is between yellow and magenta}
ElseIf rG = Max Then
H = 2 + (rB - rR) / delta '{Resulting color is between cyan and yellow}
ElseIf rB = Max Then
H = 4 + (rR - rG) / delta '{Resulting color is between magenta and cyan}
End If
'Debug.Print h
'h = h * 60
'If h < 0# Then
' h = h + 360 '{Make degrees be nonnegative}
'End If
'end {Chromatic Case}
End If
'end {RGB_to_HLS}
End Sub
Private Sub HSLToRGB(ByVal H As Single, ByVal S As Single, ByVal L As Single, R As Byte, G As Byte, B As Byte)
'http://www.vbAccelerator.com
Dim rR As Single, rG As Single, rB As Single
Dim Min As Single, Max As Single
If S = 0 Then
' Achromatic case:
rR = L: rG = L: rB = L
Else
' Chromatic case:
' delta = Max-Min
If L <= 0.5 Then
'S = (Max - Min) / (Max + Min)
' Get Min value:
Min = L * (1 - S)
Else
'S = (Max - Min) / (2 - Max - Min)
' Get Min value:
Min = L - S * (1 - L)
End If
' Get the Max value:
Max = 2 * L - Min
' Now depending on sector we can evaluate the h,l,s:
If (H < 1) Then
rR = Max
If (H < 0) Then
rG = Min
rB = rG - H * (Max - Min)
Else
rB = Min
rG = H * (Max - Min) + rB
End If
ElseIf (H < 3) Then
rG = Max
If (H < 2) Then
rB = Min
rR = rB - (H - 2) * (Max - Min)
Else
rR = Min
rB = (H - 2) * (Max - Min) + rR
End If
Else
rB = Max
If (H < 4) Then
rR = Min
rG = rR - (H - 4) * (Max - Min)
Else
rG = Min
rR = (H - 4) * (Max - Min) + rG
End If
End If
End If
R = rR * 255: G = rG * 255: B = rB * 255
End Sub
Private Function Maximum(rR As Single, rG As Single, rB As Single) As Single
'http://www.vbAccelerator.com
If (rR > rG) Then
If (rR > rB) Then
Maximum = rR
Else
Maximum = rB
End If
Else
If (rB > rG) Then
Maximum = rB
Else
Maximum = rG
End If
End If
End Function
Private Function Minimum(rR As Single, rG As Single, rB As Single) As Single
'http://www.vbAccelerator.com
If (rR < rG) Then
If (rR < rB) Then
Minimum = rR
Else
Minimum = rB
End If
Else
If (rB < rG) Then
Minimum = rB
Else
Minimum = rG
End If
End If
End Function
' Get and Set all the properties with this control
Public Property Get BackColor() As OLE_COLOR
BackColor = UserControl.BackColor
End Property
Public Property Let BackColor(ByVal new_BackColor As OLE_COLOR)
UserControl.BackColor = new_BackColor
PropertyChanged "BackColor"
Call UserControl_Paint
End Property
Public Property Get BorderColor() As OLE_COLOR
BorderColor = m_BorderColor
End Property
Public Property Let BorderColor(ByVal New_BorderColor As OLE_COLOR)
m_BorderColor = New_BorderColor
PropertyChanged "BorderColor"
Call UserControl_Paint
End Property
Public Property Get Button() As Boolean
Button = bFrameButton
End Property
Public Property Let Button(ByVal new_Button As Boolean)
bFrameButton = new_Button
PropertyChanged "Button"
Call UserControl_Paint
End Property
Public Property Get ButtonColor() As OLE_COLOR
ButtonColor = m_ArrowColor
End Property
Public Property Let ButtonColor(ByVal New_ButtonColor As OLE_COLOR)
m_ArrowColor = New_ButtonColor
PropertyChanged "ButtonColor"
Call UserControl_Paint
End Property
Public Property Get ButtonHighlightColor() As OLE_COLOR
ButtonHighlightColor = m_ArrowHighlightedColor
End Property
Public Property Let ButtonHighlightColor(ByVal New_ButtonHighlightColor As OLE_COLOR)
m_ArrowHighlightedColor = New_ButtonHighlightColor
PropertyChanged "ButtonHighlightColor"
Call UserControl_Paint
End Property
Public Property Get ButtonPin() As Boolean
ButtonPin = bFrameButtonPin
End Property
Public Property Let ButtonPin(ByVal New_ButtonPin As Boolean)
bFrameButtonPin = New_ButtonPin
PropertyChanged "ButtonPin"
Call UserControl_Paint
End Property
Public Property Get Caption() As String
Caption = sFrameCaption
End Property
Public Property Let Caption(ByVal New_TheCaption As String)
sFrameCaption = New_TheCaption
PropertyChanged "Caption"
Call UserControl_Paint
End Property
Public Property Get ColorScheme() As xFrameStyles
ColorScheme = m_ColorSchemes
End Property
Public Property Let ColorScheme(val As xFrameStyles)
' Determine which color scheme has been selected
m_ColorSchemes = val
' Set the colour scheme
Call SelectColorScheme
If bEnableGradient = True Then
bVerifyEnabledGradient = False
Set UserControl.Picture = Nothing
End If
' Repaint the control
Call UserControl_Paint
End Property
Public Property Get DisplayPicture() As Boolean
DisplayPicture = bDisplayPicture
End Property
Public Property Let DisplayPicture(ByVal new_DisplayPicture As Boolean)
bDisplayPicture = new_DisplayPicture
PropertyChanged "DisplayPicture"
Call UserControl_Resize
End Property
Public Property Get Enabled() As Boolean
Enabled = UserControl.Enabled
End Property
Public Property Let Enabled(ByVal New_Enabled As Boolean)
UserControl.Enabled() = New_Enabled
PropertyChanged "Enabled"
' Set the Enabled state of all controls within the Frame
Dim UserCtrl As Object
For Each UserCtrl In UserControl.ContainedControls
UserCtrl.Enabled = New_Enabled
Next
' Set the colour scheme
Call SelectColorScheme
If bEnableGradient = True Then
bVerifyEnabledGradient = False
Set UserControl.Picture = Nothing
End If
Call UserControl_Paint
End Property
Public Property Get EnableGradient() As Boolean
EnableGradient = bEnableGradient
End Property
Public Property Let EnableGradient(ByVal New_EnableGradient As Boolean)
bEnableGradient = New_EnableGradient
PropertyChanged "EnableGradient"
If bEnableGradient = False Then
bVerifyEnabledGradient = False
Set UserControl.Picture = Nothing
End If
' Set the colour scheme
Call SelectColorScheme
Call UserControl_Paint
End Property
Public Property Get Expanded() As Boolean
Expanded = bExpanded
End Property
Public Property Let Expanded(ByVal New_Expanded As Boolean)
bExpanded = New_Expanded
PropertyChanged "Expanded"
If bPinned = False Then
If bExpanded = False Then 'lUserControlOrigHeight = UserControl.Height Then
UserControl.Height = 315
Else
UserControl.Height = lUserControlOrigHeight
End If
End If
bPaintHeader = False
Call picHeader_Paint
End Property
Public Property Get Font() As Font
Set Font = picHeader.Font
End Property
Public Property Set Font(ByVal new_font As Font)
Set picHeader.Font = new_font
bFontBold = picHeader.FontBold
bFontItalic = picHeader.FontItalic
dFontSize = picHeader.FontSize
bFontStrikeThru = picHeader.FontStrikethru
bFontUnderline = picHeader.FontUnderline
Call UserControl_Resize
PropertyChanged "Font"
End Property
Public Property Get ForeColor() As OLE_COLOR
ForeColor = picHeader.ForeColor
End Property
Public Property Let ForeColor(ByVal New_ForeColor As OLE_COLOR)
picHeader.ForeColor() = New_ForeColor
m_CaptionColor = New_ForeColor
PropertyChanged "ForeColor"
End Property
Public Property Get FramePinned() As Boolean
FramePinned = bPinned
End Property
Public Property Let FramePinned(ByVal New_FramePinned As Boolean)
bPinned = New_FramePinned
PropertyChanged "FramePinned"
Call UserControl_Paint
End Property
Public Property Get GradientBottom() As OLE_COLOR
GradientBottom = m_GradientBottom
End Property
Public Property Let GradientBottom(ByVal New_GradientBottom As OLE_COLOR)
m_GradientBottom = New_GradientBottom
PropertyChanged "GradientBottom"
If bEnableGradient = True Then
bVerifyEnabledGradient = False
Set UserControl.Picture = Nothing
End If
' Repaint the control
Call UserControl_Paint
End Property
Public Property Get GradientTop() As OLE_COLOR
GradientTop = m_GradientTop
End Property
Public Property Let GradientTop(ByVal New_GradientTop As OLE_COLOR)
m_GradientTop = New_GradientTop
PropertyChanged "GradientTop"
If bEnableGradient = True Then
bVerifyEnabledGradient = False
Set UserControl.Picture = Nothing
End If
' Repaint the control
Call UserControl_Paint
End Property
Public Property Get HeaderGradientBottom() As OLE_COLOR
HeaderGradientBottom = m_HeaderGradientBottom
End Property
Public Property Let HeaderGradientBottom(ByVal New_HeaderGradientBottom As OLE_COLOR)
m_HeaderGradientBottom = New_HeaderGradientBottom
PropertyChanged "HeaderGradientBottom"
bPaintHeader = False
picHeader.Cls
picHeader_Paint
End Property
Public Property Get HeaderGradientTop() As OLE_COLOR
HeaderGradientTop = m_HeaderGradientTop
End Property
Public Property Let HeaderGradientTop(ByVal New_HeaderGradientTop As OLE_COLOR)
m_HeaderGradientTop = New_HeaderGradientTop
PropertyChanged "HeaderGradientTop"
bPaintHeader = False
picHeader.Cls
picHeader_Paint
End Property
Public Property Get Picture() As Picture
Set Picture = imgFramePic.Picture
End Property
Public Property Set Picture(ByVal New_Picture As Picture)
Set imgFramePic.Picture = New_Picture
PropertyChanged "Picture"
bDisplayPicture = True
Call UserControl_Resize
bPaintHeader = False
Call picHeader_Paint
End Property
Private Sub picHeader_Click()
If bMouseOver = True And bFrameButton = True Then
If bPinned = False Then
If lUserControlOrigHeight = UserControl.Height Then
UserControl.Height = 315
bExpanded = False
Else
UserControl.Height = lUserControlOrigHeight
bExpanded = True
End If
End If
bPaintHeader = False
Call picHeader_Paint
ElseIf bMouseOverButtonPin = True And bFrameButtonPin = True Then
If bPinned = False Then
bPinned = True
Else
bPinned = False
End If
End If
PropertyChanged "Expanded"
' Invokes the Click Event
RaiseEvent Click
End Sub
Private Sub picHeader_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If bMouseOver Then
If X < (picHeader.Width - 450) Or X > (picHeader.Width - 300) Then
Exit Sub
End If
End If
If bFrameButton = True Then
If X < (picHeader.Width - 450) Or X > (picHeader.Width - 300) Then
bMouseOver = True
bMouseOverButtonPin = False
Else
bMouseOver = False
bMouseOverButtonPin = True
End If
Else
bMouseOver = False
bMouseOverButtonPin = True
End If
tmrMouseMove.Enabled = True
bPaintHeader = False
Call picHeader_Paint
End Sub
Private Sub picHeader_Paint()
' Paints the Frame header and label
If bPaintHeader = False Then
' Set the Frame header bottom colour
Col = m_HeaderGradientBottom
lBottomR = (Col And &HFF&)
lBottomG = (Col And &HFF00&) / &H100
lBottomB = (Col And &HFF0000) / &H10000
' Set the Frame header top colour
Col = m_HeaderGradientTop
lTopR = (Col And &HFF&)
lTopG = (Col And &HFF00&) / &H100
lTopB = (Col And &HFF0000) / &H10000
' Clear the Header for drawing and apply the gradient colour
picHeader.Cls
Set picHeader.Picture = CreateGradient(picHeader.Width / Screen.TwipsPerPixelX, picHeader.Height / Screen.TwipsPerPixelY, False, RGB(lTopR, lTopG, lTopB), RGB(lBottomR, lBottomG, lBottomB), RGBBlend)
' Display the Text and Icon
picHeader.FontBold = bFontBold
picHeader.FontItalic = bFontItalic
If dFontSize = 0 Then
dFontSize = 8
Else
picHeader.FontSize = dFontSize
End If
picHeader.FontStrikethru = bFontStrikeThru
picHeader.FontUnderline = bFontUnderline
If bDisplayPicture = False Then
picHeader.CurrentX = 75
Else
picHeader.CurrentX = imgFramePic.Width + 75
picHeader.ScaleMode = 1
picHeader.PaintPicture imgFramePic.Picture, 15, 15, imgFramePic.Width, imgFramePic.Height
End If
picHeader.CurrentY = (picHeader.Height - picHeader.TextHeight(sFrameCaption)) / 2
picHeader.ForeColor = m_CaptionColor
picHeader.Print sFrameCaption
' Draw the Pin Button if the user has selected this option
If bFrameButtonPin = True Then
If bMouseOverButtonPin = False Then
m_ButtonColour = m_ArrowColor
Else
m_ButtonColour = m_ArrowOverColor
End If
If bFrameButton = True Then
If bPinned = False Then
picHeader.Line (picHeader.Width - 435, 135)-(picHeader.Width - 390, 135), m_ButtonColour
picHeader.Line (picHeader.Width - 390, 90)-(picHeader.Width - 390, 195), m_ButtonColour
picHeader.Line (picHeader.Width - 390, 105)-(picHeader.Width - 315, 105), m_ButtonColour
picHeader.Line (picHeader.Width - 390, 155)-(picHeader.Width - 315, 155), m_ButtonColour
picHeader.Line (picHeader.Width - 390, 170)-(picHeader.Width - 315, 170), m_ButtonColour
picHeader.Line (picHeader.Width - 315, 105)-(picHeader.Width - 315, 180), m_ButtonColour
Else
picHeader.Line (picHeader.Width - 390, 75)-(picHeader.Width - 330, 75), m_ButtonColour
picHeader.Line (picHeader.Width - 390, 75)-(picHeader.Width - 390, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 345, 75)-(picHeader.Width - 345, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 330, 75)-(picHeader.Width - 330, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 415, 150)-(picHeader.Width - 280, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 360, 150)-(picHeader.Width - 360, 210), m_ButtonColour
End If
Else
If bPinned = False Then
picHeader.Line (picHeader.Width - 255, 135)-(picHeader.Width - 210, 135), m_ButtonColour
picHeader.Line (picHeader.Width - 210, 90)-(picHeader.Width - 210, 195), m_ButtonColour
picHeader.Line (picHeader.Width - 210, 105)-(picHeader.Width - 135, 105), m_ButtonColour
picHeader.Line (picHeader.Width - 210, 155)-(picHeader.Width - 135, 155), m_ButtonColour
picHeader.Line (picHeader.Width - 210, 170)-(picHeader.Width - 135, 170), m_ButtonColour
picHeader.Line (picHeader.Width - 135, 105)-(picHeader.Width - 135, 180), m_ButtonColour
Else
picHeader.Line (picHeader.Width - 210, 75)-(picHeader.Width - 150, 75), m_ButtonColour
picHeader.Line (picHeader.Width - 210, 75)-(picHeader.Width - 210, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 165, 75)-(picHeader.Width - 165, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 150, 75)-(picHeader.Width - 150, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 235, 150)-(picHeader.Width - 100, 150), m_ButtonColour
picHeader.Line (picHeader.Width - 180, 150)-(picHeader.Width - 180, 210), m_ButtonColour
End If
End If
End If
' Draw the button if the user has selected this option
If bFrameButton = True Then
Dim i As Integer
Dim iHorizontal1 As Integer
Dim iHorizontal2 As Integer
Dim iVertical As Integer
If bMouseOver = False Then
m_ButtonColour = m_ArrowColor
Else
m_ButtonColour = m_ArrowOverColor
End If
If lUserControlOrigHeight = UserControl.Height Then
iHorizontal1 = 195
iHorizontal2 = 180
iVertical = 75
For i = 1 To 2
' 1st Line of Arrow
picHeader.Line (picHeader.Width - iHorizontal1, iVertical)-(picHeader.Width - (iHorizontal1 - 15), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 2nd Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 15), iVertical)-(picHeader.Width - (iHorizontal1 - 30), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 3rd Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 30), iVertical)-(picHeader.Width - iHorizontal1, iVertical), m_ButtonColour
picHeader.Line (picHeader.Width - iHorizontal2, iVertical)-(picHeader.Width - (iHorizontal2 - 30), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 4th Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 45), iVertical)-(picHeader.Width - (iHorizontal1 + 15), iVertical), m_ButtonColour
picHeader.Line (picHeader.Width - (iHorizontal2 - 15), iVertical)-(picHeader.Width - (iHorizontal2 - 45), iVertical), m_ButtonColour
iVertical = iVertical + 15
Next
Else
iHorizontal1 = 195 '210
iHorizontal2 = 180 '195
iVertical = 75
For i = 1 To 2
' 1st Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 45), iVertical)-(picHeader.Width - (iHorizontal1 + 15), iVertical), m_ButtonColour
picHeader.Line (picHeader.Width - (iHorizontal2 - 15), iVertical)-(picHeader.Width - (iHorizontal2 - 45), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 2nd Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 30), iVertical)-(picHeader.Width - iHorizontal1, iVertical), m_ButtonColour
picHeader.Line (picHeader.Width - iHorizontal2, iVertical)-(picHeader.Width - (iHorizontal2 - 30), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 3rd Line of Arrow
picHeader.Line (picHeader.Width - (iHorizontal1 + 15), iVertical)-(picHeader.Width - (iHorizontal1 - 30), iVertical), m_ButtonColour
iVertical = iVertical + 15
' 4th Line of Arrow
picHeader.Line (picHeader.Width - iHorizontal1, iVertical)-(picHeader.Width - (iHorizontal1 - 15), iVertical), m_ButtonColour
iVertical = iVertical + 15
Next
End If
End If
' Draw a line at the bottom of the Frame header
picHeader.Line (0, picHeader.Height - 30)-(picHeader.Width, picHeader.Height - 30), UserControl.BackColor 'UserControl.Ambient.BackColor
picHeader.ZOrder 0
' Set the Frame header caption colour
picHeader.ForeColor = m_CaptionColor
bPaintHeader = True
End If
End Sub
Private Sub SelectColorScheme()
If UserControl.Enabled = False Then
m_ArrowColor = &H759797
m_ArrowHighlightedColor = &HCFCFCF
m_BorderColor = &H80A7BF
m_CaptionColor = &H759797
m_GradientBottom = &HF8FAFA
m_GradientTop = &HFFFFFF
m_HeaderGradientBottom = &H90ABAB
m_HeaderGradientTop = &HE0E7E7
Else
Select Case m_ColorSchemes
Case xpDefault
m_ArrowColor = &H0&
m_ArrowHighlightedColor = &HAFAFAF
m_BorderColor = &HCFCFCF
m_CaptionColor = &H0&
m_GradientBottom = &HEFEFEF
m_GradientTop = &HFFFFFF
m_HeaderGradientBottom = &HCFCFCF
m_HeaderGradientTop = &HF8F8F8
Case xpBlue
m_ArrowColor = &HBB6132
m_ArrowHighlightedColor = &HFFFFFF
m_BorderColor = &HCF9365
m_CaptionColor = &HFFFFFF
m_GradientBottom = &HEBC2A5
m_GradientTop = &HFFFFFF
m_HeaderGradientBottom = &HC06E40
m_HeaderGradientTop = &HF8E9DE
Case xpOliveGreen
m_ArrowColor = &H447864
m_ArrowHighlightedColor = &H74AA9B
m_BorderColor = &H74AA9B
m_CaptionColor = &H447864
m_GradientBottom = &HE3EFEC
m_GradientTop = &HFFFFFF
m_HeaderGradientBottom = &H79B1A2
m_HeaderGradientTop = &HE3EFEC
Case xpSilver
m_ArrowColor = &H7E6666
m_ArrowHighlightedColor = &HBBA9A8
m_BorderColor = &HBBA9A8
m_CaptionColor = &H7E6666
m_GradientBottom = &HF2EBEC
m_GradientTop = &HFFFFFF
m_HeaderGradientBottom = &HD7C3C6
m_HeaderGradientTop = &HF5F0F0
End Select
End If
m_ArrowOverColor = m_ArrowColor
End Sub
Private Sub tmrMouseMove_Timer()
Dim pt As POINTAPI
' See where the cursor is.
GetCursorPos pt
' Translate into window coordinates.
If WindowFromPointXY(pt.X, pt.Y) <> picHeader.hWnd Then
If m_ArrowOverColor <> m_ArrowColor Then
m_ArrowOverColor = m_ArrowColor
bPaintHeader = False
Call picHeader_Paint
End If
Else
If m_ArrowOverColor <> m_ArrowHighlightedColor Then
m_ArrowOverColor = m_ArrowHighlightedColor
bPaintHeader = False
Call picHeader_Paint
End If
End If
End Sub
Private Sub UserControlsCreate()
If iNumControls = 0 Then
' Create the controls only once
iNumControls = 1
' Add the Frame Header picturebox
Set picHeader = UserControl.Controls.Add("VB.PictureBox", "picHeader")
picHeader.AutoRedraw = True
picHeader.BorderStyle = 0
picHeader.Visible = True
' Add the Frame Timer
Set tmrMouseMove = UserControl.Controls.Add("VB.Timer", "tmrMouseMove")
tmrMouseMove.Enabled = False
tmrMouseMove.Interval = 10
' Add the Frame Header Image
Set imgFramePic = Controls.Add("VB.Image", "imgFramePic", picHeader)
Set imgFramePic.Picture = Nothing
imgFramePic.Visible = False
End If
End Sub
Private Sub UserControl_Click()
' Invokes the Click Event
RaiseEvent Click
End Sub
Private Sub UserControl_DblClick()
' Invokes the Double Click Event
RaiseEvent DblClick
End Sub
Private Sub UserControl_InitProperties()
' Initialise the default values
bDisplayPicture = False
bEnableGradient = False
bExpanded = True
bFontBold = False