From 8885548ee3616238f313c8b1f334469ee75a39e3 Mon Sep 17 00:00:00 2001 From: Eric Petit Date: Sat, 17 May 2003 15:20:46 +0000 Subject: [PATCH] modules/gui/beos/* : cosmetic --- modules/gui/beos/InterfaceWindow.cpp | 6 +++--- modules/gui/beos/MessagesWindow.cpp | 12 +++++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/modules/gui/beos/InterfaceWindow.cpp b/modules/gui/beos/InterfaceWindow.cpp index 8abc37dc99..3598788011 100644 --- a/modules/gui/beos/InterfaceWindow.cpp +++ b/modules/gui/beos/InterfaceWindow.cpp @@ -2,7 +2,7 @@ * InterfaceWindow.cpp: beos interface ***************************************************************************** * Copyright (C) 1999, 2000, 2001 VideoLAN - * $Id: InterfaceWindow.cpp,v 1.37 2003/05/07 14:49:19 titer Exp $ + * $Id: InterfaceWindow.cpp,v 1.38 2003/05/17 15:20:46 titer Exp $ * * Authors: Jean-Marc Dressler * Samuel Hocevar @@ -204,10 +204,10 @@ InterfaceWindow::InterfaceWindow( BRect frame, const char* name, screen_rect.right - 150, screen_rect.top + 250 ); fPlaylistWindow = new PlayListWindow( window_rect, _("Playlist"), this, p_intf ); - window_rect.Set( screen_rect.right - 500, + window_rect.Set( screen_rect.right - 550, screen_rect.top + 300, screen_rect.right - 150, - screen_rect.top + 600 ); + screen_rect.top + 500 ); fMessagesWindow = new MessagesWindow( p_intf, window_rect, _("Messages") ); // the media control view diff --git a/modules/gui/beos/MessagesWindow.cpp b/modules/gui/beos/MessagesWindow.cpp index 5de3377a65..1d34788712 100644 --- a/modules/gui/beos/MessagesWindow.cpp +++ b/modules/gui/beos/MessagesWindow.cpp @@ -2,7 +2,7 @@ * MessagesWindow.cpp: beos interface ***************************************************************************** * Copyright (C) 1999, 2000, 2001 VideoLAN - * $Id: MessagesWindow.cpp,v 1.8 2003/05/07 17:27:30 titer Exp $ + * $Id: MessagesWindow.cpp,v 1.9 2003/05/17 15:20:46 titer Exp $ * * Authors: Eric Petit * @@ -46,7 +46,7 @@ MessagesWindow::MessagesWindow( intf_thread_t * p_intf, { this->p_intf = p_intf; - SetSizeLimits( 200, 2000, 200, 2000 ); + SetSizeLimits( 400, 2000, 200, 2000 ); BRect rect, textRect; @@ -57,7 +57,6 @@ MessagesWindow::MessagesWindow( intf_thread_t * p_intf, fMessagesView = new BTextView( rect, "messages", textRect, B_FOLLOW_ALL, B_WILL_DRAW ); fMessagesView->MakeEditable( false ); - fMessagesView->MakeSelectable( false ); fMessagesView->SetStylable( true ); fScrollView = new BScrollView( "scrollview", fMessagesView, B_WILL_DRAW, B_FOLLOW_ALL, false, true ); @@ -87,8 +86,9 @@ MessagesWindow::~MessagesWindow() /***************************************************************************** * MessagesWindow::FrameResized *****************************************************************************/ -void MessagesWindow::FrameResized( float, float ) +void MessagesWindow::FrameResized( float width, float height ) { + BWindow::FrameResized( width, height ); BRect rect = fMessagesView->Bounds(); rect.InsetBy( 5, 5 ); fMessagesView->SetTextRect( rect ); @@ -177,7 +177,9 @@ static int UpdateMessages( intf_thread_t * p_intf ) BString string; string << p_sub->p_msg[i_start].psz_module << " " << psz_module_type << " : " << p_sub->p_msg[i_start].psz_msg << "\n"; - messagesView->Insert( string.String() ); + messagesView->Insert( messagesView->TextLength(), + string.String(), + strlen( string.String() ) ); messagesView->SetFontAndColor( oldLength, messagesView->TextLength(), NULL, 0, &color ); -- 2.39.2