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
525 B
31 lines
525 B
#ifndef DIALOGVIEWCONFIGURATION_H
|
|
#define DIALOGVIEWCONFIGURATION_H
|
|
|
|
#include <qcheckbox.h>
|
|
#include <qptrlist.h>
|
|
class QVBoxLayout;
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "viewbase.h"
|
|
|
|
|
|
class DialogViewConfiguration : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DialogViewConfiguration(QWidget* parent, ViewBase& view);
|
|
~DialogViewConfiguration();
|
|
|
|
QSize sizeHint() const;
|
|
public slots:
|
|
void apply();
|
|
|
|
private:
|
|
QVBoxLayout* _layout;
|
|
ViewBase& _view;
|
|
QPtrList<QCheckBox> _qEnabledCB;
|
|
};
|
|
|
|
#endif
|