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.
tdenetwork/kopete/protocols/jabber/jabberformtranslator.cpp

92 lines
2.9 KiB

/*
* jabberformtranslator.cpp
*
* Copyright (c) 2002-2003 by Till Gerken <till@tantalo.net>
*
* Kopete (c) by the Kopete developers <kopete-devel@kde.org>
*
* *************************************************************************
* * *
* * 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. *
* * *
* *************************************************************************
*/
#include <qlabel.h>
#include <kdebug.h>
#include "jabberformlineedit.h"
#include "jabberformtranslator.h"
JabberFormTranslator::JabberFormTranslator (const XMPP::Form & form, QWidget * parent, const char *name):QWidget (parent, name)
{
/* Copy basic form values. */
privForm.setJid (form.jid ());
privForm.setInstructions (form.instructions ());
privForm.setKey (form.key ());
emptyForm = privForm;
/* Add instructions to layout. */
QVBoxLayout *innerLayout = new QVBoxLayout (this, 0, 4);
QLabel *label = new QLabel (form.instructions (), this, "InstructionLabel");
label->setAlignment (int (QLabel::WordBreak | QLabel::AlignVCenter));
label->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Fixed, true);
label->show ();
innerLayout->addWidget (label, 0);
QGridLayout *formLayout = new QGridLayout (innerLayout, form.count (), 2);
int row = 1;
XMPP::Form::const_iterator formEnd = form.end ();
for (XMPP::Form::const_iterator it = form.begin (); it != formEnd; ++it, ++row)
{
kdDebug (14130) << "[JabberFormTranslator] Adding field realName()==" <<
(*it).realName () << ", fieldName()==" << (*it).fieldName () << " to the dialog" << endl;
label = new QLabel ((*it).fieldName (), this, (*it).fieldName ().latin1 ());
formLayout->addWidget (label, row, 0);
label->show ();
QLineEdit *edit;
if ((*it).type() == XMPP::FormField::password)
{
edit = new JabberFormPasswordEdit((*it).type (), (*it).realName (), (*it).value (), this);
}
else
{
edit = new JabberFormLineEdit ((*it).type (), (*it).realName (),
(*it).value (), this);
}
formLayout->addWidget (edit, row, 1);
edit->show ();
connect (this, SIGNAL (gatherData (XMPP::Form &)), edit, SLOT (slotGatherData (XMPP::Form &)));
}
innerLayout->addStretch ();
}
XMPP::Form & JabberFormTranslator::resultData ()
{
// clear form data
privForm = emptyForm;
// let all line edit fields write into our form
emit gatherData (privForm);
return privForm;
}
JabberFormTranslator::~JabberFormTranslator ()
{
}
#include "jabberformtranslator.moc"