1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/****************************************************************************
Copyright (C) 2005 - 2011 Filipe AZEVEDO & The Monkey Studio Team
http://monkeystudio.org licensing under the GNU GPL.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
****************************************************************************/
#include "pQueuedStatusBar.h"
/*!
\details Create a new pQueuedStatusBar object
\param parent The parent widget
*/
pQueuedStatusBar::pQueuedStatusBar( QWidget* parent )
: QStatusBar( parent )
{
mDefaultPalette = palette();
// create pQueuedMessageWidget
mQueuedWidget = new pQueuedMessageWidget( this );
addWidget( mQueuedWidget, 100 );
// connections
connect( mQueuedWidget, SIGNAL( messageShown( const pQueuedMessage& ) ), this, SLOT( messageShown( const pQueuedMessage& ) ) );
connect( mQueuedWidget, SIGNAL( cleared() ), this, SLOT( messageCleared() ) );
}
/*!
\details Append a new message and return it's id
\param message The message structure to show
*/
int pQueuedStatusBar::appendMessage( const pQueuedMessage& message )
{ return mQueuedWidget->append( message ); }
/*!
\details Append a new message and return it's id
\param message The message to show
\param milliseconds The timeout before the message is auto closed, 0 for no timeout
\param pixmap The pixmap to associate with the message
\param background The background of the message
\param foreground The foreground of the message
*/
int pQueuedStatusBar::appendMessage( const QString& message, int milliseconds, const QPixmap& pixmap, const QBrush& background, const QBrush& foreground )
{ return mQueuedWidget->append( message, milliseconds, pixmap, background, foreground ); }
/*!
\details Remove a message from the queued list
\param message The message structure to remove
*/
void pQueuedStatusBar::removeMessage( const pQueuedMessage& message )
{ mQueuedWidget->remove( message ); }
/*!
\details Remove a message from the queued list
\param id The message id to remove
*/
void pQueuedStatusBar::removeMessage( int id )
{ mQueuedWidget->remove( id ); }
void pQueuedStatusBar::messageShown( const pQueuedMessage& message )
{
setAutoFillBackground( true );
QPalette pal = mDefaultPalette;
pal.setBrush( backgroundRole(), message.Background );
setPalette( pal );
}
void pQueuedStatusBar::messageCleared()
{
setAutoFillBackground( false );
setPalette( mDefaultPalette );
}
|