summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/iconview.h
blob: 439833aa9359f7edfde34f0e4bae747ad0090375 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * GPLv2 zecke@handhelds.org
 * No WArranty...
 */

#ifndef PHUNK_ICON_VIEW_H
#define PHUNK_ICON_VIEW_H

#include <qvbox.h>

#include <qpe/config.h>

class QIconView;
class QIconViewItem;
class QComboBox;
class PIconViewItem;
class PDirLister;
class Ir;
class PIconView : public QVBox {
    Q_OBJECT
    friend class PIconViewItem;
public:
    PIconView( QWidget* wid, Config *cfg );
    ~PIconView();
    void resetView();

private:
    QString currentFileName(bool &isDir)const;
    void loadViews();

private slots:
    void slotDirUp();
    void slotChangeDir(const QString&);
    void slotTrash();
    void slotViewChanged( int );
    void slotReloadDir();
    void slotRename();
    void slotBeam();
    void slotBeamDone( Ir* );

    void slotStart();
    void slotEnd();

/* for performance reasons make it inline in the future */
    void addFolders(  const QStringList& );
    void addFiles( const QStringList& );
    void slotClicked(QIconViewItem* );

/**/
    void slotThumbInfo(const QString&, const QString&);
    void slotThumbNail(const QString&, const QPixmap&);
private:
    Config *m_cfg;
    QComboBox* m_views;
    QIconView* m_view;
    QString m_path;
};

#endif