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.
|
|
|
#ifndef _KLINEEDITTEST_H
|
|
|
|
#define _KLINEEDITTEST_H
|
|
|
|
|
|
|
|
#include <tqwidget.h>
|
|
|
|
#include <tqguardedptr.h>
|
|
|
|
|
|
|
|
class TQString;
|
|
|
|
class TQPushButton;
|
|
|
|
|
|
|
|
class KLineEdit;
|
|
|
|
|
|
|
|
class KLineEditTest : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KLineEditTest( TQWidget *parent=0, const char *name=0 );
|
|
|
|
~KLineEditTest();
|
|
|
|
KLineEdit* lineEdit() const { return m_lineedit; }
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
virtual void show ();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void quitApp();
|
|
|
|
void slotHide();
|
|
|
|
void slotEnable( bool );
|
|
|
|
void slotReadOnly( bool );
|
|
|
|
void slotReturnPressed();
|
|
|
|
void resultOutput( const TQString& );
|
|
|
|
void slotReturnPressed( const TQString& );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQGuardedPtr<KLineEdit> m_lineedit;
|
|
|
|
TQPushButton* m_btnExit;
|
|
|
|
TQPushButton* m_btnReadOnly;
|
|
|
|
TQPushButton* m_btnEnable;
|
|
|
|
TQPushButton* m_btnHide;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|