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.
31 lines
478 B
31 lines
478 B
15 years ago
|
/*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
#ifndef _KTABCTLTEST_H
|
||
|
#define _KTABCTLTEST_H
|
||
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
15 years ago
|
class KTabCtl;
|
||
14 years ago
|
class TQPushButton;
|
||
|
class TQMultiLineEdit;
|
||
15 years ago
|
|
||
14 years ago
|
class TopLevel : public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
|
||
14 years ago
|
TopLevel( TQWidget *parent=0, const char *name=0 );
|
||
15 years ago
|
protected:
|
||
14 years ago
|
void resizeEvent(TQResizeEvent *);
|
||
15 years ago
|
KTabCtl *test;
|
||
14 years ago
|
TQPushButton *ok, *cancel;
|
||
|
TQMultiLineEdit *e;
|
||
|
TQWidget *pages[3];
|
||
15 years ago
|
public slots:
|
||
|
void okPressed();
|
||
|
void tabChanged(int);
|
||
|
};
|
||
|
|
||
|
#endif
|