File: pQueuedMessageWidget.cpp

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (193 lines) | stat: -rw-r--r-- 6,510 bytes parent folder | download | duplicates (3)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/****************************************************************************
    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 "pQueuedMessageWidget.h"

#include <QLabel>
#include <QHBoxLayout>
#include <QTimer>
#include <QShowEvent>
#include <QPushButton>
#include <QStyle>
#include <QMetaMethod>

int pQueuedMessageWidget::pQueuedMessageUniqueId = 0;

/*!
    \details Create a new pQueuedMessageWidget object
    \param parent The parent widget
*/
pQueuedMessageWidget::pQueuedMessageWidget( QWidget* parent )
    : QWidget( parent )
{
    QFont font = this->font();
    font.setPointSize( 9 );
    setFont( font );
    // pixmap
    lPixmap = new QLabel( this );
    lPixmap->setAlignment( Qt::AlignCenter );
    lPixmap->setSizePolicy( QSizePolicy( QSizePolicy::Maximum, QSizePolicy::Preferred ) );
    // message
    lMessage = new QLabel( this );
    lMessage->setAlignment( Qt::AlignVCenter | Qt::AlignLeft );
    lMessage->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Maximum ) );
    lMessage->setWordWrap( true );
    // button
    dbbButtons = new QDialogButtonBox( this );
    dbbButtons->setSizePolicy( QSizePolicy( QSizePolicy::Maximum, QSizePolicy::Preferred ) );
    // layout
    QHBoxLayout* hbl = new QHBoxLayout( this );
    hbl->setMargin( 0 );
    hbl->addWidget( lPixmap, 0, Qt::AlignCenter );
    hbl->addWidget( lMessage );
    hbl->addWidget( dbbButtons, 0, Qt::AlignCenter );
    // connections
    connect( dbbButtons, SIGNAL( clicked( QAbstractButton* ) ), this, SLOT( clicked( QAbstractButton* ) ) );
}

/*!
    \details Return the number of message currently queued
*/
int pQueuedMessageWidget::messagesCount() const
{
    return mMessages.count();
}

pQueuedMessage pQueuedMessageWidget::currentMessage() const
{
    return mMessages.values().value( 0 );
}

/*!
    \details Append a message to the queued and return it's unique \c id
    \param message The message structure to add
*/
int pQueuedMessageWidget::append( const pQueuedMessage& message )
{
    if ( !mMessages.values().contains( message ) )
    {
        mMessages[pQueuedMessageUniqueId] = message;
        if ( mMessages.count() == 1 )
            QTimer::singleShot( 0, this, SLOT( showMessage() ) );
        return pQueuedMessageUniqueId++;
    }
    return mMessages.key( message );
}

/*!
    \details Append a message to the queued and return it's unique \c id
    \param message The message to show
    \param milliseconds The milliseconds to wait before the message is auto closed, use 0 for unlimited time
    \param pixmap The pixmap to use as icon
    \param background The brush background
    \param foreground The brush foreground
*/
int pQueuedMessageWidget::append( const QString& message, int milliseconds, const QPixmap& pixmap, const QBrush& background, const QBrush& foreground )
{
    pQueuedMessage m;
    m.Message = message;
    m.MilliSeconds = milliseconds;
    m.Pixmap = pixmap;
    m.Background = background;
    m.Foreground = foreground;
    return append( m );
}

/*!
    \details Remove a message from the queue
    \param message The message to remove
*/
void pQueuedMessageWidget::remove( const pQueuedMessage& message )
{ mMessages.remove( mMessages.key( message ) ); }

/*!
    \details Remove a message from the queue by it's id
    \param id The message id to remove
*/
void pQueuedMessageWidget::remove( int id )
{ mMessages.remove( id ); }

/*!
    \details Clear the current message
*/
void pQueuedMessageWidget::clear()
{
    lPixmap->clear();
    lMessage->clear();
    dbbButtons->clear();
    emit cleared();
}

void pQueuedMessageWidget::clicked( QAbstractButton* button )
{
    const pQueuedMessage msg = mMessages.begin().value();
    if ( msg.Object && msg.Slot )
        QMetaObject::invokeMethod( msg.Object, msg.Slot, Q_ARG( QDialogButtonBox::StandardButton, dbbButtons->standardButton( button ) ), Q_ARG( pQueuedMessage, msg ) );
    closeMessage();
}

/*!
    \details Show the curernt message.
    \details The widget must be visible as only the gui contents is updated.
*/
void pQueuedMessageWidget::showMessage()
{
    // get message
    pQueuedMessage msg = mMessages.begin().value();
    // set palette
    QPalette pal = style()->standardPalette();
    if ( msg.Foreground != QBrush() )
        pal.setBrush( lMessage->foregroundRole(), msg.Foreground );
    lMessage->setPalette( pal );
    // format widget
    lPixmap->setPixmap( msg.Pixmap );
    lMessage->setText( msg.Message );
    lMessage->setToolTip( msg.Message );
    lMessage->setWhatsThis( msg.Message );
    // set buttons
    if ( msg.Buttons.isEmpty() )
        msg.Buttons[ QDialogButtonBox::Ok ] = QString();
    dbbButtons->clear();
    foreach( QDialogButtonBox::StandardButton button, msg.Buttons.keys() )
    {
        QPushButton* pb = dbbButtons->addButton( button );
        if ( !msg.Buttons[ button ].isEmpty() )
            pb->setText( msg.Buttons[ button ] );
    }
    // auto close if needed
    if ( msg.MilliSeconds > 0 )
        QTimer::singleShot( msg.MilliSeconds, this, SLOT( closeMessage() ) );
    // emit signal
    emit messageShown( msg );
}

/*!
    \details Close the current shown message
*/
void pQueuedMessageWidget::closeMessage()
{
    // emit message
    emit messageClosed( mMessages.begin().value() );
    // remove remove current message from hash
    mMessages.erase( mMessages.begin() );
    // process next if possible, else clear gui
    QTimer::singleShot( 0, this, mMessages.count() > 0 ? SLOT( showMessage() ) : SLOT( clear() ) );
    // emit finished message if needed
    if ( mMessages.count() == 0 )
        emit finished();
}