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
efe42d45
Commit
efe42d45
authored
Aug 01, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Preferences: give a description better than "FIXME" for options.
parent
1c462d81
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+8
-2
No files found.
modules/gui/qt4/qt4.cpp
View file @
efe42d45
...
@@ -43,6 +43,12 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
...
@@ -43,6 +43,12 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
*****************************************************************************/
*****************************************************************************/
#define ALWAYS_VIDEO_TEXT N_("Always show a video screen, with a cone " \
"when there is audio only.")
#define ALWAYS_VIDEO_LONGTEXT N_("Start VLC with a cone image, and display it" \
" when there is no video track. " \
"Visualisations are enabled." )
#define ADVANCED_PREFS_TEXT N_("Show advanced prefs over simple")
#define ADVANCED_PREFS_TEXT N_("Show advanced prefs over simple")
#define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple" \
#define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple" \
"preferences when opening the preferences " \
"preferences when opening the preferences " \
...
@@ -86,8 +92,8 @@ vlc_module_begin();
...
@@ -86,8 +92,8 @@ vlc_module_begin();
add_submodule
();
add_submodule
();
set_description
(
"Dialogs provider"
);
set_description
(
"Dialogs provider"
);
set_capability
(
"dialogs provider"
,
51
);
set_capability
(
"dialogs provider"
,
51
);
add_bool
(
"qt-always-video"
,
VLC_FALSE
,
NULL
,
"FIXME"
,
"FIXME"
,
add_bool
(
"qt-always-video"
,
VLC_FALSE
,
NULL
,
ALWAYS_VIDEO_TEXT
,
VLC_TRUE
);
ALWAYS_VIDEO_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"qt-advanced-pref"
,
VLC_FALSE
,
NULL
,
ADVANCED_PREFS_TEXT
,
add_bool
(
"qt-advanced-pref"
,
VLC_FALSE
,
NULL
,
ADVANCED_PREFS_TEXT
,
ADVANCED_PREFS_LONGTEXT
,
VLC_FALSE
);
ADVANCED_PREFS_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"qt-system-tray"
,
VLC_TRUE
,
NULL
,
SYSTRAY_TEXT
,
add_bool
(
"qt-system-tray"
,
VLC_TRUE
,
NULL
,
SYSTRAY_TEXT
,
...
...
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