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.
20 lines
275 B
20 lines
275 B
15 years ago
|
#ifndef KDOCKTEST_H
|
||
|
#define KDOCKTEST_H
|
||
|
|
||
|
#include <kdockwidget.h>
|
||
|
|
||
14 years ago
|
class TQWidget;
|
||
15 years ago
|
class DockTest : public KDockArea
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
14 years ago
|
DockTest( TQWidget* parent=0 );
|
||
15 years ago
|
|
||
|
private:
|
||
|
KDockWidget* m_blueDock;
|
||
|
KDockWidget* m_redDock;
|
||
|
KDockWidget* m_yellowDock;
|
||
|
};
|
||
|
|
||
|
#endif
|