summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_setup.h
blob: 932af17a6642d69bbabe586caf34348b3cd0fa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _DIRSETUP_H
#define _DIRSETUP_H

#include <qframe.h>

class QCheckBox;
class QSpinBox;
class QLabel;

class DirImageWidget : public QFrame {
    Q_OBJECT
public:
    DirImageWidget();
    ~DirImageWidget();
    QCheckBox* chkbox,*recBox;
    QSpinBox * recDepth;
    QLabel* recDepthLabel,*recWarningLabel;
protected slots:
    void recBoxToggled(bool);
};

#endif