Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3248746c
Commit
3248746c
authored
Jul 09, 2002
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/win32/about.*: Added the version number in the About box
parent
fbb7ae73
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
plugins/win32/about.cpp
plugins/win32/about.cpp
+1
-0
plugins/win32/about.dfm
plugins/win32/about.dfm
+7
-0
plugins/win32/about.h
plugins/win32/about.h
+1
-0
plugins/win32/mainframe.cpp
plugins/win32/mainframe.cpp
+2
-1
No files found.
plugins/win32/about.cpp
View file @
3248746c
...
@@ -40,6 +40,7 @@ __fastcall TAboutDlg::TAboutDlg( TComponent* Owner )
...
@@ -40,6 +40,7 @@ __fastcall TAboutDlg::TAboutDlg( TComponent* Owner )
:
TForm
(
Owner
)
:
TForm
(
Owner
)
{
{
Image1
->
Picture
->
Icon
=
p_intfGlobal
->
p_sys
->
p_window
->
Icon
;
Image1
->
Picture
->
Icon
=
p_intfGlobal
->
p_sys
->
p_window
->
Icon
;
LabelVersion
->
Caption
=
"Version "
VLC_VERSION
;
}
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
...
...
plugins/win32/about.dfm
View file @
3248746c
...
@@ -296,6 +296,13 @@ object AboutDlg: TAboutDlg
...
@@ -296,6 +296,13 @@ object AboutDlg: TAboutDlg
Height = 13
Height = 13
Caption = 'http://www.videolan.org/'
Caption = 'http://www.videolan.org/'
end
end
object LabelVersion: TLabel
Left = 114
Top = 40
Width = 59
Height = 13
Caption = 'Version x.y.z'
end
object BitBtnOk: TBitBtn
object BitBtnOk: TBitBtn
Left = 64
Left = 64
Top = 178
Top = 178
...
...
plugins/win32/about.h
View file @
3248746c
...
@@ -41,6 +41,7 @@ __published: // IDE-managed Components
...
@@ -41,6 +41,7 @@ __published: // IDE-managed Components
TLabel
*
Label3
;
TLabel
*
Label3
;
TImage
*
Image1
;
TImage
*
Image1
;
TLabel
*
Label5
;
TLabel
*
Label5
;
TLabel
*
LabelVersion
;
private:
// User declarations
private:
// User declarations
public:
// User declarations
public:
// User declarations
__fastcall
TAboutDlg
(
TComponent
*
Owner
);
__fastcall
TAboutDlg
(
TComponent
*
Owner
);
...
...
plugins/win32/mainframe.cpp
View file @
3248746c
...
@@ -59,8 +59,9 @@ __fastcall TMainFrameDlg::TMainFrameDlg( TComponent* Owner )
...
@@ -59,8 +59,9 @@ __fastcall TMainFrameDlg::TMainFrameDlg( TComponent* Owner )
TrackBar
->
Max
=
SLIDER_MAX_VALUE
;
TrackBar
->
Max
=
SLIDER_MAX_VALUE
;
/* default height */
/* default height
and caption
*/
ClientHeight
=
37
+
ToolBar
->
Height
;
ClientHeight
=
37
+
ToolBar
->
Height
;
Caption
=
VOUT_TITLE
" (Win32 interface)"
;
StringListPref
=
new
TStringList
();
StringListPref
=
new
TStringList
();
}
}
...
...
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