2016-09-07 07:36:43 +01:00
|
|
|
#ifndef ESPOCOMBOBOX_H
|
|
|
|
#define ESPOCOMBOBOX_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDebug>
|
2016-09-12 09:06:42 +01:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
2016-11-09 05:21:00 +00:00
|
|
|
#include "platformspecific.h"
|
2016-09-07 07:36:43 +01:00
|
|
|
|
|
|
|
class espoComboBox : public QComboBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit espoComboBox(QWidget *parent = 0);
|
|
|
|
void readWaveformList(void);
|
2016-09-12 09:06:42 +01:00
|
|
|
private:
|
2016-09-07 07:36:43 +01:00
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ESPOCOMBOBOX_H
|