#ifndef __DEVICELIST_H__
#define __DEVICELIST_H__
#include "stage.h"
#include "menuitem.h"
class DeviceList : public Stage
{
Q_OBJECT
public:
DeviceList(QWidget *parent, const char *title, const char *icon);
virtual ~DeviceList();
void keyPressEvent(QKeyEvent *ke);
signals:
void deviceChanged(QString);
void switchFocus();
private:
MenuItem *items[6];
int curItem;
};
#endif // __DEVICELIST_H__