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
5ccbc289
Commit
5ccbc289
authored
Sep 05, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4 - Main controls, small modification and implementation of fullscreen().
parent
3b9f2188
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
21 deletions
+29
-21
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+27
-19
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/components/interface_widgets.hpp
+2
-2
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
5ccbc289
...
@@ -229,7 +229,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
...
@@ -229,7 +229,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
ABButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
ABButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
ABButton
->
setIconSize
(
QSize
(
20
,
20
)
);
ABButton
->
setIconSize
(
QSize
(
20
,
20
)
);
advLayout
->
addWidget
(
ABButton
);
advLayout
->
addWidget
(
ABButton
);
BUTTON_SET_ACT
(
ABButton
,
"AB"
,
qtr
(
"A to B"
),
normal
()
);
BUTTON_SET_ACT
(
ABButton
,
"AB"
,
qtr
(
"A to B"
),
fromAtoB
()
);
snapshotButton
=
new
QPushButton
(
"S"
);
snapshotButton
=
new
QPushButton
(
"S"
);
snapshotButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
snapshotButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
...
@@ -287,23 +287,20 @@ void AdvControlsWidget::snapshot()
...
@@ -287,23 +287,20 @@ void AdvControlsWidget::snapshot()
{
{
}
}
void
AdvControlsWidget
::
fullscreen
()
{
}
void
AdvControlsWidget
::
frame
(){}
void
AdvControlsWidget
::
frame
(){}
void
AdvControlsWidget
::
fromAtoB
(){}
void
AdvControlsWidget
::
record
(){}
void
AdvControlsWidget
::
record
(){}
/*****************************
/*****************************
* DA Control Widget !
* DA Control Widget !
*****************************/
*****************************/
ControlsWidget
::
ControlsWidget
(
intf_thread_t
*
_p_i
,
bool
b_advControls
)
:
ControlsWidget
::
ControlsWidget
(
intf_thread_t
*
_p_i
,
bool
b_advControls
)
:
QFrame
(
NULL
),
p_intf
(
_p_i
)
QFrame
(
NULL
),
p_intf
(
_p_i
)
{
{
//QSize size( 500, 200 );
//QSize size( 500, 200 );
//resize( size );
//resize( size );
controlLayout
=
new
QGridLayout
(
this
);
controlLayout
=
new
QGridLayout
(
this
);
#if DEBUG_COLOR
#if DEBUG_COLOR
QPalette
palette2
;
QPalette
palette2
;
palette2
.
setColor
(
this
->
backgroundRole
(),
Qt
::
magenta
);
palette2
.
setColor
(
this
->
backgroundRole
(),
Qt
::
magenta
);
...
@@ -312,7 +309,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -312,7 +309,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
/** The main Slider **/
/** The main Slider **/
slider
=
new
InputSlider
(
Qt
::
Horizontal
,
NULL
);
slider
=
new
InputSlider
(
Qt
::
Horizontal
,
NULL
);
controlLayout
->
addWidget
(
slider
,
0
,
1
,
1
,
1
5
);
controlLayout
->
addWidget
(
slider
,
0
,
1
,
1
,
1
6
);
/* Update the position when the IM has changed */
/* Update the position when the IM has changed */
CONNECT
(
THEMIM
->
getIM
(),
positionUpdated
(
float
,
int
,
int
),
CONNECT
(
THEMIM
->
getIM
(),
positionUpdated
(
float
,
int
,
int
),
slider
,
setPosition
(
float
,
int
,
int
)
);
slider
,
setPosition
(
float
,
int
,
int
)
);
...
@@ -328,7 +325,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -328,7 +325,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
fasterButton
=
new
QPushButton
(
"F"
);
fasterButton
=
new
QPushButton
(
"F"
);
BUTTON_SET_ACT
(
fasterButton
,
"F"
,
qtr
(
"Faster"
),
faster
()
);
BUTTON_SET_ACT
(
fasterButton
,
"F"
,
qtr
(
"Faster"
),
faster
()
);
controlLayout
->
addWidget
(
fasterButton
,
0
,
1
6
);
controlLayout
->
addWidget
(
fasterButton
,
0
,
1
7
);
fasterButton
->
setMaximumSize
(
QSize
(
26
,
20
)
);
fasterButton
->
setMaximumSize
(
QSize
(
26
,
20
)
);
/** TODO: Insert here the AdvControls Widget
/** TODO: Insert here the AdvControls Widget
...
@@ -361,7 +358,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -361,7 +358,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
setupSmallButton
(
nextSectionButton
);
setupSmallButton
(
nextSectionButton
);
discLayout
->
addWidget
(
nextSectionButton
);
discLayout
->
addWidget
(
nextSectionButton
);
controlLayout
->
addWidget
(
discFrame
,
1
,
10
,
2
,
4
,
Qt
::
AlignBottom
);
controlLayout
->
addWidget
(
discFrame
,
1
,
10
,
2
,
3
,
Qt
::
AlignBottom
);
BUTTON_SET_IMG
(
prevSectionButton
,
""
,
previous
.
png
,
""
);
BUTTON_SET_IMG
(
prevSectionButton
,
""
,
previous
.
png
,
""
);
BUTTON_SET_IMG
(
nextSectionButton
,
""
,
next
.
png
,
""
);
BUTTON_SET_IMG
(
nextSectionButton
,
""
,
next
.
png
,
""
);
...
@@ -397,6 +394,9 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -397,6 +394,9 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
playButton
->
setIconSize
(
QSize
(
30
,
30
)
);
playButton
->
setIconSize
(
QSize
(
30
,
30
)
);
controlLayout
->
addWidget
(
playButton
,
2
,
0
,
2
,
2
,
Qt
::
AlignBottom
);
controlLayout
->
addWidget
(
playButton
,
2
,
0
,
2
,
2
,
Qt
::
AlignBottom
);
controlLayout
->
setColumnMinimumWidth
(
2
,
20
);
controlLayout
->
setColumnStretch
(
2
,
0
);
/** Prev + Stop + Next Block **/
/** Prev + Stop + Next Block **/
QHBoxLayout
*
controlButLayout
=
new
QHBoxLayout
;
QHBoxLayout
*
controlButLayout
=
new
QHBoxLayout
;
...
@@ -432,6 +432,9 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -432,6 +432,9 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
BUTTON_SET_ACT_I
(
nextButton
,
""
,
next
.
png
,
qtr
(
"Next"
),
next
()
);
BUTTON_SET_ACT_I
(
nextButton
,
""
,
next
.
png
,
qtr
(
"Next"
),
next
()
);
BUTTON_SET_ACT_I
(
stopButton
,
""
,
stop
.
png
,
qtr
(
"Stop"
),
stop
()
);
BUTTON_SET_ACT_I
(
stopButton
,
""
,
stop
.
png
,
qtr
(
"Stop"
),
stop
()
);
controlLayout
->
setColumnStretch
(
8
,
10
);
controlLayout
->
setColumnStretch
(
9
,
0
);
/*
/*
* Other first Line buttons
* Other first Line buttons
* Might need to be inside a frame to avoid a few resizing pb
* Might need to be inside a frame to avoid a few resizing pb
...
@@ -462,6 +465,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -462,6 +465,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
prefs
()
);
prefs
()
);
setupSmallButton
(
prefsButton
);
setupSmallButton
(
prefsButton
);
controlLayout
->
addWidget
(
prefsButton
,
3
,
13
);
controlLayout
->
addWidget
(
prefsButton
,
3
,
13
);
controlLayout
->
setColumnStretch
(
14
,
5
);
/* Volume */
/* Volume */
VolumeClickHandler
*
h
=
new
VolumeClickHandler
(
p_intf
,
this
);
VolumeClickHandler
*
h
=
new
VolumeClickHandler
(
p_intf
,
this
);
...
@@ -486,8 +491,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
...
@@ -486,8 +491,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
volumeSlider
->
setMaximum
(
100
);
volumeSlider
->
setMaximum
(
100
);
volumeSlider
->
setFocusPolicy
(
Qt
::
NoFocus
);
volumeSlider
->
setFocusPolicy
(
Qt
::
NoFocus
);
controlLayout
->
addWidget
(
volMuteLabel
,
3
,
1
4
);
controlLayout
->
addWidget
(
volMuteLabel
,
3
,
1
5
);
controlLayout
->
addWidget
(
volumeSlider
,
3
,
1
5
,
1
,
2
);
controlLayout
->
addWidget
(
volumeSlider
,
3
,
1
6
,
1
,
2
);
/* Volume control connection */
/* Volume control connection */
CONNECT
(
volumeSlider
,
valueChanged
(
int
),
this
,
updateVolume
(
int
)
);
CONNECT
(
volumeSlider
,
valueChanged
(
int
),
this
,
updateVolume
(
int
)
);
...
@@ -503,10 +508,11 @@ void ControlsWidget::stop()
...
@@ -503,10 +508,11 @@ void ControlsWidget::stop()
void
ControlsWidget
::
play
()
void
ControlsWidget
::
play
()
{
{
if
(
THEPL
)
msg_Dbg
(
p_intf
,
"Nothing to play yet, open a file %i"
,
THEPL
->
items
.
i_size
);
if
(
playlist_IsEmpty
(
THEPL
)
)
if
(
playlist_IsEmpty
(
THEPL
)
)
{
{
/* The playlist is empty, open a file requester */
/* The playlist is empty, open a file requester */
msg_Dbg
(
p_intf
,
"Nothing to play yet, open a file"
);
THEDP
->
openFileDialog
();
THEDP
->
openFileDialog
();
setStatus
(
0
);
setStatus
(
0
);
return
;
return
;
...
@@ -537,16 +543,12 @@ void ControlsWidget::setNavigation( int navigation )
...
@@ -537,16 +543,12 @@ void ControlsWidget::setNavigation( int navigation )
{
{
discFrame
->
hide
();
discFrame
->
hide
();
}
else
if
(
navigation
==
1
)
{
}
else
if
(
navigation
==
1
)
{
prevSectionButton
->
show
();
prevSectionButton
->
setToolTip
(
qfu
(
HELP_PCH
)
);
prevSectionButton
->
setToolTip
(
qfu
(
HELP_PCH
)
);
nextSectionButton
->
show
();
nextSectionButton
->
setToolTip
(
qfu
(
HELP_NCH
)
);
nextSectionButton
->
setToolTip
(
qfu
(
HELP_NCH
)
);
menuButton
->
show
();
menuButton
->
show
();
discFrame
->
show
();
discFrame
->
show
();
}
else
{
}
else
{
prevSectionButton
->
show
();
prevSectionButton
->
setToolTip
(
qfu
(
HELP_PCH
)
);
prevSectionButton
->
setToolTip
(
qfu
(
HELP_PCH
)
);
nextSectionButton
->
show
();
nextSectionButton
->
setToolTip
(
qfu
(
HELP_NCH
)
);
nextSectionButton
->
setToolTip
(
qfu
(
HELP_NCH
)
);
menuButton
->
hide
();
menuButton
->
hide
();
discFrame
->
show
();
discFrame
->
show
();
...
@@ -566,6 +568,7 @@ void ControlsWidget::updateVolume( int sliderVolume )
...
@@ -566,6 +568,7 @@ void ControlsWidget::updateVolume( int sliderVolume )
void
ControlsWidget
::
updateOnTimer
()
void
ControlsWidget
::
updateOnTimer
()
{
{
/* Audio part */
audio_volume_t
i_volume
;
audio_volume_t
i_volume
;
aout_VolumeGet
(
p_intf
,
&
i_volume
);
aout_VolumeGet
(
p_intf
,
&
i_volume
);
i_volume
=
(
i_volume
*
200
)
/
AOUT_VOLUME_MAX
;
i_volume
=
(
i_volume
*
200
)
/
AOUT_VOLUME_MAX
;
...
@@ -578,6 +581,7 @@ void ControlsWidget::updateOnTimer()
...
@@ -578,6 +581,7 @@ void ControlsWidget::updateOnTimer()
b_my_volume
=
false
;
b_my_volume
=
false
;
}
}
/* Activate the interface buttons according to the presence of the input */
enableInput
(
THEMIM
->
getIM
()
->
hasInput
()
);
enableInput
(
THEMIM
->
getIM
()
->
hasInput
()
);
enableVideo
(
THEMIM
->
getIM
()
->
hasVideo
()
);
enableVideo
(
THEMIM
->
getIM
()
->
hasVideo
()
);
}
}
...
@@ -605,7 +609,11 @@ void ControlsWidget::setStatus( int status )
...
@@ -605,7 +609,11 @@ void ControlsWidget::setStatus( int status )
*/
*/
void
ControlsWidget
::
fullscreen
()
void
ControlsWidget
::
fullscreen
()
{
{
msg_Dbg
(
p_intf
,
"Not implemented yet"
);
vlc_object_t
*
p_vout
=
(
vlc_object_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_CHILD
);
if
(
p_vout
)
var_SetBool
(
p_vout
,
"fullscreen"
,
VLC_TRUE
);
//msg_Dbg( p_intf, "Not implemented yet" );
}
}
void
ControlsWidget
::
extSettings
()
void
ControlsWidget
::
extSettings
()
...
@@ -638,7 +646,7 @@ void ControlsWidget::enableInput( bool enable )
...
@@ -638,7 +646,7 @@ void ControlsWidget::enableInput( bool enable )
}
}
void
ControlsWidget
::
enableVideo
(
bool
enable
)
void
ControlsWidget
::
enableVideo
(
bool
enable
)
{
{
// TODO Later make the fullscreenButton toggle Visualisation and so on.
// TODO Later make the fullscreenButton toggle Visualisation and so on.
fullscreenButton
->
setEnabled
(
enable
);
fullscreenButton
->
setEnabled
(
enable
);
...
@@ -659,7 +667,7 @@ void ControlsWidget::toggleAdvanced()
...
@@ -659,7 +667,7 @@ void ControlsWidget::toggleAdvanced()
b_advancedVisible
=
false
;
b_advancedVisible
=
false
;
}
}
//FIXME connect this one :D
//FIXME connect this one :D
emit
advancedControls
Show
ed
(
b_advancedVisible
);
// doComponentsUpdate();
emit
advancedControls
Toggl
ed
(
b_advancedVisible
);
// doComponentsUpdate();
}
}
/**********************************************************************
/**********************************************************************
...
...
modules/gui/qt4/components/interface_widgets.hpp
View file @
5ccbc289
...
@@ -119,8 +119,8 @@ private:
...
@@ -119,8 +119,8 @@ private:
private
slots
:
private
slots
:
void
normal
();
void
normal
();
void
snapshot
();
void
snapshot
();
void
fullscreen
();
void
frame
();
void
frame
();
void
fromAtoB
();
void
record
();
void
record
();
};
};
...
@@ -170,7 +170,7 @@ private slots:
...
@@ -170,7 +170,7 @@ private slots:
void
slower
();
void
slower
();
void
toggleAdvanced
();
void
toggleAdvanced
();
signals:
signals:
void
advancedControls
Show
ed
(
bool
);
void
advancedControls
Toggl
ed
(
bool
);
};
};
class
VolumeClickHandler
:
public
QObject
class
VolumeClickHandler
:
public
QObject
...
...
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