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.
32 lines
545 B
32 lines
545 B
#ifndef DIALOGVIEWCONFIGURATION_H
|
|
#define DIALOGVIEWCONFIGURATION_H
|
|
|
|
#include <tqcheckbox.h>
|
|
#include <tqptrlist.h>
|
|
class TQVBoxLayout;
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "viewbase.h"
|
|
|
|
|
|
class DialogViewConfiguration : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
DialogViewConfiguration(TQWidget* parent, ViewBase& view);
|
|
~DialogViewConfiguration();
|
|
|
|
TQSize sizeHint() const;
|
|
public slots:
|
|
void apply();
|
|
|
|
private:
|
|
TQVBoxLayout* _layout;
|
|
ViewBase& _view;
|
|
TQPtrList<TQCheckBox> _qEnabledCB;
|
|
};
|
|
|
|
#endif
|