amuse/Editor/NewSoundMacroDialog.hpp

30 lines
621 B
C++
Raw Permalink Normal View History

2018-10-06 20:40:25 -07:00
#pragma once
2018-08-09 23:19:23 -07:00
#include <cstddef>
#include <cstdint>
2018-08-09 23:19:23 -07:00
#include <QComboBox>
#include <QDialog>
2018-08-09 23:19:23 -07:00
#include <QDialogButtonBox>
#include <QLineEdit>
2018-08-09 23:19:23 -07:00
2018-12-07 21:20:09 -08:00
struct SoundMacroTemplateEntry {
const char* m_name;
size_t m_length;
const uint32_t* m_data;
2018-08-09 23:19:23 -07:00
};
2018-12-07 21:20:09 -08:00
class NewSoundMacroDialog : public QDialog {
Q_OBJECT
QLineEdit m_le;
QComboBox m_combo;
QDialogButtonBox m_buttonBox;
2018-08-09 23:19:23 -07:00
public:
2018-12-07 21:20:09 -08:00
explicit NewSoundMacroDialog(const QString& groupName, QWidget* parent = Q_NULLPTR);
~NewSoundMacroDialog() override;
2018-12-07 21:20:09 -08:00
QString getName() const { return m_le.text(); }
const SoundMacroTemplateEntry* getSelectedTemplate() const;
2018-08-09 23:19:23 -07:00
};