Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
28fea52a
Commit
28fea52a
authored
Jan 31, 2003
by
Eric Petit
Browse files
Minor GUI fixes
parent
7f8e2bc5
Changes
3
Hide whitespace changes
Inline
Side-by-side
modules/gui/beos/BeOS.cpp
View file @
28fea52a
...
...
@@ -2,7 +2,7 @@
* beos.cpp : BeOS plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: BeOS.cpp,v 1.
4
2003/01/
25 20:15:41
titer Exp $
* $Id: BeOS.cpp,v 1.
5
2003/01/
31 06:45:00
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -59,6 +59,10 @@ vlc_module_begin();
add_integer
(
"beos-playlist-xpos"
,
0
,
NULL
,
""
,
""
);
add_integer
(
"beos-playlist-ypos"
,
0
,
NULL
,
""
,
""
);
add_bool
(
"beos-playlist-show"
,
0
,
NULL
,
""
,
""
);
add_integer
(
"beos-messages-width"
,
0
,
NULL
,
""
,
""
);
add_integer
(
"beos-messages-height"
,
0
,
NULL
,
""
,
""
);
add_integer
(
"beos-messages-xpos"
,
0
,
NULL
,
""
,
""
);
add_integer
(
"beos-messages-ypos"
,
0
,
NULL
,
""
,
""
);
add_bool
(
"beos-messages-show"
,
0
,
NULL
,
""
,
""
);
add_submodule
();
set_capability
(
"video output"
,
100
);
...
...
modules/gui/beos/InterfaceWindow.cpp
View file @
28fea52a
...
...
@@ -2,7 +2,7 @@
* InterfaceWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: InterfaceWindow.cpp,v 1.2
4
2003/01/
28 08:17:26
titer Exp $
* $Id: InterfaceWindow.cpp,v 1.2
5
2003/01/
31 06:45:00
titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -210,6 +210,16 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char *name,
fPlaylistWindow
->
ResizeTo
(
i_width
,
i_height
);
fPlaylistWindow
->
MoveTo
(
i_xpos
,
i_ypos
);
}
i_width
=
config_GetInt
(
p_intf
,
"beos-messages-width"
),
i_height
=
config_GetInt
(
p_intf
,
"beos-messages-height"
),
i_xpos
=
config_GetInt
(
p_intf
,
"beos-messages-xpos"
),
i_ypos
=
config_GetInt
(
p_intf
,
"beos-messages-ypos"
);
if
(
i_width
&&
i_height
&&
i_xpos
&&
i_ypos
)
{
/* messages window size and position */
fMessagesWindow
->
ResizeTo
(
i_width
,
i_height
);
fMessagesWindow
->
MoveTo
(
i_xpos
,
i_ypos
);
}
if
(
config_GetInt
(
p_intf
,
"beos-playlist-show"
)
)
{
/* playlist showing */
...
...
@@ -632,6 +642,11 @@ bool InterfaceWindow::QuitRequested()
}
if
(
fMessagesWindow
->
Lock
()
)
{
frame
=
fMessagesWindow
->
Frame
();
config_PutInt
(
p_intf
,
"beos-messages-width"
,
(
int
)
frame
.
Width
()
);
config_PutInt
(
p_intf
,
"beos-messages-height"
,
(
int
)
frame
.
Height
()
);
config_PutInt
(
p_intf
,
"beos-messages-xpos"
,
(
int
)
frame
.
left
);
config_PutInt
(
p_intf
,
"beos-messages-ypos"
,
(
int
)
frame
.
top
);
config_PutInt
(
p_intf
,
"beos-messages-show"
,
!
fMessagesWindow
->
IsHidden
()
);
fMessagesWindow
->
Unlock
();
}
...
...
modules/gui/beos/MessagesWindow.cpp
View file @
28fea52a
...
...
@@ -2,7 +2,7 @@
* MessagesWindow.cpp: beos interface
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: MessagesWindow.cpp,v 1.
4
2003/01/
28 10:05:15
titer Exp $
* $Id: MessagesWindow.cpp,v 1.
5
2003/01/
31 06:45:00
titer Exp $
*
* Authors: Eric Petit <titer@videolan.org>
*
...
...
@@ -150,12 +150,8 @@ void MessagesWindow::UpdateMessages()
fMessagesView
->
LockLooper
();
oldLength
=
fMessagesView
->
TextLength
();
BString
string
;
string
.
Append
(
p_sub
->
p_msg
[
i_start
].
psz_module
);
string
.
Append
(
" "
);
string
.
Append
(
psz_module_type
);
string
.
Append
(
" : "
);
string
.
Append
(
p_sub
->
p_msg
[
i_start
].
psz_msg
);
string
.
Append
(
"
\n
"
);
string
<<
p_sub
->
p_msg
[
i_start
].
psz_module
<<
" "
<<
psz_module_type
<<
" : "
<<
p_sub
->
p_msg
[
i_start
].
psz_msg
<<
"
\n
"
;
fMessagesView
->
Insert
(
string
.
String
()
);
fMessagesView
->
SetFontAndColor
(
oldLength
,
fMessagesView
->
TextLength
(),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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