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
69d66471
Commit
69d66471
authored
Apr 06, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/*: changed slider aspect and moved the time display into the statusbar.
parent
b0e050e4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
21 deletions
+26
-21
modules/gui/wxwindows/bookmarks.cpp
modules/gui/wxwindows/bookmarks.cpp
+1
-0
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/interface.cpp
+14
-17
modules/gui/wxwindows/timer.cpp
modules/gui/wxwindows/timer.cpp
+11
-4
No files found.
modules/gui/wxwindows/bookmarks.cpp
View file @
69d66471
...
@@ -112,6 +112,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf, wxWindow *p_parent )
...
@@ -112,6 +112,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf, wxWindow *p_parent )
{
{
/* Initializations */
/* Initializations */
p_intf
=
_p_intf
;
p_intf
=
_p_intf
;
SetIcon
(
*
p_intf
->
p_sys
->
p_icon
);
wxPanel
*
main_panel
=
new
wxPanel
(
this
,
-
1
);
wxPanel
*
main_panel
=
new
wxPanel
(
this
,
-
1
);
wxBoxSizer
*
main_sizer
=
new
wxBoxSizer
(
wxHORIZONTAL
);
wxBoxSizer
*
main_sizer
=
new
wxBoxSizer
(
wxHORIZONTAL
);
...
...
modules/gui/wxwindows/interface.cpp
View file @
69d66471
...
@@ -495,24 +495,15 @@ void Interface::CreateOurSlider()
...
@@ -495,24 +495,15 @@ void Interface::CreateOurSlider()
/* Create a new frame and sizer containing the slider */
/* Create a new frame and sizer containing the slider */
slider_frame
=
new
wxPanel
(
this
,
-
1
,
wxDefaultPosition
,
wxDefaultSize
);
slider_frame
=
new
wxPanel
(
this
,
-
1
,
wxDefaultPosition
,
wxDefaultSize
);
slider_frame
->
SetAutoLayout
(
TRUE
);
slider_frame
->
SetAutoLayout
(
TRUE
);
wxBoxSizer
*
frame_sizer
=
wxBoxSizer
*
frame_sizer
=
new
wxBoxSizer
(
wxHORIZONTAL
);
new
wxBoxSizer
(
wxHORIZONTAL
);
//frame_sizer->SetMinSize( -1, 50 );
/* Create static box to surround the slider */
slider_box
=
new
wxStaticBox
(
slider_frame
,
-
1
,
wxT
(
""
)
);
/* Create sizer for slider frame */
wxStaticBoxSizer
*
slider_sizer
=
new
wxStaticBoxSizer
(
slider_box
,
wxHORIZONTAL
);
slider_sizer
->
SetMinSize
(
-
1
,
50
);
/* Create slider */
/* Create slider */
slider
=
new
wxSlider
(
slider_frame
,
SliderScroll_Event
,
0
,
0
,
slider
=
new
wxSlider
(
slider_frame
,
SliderScroll_Event
,
0
,
0
,
SLIDER_MAX_POS
,
wxDefaultPosition
,
wxDefaultSize
);
SLIDER_MAX_POS
,
wxDefaultPosition
,
wxDefaultSize
);
slider_sizer
->
Add
(
slider
,
1
,
wxEXPAND
|
wxALL
,
5
);
/* Add everything to the frame */
/* Add everything to the frame */
frame_sizer
->
Add
(
slider
_sizer
,
1
,
wxEXPAND
|
wxBOTTOM
,
5
);
frame_sizer
->
Add
(
slider
,
1
,
wxEXPAND
|
wxALL
,
5
);
slider_frame
->
SetSizer
(
frame_sizer
);
slider_frame
->
SetSizer
(
frame_sizer
);
frame_sizer
->
Layout
();
frame_sizer
->
Layout
();
frame_sizer
->
SetSizeHints
(
slider_frame
);
frame_sizer
->
SetSizeHints
(
slider_frame
);
...
@@ -1221,13 +1212,19 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
...
@@ -1221,13 +1212,19 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
{
{
/* Update stream date */
/* Update stream date */
#define p_area p_intf->p_sys->p_input->stream.p_selected_area
#define p_area p_intf->p_sys->p_input->stream.p_selected_area
char
psz_time
[
MSTRTIME_MAX_SIZE
];
char
psz_time
[
MSTRTIME_MAX_SIZE
],
psz_total
[
MSTRTIME_MAX_SIZE
];
mtime_t
i_seconds
;
vlc_value_t
val
;
var_Get
(
p_intf
->
p_sys
->
p_input
,
"length"
,
&
val
);
i_seconds
=
val
.
i_time
/
1000000
;
secstotimestr
(
psz_total
,
i_seconds
);
s
lider_box
->
SetLabel
(
s
tatusbar
->
SetStatusText
(
wxU
(
input_OffsetToTime
(
p_intf
->
p_sys
->
p_input
,
wxU
(
input_OffsetToTime
(
p_intf
->
p_sys
->
p_input
,
psz_time
,
psz_time
,
p_area
->
i_size
*
event
.
GetPosition
()
p_area
->
i_size
*
event
.
GetPosition
()
/
SLIDER_MAX_POS
))
+
wxString
(
wxT
(
" / "
))
+
/
SLIDER_MAX_POS
))
);
wxU
(
psz_total
),
0
);
#undef p_area
#undef p_area
}
}
}
}
...
...
modules/gui/wxwindows/timer.cpp
View file @
69d66471
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
* timer.cpp : wxWindows plugin for vlc
* timer.cpp : wxWindows plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2003 VideoLAN
* Copyright (C) 2000-2003 VideoLAN
* $Id
: timer.cpp,v 1.36 2003/12/03 13:27:51 rocky Exp
$
* $Id$
*
*
* Authors: Gildas Bazin <gbazin@
netcourrier.com
>
* Authors: Gildas Bazin <gbazin@
videolan.org
>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* it under the terms of the GNU General Public License as published by
...
@@ -147,6 +147,7 @@ void Timer::Notify()
...
@@ -147,6 +147,7 @@ void Timer::Notify()
i_old_playing_status
=
PAUSE_S
;
i_old_playing_status
=
PAUSE_S
;
}
}
p_main_interface
->
statusbar
->
SetStatusText
(
wxT
(
""
),
0
);
p_main_interface
->
statusbar
->
SetStatusText
(
wxT
(
""
),
2
);
p_main_interface
->
statusbar
->
SetStatusText
(
wxT
(
""
),
2
);
vlc_object_release
(
p_intf
->
p_sys
->
p_input
);
vlc_object_release
(
p_intf
->
p_sys
->
p_input
);
...
@@ -185,6 +186,7 @@ void Timer::Notify()
...
@@ -185,6 +186,7 @@ void Timer::Notify()
{
{
vlc_value_t
pos
;
vlc_value_t
pos
;
char
psz_time
[
MSTRTIME_MAX_SIZE
];
char
psz_time
[
MSTRTIME_MAX_SIZE
];
char
psz_total
[
MSTRTIME_MAX_SIZE
];
vlc_value_t
time
;
vlc_value_t
time
;
mtime_t
i_seconds
;
mtime_t
i_seconds
;
...
@@ -200,10 +202,15 @@ void Timer::Notify()
...
@@ -200,10 +202,15 @@ void Timer::Notify()
var_Get
(
p_intf
->
p_sys
->
p_input
,
"time"
,
&
time
);
var_Get
(
p_intf
->
p_sys
->
p_input
,
"time"
,
&
time
);
i_seconds
=
time
.
i_time
/
1000000
;
i_seconds
=
time
.
i_time
/
1000000
;
secstotimestr
(
psz_time
,
i_seconds
);
secstotimestr
(
psz_time
,
i_seconds
);
p_main_interface
->
slider_box
->
SetLabel
(
wxU
(
psz_time
)
);
var_Get
(
p_intf
->
p_sys
->
p_input
,
"length"
,
&
time
);
i_seconds
=
time
.
i_time
/
1000000
;
secstotimestr
(
psz_total
,
i_seconds
);
p_main_interface
->
statusbar
->
SetStatusText
(
wxU
(
psz_time
)
+
wxString
(
wxT
(
" / "
))
+
wxU
(
psz_total
),
0
);
}
}
}
}
}
}
...
...
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