Chris@1292: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@1292: Chris@1292: /* Chris@1292: Sonic Visualiser Chris@1292: An audio file viewer and annotation editor. Chris@1292: Centre for Digital Music, Queen Mary, University of London. Chris@1292: Chris@1292: This program is free software; you can redistribute it and/or Chris@1292: modify it under the terms of the GNU General Public License as Chris@1292: published by the Free Software Foundation; either version 2 of the Chris@1292: License, or (at your option) any later version. See the file Chris@1292: COPYING included with this distribution for more information. Chris@1292: */ Chris@1292: Chris@1292: #ifndef SV_PLUGIN_REVIEW_DIALOG_H Chris@1292: #define SV_PLUGIN_REVIEW_DIALOG_H Chris@1292: Chris@1292: #include Chris@1292: #include Chris@1292: Chris@1292: class QEvent; Chris@1292: Chris@1292: class PluginReviewDialog : public QDialog Chris@1292: { Chris@1292: Q_OBJECT Chris@1292: Chris@1292: public: Chris@1292: PluginReviewDialog(QWidget *parent = 0); Chris@1292: ~PluginReviewDialog(); Chris@1292: Chris@1292: void populate(); Chris@1292: Chris@1292: private: Chris@1292: QTableWidget *m_table; Chris@1292: }; Chris@1292: Chris@1292: #endif