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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/****************************************************************************
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 "pQueuedMessageToolBar.h"
#include <QAction>
#include <QDebug>
int pQueuedMessageToolBar::mDefaultTimeout = 0;
QPixmap* pQueuedMessageToolBar::mDefaultPixmap = 0;
QBrush pQueuedMessageToolBar::mDefaultBackground = QBrush( QColor( 250, 230, 147 ) );
QBrush pQueuedMessageToolBar::mDefaultForeground = QBrush();
/*!
\details Create a new pQueuedMessageToolBar object
\param parent The parent widget
*/
pQueuedMessageToolBar::pQueuedMessageToolBar( QWidget* parent )
: QToolBar( parent )
{
setMovable( false );
setFloatable( false );
setAllowedAreas( Qt::TopToolBarArea );
toggleViewAction()->setEnabled( false );
toggleViewAction()->setVisible( false );
mDefaultPalette = palette();
// create pQueuedMessageWidget
mQueuedWidget = new pQueuedMessageWidget( this );
addWidget( mQueuedWidget );
// connections
connect( mQueuedWidget, SIGNAL( messageShown( const pQueuedMessage& ) ), this, SLOT( messageShown( const pQueuedMessage& ) ) );
connect( mQueuedWidget, SIGNAL( cleared() ), this, SLOT( messageCleared() ) );
}
pQueuedMessageToolBar::~pQueuedMessageToolBar()
{
}
void pQueuedMessageToolBar::setDefaultTimeout( int timeout )
{
mDefaultTimeout = timeout;
}
const int& pQueuedMessageToolBar::defaultTimeout()
{
return mDefaultTimeout;
}
void pQueuedMessageToolBar::setDefaultPixmap( const QPixmap& pixmap )
{
if ( !mDefaultPixmap )
{
mDefaultPixmap = new QPixmap();
}
*mDefaultPixmap = pixmap;
}
const QPixmap& pQueuedMessageToolBar::defaultPixmap()
{
if ( !mDefaultPixmap )
{
mDefaultPixmap = new QPixmap();
}
return *mDefaultPixmap;
}
void pQueuedMessageToolBar::setDefaultBackground( const QBrush& brush )
{
mDefaultBackground = brush;
}
const QBrush& pQueuedMessageToolBar::defaultBackground()
{
return mDefaultBackground;
}
void pQueuedMessageToolBar::setDefaultForeground( const QBrush& brush )
{
mDefaultForeground = brush;
}
const QBrush& pQueuedMessageToolBar::defaultForeground()
{
return mDefaultForeground;
}
/*!
\details Append a new message and return it's id
\param message The message structure to show
*/
int pQueuedMessageToolBar::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 pQueuedMessageToolBar::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 pQueuedMessageToolBar::removeMessage( const pQueuedMessage& message )
{
mQueuedWidget->remove( message );
}
/*!
\details Remove a message from the queued list
\param id The message id to remove
*/
void pQueuedMessageToolBar::removeMessage( int id )
{
mQueuedWidget->remove( id );
}
void pQueuedMessageToolBar::messageShown( const pQueuedMessage& message )
{
#if QT_VERSION >= 0x040600
#ifdef Q_CC_GNU
#warning fucking Qt 4.6 bug, need to report it to trolltech.
#endif
setStyleSheet( QString( "QToolBar { background-color: %1 }" ).arg( message.Background.color().name() ) );
#else
setAutoFillBackground( true );
QPalette pal = mDefaultPalette;
pal.setBrush( backgroundRole(), message.Background );
setPalette( pal );
#endif
if ( !isVisible() )
{
setVisible( true );
}
}
void pQueuedMessageToolBar::messageCleared()
{
#if QT_VERSION >= 0x040600
setStyleSheet( QString::null );
#else
setAutoFillBackground( false );
setPalette( mDefaultPalette );
#endif
if ( isVisible() )
{
setVisible( false );
}
}
|