blob: 17ca851d6db381ead60cd2bebafacf286193e8cb (
plain)
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
|
#include <qmovie.h>
#include <kdebug.h>
#include "plabel.h"
PObject *
PLabel::createWidget(CreateArgs &ca)
{
PLabel *pw = new PLabel(ca.parent);
QLabel *le;
if(ca.fetchedObj != 0 && ca.fetchedObj->inherits("QLabel") == TRUE){
le = (QLabel *) ca.fetchedObj;
pw->setDeleteAble(FALSE);
}
else if(ca.parent != 0 && ca.parent->widget()->isWidgetType() == TRUE)
le = new QLabel((QWidget *) ca.parent->widget());
else
le = new QLabel((QWidget *)0L);
pw->setWidget(le);
pw->setWidgetId(ca.pwI);
return pw;
}
PLabel::PLabel(PObject *parent)
: PFrame(parent)
{
// kdDebug(5008) << "PLabel PLabel called" << endl;
label = 0;
setWidget(label);
}
PLabel::~PLabel()
{
// kdDebug(5008) << "PLabel: in destructor" << endl;
/*
delete widget(); // Delete the frame
label=0; // Set it to 0
setWidget(label); // Now set all widget() calls to 0.
*/
}
void PLabel::messageHandler(int fd, PukeMessage *pm)
{
PukeMessage pmRet;
switch(pm->iCommand){
case PUKE_LABEL_SETTEXT:
if(!checkWidget())
return;
widget()->setText(pm->cArg);
pmRet.iCommand = - pm->iCommand;
pmRet.iWinId = pm->iWinId;
pmRet.iArg = 0;
pmRet.cArg = 0;
emit outputMessage(fd, &pmRet);
break;
case PUKE_LABEL_SETPIXMAP:
if(!checkWidget())
return;
widget()->setPixmap(QPixmap(pm->cArg));
pmRet.iCommand = - pm->iCommand;
pmRet.iWinId = pm->iWinId;
pmRet.iArg = 0;
pmRet.cArg = 0;
emit outputMessage(fd, &pmRet);
break;
case PUKE_LABEL_SETMOVIE:
if(!checkWidget())
return;
widget()->setMovie(QMovie(pm->cArg));
pmRet.iCommand = - pm->iCommand;
pmRet.iWinId = pm->iWinId;
pmRet.iArg = 0;
pmRet.cArg = 0;
emit outputMessage(fd, &pmRet);
break;
case PUKE_LABEL_SETALIGNMENT:
if(!checkWidget())
return;
widget()->setAlignment(pm->iArg);
pmRet.iCommand = - pm->iCommand;
pmRet.iWinId = pm->iWinId;
pmRet.iArg = 0;
pmRet.cArg = 0;
emit outputMessage(fd, &pmRet);
break;
default:
PFrame::messageHandler(fd, pm);
}
}
void PLabel::setWidget(QObject *_l)
{
if(_l != 0 && _l->inherits("QLabel") == FALSE)
{
errorInvalidSet(_l);
return;
}
label = (QLabel *) _l;
PWidget::setWidget(_l);
}
QLabel *PLabel::widget()
{
return label;
}
bool PLabel::checkWidget(){
if(widget() == 0){
kdDebug(5008) << "PLabel: No Widget set" << endl;
return FALSE;
}
return TRUE;
}
#include "plabel.moc"
|