Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
190e7875
Commit
190e7875
authored
Oct 20, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Qt] remove trailing spaces, set a default filter and add a LONGTEXT
parent
6b468738
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
10 deletions
+14
-10
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+0
-1
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+1
-1
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+1
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+3
-2
modules/gui/qt4/menus.hpp
modules/gui/qt4/menus.hpp
+1
-1
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+8
-4
No files found.
modules/gui/qt4/components/simple_preferences.cpp
View file @
190e7875
...
...
@@ -38,7 +38,6 @@
#include <QToolButton>
#include <QButtonGroup>
#include <QVBoxLayout>
#include <QSettings>
#include <QtAlgorithms>
...
...
modules/gui/qt4/dialogs_provider.cpp
View file @
190e7875
modules/gui/qt4/input_manager.cpp
View file @
190e7875
modules/gui/qt4/main_interface.cpp
View file @
190e7875
...
...
@@ -138,7 +138,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
createStatusBar
();
/* Recents menu updates */
CONNECT
(
RecentsMRL
::
getInstance
(
p_intf
),
updated
(),
this
,
updateRecentsMenu
()
);
CONNECT
(
RecentsMRL
::
getInstance
(
p_intf
),
updated
(),
this
,
updateRecentsMenu
()
);
/********************
* Input Manager *
...
...
modules/gui/qt4/menus.hpp
View file @
190e7875
modules/gui/qt4/qt4.cpp
View file @
190e7875
...
...
@@ -125,7 +125,10 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define PRIVACY_TEXT N_( "Ask for network policy at start" )
#define RECENTPLAY_TEXT N_( "Save the recently played items in the menu" )
#define RECENTPLAY_FILTER_TEXT N_( "List of words separated by | to filter" )
#define RECENTPLAY_FILTER_LONGTEXT N_( "Regular expression used to filter " \
"the recent items played in the player" )
#define SLIDERCOL_TEXT N_( "Define the colors of the volume slider " )
#define SLIDERCOL_LONGTEXT N_( "Define the colors of the volume slider\n" \
...
...
@@ -195,6 +198,11 @@ vlc_module_begin();
change_autosave
();
change_internal
();
add_bool
(
"qt-recentplay"
,
true
,
NULL
,
RECENTPLAY_TEXT
,
RECENTPLAY_TEXT
,
false
);
add_string
(
"qt-recentplay-filter"
,
"xxx|porn"
,
NULL
,
RECENTPLAY_FILTER_TEXT
,
RECENTPLAY_FILTER_LONGTEXT
,
false
);
add_bool
(
"qt-adv-options"
,
false
,
NULL
,
ADVANCED_OPTIONS_TEXT
,
ADVANCED_OPTIONS_LONGTEXT
,
true
);
add_bool
(
"qt-advanced-pref"
,
false
,
NULL
,
ADVANCED_PREFS_TEXT
,
...
...
@@ -213,10 +221,6 @@ vlc_module_begin();
add_bool
(
"qt-privacy-ask"
,
true
,
NULL
,
PRIVACY_TEXT
,
PRIVACY_TEXT
,
false
);
add_bool
(
"qt-recentplay"
,
true
,
NULL
,
RECENTPLAY_TEXT
,
RECENTPLAY_TEXT
,
false
);
add_string
(
"qt-recentplay-filter"
,
NULL
,
NULL
,
RECENTPLAY_FILTER_TEXT
,
RECENTPLAY_FILTER_TEXT
,
false
);
change_internal
();
set_callbacks
(
OpenDialogs
,
Close
);
...
...
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