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
23c4575c
Commit
23c4575c
authored
Jun 26, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Yet another icon for menus. Should be the last one.
parent
cf255cfb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+1
-0
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+10
-3
modules/gui/qt4/res.qrc
modules/gui/qt4/res.qrc
+1
-0
No files found.
modules/gui/qt4/Modules.am
View file @
23c4575c
...
@@ -193,6 +193,7 @@ EXTRA_DIST += \
...
@@ -193,6 +193,7 @@ EXTRA_DIST += \
pixmaps/vlc_network_16px.png \
pixmaps/vlc_network_16px.png \
pixmaps/vlc_stream_16px.png \
pixmaps/vlc_stream_16px.png \
pixmaps/vlc_quit_16px.png \
pixmaps/vlc_quit_16px.png \
pixmaps/vlc_disc_16px.png \
pixmaps/vlc_network_16px.png \
pixmaps/vlc_network_16px.png \
pixmaps/vlc_capture-card_16px.png \
pixmaps/vlc_capture-card_16px.png \
pixmaps/vlc_preferences_16px.png \
pixmaps/vlc_preferences_16px.png \
...
...
modules/gui/qt4/menus.cpp
View file @
23c4575c
...
@@ -218,7 +218,8 @@ QMenu *QVLCMenu::FileMenu()
...
@@ -218,7 +218,8 @@ QMenu *QVLCMenu::FileMenu()
":/pixmaps/vlc_folder-grey_16px.png"
,
openDirDialog
(),
"Ctrl+F"
);
":/pixmaps/vlc_folder-grey_16px.png"
,
openDirDialog
(),
"Ctrl+F"
);
#endif
/* WIN32 */
#endif
/* WIN32 */
DP_SADD
(
menu
,
qtr
(
"Open &Disc..."
),
""
,
""
,
openDiscDialog
(),
"Ctrl+D"
);
DP_SADD
(
menu
,
qtr
(
"Open &Disc..."
),
""
,
":/pixmaps/vlc_disc_16px.png"
,
openDiscDialog
(),
"Ctrl+D"
);
DP_SADD
(
menu
,
qtr
(
"Open &Network..."
),
""
,
DP_SADD
(
menu
,
qtr
(
"Open &Network..."
),
""
,
":/pixmaps/vlc_network_16px.png"
,
openNetDialog
(),
"Ctrl+N"
);
":/pixmaps/vlc_network_16px.png"
,
openNetDialog
(),
"Ctrl+N"
);
DP_SADD
(
menu
,
qtr
(
"Open &Capture Device..."
),
""
,
DP_SADD
(
menu
,
qtr
(
"Open &Capture Device..."
),
""
,
...
@@ -291,9 +292,15 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, MainInterface *mi,
...
@@ -291,9 +292,15 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, MainInterface *mi,
adv->setCheckable( true );
adv->setCheckable( true );
if( visual_selector_enabled ) adv->setChecked( true );
if( visual_selector_enabled ) adv->setChecked( true );
#endif
#endif
menu
->
addAction
(
qtr
(
"Playlist"
),
mi
,
SLOT
(
playlist
()
)
);
QAction
*
plAction
=
menu
->
addAction
(
qtr
(
"Playlist"
),
mi
,
SLOT
(
playlist
()
)
);
plAction
->
setCheckable
(
true
);
}
}
DP_SADD
(
menu
,
qtr
(
I_MENU_EXT
),
""
,
""
,
extendedDialog
(),
"Ctrl+E"
);
QAction
*
extAction
=
menu
->
addAction
(
qtr
(
I_MENU_EXT
),
THEDP
,
SLOT
(
extendedDialog
()
),
qtr
(
"Ctrl+E"
)
);
extAction
->
setCheckable
(
true
);
DP_SADD
(
menu
,
qtr
(
"Hide Menus..."
),
""
,
""
,
hideMenus
(),
"Ctrl+H"
);
DP_SADD
(
menu
,
qtr
(
"Hide Menus..."
),
""
,
""
,
hideMenus
(),
"Ctrl+H"
);
menu
->
addSeparator
();
menu
->
addSeparator
();
...
...
modules/gui/qt4/res.qrc
View file @
23c4575c
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
<file>
pixmaps/vlc_play_16px.png
</file>
<file>
pixmaps/vlc_play_16px.png
</file>
<file>
pixmaps/vlc_network_16px.png
</file>
<file>
pixmaps/vlc_network_16px.png
</file>
<file>
pixmaps/vlc_quit_16px.png
</file>
<file>
pixmaps/vlc_quit_16px.png
</file>
<file>
pixmaps/vlc_disc_16px.png
</file>
<file>
pixmaps/vlc_file-asym_16px.png
</file>
<file>
pixmaps/vlc_file-asym_16px.png
</file>
<file>
pixmaps/vlc_file-wide_16px.png
</file>
<file>
pixmaps/vlc_file-wide_16px.png
</file>
<file>
pixmaps/vlc_folder-grey_16px.png
</file>
<file>
pixmaps/vlc_folder-grey_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