summaryrefslogtreecommitdiffstats
path: root/kmix/dialogviewconfiguration.h
blob: 4b90a168116fb1401ca9124af731a0a92aad206d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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* tqparent, ViewBase& view);
    ~DialogViewConfiguration();

    TQSize tqsizeHint() const;
 public slots:
    void apply();

 private:
    TQVBoxLayout* _layout;
    ViewBase&    _view;
    TQPtrList<TQCheckBox>  _qEnabledCB;
};

#endif