blob: b62c65e1eeb89470a086410e498e13f0a01b61ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef QTCOMPAT_QSPLITTER_H
#define QTCOMPAT_QSPLITTER_H
#include <qwidget.h>
class QKSplitter : public QWidget
{
public:
enum { KeepSize };
QKSplitter (int, QWidget *parent=0, const char *name=0) :
QWidget( parent, name ) {}
QKSplitter( QWidget *parent=0, const char *name=0 ) :
QWidget( parent, name ) {}
void setResizeMode( QWidget *, int ) {}
void setOpaqueResize() {}
void setSizes (const QValueList<int> &) {}
QValueList<int> sizes() { QValueList<int> ret; return ret; }
};
#endif
|