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
|
/*
* This file is part of the KDE libraries
* Copyright (c) 2002 Michael Goffioul <kdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#include "messagewindow.h"
#include <qlabel.h>
#include <qlayout.h>
#include <qtimer.h>
#include <qpixmap.h>
#include <qhbox.h>
#include <kiconloader.h>
#include <kapplication.h>
#include <kdebug.h>
QPtrDict<MessageWindow> MessageWindow::m_windows;
MessageWindow::MessageWindow( const QString& txt, int delay, QWidget *parent, const char *name )
: QWidget( parent, name, WStyle_Customize|WStyle_NoBorder|WShowModal|WType_Dialog|WDestructiveClose )
{
QHBox *box = new QHBox( this );
box->setFrameStyle( QFrame::Panel|QFrame::Raised );
box->setLineWidth( 1 );
box->setSpacing( 10 );
box->setMargin( 5 );
QLabel *pix = new QLabel( box );
pix->setPixmap( DesktopIcon( "kdeprint_printer" ) );
m_text = new QLabel( txt, box );
QHBoxLayout *l0 = new QHBoxLayout( this, 0, 0 );
l0->addWidget( box );
m_windows.insert( parent, this );
if ( delay == 0 )
slotTimer();
else
QTimer::singleShot( delay, this, SLOT( slotTimer() ) );
}
MessageWindow::~MessageWindow()
{
m_windows.remove( parentWidget() );
}
void MessageWindow::slotTimer()
{
QSize psz = parentWidget()->size(), sz = sizeHint();
move( parentWidget()->mapToGlobal( QPoint( (psz.width()-sz.width())/2, (psz.height()-sz.height())/2 ) ) );
if ( !isVisible() )
{
show();
kapp->processEvents();
}
}
QString MessageWindow::text() const
{
return m_text->text();
}
void MessageWindow::setText( const QString& txt )
{
m_text->setText( txt );
}
void MessageWindow::add( QWidget *parent, const QString& txt, int delay )
{
if ( !parent )
kdWarning( 500 ) << "Cannot add a message window to a null parent" << endl;
else
{
MessageWindow *w = m_windows.find( parent );
if ( w )
w->setText( txt );
else
new MessageWindow( txt, delay, parent, "MessageWindow" );
}
}
void MessageWindow::remove( QWidget *parent )
{
if ( parent )
delete m_windows.find( parent );
}
void MessageWindow::change( QWidget *parent, const QString& txt )
{
if ( parent )
{
MessageWindow *w = m_windows.find( parent );
if ( w )
w->setText( txt );
else
kdWarning( 500 ) << "MessageWindow::change, no message window found" << endl;
}
}
void MessageWindow::removeAll()
{
QPtrDictIterator<MessageWindow> it( m_windows );
while ( it.current() )
delete it.current();
}
#include "messagewindow.moc"
|