summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofileselectormain.h
blob: b540b9a8ec889f1804526a83b690b5fccb5e8682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef OPIE_FILESELECTOR_MAIN_H
#define OPIE_FILESELECTOR_MAIN_H

#include <qwidget.h>

class QGridLayout;
class QWidgetStack;
class OFileSelectorMain : public QWidget {
    Q_OBJECT
public:
    OFileSelectorMain( QWidget* parent );
    ~OFileSelectorMain();
    void setToolbar( QWidget* tool );
    void setWidget( QWidget* view );
private:
    void init();
    void add();
    QGridLayout *m_lay;
    QWidget* m_tool;
    QWidgetStack *m_stack;
};

#endif