test_sdk/gui/config/gtl_gui_config_widget_playe...

36 lines
928 B
C++

#ifndef GTL_GUI_CONFIG_WIDGET_PLAYER_FILES_H
#define GTL_GUI_CONFIG_WIDGET_PLAYER_FILES_H
#include <QFileSystemModel>
#include <QDateTime>
#include "hw/gtl_hw_player_file_gtr.h"
#include "hw/gtl_hw_player_file_wav.h"
namespace gtl
{
namespace gui
{
namespace config
{
class widget_player_files : public QFileSystemModel
{
Q_OBJECT
public:
widget_player_files(QObject *parent);
~widget_player_files();
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
private:
};
}
}
}
#endif // GTL_GUI_CONFIG_WIDGET_PLAYER_FILES_H