Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
1a4cc4bc
Commit
1a4cc4bc
authored
Apr 18, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beos/*: fixed fullscreen shortcuts
parent
7671dda5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/InterfaceWindow.cpp
+1
-4
modules/gui/beos/VideoOutput.cpp
modules/gui/beos/VideoOutput.cpp
+6
-4
No files found.
modules/gui/beos/InterfaceWindow.cpp
View file @
1a4cc4bc
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* InterfaceWindow.cpp: beos interface
* InterfaceWindow.cpp: beos interface
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.cpp,v 1.3
2 2003/04/18 15:25:50
titer Exp $
* $Id: InterfaceWindow.cpp,v 1.3
3 2003/04/18 16:10:28
titer Exp $
*
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -214,9 +214,6 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char* name,
...
@@ -214,9 +214,6 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char* name,
screen_rect
.
top
+
600
);
screen_rect
.
top
+
600
);
fMessagesWindow
=
new
MessagesWindow
(
p_intf
,
window_rect
,
"Messages"
);
fMessagesWindow
=
new
MessagesWindow
(
p_intf
,
window_rect
,
"Messages"
);
// set the title bar
SetName
(
"interface"
);
// the media control view
// the media control view
p_mediaControl
=
new
MediaControlView
(
BRect
(
0.0
,
0.0
,
250.0
,
50.0
),
p_mediaControl
=
new
MediaControlView
(
BRect
(
0.0
,
0.0
,
250.0
,
50.0
),
p_intf
);
p_intf
);
...
...
modules/gui/beos/VideoOutput.cpp
View file @
1a4cc4bc
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* vout_beos.cpp: beos video output display method
* vout_beos.cpp: beos video output display method
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* Copyright (C) 2000, 2001 VideoLAN
* $Id: VideoOutput.cpp,v 1.1
3 2003/03/12 23:15:03
titer Exp $
* $Id: VideoOutput.cpp,v 1.1
4 2003/04/18 16:10:28
titer Exp $
*
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -112,7 +112,7 @@ beos_GetAppWindow(char *name)
...
@@ -112,7 +112,7 @@ beos_GetAppWindow(char *name)
BWindow
*
BWindow
*
get_interface_window
()
get_interface_window
()
{
{
return
beos_GetAppWindow
(
VOUT_TITLE
);
return
beos_GetAppWindow
(
"VLC "
PACKAGE_VERSION
);
}
}
class
BackgroundView
:
public
BView
class
BackgroundView
:
public
BView
...
@@ -1096,8 +1096,8 @@ VLCView::MouseDown(BPoint where)
...
@@ -1096,8 +1096,8 @@ VLCView::MouseDown(BPoint where)
{
{
if
(
clicks
==
2
&&
!
fIgnoreDoubleClick
)
if
(
clicks
==
2
&&
!
fIgnoreDoubleClick
)
Window
()
->
Zoom
();
Window
()
->
Zoom
();
else
/*
else
videoWindow
->
ToggleInterfaceShowing
();
videoWindow->ToggleInterfaceShowing();
*/
fIgnoreDoubleClick
=
false
;
fIgnoreDoubleClick
=
false
;
}
}
else
else
...
@@ -1251,6 +1251,8 @@ VLCView::KeyDown(const char *bytes, int32 numBytes)
...
@@ -1251,6 +1251,8 @@ VLCView::KeyDown(const char *bytes, int32 numBytes)
uint32
mods
=
modifiers
();
uint32
mods
=
modifiers
();
switch
(
*
bytes
)
{
switch
(
*
bytes
)
{
case
B_TAB
:
case
B_TAB
:
case
'f'
:
case
'F'
:
// toggle window and full screen mode
// toggle window and full screen mode
// not passing on the tab key to the default KeyDown()
// not passing on the tab key to the default KeyDown()
// implementation also avoids loosing the keyboard focus
// implementation also avoids loosing the keyboard focus
...
...
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