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
8c2137e3
Commit
8c2137e3
authored
Aug 01, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: add options for later choice of columns in playlist.
parent
9d957376
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+8
-0
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+5
-0
No files found.
modules/gui/qt4/qt4.cpp
View file @
8c2137e3
...
...
@@ -69,6 +69,9 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define ADVANCED_OPTIONS_LONGTEXT N_("Activate by default all the" \
"Advanced options for geeks")
#define SHOWFLAGS_TEXT N_("Define what titles to show in playlist window")
#define SHOWFLAGS_LONGTEXT N_(" ")
vlc_module_begin
();
set_shortname
(
(
char
*
)
"Qt"
);
set_description
(
(
char
*
)
_
(
"Qt interface"
)
);
...
...
@@ -99,6 +102,11 @@ vlc_module_begin();
change_internal
();
add_bool
(
"qt-adv-options"
,
VLC_FALSE
,
NULL
,
ADVANCED_OPTIONS_TEXT
,
ADVANCED_OPTIONS_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"qt-pl-showflags"
,
VLC_META_ENGINE_ARTIST
|
VLC_META_ENGINE_TITLE
|
VLC_META_ENGINE_DURATION
|
VLC_META_ENGINE_COLLECTION
,
NULL
,
SHOWFLAGS_TEXT
,
SHOWFLAGS_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
OpenDialogs
,
Close
);
vlc_module_end
();
...
...
modules/gui/qt4/qt4.hpp
View file @
8c2137e3
...
...
@@ -30,6 +30,11 @@
#include <QEvent>
/* Add define for duration, VLC_META_ENGINE doesn't include it */
#define VLC_META_ENGINE_DURATION 0x00000002
#define VLC_META_DURATION N_("Duration")
class
QApplication
;
class
QMenu
;
class
MainInterface
;
...
...
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