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
0469e383
Commit
0469e383
authored
Mar 05, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: bgWidget, add the margin to trigger the hide of the label when resizing
parent
88a0b150
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+3
-2
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
0469e383
...
@@ -282,6 +282,7 @@ QSize VideoWidget::sizeHint() const
...
@@ -282,6 +282,7 @@ QSize VideoWidget::sizeHint() const
#define ICON_SIZE 128
#define ICON_SIZE 128
#define MAX_BG_SIZE 400
#define MAX_BG_SIZE 400
#define MIN_BG_SIZE 128
#define MIN_BG_SIZE 128
#define MARGIN 5
BackgroundWidget
::
BackgroundWidget
(
intf_thread_t
*
_p_i
)
BackgroundWidget
::
BackgroundWidget
(
intf_thread_t
*
_p_i
)
:
QWidget
(
NULL
),
p_intf
(
_p_i
)
:
QWidget
(
NULL
),
p_intf
(
_p_i
)
...
@@ -298,7 +299,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
...
@@ -298,7 +299,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
/* A cone in the middle */
/* A cone in the middle */
label
=
new
QLabel
;
label
=
new
QLabel
;
label
->
setMargin
(
5
);
label
->
setMargin
(
MARGIN
);
label
->
setAlignment
(
Qt
::
AlignCenter
);
label
->
setAlignment
(
Qt
::
AlignCenter
);
/* Init the cone art */
/* Init the cone art */
...
@@ -317,7 +318,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
...
@@ -317,7 +318,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
void
BackgroundWidget
::
resizeEvent
(
QResizeEvent
*
event
)
void
BackgroundWidget
::
resizeEvent
(
QResizeEvent
*
event
)
{
{
if
(
event
->
size
().
height
()
<=
MIN_BG_SIZE
)
if
(
event
->
size
().
height
()
<=
MIN_BG_SIZE
+
MARGIN
*
2
+
2
)
label
->
hide
();
label
->
hide
();
else
else
label
->
show
();
label
->
show
();
...
...
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