-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfrmMain.frm
1404 lines (1336 loc) · 42.4 KB
/
frmMain.frm
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.Form frmMain
AutoRedraw = -1 'True
BackColor = &H00FFCB9B&
ClientHeight = 8265
ClientLeft = 120
ClientTop = 120
ClientWidth = 11955
ControlBox = 0 'False
Icon = "frmMain.frx":0000
LinkMode = 1 'Source
LinkTopic = "Brw"
ScaleHeight = 8265
ScaleWidth = 11955
StartUpPosition = 2 '屏幕中心
Begin VB.Timer tmrSBM
Enabled = 0 'False
Interval = 1
Left = 6360
Top = 4920
End
Begin Magnifier.ucBookmarks BM
Height = 2910
Left = 6360
TabIndex = 26
Top = 4920
Width = 4830
_ExtentX = 8520
_ExtentY = 10001
End
Begin Magnifier.ucListBox lstAddr
Height = 1935
Left = 0
TabIndex = 23
Top = 2760
Visible = 0 'False
Width = 4815
_extentx = 8493
_extenty = 3413
End
Begin VB.PictureBox picAddr
Appearance = 0 'Flat
BackColor = &H00FFCB9B&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 320
Left = 0
Picture = "frmMain.frx":4781A
ScaleHeight = 315
ScaleWidth = 375
TabIndex = 7
ToolTipText = "地址"
Top = 480
Width = 375
Begin VB.PictureBox picZoom
Appearance = 0 'Flat
BackColor = &H00FEDCC0&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 375
Left = 1560
ScaleHeight = 375
ScaleWidth = 1935
TabIndex = 13
Top = -10
Width = 1935
Begin VB.Image imgDwn
Height = 285
Left = 1560
Picture = "frmMain.frx":47DB4
ToolTipText = "查看已下载的文档和程序"
Top = 0
Width = 285
End
Begin VB.Image imgBM
Height = 285
Left = 1200
Picture = "frmMain.frx":47E12
ToolTipText = "点击将网页加入收藏, 双击打开收藏夹"
Top = 0
Width = 285
End
Begin VB.Label lblZmVl
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "100%"
BeginProperty Font
Name = "微软雅黑"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 340
TabIndex = 16
Top = 20
Width = 480
End
Begin VB.Label lblPlMi
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "-"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Index = 1
Left = 960
TabIndex = 15
Top = -30
Width = 105
End
Begin VB.Label lblPlMi
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "+"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Index = 0
Left = 80
TabIndex = 14
Top = -30
Width = 180
End
End
Begin VB.Timer tmrSTxt
Enabled = 0 'False
Interval = 1
Left = -240
Top = -240
End
Begin VB.TextBox txtAddr
Appearance = 0 'Flat
BackColor = &H00FEDCC0&
BorderStyle = 0 'None
BeginProperty Font
Name = "微软雅黑"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 840
TabIndex = 8
Top = 0
Width = 495
End
Begin VB.Image imgWebIco
Height = 285
Index = 0
Left = 480
Picture = "frmMain.frx":48050
ToolTipText = "网页为未经过加密的普通网页"
Top = 0
Width = 285
End
Begin VB.Image imgWebIco
Height = 285
Index = 1
Left = 480
Picture = "frmMain.frx":48129
ToolTipText = "网页经过安全加密"
Top = 0
Width = 285
End
End
Begin VB.PictureBox picApp
Appearance = 0 'Flat
BackColor = &H00EBEBEB&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 4335
Left = 5280
ScaleHeight = 4335
ScaleWidth = 6015
TabIndex = 18
Top = 480
Width = 6015
Begin VB.VScrollBar sroApp
Height = 4335
LargeChange = 100
Left = 5760
Max = 100
SmallChange = 10
TabIndex = 20
Top = 0
Visible = 0 'False
Width = 255
End
Begin VB.PictureBox picAppCore
Appearance = 0 'Flat
BackColor = &H00EBEBEB&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 1815
Left = 0
ScaleHeight = 1815
ScaleWidth = 6015
TabIndex = 21
Top = 0
Width = 6015
Begin VB.PictureBox picAIco
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 720
Index = 0
Left = 0
Picture = "frmMain.frx":48202
ScaleHeight = 720
ScaleWidth = 720
TabIndex = 22
Top = 0
Visible = 0 'False
Width = 720
End
Begin VB.Label lblAddApp
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "添加应用"
BeginProperty Font
Name = "微软雅黑"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C0C0&
Height = 420
Index = 1
Left = 4320
TabIndex = 24
ToolTipText = "添加应用"
Top = 120
Width = 1260
End
End
Begin VB.Timer tmrSApp
Enabled = 0 'False
Interval = 1
Left = 0
Top = 1800
End
Begin VB.Label lblAddApp
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "添加应用"
BeginProperty Font
Name = "微软雅黑"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C0C0&
Height = 420
Index = 0
Left = 4320
TabIndex = 25
ToolTipText = "添加应用"
Top = 120
Width = 1260
End
Begin VB.Label lblShow
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "应用库里空空如也..."
BeginProperty Font
Name = "微软雅黑"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 570
Index = 2
Left = 1185
TabIndex = 19
Top = 1800
Width = 3825
End
End
Begin VB.PictureBox picCaption
Align = 1 'Align Top
BackColor = &H00FFCB9B&
BorderStyle = 0 'None
Height = 495
Left = 0
ScaleHeight = 495
ScaleWidth = 11955
TabIndex = 0
Top = 0
Width = 11955
Begin VB.PictureBox picTabBar
BackColor = &H00FFCB9B&
BorderStyle = 0 'None
Height = 495
Left = 1680
ScaleHeight = 495
ScaleWidth = 6495
TabIndex = 2
Top = 0
Width = 6495
Begin Magnifier.ucTabs Tabs
Height = 495
Index = 0
Left = 0
TabIndex = 4
Top = 0
Visible = 0 'False
Width = 1695
_extentx = 1085
_extenty = 873
End
Begin VB.Image imgAddWeb
Appearance = 0 'Flat
Height = 465
Left = 6120
Picture = "frmMain.frx":49D46
Top = 0
Width = 330
End
End
Begin VB.Image imgBtn
Height = 480
Index = 0
Left = 0
ToolTipText = "后退(向右拖拽前进)"
Top = 0
Width = 435
End
Begin VB.Image imgBtn
Height = 480
Index = 1
Left = 480
ToolTipText = "刷新"
Top = 0
Width = 435
End
Begin VB.Image imgBtn
Height = 480
Index = 2
Left = 480
ToolTipText = "停止加载"
Top = 0
Width = 435
End
Begin VB.Image imgCtrl
Height = 480
Index = 3
Left = 9240
ToolTipText = "应用库"
Top = 0
Width = 435
End
Begin VB.Image imgCtrl
Height = 480
Index = 2
Left = 9720
ToolTipText = "最小化"
Top = 0
Width = 435
End
Begin VB.Image imgCtrl
Height = 480
Index = 1
Left = 10200
ToolTipText = "调节"
Top = 0
Width = 435
End
Begin VB.Image imgCtrl
Height = 480
Index = 0
Left = 10680
ToolTipText = "关闭浏览器"
Top = 0
Width = 435
End
Begin VB.Image imgBtn
Height = 480
Index = 3
Left = 960
ToolTipText = "工具菜单"
Top = 0
Width = 435
End
End
Begin VB.PictureBox picImg
Appearance = 0 'Flat
BackColor = &H00FEDCC0&
ForeColor = &H80000008&
Height = 2175
Left = 1200
ScaleHeight = 2145
ScaleWidth = 3255
TabIndex = 17
Top = 490
Visible = 0 'False
Width = 3285
Begin VB.Timer tmrRfsh
Enabled = 0 'False
Interval = 100
Left = -120
Top = -120
End
Begin VB.Image imgWebImg
Height = 2175
Left = 0
Stretch = -1 'True
ToolTipText = "缩略图"
Top = 0
Width = 3255
End
End
Begin VB.Timer tmrKey
Interval = 100
Left = 11400
Top = 600
End
Begin VB.PictureBox picSta
Appearance = 0 'Flat
BackColor = &H00FFCB9B&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 320
Left = 0
ScaleHeight = 315
ScaleWidth = 1215
TabIndex = 5
Top = 6600
Visible = 0 'False
Width = 1215
Begin VB.Label lblSta
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Sta..."
BeginProperty Font
Name = "微软雅黑"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 0
TabIndex = 6
Top = 0
Width = 405
End
End
Begin VB.PictureBox picPass
Appearance = 0 'Flat
BackColor = &H00FEDCC0&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 615
Left = 0
ScaleHeight = 615
ScaleWidth = 615
TabIndex = 3
Top = 480
Width = 615
Begin VB.PictureBox picPassCore
Appearance = 0 'Flat
BackColor = &H00FEDCC0&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 2175
Left = 120
ScaleHeight = 2175
ScaleWidth = 6135
TabIndex = 9
Top = 120
Width = 6135
Begin VB.TextBox txtPass
Appearance = 0 'Flat
BackColor = &H00FDBD93&
BorderStyle = 0 'None
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
IMEMode = 3 'DISABLE
Left = 1680
PasswordChar = "#"
TabIndex = 12
Top = 1560
Width = 2625
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Magnifier 处于密码保护状态"
BeginProperty Font
Name = "微软雅黑"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 570
Index = 0
Left = 240
TabIndex = 11
Top = 0
Width = 5625
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "请输入密码来解除锁定"
BeginProperty Font
Name = "微软雅黑"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Index = 1
Left = 1560
TabIndex = 10
Top = 960
Width = 2850
End
End
Begin VB.Timer tmrSPass
Enabled = 0 'False
Interval = 1
Left = -240
Top = -120
End
End
Begin Magnifier.ucWeb Web
Height = 4335
Index = 0
Left = 0
TabIndex = 1
Top = 480
Visible = 0 'False
Width = 5175
_extentx = 9128
_extenty = 7646
End
Begin VB.Menu mnuMain
Caption = "Main"
Visible = 0 'False
Begin VB.Menu mnuMc
Caption = "保存当前页面"
Index = 0
Shortcut = ^S
End
Begin VB.Menu mnuMc
Caption = "打印当前页面"
Index = 1
Shortcut = ^P
End
Begin VB.Menu mnuMc
Caption = "-"
Index = 2
End
Begin VB.Menu mnuMc
Caption = "新建标签页"
Index = 3
Shortcut = ^T
End
Begin VB.Menu mnuMc
Caption = "关闭所有标签页"
Index = 4
End
Begin VB.Menu mnuMc
Caption = "-"
Index = 5
End
Begin VB.Menu mnuMc
Caption = "添加当前页面至书签"
Index = 6
Shortcut = ^D
End
Begin VB.Menu mnuMc
Caption = "整理书签"
Index = 7
End
Begin VB.Menu mnuMc
Caption = "-"
Index = 8
End
Begin VB.Menu mnuMc
Caption = "SuperHide"
Index = 9
Shortcut = {F2}
End
Begin VB.Menu mnuMc
Caption = "密码保护"
Index = 10
Shortcut = {F4}
End
Begin VB.Menu mnuMc
Caption = "启用鼠标手势"
Index = 11
End
Begin VB.Menu mnuMc
Caption = "-"
Index = 12
End
Begin VB.Menu mnuMc
Caption = "程序设置"
Index = 13
End
Begin VB.Menu mnuMc
Caption = "主题管理"
Index = 14
End
Begin VB.Menu mnuMc
Caption = "任务管理器"
Index = 15
End
Begin VB.Menu mnuMc
Caption = "-"
Index = 16
End
Begin VB.Menu mnuMc
Caption = "关于 Magnifier"
Index = 17
End
Begin VB.Menu mnuMc
Caption = "关闭浏览器"
Index = 18
End
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim NowPage As Long, SLM_Txt_W As Single, WebImgIndex As Long ', TabDraged As Boolean, TabPos As Long
Private Sub BM_BookmarkAdded(bmCaption As String)
SaveBookmark Web(NowPage).LocationURL, bmCaption
tmrSBM.Enabled = True
End Sub
Private Sub BM_BookmarkOpened(bmPath As String)
tmrSBM.Enabled = True
WebGoTo LoadFile(bmPath)
End Sub
Private Sub Form_LinkExecute(CmdStr As String, Cancel As Integer)
On Error Resume Next
Me.Show
Me.ZOrder 0
Me.SetFocus
AddPage
If Left(CmdStr, 7) = "DDEOpen" Then
If right(Replace(Replace(CmdStr, """", ""), "%1", ""), 4) = ".mmb" Then
WebGoTo LoadFile(Replace(Replace(right(CmdStr, Len(CmdStr) - 7), """", ""), "%1", ""))
ElseIf right(Replace(Replace(CmdStr, """", ""), "%1", ""), 5) = ".mapx" Then
If MsgBox("您确定要安装应用 " & GetFileName(Replace(Replace(right(CmdStr, Len(CmdStr) - 7), """", ""), "%1", "")) _
& "吗?", 32 + vbYesNo, "安装应用") = vbYes Then
InstallApp Replace(Replace(right(CmdStr, Len(CmdStr) - 7), """", ""), "%1", "")
End If
Else
WebGoTo Replace(Replace(right(CmdStr, Len(CmdStr) - 7), """", ""), "%1", "")
End If
ElseIf CmdStr = "OpenNew" Then
OnOpen
End If
Cancel = False
End Sub
Private Sub Form_Load()
If Dir(MyPath & "config.ini") = "" Then MsgBox "非常抱歉,出现了一个错误" & vbCrLf & "浏览器没有发现配置文件,所以不能为你浏览", 48, "错误": End
On Error Resume Next 'DDE Link
If App.PrevInstance Then
Me.LinkTopic = ""
Me.LinkMode = 0
If Command <> "" Then
If right(Command, 4) = ".mmb" Then
LinkAndSendMessage "DDEOpen" & LoadFile(Command)
Else
LinkAndSendMessage "DDEOpen" & Replace(Replace(Command, """", ""), "%1", "")
End If
Else
LinkAndSendMessage "OpenNew"
End If
End
End If
On Error GoTo 0 'End Source
SetClassLong Me.hWnd, GCL_STYLE, GetClassLong(Me.hWnd, GCL_STYLE) Or CS_DROPSHADOW 'Form has a shadow
LoadTheme
picPass.Top = -Me.ScaleHeight
Me.Show
LockWindow Me.hWnd, , , , Screen.Height / Screen.TwipsPerPixelY - GetTaskbarHeight
lblZmVl.Caption = ReadCon("Zoom") & "%"
If ReadCon("Addr") = 1 Then picAddr.Width = Me.ScaleWidth: Form_Resize
If ReadCon("AppSafe") = 1 Then frmSHide.SC(0).UseSafeSubset = True
AddPage
OnOpen
ReadCommand
If ReadCon("AutoSet") = 1 Then SetBrowser (True)
If ReadCon("OpenPass") = 1 Then mnuMc_Click (10)
If ReadCon("Mouse") = 1 Then mnuMc(11).Checked = True: InstallMouseHook
End Sub
Private Sub Form_Resize()
On Error Resume Next
picPass.Move 0, picPass.Top, Me.ScaleWidth, Me.ScaleHeight - picCaption.Height
If picPass.Top <> picCaption.Height Then picPass.Top = -Me.ScaleHeight Else picPass.Top = picCaption.Height
picPassCore.Move (picPass.Width - picPassCore.Width) / 2, (picPass.Height - picPassCore.Height) / 2
'===MoveIcon===
imgBtn(0).Move 0
imgBtn(1).Move imgBtn(0).Width
imgBtn(2).Move imgBtn(0).Width
imgBtn(3).Move imgBtn(1).Left + imgBtn(I).Width
imgCtrl(0).Move Me.ScaleWidth - imgCtrl(0).Width
imgCtrl(1).Move Me.ScaleWidth - imgCtrl(0).Width - imgCtrl(1).Width
imgCtrl(2).Move Me.ScaleWidth - imgCtrl(0).Width - imgCtrl(1).Width - imgCtrl(2).Width
imgCtrl(3).Move Me.ScaleWidth - imgCtrl(0).Width - imgCtrl(1).Width - imgCtrl(2).Width - imgCtrl(3).Width
'=====End======
lstAddr.Move txtAddr.Left, picCaption.Height + picAddr.Height
picApp.Move IIf(tmrSApp.Tag <> "", Me.ScaleWidth - picApp.Width, Me.ScaleWidth), picCaption.Height
BM.Move IIf(tmrSBM.Tag <> "", Me.ScaleWidth - BM.Width, Me.ScaleWidth), picCaption.Height + picAddr.Height
DW.Move Me.ScaleWidth - DW.Width, picCaption.Height + picAddr.Height
picTabBar.Move imgBtn(3).Left + imgBtn(3).Width + 120, 0, Me.ScaleWidth - imgBtn(0).Width * 3 - imgCtrl(0).Width * 4 - 1000
imgAddWeb.Move picTabBar.ScaleWidth - imgAddWeb.Width
ResizeTabs
picSta.Move 0, Me.ScaleHeight - picSta.Height
If Me.WindowState <> 1 Then picAddr.Move 0, picCaption.Height, IIf(picAddr.Width > 375, Me.ScaleWidth, 375)
If picAddr.Width > 375 Then
picZoom.Left = picAddr.Width - picZoom.Width - 120
txtAddr.Width = picAddr.Width - 600 - picZoom.Width - imgWebIco(0).Width
End If
If ReadCon("MinPass") = 1 And Me.WindowState = 1 Then
tmrSPass.Enabled = False
mnuMc_Click (10)
End If
End Sub
Private Sub LinkAndSendMessage(ByVal Msg As String)
On Error GoTo errH
Dim t As Long
With picCaption
.LinkMode = 0
.LinkTopic = "Magnifier|Brw"
.LinkMode = 2
.LinkExecute Msg
t = .LinkTimeout
.LinkTimeout = 1
.LinkMode = 0
.LinkTimeout = t
End With
Exit Sub
errH:
End
End Sub
Private Sub OnOpen()
Select Case ReadCon("OnOpen")
Case 0
WebGoTo ReadCon("HomePage")
Case 1
WebGoTo "about:nav"
Case 2
WebGoTo ReadCon("LastPage")
End Select
End Sub
Private Sub SetOrder(ctrl As Control)
ctrl.ZOrder 0
picAddr.ZOrder 0
lstAddr.ZOrder 0
picImg.ZOrder 0
picPass.ZOrder 0
picCaption.ZOrder 0
picApp.ZOrder 0
BM.ZOrder 0
End Sub
Private Sub SetCaption(Text As String)
SetWindowText Me.hWnd, Text
End Sub
Private Sub TabReAct(Index As Integer, UnloadThis As Boolean)
On Error GoTo errH
Dim LastIndex As Long
For I = 1 To Tabs.UBound
Tabs(I).BackColor = ThmClr.TabNoAct
If UnloadThis = True Then
If I < Index Then LastIndex = I
End If
Next I
If UnloadThis = False Then
Tabs(Index).BackColor = ThmClr.TabOnAct
Else
Tabs(LastIndex).BackColor = ThmClr.TabOnAct
'SetOrder Web(Tabs(LastIndex).Tag)
SetOrder Web(Tabs(LastIndex).Index)
'NowPage = Tabs(LastIndex).Tag
NowPage = Tabs(LastIndex).Index
txtAddr.Text = Web(NowPage).LocationURL
SetCaption Tabs(NowPage).Caption
End If
Exit Sub
errH:
If Err.Number = 340 Then
I = I + 1
Resume
End If
End Sub
Private Sub ResizeTabs()
On Error GoTo errH
Dim tLeft As Long
tLeft = 0
For I = 1 To Tabs.UBound
Tabs(I).Move tLeft, 0, (picTabBar.ScaleWidth - imgAddWeb.Width) / (Tabs.Count - 1)
tLeft = tLeft + (picTabBar.ScaleWidth - imgAddWeb.Width) / (Tabs.Count - 1)
If picAddr.Width = 375 Then
Web(I).Move 0, picCaption.Height, Me.ScaleWidth, Me.ScaleHeight - picCaption.Height
Else
Web(I).Move 0, picCaption.Height + picAddr.Height, Me.ScaleWidth, Me.ScaleHeight - picCaption.Height - picAddr.Height
End If
Next I
Exit Sub
errH:
If Err.Number = 340 Then
I = I + 1
Resume
End If
End Sub
Sub AddPage()
Load Tabs(Tabs.UBound + 1)
Load Web(Web.UBound + 1)
'Tabs(Tabs.UBound).Tag = Web.UBound
ResizeTabs
TabReAct Tabs.UBound, False
Tabs(Tabs.UBound).ProColor = ThmClr.MainColor
Tabs(Tabs.UBound).Visible = True
Web(Web.UBound).Visible = True
SetOrder Web(Web.UBound)
'NowPage = Tabs(Tabs.UBound).Tag
NowPage = Web.UBound
End Sub
Sub WebGoTo(sUrl As String)
On Error Resume Next
Web(NowPage).GoURL sUrl
Web(NowPage).SetFocus
End Sub
Private Sub Form_Unload(Cancel As Integer)
If ReadCon("Mouse") = 1 Then
UninstallMouseHook
End If
If ReadCon("Unload") = 1 Then
If Web.Count - 1 > 1 Then If MsgBox("您的操作会关闭所有已经打开的标签页" & vbCrLf & "您确定要继续吗?", 64 + vbYesNo, "关闭多个标签页") = vbNo Then Cancel = 1
End If
SaveCon "LastPage", Web(NowPage).LocationURL
If picAddr.Width <> 375 Then SaveCon "Addr", 1 Else SaveCon "Addr", 0
If ReadCon("AutoDelete") = 1 Then
DeleteIEHistory
DoEvents
DeleteHistory
End If
Dim frms As Form
For Each frms In VB.Forms
Unload frms
Next
End Sub
Private Sub imgBM_Click()
If tmrSBM.Tag = "" Then BM.ShowSave Web(NowPage).LocationName
tmrSBM.Enabled = True
End Sub
Private Sub imgBM_DblClick()
If tmrSBM.Tag = "" Then BM.GetBookmarks
End Sub
Private Sub imgBtn_MouseMove(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
On Error Resume Next
Static omX As Long
If Button = 1 Then
If Index = 0 And X > omX + 100 Then
imgBtn(0).Tag = "1"
imgBtn(0).Picture = LoadPicture(GetThmFolder & "Rt.bmp")
End If
Else
omX = X
End If
End Sub
Private Sub imgBtn_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
On Error Resume Next
Select Case Index
Case 0
If imgBtn(0).Tag = "1" Then Web(NowPage).DoCommand 1: imgBtn(0).Tag = "": imgBtn(0).Picture = LoadPicture(GetThmFolder & "Lf.bmp"): Exit Sub
Web(NowPage).DoCommand 0
Case 1
Web(NowPage).DoCommand 3
Case 2
Web(NowPage).DoCommand 2
SetOrder imgBtn(1)
Case 3
PopupMenu mnuMain, 0, imgBtn(3).Left, picCaption.Height
End Select
End Sub
Private Sub imgCtrl_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
Select Case Index
Case 3
tmrSBM.Tag = 1: tmrSBM.Enabled = True
LoadApps
lblAddApp(1).Caption = "添加应用"
tmrSApp.Enabled = True
Case 2
Me.WindowState = 1
Case 1
picCaption_DblClick
Case 0
Unload Me
End Select
End Sub
Private Sub imgDwn_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Dir(MyPath & "MagDown.exe") <> "" Then
Shell MyPath & "MagDown.exe Show", vbNormalFocus
End If
End Sub
Private Sub lblAddApp_Click(Index As Integer)
Dim cdlg As New clsCdlg
cdlg.ShowOpen Me.hWnd, "Mapx应用安装包(*.Mapx)" & Chr(0) & "*.mapx", "载入Mapx安装包"
If cdlg.FileName <> "" Then
If cdlg.FileName <> MyPath & "Apps\" & GetFileName(cdlg.FileName) & ".mapx" Then
FileCopyEx cdlg.FileName, MyPath & "Apps\" & GetFileName(cdlg.FileName) & ".mapx"
cdlg.FileName = MyPath & "Apps\" & GetFileName(cdlg.FileName) & ".mapx"
End If
InstallApp cdlg.FileName
End If
End Sub
Private Sub lblPlMi_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim lZom As Long
lZom = Val(Replace(lblZmVl.Caption, "%", ""))
If Index = 0 Then