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
588c55d5
Commit
588c55d5
authored
Oct 28, 2002
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added a small preferences window
- Fixes
parent
b316e6e8
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
20 deletions
+47
-20
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/InterfaceWindow.cpp
+20
-4
modules/gui/beos/InterfaceWindow.h
modules/gui/beos/InterfaceWindow.h
+5
-1
modules/gui/beos/Modules.am
modules/gui/beos/Modules.am
+2
-0
modules/gui/beos/MsgVals.h
modules/gui/beos/MsgVals.h
+2
-1
modules/gui/beos/VideoOutput.cpp
modules/gui/beos/VideoOutput.cpp
+8
-5
modules/gui/beos/VideoWindow.h
modules/gui/beos/VideoWindow.h
+10
-9
No files found.
modules/gui/beos/InterfaceWindow.cpp
View file @
588c55d5
...
...
@@ -2,7 +2,7 @@
* InterfaceWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.cpp,v 1.
3 2002/10/10 23:11:52
titer Exp $
* $Id: InterfaceWindow.cpp,v 1.
4 2002/10/28 16:55:05
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -46,6 +46,7 @@
#include "MsgVals.h"
#include "MediaControlView.h"
#include "PlayListWindow.h"
#include "PreferencesWindow.h"
#include "VlcWrapper.h"
#include "InterfaceWindow.h"
...
...
@@ -71,11 +72,14 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char *name,
FIND_ANYWHERE
);
fPlaylistIsEmpty
=
(
p_playlist
->
i_size
<
0
);
fPlaylistWindow
=
new
PlayListWindow
(
BRect
(
20.0
,
20.0
,
170.0
,
32
0.0
),
fPlaylistWindow
=
new
PlayListWindow
(
BRect
(
100.0
,
100.0
,
400.0
,
35
0.0
),
"Playlist"
,
p_playlist
,
this
,
p_intf
);
fPreferencesWindow
=
new
PreferencesWindow
(
BRect
(
100
,
400
,
500
,
595
),
"Preferences"
,
p_intf
);
// set the title bar
SetName
(
"interface"
);
...
...
@@ -160,6 +164,11 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char *name,
fSpeedMenu
->
SetTargetForItems
(
this
);
fMenuBar
->
AddItem
(
fSpeedMenu
);
/* Add the Settings menu */
fSettingsMenu
=
new
BMenu
(
"Settings"
);
fSettingsMenu
->
AddItem
(
fPreferencesMI
=
new
BMenuItem
(
"Preferences"
,
new
BMessage
(
OPEN_PREFERENCES
)
)
);
fMenuBar
->
AddItem
(
fSettingsMenu
);
/* Add the Config menu */
// BMenu* configMenu = new BMenu( "Config" );
...
...
@@ -468,6 +477,13 @@ void InterfaceWindow::MessageReceived( BMessage * p_message )
}
break
;
case
OPEN_PREFERENCES
:
if
(
fPreferencesWindow
->
IsHidden
())
fPreferencesWindow
->
Show
();
else
fPreferencesWindow
->
Activate
();
break
;
default:
BWindow
::
MessageReceived
(
p_message
);
break
;
...
...
modules/gui/beos/InterfaceWindow.h
View file @
588c55d5
...
...
@@ -2,7 +2,7 @@
* InterfaceWindow.h: BeOS interface window class prototype
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.h,v 1.
2 2002/09/30 18:30:27
titer Exp $
* $Id: InterfaceWindow.h,v 1.
3 2002/10/28 16:55:05
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Tony Castley <tcastley@mail.powerup.com.au>
...
...
@@ -34,6 +34,7 @@ class BMenuBar;
class
MediaControlView
;
class
PlayListWindow
;
class
BFilePanel
;
class
PreferencesWindow
;
class
CDMenu
:
public
BMenu
{
...
...
@@ -130,6 +131,7 @@ class InterfaceWindow : public BWindow
bool
fPlaylistIsEmpty
;
BFilePanel
*
fFilePanel
;
PlayListWindow
*
fPlaylistWindow
;
PreferencesWindow
*
fPreferencesWindow
;
BMenuBar
*
fMenuBar
;
BMenuItem
*
fNextTitleMI
;
BMenuItem
*
fPrevTitleMI
;
...
...
@@ -139,6 +141,7 @@ class InterfaceWindow : public BWindow
BMenuItem
*
fSlowerMI
;
BMenuItem
*
fNormalMI
;
BMenuItem
*
fFasterMI
;
BMenuItem
*
fPreferencesMI
;
BMenu
*
fAudioMenu
;
BMenu
*
fNavigationMenu
;
BMenu
*
fTitleMenu
;
...
...
@@ -146,6 +149,7 @@ class InterfaceWindow : public BWindow
BMenu
*
fLanguageMenu
;
BMenu
*
fSubtitlesMenu
;
BMenu
*
fSpeedMenu
;
BMenu
*
fSettingsMenu
;
bigtime_t
fLastUpdateTime
;
BMessage
*
fSettings
;
// we keep the message arround
// for forward compatibility
...
...
modules/gui/beos/Modules.am
View file @
588c55d5
...
...
@@ -8,6 +8,7 @@ SOURCES_beos = \
modules/gui/beos/DrawingTidbits.cpp \
modules/gui/beos/TransportButton.cpp \
modules/gui/beos/PlayListWindow.cpp \
modules/gui/beos/PreferencesWindow.cpp \
modules/gui/beos/MediaControlView.cpp \
modules/gui/beos/VlcWrapper.cpp
...
...
@@ -19,6 +20,7 @@ noinst_HEADERS += \
modules/gui/beos/MediaControlView.h \
modules/gui/beos/MsgVals.h \
modules/gui/beos/PlayListWindow.h \
modules/gui/beos/PreferencesWindow.h \
modules/gui/beos/TransportButton.h \
modules/gui/beos/VideoWindow.h \
modules/gui/beos/VlcWrapper.h
...
...
modules/gui/beos/MsgVals.h
View file @
588c55d5
...
...
@@ -2,7 +2,7 @@
* MsgVals.h
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: MsgVals.h,v 1.
2 2002/09/30 18:30:27
titer Exp $
* $Id: MsgVals.h,v 1.
3 2002/10/28 16:55:05
titer Exp $
*
* Authors: Tony Castley <tcastley@mail.powerup.com.au>
* Stephan Aßmus <stippi@yellowbites.com>
...
...
@@ -52,6 +52,7 @@ const uint32 PREV_FILE = 'prfl';
const
uint32
NEXT_FILE
=
'
nxfl
'
;
const
uint32
NAVIGATE_PREV
=
'
navp
'
;
// could be chapter, title or file
const
uint32
NAVIGATE_NEXT
=
'
navn
'
;
// could be chapter, title or file
const
uint32
OPEN_PREFERENCES
=
'
pref
'
;
const
uint32
TOGGLE_ON_TOP
=
'
ontp
'
;
const
uint32
TOGGLE_FULL_SCREEN
=
'
tgfs
'
;
const
uint32
RESIZE_50
=
'
rshl
'
;
...
...
modules/gui/beos/VideoOutput.cpp
View file @
588c55d5
...
...
@@ -2,7 +2,7 @@
* vout_beos.cpp: beos video output display method
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: VideoOutput.cpp,v 1.
2 2002/09/30 18:30:27
titer Exp $
* $Id: VideoOutput.cpp,v 1.
3 2002/10/28 16:55:05
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -150,7 +150,8 @@ class BackgroundView : public BView
/*****************************************************************************
* VideoWindow constructor and destructor
*****************************************************************************/
VideoWindow
::
VideoWindow
(
int
v_width
,
int
v_height
,
BRect
frame
)
VideoWindow
::
VideoWindow
(
int
v_width
,
int
v_height
,
BRect
frame
,
vout_thread_t
*
p_videoout
)
:
BWindow
(
frame
,
NULL
,
B_TITLED_WINDOW
,
B_NOT_CLOSABLE
|
B_NOT_MINIMIZABLE
),
i_width
(
frame
.
IntegerWidth
()),
i_height
(
frame
.
IntegerHeight
()),
...
...
@@ -165,6 +166,8 @@ VideoWindow::VideoWindow(int v_width, int v_height, BRect frame)
fInterfaceShowing
(
false
),
fInitStatus
(
B_ERROR
)
{
p_vout
=
p_videoout
;
// create the view to do the display
view
=
new
VLCView
(
Bounds
()
);
...
...
@@ -477,8 +480,7 @@ VideoWindow::_AllocateBuffers(int width, int height, int* mode)
BRect
bitmapFrame
(
0
,
0
,
width
,
height
);
// read from config, if we are supposed to use overlay at all
int
noOverlay
=
0
;
/* noOverlay = !config_GetInt( , "overlay" ); */
int
noOverlay
=
!
config_GetInt
(
p_vout
,
"overlay"
);
// test for overlay capability
for
(
int
i
=
0
;
i
<
COLOR_COUNT
;
i
++
)
{
...
...
@@ -1262,7 +1264,8 @@ static int BeosOpenDisplay( vout_thread_t *p_vout )
p_vout
->
p_sys
->
i_height
-
1
,
BRect
(
20
,
50
,
20
+
p_vout
->
i_window_width
-
1
,
50
+
p_vout
->
i_window_height
-
1
));
50
+
p_vout
->
i_window_height
-
1
),
p_vout
);
if
(
p_vout
->
p_sys
->
p_window
==
NULL
)
{
msg_Err
(
p_vout
,
"cannot allocate VideoWindow"
);
...
...
modules/gui/beos/VideoWindow.h
View file @
588c55d5
...
...
@@ -2,7 +2,7 @@
* VideoWindow.h: BeOS video window class prototype
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: VideoWindow.h,v 1.
2 2002/09/30 18:30:27
titer Exp $
* $Id: VideoWindow.h,v 1.
3 2002/10/28 16:55:05
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Tony Castley <tcastley@mail.powerup.com.au>
...
...
@@ -83,7 +83,8 @@ class VideoWindow : public BWindow
public:
VideoWindow
(
int
v_width
,
int
v_height
,
BRect
frame
);
BRect
frame
,
vout_thread_t
*
p_vout
);
virtual
~
VideoWindow
();
// BWindow
...
...
@@ -145,7 +146,7 @@ private:
int32
height
;
};
struct
vout_thread_s
*
p_vout
;
vout_thread_t
*
p_vout
;
int32
fTrueWidth
;
// incomming bitmap size
int32
fTrueHeight
;
...
...
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