Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
3b2350b1
Commit
3b2350b1
authored
Jan 26, 2003
by
Boris Dorès
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- buttons are left aligned and their size comforms to Windows XP visual
guidelines
parent
aad898d5
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
84 additions
and
92 deletions
+84
-92
modules/gui/win32/disc.dfm
modules/gui/win32/disc.dfm
+17
-24
modules/gui/win32/disc.h
modules/gui/win32/disc.h
+0
-1
modules/gui/win32/network.dfm
modules/gui/win32/network.dfm
+21
-21
modules/gui/win32/preferences.cpp
modules/gui/win32/preferences.cpp
+1
-1
modules/gui/win32/preferences.dfm
modules/gui/win32/preferences.dfm
+18
-18
modules/gui/win32/sout.dfm
modules/gui/win32/sout.dfm
+20
-20
modules/gui/win32/subtitles.dfm
modules/gui/win32/subtitles.dfm
+7
-7
No files found.
modules/gui/win32/disc.dfm
View file @
3b2350b1
...
@@ -5,8 +5,8 @@ object DiscDlg: TDiscDlg
...
@@ -5,8 +5,8 @@ object DiscDlg: TDiscDlg
BorderIcons = [biSystemMenu, biMinimize]
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsDialog
BorderStyle = bsDialog
Caption = 'Open Disc'
Caption = 'Open Disc'
ClientHeight = 17
8
ClientHeight = 17
3
ClientWidth = 24
2
ClientWidth = 24
8
Color = clBtnFace
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Color = clWindowText
...
@@ -21,23 +21,16 @@ object DiscDlg: TDiscDlg
...
@@ -21,23 +21,16 @@ object DiscDlg: TDiscDlg
object LabelDevice: TLabel
object LabelDevice: TLabel
Tag = 3
Tag = 3
Left = 8
Left = 8
Top = 11
3
Top = 11
7
Width = 66
Width = 66
Height = 13
Height = 13
Caption = 'Device &name:'
Caption = 'Device &name:'
end
end
object Bevel1: TBevel
Left = 8
Top = 136
Width = 225
Height = 2
Anchors = [akLeft, akTop, akRight]
end
object GroupBoxPosition: TGroupBox
object GroupBoxPosition: TGroupBox
Tag = 3
Tag = 3
Left = 96
Left = 96
Top = 8
Top = 8
Width = 1
37
Width = 1
44
Height = 97
Height = 97
Caption = 'Starting position'
Caption = 'Starting position'
TabOrder = 1
TabOrder = 1
...
@@ -60,7 +53,7 @@ object DiscDlg: TDiscDlg
...
@@ -60,7 +53,7 @@ object DiscDlg: TDiscDlg
object SpinEditTitle: TCSpinEdit
object SpinEditTitle: TCSpinEdit
Left = 56
Left = 56
Top = 39
Top = 39
Width =
73
Width =
80
Height = 22
Height = 22
TabStop = True
TabStop = True
Font.Charset = DEFAULT_CHARSET
Font.Charset = DEFAULT_CHARSET
...
@@ -78,7 +71,7 @@ object DiscDlg: TDiscDlg
...
@@ -78,7 +71,7 @@ object DiscDlg: TDiscDlg
object SpinEditChapter: TCSpinEdit
object SpinEditChapter: TCSpinEdit
Left = 56
Left = 56
Top = 67
Top = 67
Width =
73
Width =
80
Height = 22
Height = 22
TabStop = True
TabStop = True
MaxValue = 65535
MaxValue = 65535
...
@@ -101,7 +94,7 @@ object DiscDlg: TDiscDlg
...
@@ -101,7 +94,7 @@ object DiscDlg: TDiscDlg
Tag = 3
Tag = 3
Left = 8
Left = 8
Top = 8
Top = 8
Width = 8
1
Width = 8
0
Height = 97
Height = 97
Caption = 'Disc type'
Caption = 'Disc type'
ItemIndex = 0
ItemIndex = 0
...
@@ -113,10 +106,10 @@ object DiscDlg: TDiscDlg
...
@@ -113,10 +106,10 @@ object DiscDlg: TDiscDlg
end
end
object ButtonOk: TButton
object ButtonOk: TButton
Tag = 3
Tag = 3
Left =
24
Left =
82
Top = 14
4
Top = 14
2
Width =
81
Width =
75
Height = 2
5
Height = 2
3
Caption = 'OK'
Caption = 'OK'
Default = True
Default = True
ModalResult = 1
ModalResult = 1
...
@@ -125,10 +118,10 @@ object DiscDlg: TDiscDlg
...
@@ -125,10 +118,10 @@ object DiscDlg: TDiscDlg
end
end
object ButtonCancel: TButton
object ButtonCancel: TButton
Tag = 3
Tag = 3
Left = 1
36
Left = 1
65
Top = 14
4
Top = 14
2
Width =
81
Width =
75
Height = 2
5
Height = 2
3
Cancel = True
Cancel = True
Caption = 'Cancel'
Caption = 'Cancel'
ModalResult = 2
ModalResult = 2
...
@@ -138,8 +131,8 @@ object DiscDlg: TDiscDlg
...
@@ -138,8 +131,8 @@ object DiscDlg: TDiscDlg
object EditDevice: TEdit
object EditDevice: TEdit
Tag = 5
Tag = 5
Left = 96
Left = 96
Top = 1
09
Top = 1
13
Width = 1
37
Width = 1
44
Height = 21
Height = 21
TabOrder = 2
TabOrder = 2
Text = 'F:\'
Text = 'F:\'
...
...
modules/gui/win32/disc.h
View file @
3b2350b1
...
@@ -46,7 +46,6 @@ __published: // IDE-managed Components
...
@@ -46,7 +46,6 @@ __published: // IDE-managed Components
TCSpinEdit
*
SpinEditTitle
;
TCSpinEdit
*
SpinEditTitle
;
TCSpinEdit
*
SpinEditChapter
;
TCSpinEdit
*
SpinEditChapter
;
TCheckBox
*
CheckBoxMenus
;
TCheckBox
*
CheckBoxMenus
;
TBevel
*
Bevel1
;
void
__fastcall
FormShow
(
TObject
*
Sender
);
void
__fastcall
FormShow
(
TObject
*
Sender
);
void
__fastcall
FormHide
(
TObject
*
Sender
);
void
__fastcall
FormHide
(
TObject
*
Sender
);
void
__fastcall
ButtonCancelClick
(
TObject
*
Sender
);
void
__fastcall
ButtonCancelClick
(
TObject
*
Sender
);
...
...
modules/gui/win32/network.dfm
View file @
3b2350b1
object NetworkDlg: TNetworkDlg
object NetworkDlg: TNetworkDlg
Tag = 3
Tag = 3
Left =
507
Left =
358
Top =
259
Top =
414
BorderStyle = bsDialog
BorderStyle = bsDialog
Caption = 'Open network'
Caption = 'Open network'
ClientHeight = 19
8
ClientHeight = 19
1
ClientWidth = 49
7
ClientWidth = 49
6
Color = clBtnFace
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Color = clWindowText
...
@@ -252,8 +252,8 @@ object NetworkDlg: TNetworkDlg
...
@@ -252,8 +252,8 @@ object NetworkDlg: TNetworkDlg
Tag = 3
Tag = 3
Left = 8
Left = 8
Top = 8
Top = 8
Width = 4
81
Width = 4
79
Height = 14
5
Height = 14
4
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Caption = 'Network mode'
Caption = 'Network mode'
TabOrder = 0
TabOrder = 0
...
@@ -267,7 +267,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -267,7 +267,7 @@ object NetworkDlg: TNetworkDlg
end
end
object LabelMulticastPort: TLabel
object LabelMulticastPort: TLabel
Tag = 3
Tag = 3
Left = 38
8
Left = 38
6
Top = 54
Top = 54
Width = 22
Width = 22
Height = 13
Height = 13
...
@@ -277,7 +277,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -277,7 +277,7 @@ object NetworkDlg: TNetworkDlg
end
end
object LabelCSPort: TLabel
object LabelCSPort: TLabel
Tag = 3
Tag = 3
Left = 38
8
Left = 38
6
Top = 82
Top = 82
Width = 22
Width = 22
Height = 13
Height = 13
...
@@ -358,7 +358,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -358,7 +358,7 @@ object NetworkDlg: TNetworkDlg
Tag = 5
Tag = 5
Left = 208
Left = 208
Top = 50
Top = 50
Width = 1
61
Width = 1
59
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Enabled = False
Enabled = False
...
@@ -369,7 +369,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -369,7 +369,7 @@ object NetworkDlg: TNetworkDlg
Tag = 5
Tag = 5
Left = 208
Left = 208
Top = 78
Top = 78
Width = 1
61
Width = 1
59
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Enabled = False
Enabled = False
...
@@ -383,7 +383,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -383,7 +383,7 @@ object NetworkDlg: TNetworkDlg
Tag = 5
Tag = 5
Left = 208
Left = 208
Top = 106
Top = 106
Width = 26
5
Width = 26
3
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Enabled = False
Enabled = False
...
@@ -401,7 +401,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -401,7 +401,7 @@ object NetworkDlg: TNetworkDlg
Value = 1234
Value = 1234
end
end
object SpinEditMulticastPort: TCSpinEdit
object SpinEditMulticastPort: TCSpinEdit
Left = 41
6
Left = 41
4
Top = 49
Top = 49
Width = 57
Width = 57
Height = 22
Height = 22
...
@@ -414,7 +414,7 @@ object NetworkDlg: TNetworkDlg
...
@@ -414,7 +414,7 @@ object NetworkDlg: TNetworkDlg
Value = 1234
Value = 1234
end
end
object SpinEditCSPort: TCSpinEdit
object SpinEditCSPort: TCSpinEdit
Left = 41
6
Left = 41
4
Top = 77
Top = 77
Width = 57
Width = 57
Height = 22
Height = 22
...
@@ -429,10 +429,10 @@ object NetworkDlg: TNetworkDlg
...
@@ -429,10 +429,10 @@ object NetworkDlg: TNetworkDlg
end
end
object ButtonOK: TButton
object ButtonOK: TButton
Tag = 3
Tag = 3
Left =
48
Left =
330
Top = 16
3
Top = 16
0
Width =
177
Width =
75
Height = 2
5
Height = 2
3
Caption = 'OK'
Caption = 'OK'
Default = True
Default = True
ModalResult = 1
ModalResult = 1
...
@@ -441,10 +441,10 @@ object NetworkDlg: TNetworkDlg
...
@@ -441,10 +441,10 @@ object NetworkDlg: TNetworkDlg
end
end
object ButtonCancel: TButton
object ButtonCancel: TButton
Tag = 3
Tag = 3
Left =
272
Left =
413
Top = 16
3
Top = 16
0
Width =
177
Width =
75
Height = 2
5
Height = 2
3
Anchors = [akTop, akRight]
Anchors = [akTop, akRight]
Cancel = True
Cancel = True
Caption = 'Cancel'
Caption = 'Cancel'
...
...
modules/gui/win32/preferences.cpp
View file @
3b2350b1
...
@@ -186,7 +186,7 @@ TCSpinEdit * __fastcall TPanelPref::CreateSpinEdit( TWinControl *Parent,
...
@@ -186,7 +186,7 @@ TCSpinEdit * __fastcall TPanelPref::CreateSpinEdit( TWinControl *Parent,
#define LIBWIN32_PREFSIZE_BUTTON_WIDTH 150
#define LIBWIN32_PREFSIZE_BUTTON_WIDTH 150
#define LIBWIN32_PREFSIZE_SPINEDIT_WIDTH 100
#define LIBWIN32_PREFSIZE_SPINEDIT_WIDTH 100
#define LIBWIN32_PREFSIZE_RIGHT (LIBWIN32_PREFSIZE_LEFT+LIBWIN32_PREFSIZE_WIDTH)
#define LIBWIN32_PREFSIZE_RIGHT (LIBWIN32_PREFSIZE_LEFT+LIBWIN32_PREFSIZE_WIDTH)
#define LIBWIN32_PREFSIZE_BUTTON_HEIGHT 2
5
#define LIBWIN32_PREFSIZE_BUTTON_HEIGHT 2
3
#define LIBWIN32_PREFSIZE_LABEL_HEIGHT 26
#define LIBWIN32_PREFSIZE_LABEL_HEIGHT 26
#define LIBWIN32_PREFSIZE_CHECKLISTBOX_HEIGHT 120
#define LIBWIN32_PREFSIZE_CHECKLISTBOX_HEIGHT 120
#define LIBWIN32_PREFSIZE_EDIT_HEIGHT 21
#define LIBWIN32_PREFSIZE_EDIT_HEIGHT 21
...
...
modules/gui/win32/preferences.dfm
View file @
3b2350b1
...
@@ -3,7 +3,7 @@ object PreferencesDlg: TPreferencesDlg
...
@@ -3,7 +3,7 @@ object PreferencesDlg: TPreferencesDlg
Left = 310
Left = 310
Top = 125
Top = 125
Width = 458
Width = 458
Height = 5
94
Height = 5
88
Anchors = [akTop, akRight]
Anchors = [akTop, akRight]
Caption = 'Preferences'
Caption = 'Preferences'
Color = clBtnFace
Color = clBtnFace
...
@@ -252,17 +252,17 @@ object PreferencesDlg: TPreferencesDlg
...
@@ -252,17 +252,17 @@ object PreferencesDlg: TPreferencesDlg
Left = 8
Left = 8
Top = 8
Top = 8
Width = 433
Width = 433
Height = 51
1
Height = 51
2
Anchors = [akLeft, akTop, akRight, akBottom]
Anchors = [akLeft, akTop, akRight, akBottom]
MultiLine = True
MultiLine = True
TabOrder = 0
TabOrder = 0
end
end
object ButtonApply: TButton
object ButtonApply: TButton
Tag = 3
Tag = 3
Left = 2
66
Left = 2
84
Top = 5
30
Top = 5
28
Width =
82
Width =
75
Height = 2
5
Height = 2
3
Anchors = [akRight, akBottom]
Anchors = [akRight, akBottom]
Caption = 'Apply'
Caption = 'Apply'
TabOrder = 3
TabOrder = 3
...
@@ -270,10 +270,10 @@ object PreferencesDlg: TPreferencesDlg
...
@@ -270,10 +270,10 @@ object PreferencesDlg: TPreferencesDlg
end
end
object ButtonSave: TButton
object ButtonSave: TButton
Tag = 3
Tag = 3
Left = 3
59
Left = 3
67
Top = 5
30
Top = 5
28
Width =
82
Width =
75
Height = 2
5
Height = 2
3
Anchors = [akRight, akBottom]
Anchors = [akRight, akBottom]
Caption = 'Save'
Caption = 'Save'
TabOrder = 4
TabOrder = 4
...
@@ -281,10 +281,10 @@ object PreferencesDlg: TPreferencesDlg
...
@@ -281,10 +281,10 @@ object PreferencesDlg: TPreferencesDlg
end
end
object ButtonOK: TButton
object ButtonOK: TButton
Tag = 3
Tag = 3
Left =
81
Left =
118
Top = 5
30
Top = 5
28
Width =
82
Width =
75
Height = 2
5
Height = 2
3
Anchors = [akRight, akBottom]
Anchors = [akRight, akBottom]
Caption = 'OK'
Caption = 'OK'
Default = True
Default = True
...
@@ -294,10 +294,10 @@ object PreferencesDlg: TPreferencesDlg
...
@@ -294,10 +294,10 @@ object PreferencesDlg: TPreferencesDlg
end
end
object ButtonCancel: TButton
object ButtonCancel: TButton
Tag = 3
Tag = 3
Left =
174
Left =
201
Top = 5
30
Top = 5
28
Width =
82
Width =
75
Height = 2
5
Height = 2
3
Anchors = [akRight, akBottom]
Anchors = [akRight, akBottom]
Cancel = True
Cancel = True
Caption = 'Cancel'
Caption = 'Cancel'
...
...
modules/gui/win32/sout.dfm
View file @
3b2350b1
...
@@ -2,8 +2,8 @@ object SoutDlg: TSoutDlg
...
@@ -2,8 +2,8 @@ object SoutDlg: TSoutDlg
Tag = 3
Tag = 3
Left = 454
Left = 454
Top = 369
Top = 369
Width = 39
4
Width = 39
2
Height = 2
38
Height = 2
44
Caption = 'Stream output'
Caption = 'Stream output'
Color = clBtnFace
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Charset = DEFAULT_CHARSET
...
@@ -18,14 +18,14 @@ object SoutDlg: TSoutDlg
...
@@ -18,14 +18,14 @@ object SoutDlg: TSoutDlg
Tag = 3
Tag = 3
Left = 8
Left = 8
Top = 8
Top = 8
Width = 36
9
Width = 36
8
Height = 16
1
Height = 16
8
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Caption = 'Stream output MRL (Media Resource Locator)'
Caption = 'Stream output MRL (Media Resource Locator)'
TabOrder = 0
TabOrder = 0
object LabelPort: TLabel
object LabelPort: TLabel
Tag = 3
Tag = 3
Left = 26
4
Left = 26
3
Top = 98
Top = 98
Width = 22
Width = 22
Height = 13
Height = 13
...
@@ -45,7 +45,7 @@ object SoutDlg: TSoutDlg
...
@@ -45,7 +45,7 @@ object SoutDlg: TSoutDlg
object EditMrl: TEdit
object EditMrl: TEdit
Left = 16
Left = 16
Top = 24
Top = 24
Width = 33
7
Width = 33
6
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
TabOrder = 0
...
@@ -92,7 +92,7 @@ object SoutDlg: TSoutDlg
...
@@ -92,7 +92,7 @@ object SoutDlg: TSoutDlg
end
end
object ButtonBrowse: TButton
object ButtonBrowse: TButton
Tag = 3
Tag = 3
Left = 27
8
Left = 27
7
Top = 60
Top = 60
Width = 75
Width = 75
Height = 25
Height = 25
...
@@ -104,14 +104,14 @@ object SoutDlg: TSoutDlg
...
@@ -104,14 +104,14 @@ object SoutDlg: TSoutDlg
object EditFile: TEdit
object EditFile: TEdit
Left = 96
Left = 96
Top = 62
Top = 62
Width = 17
7
Width = 17
6
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
TabOrder = 2
OnChange = CustomEditChange
OnChange = CustomEditChange
end
end
object SpinEditPort: TCSpinEdit
object SpinEditPort: TCSpinEdit
Left = 29
6
Left = 29
5
Top = 93
Top = 93
Width = 57
Width = 57
Height = 22
Height = 22
...
@@ -128,7 +128,7 @@ object SoutDlg: TSoutDlg
...
@@ -128,7 +128,7 @@ object SoutDlg: TSoutDlg
object EditAddress: TEdit
object EditAddress: TEdit
Left = 144
Left = 144
Top = 94
Top = 94
Width = 11
3
Width = 11
2
Height = 21
Height = 21
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
Enabled = False
Enabled = False
...
@@ -139,7 +139,7 @@ object SoutDlg: TSoutDlg
...
@@ -139,7 +139,7 @@ object SoutDlg: TSoutDlg
object PanelMux: TPanel
object PanelMux: TPanel
Left = 184
Left = 184
Top = 124
Top = 124
Width = 8
9
Width = 8
8
Height = 25
Height = 25
Anchors = [akLeft, akTop, akRight]
Anchors = [akLeft, akTop, akRight]
TabOrder = 6
TabOrder = 6
...
@@ -156,7 +156,7 @@ object SoutDlg: TSoutDlg
...
@@ -156,7 +156,7 @@ object SoutDlg: TSoutDlg
end
end
object RadioButtonTS: TRadioButton
object RadioButtonTS: TRadioButton
Tag = 3
Tag = 3
Left =
40
Left =
39
Top = 4
Top = 4
Width = 41
Width = 41
Height = 17
Height = 17
...
@@ -171,10 +171,10 @@ object SoutDlg: TSoutDlg
...
@@ -171,10 +171,10 @@ object SoutDlg: TSoutDlg
end
end
object ButtonOK: TButton
object ButtonOK: TButton
Tag = 3
Tag = 3
Left =
56
Left =
218
Top = 1
76
Top = 1
84
Width =
97
Width =
75
Height = 2
5
Height = 2
3
Caption = 'OK'
Caption = 'OK'
Default = True
Default = True
ModalResult = 1
ModalResult = 1
...
@@ -183,10 +183,10 @@ object SoutDlg: TSoutDlg
...
@@ -183,10 +183,10 @@ object SoutDlg: TSoutDlg
end
end
object ButtonCancel: TButton
object ButtonCancel: TButton
Tag = 3
Tag = 3
Left =
232
Left =
301
Top = 1
76
Top = 1
84
Width =
97
Width =
75
Height = 2
5
Height = 2
3
Cancel = True
Cancel = True
Caption = 'Cancel'
Caption = 'Cancel'
ModalResult = 2
ModalResult = 2
...
...
modules/gui/win32/subtitles.dfm
View file @
3b2350b1
...
@@ -3,7 +3,7 @@ object SubtitlesDlg: TSubtitlesDlg
...
@@ -3,7 +3,7 @@ object SubtitlesDlg: TSubtitlesDlg
Left = 520
Left = 520
Top = 185
Top = 185
Width = 338
Width = 338
Height = 17
3
Height = 17
2
Caption = 'Add subtitles'
Caption = 'Add subtitles'
Color = clBtnFace
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Charset = DEFAULT_CHARSET
...
@@ -85,10 +85,10 @@ object SubtitlesDlg: TSubtitlesDlg
...
@@ -85,10 +85,10 @@ object SubtitlesDlg: TSubtitlesDlg
end
end
object ButtonOK: TButton
object ButtonOK: TButton
Tag = 3
Tag = 3
Left =
39
Left =
164
Top = 112
Top = 112
Width =
98
Width =
75
Height = 2
5
Height = 2
3
Caption = 'OK'
Caption = 'OK'
Default = True
Default = True
ModalResult = 1
ModalResult = 1
...
@@ -97,10 +97,10 @@ object SubtitlesDlg: TSubtitlesDlg
...
@@ -97,10 +97,10 @@ object SubtitlesDlg: TSubtitlesDlg
end
end
object ButtonCancel: TButton
object ButtonCancel: TButton
Tag = 3
Tag = 3
Left =
192
Left =
247
Top = 112
Top = 112
Width =
98
Width =
75
Height = 2
5
Height = 2
3
Cancel = True
Cancel = True
Caption = 'Cancel'
Caption = 'Cancel'
ModalResult = 2
ModalResult = 2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment