Skip to content

Commit 7f18c05

Browse files
committed
Updated form font properties to Segoe UI for consistency.
1 parent deed932 commit 7f18c05

20 files changed

+130
-60
lines changed

Bin/Win32/settings.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"DebugMode": false,
33
"EmitLogMessages": true,
44
"FormSettings": {
5-
"Left": 870,
6-
"Top": 220,
7-
"Width": 1169,
8-
"Height": 802,
5+
"Left": 721,
6+
"Top": 208,
7+
"Width": 1282,
8+
"Height": 891,
99
"FormStyle": 0,
1010
"WindowState": 0
1111
},
@@ -85,7 +85,7 @@
8585
"VerticalAlignment": 0
8686
},
8787
"TimeStamp": {
88-
"BackgroundColor": 14540253,
88+
"BackgroundColor": 15724527,
8989
"FontName": "Segoe UI",
9090
"FontColor": 16711680,
9191
"FontSize": 8,
@@ -145,7 +145,7 @@
145145
"VerticalAlignment": 0
146146
},
147147
"Tracing": {
148-
"BackgroundColor": 14540253,
148+
"BackgroundColor": 15724527,
149149
"FontName": "Segoe UI",
150150
"FontColor": 32896,
151151
"FontSize": 8,
@@ -155,7 +155,7 @@
155155
"VerticalAlignment": 0
156156
},
157157
"Enter": {
158-
"BackgroundColor": 14540253,
158+
"BackgroundColor": 15724527,
159159
"FontName": "Segoe UI",
160160
"FontColor": 32896,
161161
"FontSize": 8,
@@ -165,7 +165,7 @@
165165
"VerticalAlignment": 0
166166
},
167167
"Leave": {
168-
"BackgroundColor": 14540253,
168+
"BackgroundColor": 15724527,
169169
"FontName": "Segoe UI",
170170
"FontColor": 32896,
171171
"FontSize": 8,
@@ -228,8 +228,8 @@
228228
},
229229
{
230230
"Alias": "",
231-
"Color": 8454143,
232-
"Level": 6
231+
"Color": 8388736,
232+
"Level": 8
233233
},
234234
{
235235
"Alias": "",

LogViewer.CallStack.Settings.View.dfm

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ object frmCallStackSettings: TfrmCallStackSettings
44
ClientHeight = 36
55
ClientWidth = 171
66
Color = clBtnFace
7-
Font.Charset = DEFAULT_CHARSET
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
89
Font.Color = clWindowText
910
Font.Height = -11
10-
Font.Name = 'Tahoma'
11+
Font.Name = 'Segoe UI'
1112
Font.Style = []
1213
OldCreateOrder = False
1314
PixelsPerInch = 96

LogViewer.CallStack.View.dfm

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ object frmCallStackView: TfrmCallStackView
44
ClientHeight = 405
55
ClientWidth = 300
66
Color = clWhite
7-
ParentFont = True
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
9+
Font.Color = clWindowText
10+
Font.Height = -11
11+
Font.Name = 'Segoe UI'
12+
Font.Style = []
813
OldCreateOrder = False
914
PixelsPerInch = 96
1015
TextHeight = 13

LogViewer.Dashboard.View.dfm

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ object frmDashboard: TfrmDashboard
55
ClientHeight = 616
66
ClientWidth = 1046
77
Color = clWhite
8-
ParentFont = True
8+
DoubleBuffered = True
9+
Font.Charset = ANSI_CHARSET
10+
Font.Color = clWindowText
11+
Font.Height = -11
12+
Font.Name = 'Segoe UI'
13+
Font.Style = []
914
OldCreateOrder = False
1015
ShowHint = True
1116
PixelsPerInch = 96
@@ -58,14 +63,12 @@ object frmDashboard: TfrmDashboard
5863
TabOrder = 0
5964
object tsWinIpc: TKTabSheet
6065
Caption = 'WinIPC'
61-
ExplicitWidth = 0
62-
ExplicitHeight = 0
6366
object lblWinIPC: TLabel
6467
AlignWithMargins = True
6568
Left = 3
6669
Top = 28
67-
Width = 307
68-
Height = 221
70+
Width = 308
71+
Height = 588
6972
Align = alClient
7073
Caption =
7174
'Messages are exchanged between the source application and LogVie' +
@@ -84,6 +87,8 @@ object frmDashboard: TfrmDashboard
8487
ParentFont = False
8588
Transparent = True
8689
WordWrap = True
90+
ExplicitWidth = 307
91+
ExplicitHeight = 221
8792
end
8893
object pnlWinIPCTitle: TPanel
8994
Left = 0
@@ -106,14 +111,12 @@ object frmDashboard: TfrmDashboard
106111
end
107112
object tsWinOds: TKTabSheet
108113
Caption = 'WinODS'
109-
ExplicitWidth = 0
110-
ExplicitHeight = 0
111114
object lblWinods: TLabel
112115
AlignWithMargins = True
113116
Left = 3
114117
Top = 28
115118
Width = 308
116-
Height = 374
119+
Height = 588
117120
Align = alClient
118121
Caption =
119122
'This receiver captures messages from any local applicatiion that' +
@@ -138,6 +141,7 @@ object frmDashboard: TfrmDashboard
138141
ParentFont = False
139142
Transparent = True
140143
WordWrap = True
144+
ExplicitHeight = 374
141145
end
142146
object pnlWinodsTitle: TPanel
143147
Left = 0
@@ -256,8 +260,6 @@ object frmDashboard: TfrmDashboard
256260
end
257261
object tsFileSystem: TKTabSheet
258262
Caption = 'FileSystem'
259-
ExplicitWidth = 0
260-
ExplicitHeight = 0
261263
object pnlFileSystemTitle: TPanel
262264
Left = 0
263265
Top = 0
@@ -288,8 +290,6 @@ object frmDashboard: TfrmDashboard
288290
end
289291
object tsComPort: TKTabSheet
290292
Caption = 'COM port'
291-
ExplicitWidth = 0
292-
ExplicitHeight = 0
293293
object pnlComPorts: TPanel
294294
Left = 0
295295
Top = 25

LogViewer.DataSet.View.dfm

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ object frmDataSetView: TfrmDataSetView
66
ClientWidth = 363
77
Color = clBtnFace
88
DoubleBuffered = True
9-
ParentFont = True
9+
Font.Charset = ANSI_CHARSET
10+
Font.Color = clWindowText
11+
Font.Height = -11
12+
Font.Name = 'Segoe UI'
13+
Font.Style = []
1014
OldCreateOrder = False
1115
PixelsPerInch = 96
1216
TextHeight = 13

LogViewer.DisplayValues.Settings.View.dfm

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ object frmDisplayValuesSettings: TfrmDisplayValuesSettings
55
ClientHeight = 378
66
ClientWidth = 489
77
Color = clBtnFace
8-
ParentFont = True
8+
DoubleBuffered = True
9+
Font.Charset = ANSI_CHARSET
10+
Font.Color = clWindowText
11+
Font.Height = -11
12+
Font.Name = 'Segoe UI'
13+
Font.Style = []
914
OldCreateOrder = False
1015
PixelsPerInch = 96
1116
TextHeight = 13

LogViewer.LogLevels.Settings.View.dfm

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ object frmLogLevelSettings: TfrmLogLevelSettings
44
ClientHeight = 411
55
ClientWidth = 516
66
Color = clBtnFace
7-
Font.Charset = DEFAULT_CHARSET
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
89
Font.Color = clWindowText
910
Font.Height = -11
10-
Font.Name = 'Tahoma'
11+
Font.Name = 'Segoe UI'
1112
Font.Style = []
1213
OldCreateOrder = False
1314
PixelsPerInch = 96
@@ -29,8 +30,6 @@ object frmLogLevelSettings: TfrmLogLevelSettings
2930
Align = alClient
3031
BevelOuter = bvNone
3132
TabOrder = 0
32-
ExplicitLeft = 283
33-
ExplicitWidth = 233
3433
end
3534
object pnlLeft: TPanel
3635
Left = 0

LogViewer.MainForm.dfm

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ object frmMain: TfrmMain
2121
CustomTitleBar.ButtonInactiveForegroundColor = 10066329
2222
CustomTitleBar.ButtonInactiveBackgroundColor = clWhite
2323
DoubleBuffered = True
24-
ParentFont = True
24+
Font.Charset = ANSI_CHARSET
25+
Font.Color = clWindowText
26+
Font.Height = -11
27+
Font.Name = 'Segoe UI'
28+
Font.Style = []
2529
GlassFrame.Enabled = True
2630
GlassFrame.Top = 31
2731
KeyPreview = True

LogViewer.MessageData.View.dfm

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ object frmMessageDataView: TfrmMessageDataView
44
ClientHeight = 287
55
ClientWidth = 601
66
Color = clBtnFace
7-
Font.Charset = DEFAULT_CHARSET
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
89
Font.Color = clWindowText
910
Font.Height = -11
10-
Font.Name = 'Tahoma'
11+
Font.Name = 'Segoe UI'
1112
Font.Style = []
1213
OldCreateOrder = False
1314
PixelsPerInch = 96

LogViewer.MessageFilter.View.dfm

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ object frmMessageFilter: TfrmMessageFilter
88
ClientWidth = 215
99
Color = clBtnFace
1010
DoubleBuffered = True
11-
ParentFont = True
11+
Font.Charset = ANSI_CHARSET
12+
Font.Color = clWindowText
13+
Font.Height = -11
14+
Font.Name = 'Segoe UI'
15+
Font.Style = []
1216
FormStyle = fsStayOnTop
1317
OldCreateOrder = False
1418
PopupMode = pmAuto
@@ -36,9 +40,6 @@ object frmMessageFilter: TfrmMessageFilter
3640
TabOrder = 0
3741
object tsClientSide: TKTabSheet
3842
Caption = 'Client side'
39-
ExplicitTop = 0
40-
ExplicitWidth = 0
41-
ExplicitHeight = 0
4243
end
4344
object tsSourceSide: TKTabSheet
4445
Caption = 'Source side'

LogViewer.MessageList.Settings.View.dfm

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ object frmViewSettings: TfrmViewSettings
44
ClientHeight = 153
55
ClientWidth = 214
66
Color = clBtnFace
7-
ParentFont = True
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
9+
Font.Color = clWindowText
10+
Font.Height = -11
11+
Font.Name = 'Segoe UI'
12+
Font.Style = []
813
OldCreateOrder = False
914
PixelsPerInch = 96
1015
TextHeight = 13

LogViewer.MessageList.View.dfm

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ object frmMessageList: TfrmMessageList
55
ClientWidth = 1261
66
Color = clWhite
77
DoubleBuffered = True
8-
ParentFont = True
8+
Font.Charset = ANSI_CHARSET
9+
Font.Color = clWindowText
10+
Font.Height = -11
11+
Font.Name = 'Segoe UI'
12+
Font.Style = []
913
OldCreateOrder = False
1014
ShowHint = True
1115
OnClose = FormClose

LogViewer.RawData.View.dfm

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ object frmRawDataView: TfrmRawDataView
66
ClientWidth = 567
77
Color = clBtnFace
88
DoubleBuffered = True
9-
ParentFont = True
9+
Font.Charset = ANSI_CHARSET
10+
Font.Color = clWindowText
11+
Font.Height = -11
12+
Font.Name = 'Segoe UI'
13+
Font.Style = []
1014
OldCreateOrder = False
1115
PixelsPerInch = 96
1216
TextHeight = 13

LogViewer.Receivers.ComPort.Settings.View.dfm

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ object frmComPortSettings: TfrmComPortSettings
44
ClientHeight = 69
55
ClientWidth = 258
66
Color = clBtnFace
7-
ParentFont = True
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
9+
Font.Color = clWindowText
10+
Font.Height = -11
11+
Font.Name = 'Segoe UI'
12+
Font.Style = []
813
OldCreateOrder = False
914
PixelsPerInch = 96
1015
TextHeight = 13
@@ -19,7 +24,7 @@ object frmComPortSettings: TfrmComPortSettings
1924
object lblBaudRate: TLabel
2025
Left = 16
2126
Top = 38
22-
Width = 48
27+
Width = 49
2328
Height = 13
2429
Caption = 'Baudrate:'
2530
FocusControl = cbxBaudRate

LogViewer.Receivers.Winipc.Settings.View.dfm

+13-7
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,45 @@ object frmWinipcSettings: TfrmWinipcSettings
44
ClientHeight = 84
55
ClientWidth = 324
66
Color = clBtnFace
7-
ParentFont = True
7+
DoubleBuffered = True
8+
Font.Charset = ANSI_CHARSET
9+
Font.Color = clWindowText
10+
Font.Height = -11
11+
Font.Name = 'Segoe UI'
12+
Font.Style = []
813
OldCreateOrder = False
14+
ShowHint = True
915
PixelsPerInch = 96
1016
TextHeight = 13
1117
object lblWindowHandleName: TLabel
1218
Left = 8
1319
Top = 8
14-
Width = 106
20+
Width = 117
1521
Height = 13
1622
Caption = 'Window handle name:'
1723
FocusControl = edtWindowHandleName
1824
end
1925
object lblPollingIntervalMs: TLabel
2026
Left = 183
2127
Top = 36
22-
Width = 13
28+
Width = 14
2329
Height = 13
2430
Caption = 'ms'
2531
end
2632
object edtWindowHandleName: TEdit
27-
Left = 120
33+
Left = 131
2834
Top = 6
29-
Width = 193
35+
Width = 182
3036
Height = 21
3137
TabOrder = 0
3238
end
3339
object edtPollingInterval: TLabeledEdit
34-
Left = 120
40+
Left = 131
3541
Top = 33
3642
Width = 57
3743
Height = 21
3844
Alignment = taRightJustify
39-
EditLabel.Width = 73
45+
EditLabel.Width = 80
4046
EditLabel.Height = 13
4147
EditLabel.Caption = 'Polling &interval:'
4248
LabelPosition = lpLeft

0 commit comments

Comments
 (0)