You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
577 B
C++
26 lines
577 B
C++
#ifndef CSVSETTINGS_RESIZEABLESTACKEDWIDGET_HPP
|
|
#define CSVSETTINGS_RESIZEABLESTACKEDWIDGET_HPP
|
|
|
|
#include <QStackedWidget>
|
|
|
|
class QListWidgetItem;
|
|
|
|
namespace CSVSettings
|
|
{
|
|
class ResizeableStackedWidget : public QStackedWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ResizeableStackedWidget(QWidget *parent = 0);
|
|
|
|
///add a widget to the stacked widget
|
|
void addWidget(QWidget* pWidget);
|
|
|
|
///called whenever the stacked widget page is changed
|
|
void changePage (int, int);
|
|
};
|
|
}
|
|
|
|
#endif // CSVSETTINGS_RESIZEABLESTACKEDWIDGET_HPP
|