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
69a0bd83
Commit
69a0bd83
authored
Jan 24, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: change keep-size to autoresize in order to match the old wx names.
parent
6aa4cb22
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+2
-2
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+6
-6
No files found.
modules/gui/qt4/main_interface.cpp
View file @
69a0bd83
...
...
@@ -99,8 +99,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/* Set The Video In emebedded Mode or not */
videoEmbeddedFlag
=
config_GetInt
(
p_intf
,
"embedded-video"
);
/* Do
we confine videos within a persistent resizeable window
*/
b_keep_size
=
config_GetInt
(
p_intf
,
"qt-keep-
size"
);
/* Do
es the interface resize to video size or the opposite
*/
b_keep_size
=
!
config_GetInt
(
p_intf
,
"qt-video-autore
size"
);
/* Are we in the enhanced always-video mode or not ? */
i_visualmode
=
config_GetInt
(
p_intf
,
"qt-display-mode"
);
...
...
modules/gui/qt4/qt4.cpp
View file @
69a0bd83
...
...
@@ -84,11 +84,11 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define MINIMIZED_LONGTEXT N_( "VLC will start with just an icon in " \
"your taskbar" )
#define KEEPSIZE_TEXT N_( "
Confine video to a persistent resizable window
" )
#define KEEPSIZE_LONGTEXT N_( "You
can choose to confine a video to a
" \
"persistent resizeable window or let it freely
" \
"expand to match the original size.
" \
"By default, videos are expanded to original
size." )
#define KEEPSIZE_TEXT N_( "
Resize interface to the native video size
" )
#define KEEPSIZE_LONGTEXT N_( "You
have two choices:\n
" \
" - The interface will resize to the native video size\n
" \
" - The video will fit to the interface size\n
" \
"By default, interface resize to the native video
size." )
#define TITLE_TEXT N_( "Show playing item name in window title" )
#define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
...
...
@@ -182,7 +182,7 @@ vlc_module_begin ()
SYSTRAY_LONGTEXT
,
false
);
add_bool
(
"qt-start-minimized"
,
false
,
NULL
,
MINIMIZED_TEXT
,
MINIMIZED_LONGTEXT
,
true
);
add_bool
(
"qt-
keep-size"
,
fals
e
,
NULL
,
KEEPSIZE_TEXT
,
add_bool
(
"qt-
video-autoresize"
,
tru
e
,
NULL
,
KEEPSIZE_TEXT
,
KEEPSIZE_LONGTEXT
,
false
)
add_bool
(
"qt-name-in-title"
,
true
,
NULL
,
TITLE_TEXT
,
TITLE_LONGTEXT
,
false
);
...
...
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