qt_demoe/qwtdemo/examples/controls/slidertab.h

19 lines
273 B
C
Raw Normal View History

2019-11-07 02:55:57 +00:00
#ifndef _SLIDER_TAB_H
#define _SLIDER_TAB_H 1
#include <qwidget.h>
class QBoxLayout;
class SliderTab: public QWidget
{
public:
SliderTab( QWidget *parent = NULL );
private:
QBoxLayout *createLayout( Qt::Orientation,
QWidget *widget = NULL );
};
#endif