Newer
Older
Import / applications / Photoframe / src / devicelist.h
@John Ryland John Ryland on 22 Dec 2020 413 bytes import NUC files
#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__