You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
3.7 KiB
154 lines
3.7 KiB
#include <stdio.h>
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include "plined.h"
|
|
|
|
PObject *
|
|
PLineEdit::createWidget(CreateArgs &ca)
|
|
{
|
|
PLineEdit *pw = new PLineEdit(ca.parent);
|
|
TQLineEdit *le;
|
|
if(ca.parent != 0 && ca.parent->widget()->isWidgetType() == TRUE)
|
|
le = new TQLineEdit((TQWidget *) ca.parent->widget());
|
|
else
|
|
le = new TQLineEdit(0L);
|
|
pw->setWidget(le);
|
|
pw->setWidgetId(ca.pwI);
|
|
return pw;
|
|
}
|
|
|
|
|
|
PLineEdit::PLineEdit(PObject *parent)
|
|
: PWidget(parent)
|
|
{
|
|
// kdDebug(5008) << "PLineEdit PLineEdit called" << endl;
|
|
lineedit = 0;
|
|
setWidget(lineedit);
|
|
}
|
|
|
|
PLineEdit::~PLineEdit()
|
|
{
|
|
// kdDebug(5008) << "PLineEdit: in destructor" << endl;
|
|
/*
|
|
delete widget(); // Delete the frame
|
|
lineedit=0; // Set it to 0
|
|
setWidget(lineedit); // Now set all widget() calls to 0.
|
|
*/
|
|
}
|
|
|
|
void PLineEdit::messageHandler(int fd, PukeMessage *pm)
|
|
{
|
|
PukeMessage pmRet;
|
|
switch(pm->iCommand){
|
|
case PUKE_LINED_SET_MAXLENGTH:
|
|
if(widget() == 0){
|
|
kdDebug(5008) << "PLineEdit: No Widget set" << endl;
|
|
return;
|
|
}
|
|
widget()->setMaxLength(pm->iArg);
|
|
pmRet.iCommand = - pm->iCommand;
|
|
pmRet.iWinId = pm->iWinId;
|
|
pmRet.iArg = widget()->maxLength();
|
|
pmRet.cArg = 0;
|
|
emit outputMessage(fd, &pmRet);
|
|
break;
|
|
case PUKE_LINED_SET_ECHOMODE:
|
|
if(widget() == 0){
|
|
kdDebug(5008) << "PLineEdit: No Widget set" << endl;
|
|
return;
|
|
}
|
|
widget()->setEchoMode((TQLineEdit::EchoMode) pm->iArg);
|
|
pmRet.iCommand = - pm->iCommand;
|
|
pmRet.iWinId = pm->iWinId;
|
|
pmRet.iArg = widget()->echoMode();
|
|
pmRet.cArg = 0;
|
|
emit outputMessage(fd, &pmRet);
|
|
break;
|
|
case PUKE_LINED_SET_TEXT:
|
|
if(widget() == 0){
|
|
kdDebug(5008) << "PLineEdit: No Widget set" << endl;
|
|
return;
|
|
}
|
|
kdDebug(5008) << "PukeLine Edit: Got: " << pm->cArg << endl;
|
|
widget()->setText(pm->cArg);
|
|
pmRet.iCommand = - pm->iCommand;
|
|
pmRet.iWinId = pm->iWinId;
|
|
pmRet.iArg = 0;
|
|
pmRet.iTextSize = strlen(widget()->text());
|
|
pmRet.cArg = new char[strlen(widget()->text())+1];
|
|
strcpy(pmRet.cArg, widget()->text());
|
|
emit outputMessage(fd, &pmRet);
|
|
delete[] pmRet.cArg;
|
|
break;
|
|
case PUKE_LINED_GET_TEXT:
|
|
if(widget() == 0){
|
|
kdDebug(5008) << "PLineEdit: No Widget set" << endl;
|
|
return;
|
|
}
|
|
pmRet.iCommand = - pm->iCommand;
|
|
pmRet.iWinId = pm->iWinId;
|
|
pmRet.iArg = 0;
|
|
pmRet.iTextSize = strlen(widget()->text());
|
|
pmRet.cArg = new char[strlen(widget()->text())+1];
|
|
strcpy(pmRet.cArg, widget()->text());
|
|
emit outputMessage(fd, &pmRet);
|
|
delete[] pmRet.cArg;
|
|
break;
|
|
default:
|
|
PWidget::messageHandler(fd, pm);
|
|
}
|
|
}
|
|
|
|
void PLineEdit::setWidget(TQObject *_le)
|
|
{
|
|
if(_le != 0 && _le->inherits(TQLINEEDIT_OBJECT_NAME_STRING) == FALSE)
|
|
{
|
|
errorInvalidSet(_le);
|
|
return;
|
|
}
|
|
|
|
lineedit = (TQLineEdit *) _le;
|
|
if(lineedit != 0){
|
|
connect(lineedit, TQT_SIGNAL(textChanged(const char *)),
|
|
this, TQT_SLOT(updateText(const char *)));
|
|
connect(lineedit, TQT_SIGNAL(returnPressed()),
|
|
this, TQT_SLOT(returnPress()));
|
|
}
|
|
PWidget::setWidget(_le);
|
|
|
|
}
|
|
|
|
|
|
TQLineEdit *PLineEdit::widget()
|
|
{
|
|
return lineedit;
|
|
}
|
|
|
|
void PLineEdit::updateText(const char *text){
|
|
PukeMessage pmRet;
|
|
|
|
pmRet.iCommand = PUKE_LINED_GET_TEXT_ACK;
|
|
pmRet.iWinId = widgetIden().iWinId;
|
|
pmRet.iArg = 0;
|
|
pmRet.iTextSize = strlen(text);
|
|
pmRet.cArg = new char[strlen(text)+1];
|
|
strcpy(pmRet.cArg, text);
|
|
emit outputMessage(widgetIden().fd, &pmRet);
|
|
delete[] pmRet.cArg;
|
|
}
|
|
|
|
void PLineEdit::returnPress() {
|
|
PukeMessage pmRet;
|
|
|
|
pmRet.iCommand = PUKE_LINED_RETURN_PRESSED_ACK;
|
|
pmRet.iWinId = widgetIden().iWinId;
|
|
pmRet.iArg = 0;
|
|
pmRet.cArg = 0;
|
|
emit outputMessage(widgetIden().fd, &pmRet);
|
|
}
|
|
|
|
#include "plined.moc"
|
|
|