kdelibs/kdeui/tests/klineedittest.cpp
2014-11-13 01:04:59 +02:00

186 lines
5.6 KiB
C++

#include <QtGui/QPushButton>
#include <QtCore/QTimer>
#include <QtGui/QBoxLayout>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kdialog.h>
#include <klocale.h>
#include <klineedit.h>
#include <kglobalsettings.h>
#include <kcompletionbox.h>
#include <khbox.h>
#include "klineedittest.h"
#include <QLabel>
#include <krestrictedline.h>
KLineEditTest::KLineEditTest ( QWidget* widget )
:QWidget( widget )
{
QVBoxLayout* layout = new QVBoxLayout( this );
QStringList list;
list << "Tree" << "Suuupa" << "Stroustrup" << "Stone" << "Slick"
<< "Slashdot" << "Send" << "Peables" << "Mankind" << "Ocean"
<< "Chips" << "Computer" << "Sandworm" << "Sandstorm" << "Chops";
list.sort();
m_lineedit = new KLineEdit( this );
m_lineedit->setObjectName( "klineedittest" );
m_lineedit->completionObject()->setItems( list );
m_lineedit->setSqueezedTextEnabled( true );
m_lineedit->setClearButtonShown( true );
connect( m_lineedit, SIGNAL(returnPressed()), SLOT(slotReturnPressed()) );
connect( m_lineedit, SIGNAL(returnPressed(QString)),
SLOT(slotReturnPressed(QString)) );
QHBoxLayout* restrictedHBox = new QHBoxLayout;
m_restrictedLine = new KRestrictedLine(this);
m_restrictedLine->setValidChars(QString::fromUtf8("aeiouyé"));
connect(m_restrictedLine, SIGNAL(invalidChar(int)), this, SLOT(slotInvalidChar(int)));
connect( m_restrictedLine, SIGNAL(returnPressed()), SLOT(slotReturnPressed()) );
connect( m_restrictedLine, SIGNAL(returnPressed(QString)),
SLOT(slotReturnPressed(QString)) );
restrictedHBox->addWidget(new QLabel("Vowels only:", this));
restrictedHBox->addWidget(m_restrictedLine);
m_invalidCharLabel = new QLabel(this);
restrictedHBox->addWidget(m_invalidCharLabel);
KHBox *hbox = new KHBox (this);
m_btnExit = new QPushButton( "E&xit", hbox );
connect( m_btnExit, SIGNAL(clicked()), SLOT(quitApp()) );
m_btnReadOnly = new QPushButton( "&Read Only", hbox );
m_btnReadOnly->setCheckable (true);
connect( m_btnReadOnly, SIGNAL(toggled(bool)), SLOT(slotReadOnly(bool)) );
m_btnPassword = new QPushButton( "&Password", hbox );
m_btnPassword->setCheckable (true);
connect( m_btnPassword, SIGNAL(toggled(bool)), SLOT(slotPassword(bool)) );
m_btnEnable = new QPushButton( "Dis&able", hbox );
m_btnEnable->setCheckable (true);
connect( m_btnEnable, SIGNAL(toggled(bool)), SLOT(slotEnable(bool)) );
m_btnHide = new QPushButton( "Hi&de", hbox );
connect( m_btnHide, SIGNAL(clicked()), SLOT(slotHide()) );
m_btnClickMessage = new QPushButton( "Clicked Message", hbox);
m_btnClickMessage->setCheckable (true);
connect( m_btnClickMessage, SIGNAL(toggled(bool)), SLOT(slotClickMessage(bool)) );
QPushButton *button = new QPushButton( "Stylesheet", hbox);
connect( button, SIGNAL(clicked()), SLOT(slotSetStyleSheet()));
layout->addWidget( m_lineedit );
layout->addLayout( restrictedHBox );
layout->addWidget( hbox );
setWindowTitle( "KLineEdit Unit Test" );
}
KLineEditTest::~KLineEditTest()
{
}
void KLineEditTest::quitApp()
{
kapp->closeAllWindows();
}
void KLineEditTest::slotSetStyleSheet()
{
m_lineedit->setStyleSheet("QLineEdit{ background-color:#baf9ce }");
}
void KLineEditTest::show()
{
if (m_lineedit->isHidden())
m_lineedit->show();
m_btnHide->setEnabled( true );
QWidget::show();
}
void KLineEditTest::slotReturnPressed()
{
kDebug() << "Return pressed";
}
void KLineEditTest::slotReturnPressed( const QString& text )
{
kDebug() << "Return pressed: " << text;
}
void KLineEditTest::resultOutput( const QString& text )
{
kDebug() << "KlineEditTest Debug: " << text;
}
void KLineEditTest::slotReadOnly( bool ro )
{
m_lineedit->setReadOnly (ro);
QString text = (ro) ? "&Read Write" : "&Read Only";
m_btnReadOnly->setText (text);
}
void KLineEditTest::slotPassword( bool pw )
{
m_lineedit->setPasswordMode (pw);
QString text = (pw) ? "&Normal Text" : "&Password";
m_btnPassword->setText (text);
}
void KLineEditTest::slotEnable (bool enable)
{
m_lineedit->setEnabled (!enable);
QString text = (enable) ? "En&able":"Dis&able";
m_btnEnable->setText (text);
}
void KLineEditTest::slotClickMessage(bool click)
{
if( click )
{
m_lineedit->setText(""); // Clear before to add message
m_lineedit->setClickMessage ("Click in this lineedit");
}
}
void KLineEditTest::slotHide()
{
m_lineedit->hide();
m_btnHide->setEnabled( false );
m_lineedit->setText( "My dog ate the homework, whaaaaaaaaaaaaaaaaaaaaaaa"
"aaaaaaaaaaaaaaaaaaaaaaaaa! I want my mommy!" );
QTimer::singleShot( 1000, this, SLOT(show()) );
}
void KLineEditTest::slotInvalidChar(int key)
{
m_invalidCharLabel->setText(QString("Invalid char: %1").arg(key));
}
int main ( int argc, char **argv)
{
KAboutData aboutData( "klineedittest", 0, ki18n("klineedittest"), "1.0" );
KCmdLineArgs::init(argc, argv, &aboutData);
KCmdLineArgs::addStdCmdLineOptions();
KApplication a;
KLineEditTest *t = new KLineEditTest();
//t->lineEdit()->setTrapReturnKey( true );
//t->lineEdit()->completionBox()->setTabHandling( false );
t->lineEdit()->setSqueezedTextEnabled( true );
t->lineEdit()->setText ("This is a really really really really really really "
"really really long line because I am a talkative fool!"
"I mean ... REALLY talkative. If you don't believe me, ask my cousin.");
t->show();
return a.exec();
}
#include "klineedittest.moc"