#ifndef __PHOTOLIST_H__
#define __PHOTOLIST_H__


#include <QWidget>
class DeviceList;
class IconView;


class PhotoList : public QWidget
{
	Q_OBJECT
public:
	PhotoList(QWidget *parent);
	virtual ~PhotoList();
//	void keyPressEvent(QKeyEvent *ke);
signals:
	void setStage(int);
public slots:
	void switchFocus();
	void changeDirectory(QString);
private:
	DeviceList *devices;
	IconView *thumbs;
};


#endif // __PHOTOLIST_H__
