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 <tdeprint@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 <tqlabel.h>
#include <tqlayout.h>
#include <tqtimer.h>
#include <tqpixmap.h>
#include <tqhbox.h>
#include <kiconloader.h>
#include <tdeapplication.h>
#include <kdebug.h>
TQPtrDict<MessageWindow> MessageWindow::m_windows;
MessageWindow::MessageWindow( const TQString& txt, int delay, TQWidget *parent, const char *name )
: TQWidget( parent, name, (WFlags)(WStyle_Customize|WStyle_NoBorder|WShowModal|WType_Dialog|WDestructiveClose) )
{
TQHBox *box = new TQHBox( this );
box->setFrameStyle( TQFrame::Panel|TQFrame::Raised );
box->setLineWidth( 1 );
box->setSpacing( 10 );
box->setMargin( 5 );
TQLabel *pix = new TQLabel( box );
pix->setPixmap( DesktopIcon( "tdeprint_printer" ) );
m_text = new TQLabel( txt, box );
TQHBoxLayout *l0 = new TQHBoxLayout( this, 0, 0 );
l0->addWidget( box );
m_windows.insert( parent, this );
if ( delay == 0 )
slotTimer();
else
TQTimer::singleShot( delay, this, TQT_SLOT( slotTimer() ) );
}
MessageWindow::~MessageWindow()
{
m_windows.remove( parentWidget() );
}
void MessageWindow::slotTimer()
{
TQSize psz = parentWidget()->size(), sz = sizeHint();
move( parentWidget()->mapToGlobal( TQPoint( (psz.width()-sz.width())/2, (psz.height()-sz.height())/2 ) ) );
if ( !isVisible() )
{
show();
kapp->processEvents();
}
}
TQString MessageWindow::text() const
{
return m_text->text();
}
void MessageWindow::setText( const TQString& txt )
{
m_text->setText( txt );
}
void MessageWindow::add( TQWidget *parent, const TQString& 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( TQWidget *parent )
{
if ( parent )
delete m_windows.find( parent );
}
void MessageWindow::change( TQWidget *parent, const TQString& 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()
{
TQPtrDictIterator<MessageWindow> it( m_windows );
while ( it.current() )
delete it.current();
}
#include "messagewindow.moc"
|