Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
349cbdc6
Commit
349cbdc6
authored
Sep 29, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - add a record icon, might be unused.
parent
d4366aa1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+1
-0
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+4
-3
modules/gui/qt4/pixmaps/vlc_record_16px.png
modules/gui/qt4/pixmaps/vlc_record_16px.png
+0
-0
modules/gui/qt4/res.qrc
modules/gui/qt4/res.qrc
+1
-0
No files found.
modules/gui/qt4/Modules.am
View file @
349cbdc6
...
...
@@ -232,6 +232,7 @@ EXTRA_DIST += \
pixmaps/vlc_info_16px.png \
pixmaps/vlc_previous_16px.png \
pixmaps/vlc_next_16px.png \
pixmaps/vlc_record_16px.png \
pixmaps/vlc_playlist_add.png \
pixmaps/vlc_playlist_repeat_off.png \
pixmaps/vlc_playlist_repeat_all.png \
...
...
modules/gui/qt4/components/interface_widgets.cpp
View file @
349cbdc6
...
...
@@ -250,7 +250,8 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
recordButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
recordButton
->
setIconSize
(
QSize
(
20
,
20
)
);
advLayout
->
addWidget
(
recordButton
);
BUTTON_SET_ACT
(
recordButton
,
"R"
,
qtr
(
"Record"
),
record
()
);
BUTTON_SET_ACT_I
(
recordButton
,
""
,
vlc_record_16px
.
png
,
qtr
(
"Record"
),
record
()
);
normalButton
=
new
QPushButton
(
"N"
);
normalButton
->
setMaximumSize
(
QSize
(
26
,
26
)
);
...
...
@@ -393,7 +394,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
playButton
->
setIconSize
(
QSize
(
30
,
30
)
);
controlLayout
->
addWidget
(
playButton
,
2
,
0
,
2
,
2
,
Qt
::
AlignBottom
);
controlLayout
->
setColumnMinimumWidth
(
2
,
20
);
controlLayout
->
setColumnStretch
(
2
,
0
);
...
...
@@ -433,7 +434,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
controlLayout
->
setColumnStretch
(
8
,
10
);
controlLayout
->
setColumnStretch
(
9
,
0
);
/*
* Other first Line buttons
* Might need to be inside a frame to avoid a few resizing pb
...
...
modules/gui/qt4/pixmaps/vlc_record_16px.png
0 → 100644
View file @
349cbdc6
688 Bytes
modules/gui/qt4/res.qrc
View file @
349cbdc6
...
...
@@ -37,6 +37,7 @@
<file>
pixmaps/vlc_folder-grey_16px.png
</file>
<file>
pixmaps/vlc_capture-card_16px.png
</file>
<file>
pixmaps/vlc_preferences_16px.png
</file>
<file>
pixmaps/vlc_record_16px.png
</file>
<file>
pixmaps/vlc_playlist_16px.png
</file>
<file>
pixmaps/vlc_settings_16px.png
</file>
<file>
pixmaps/vlc_stream_16px.png
</file>
...
...
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