| 1 | /* |
|---|
| 2 | * Hydrogen |
|---|
| 3 | * Copyright(c) 2002-2008 by Alex >Comix< Cominu [comix@users.sourceforge.net] |
|---|
| 4 | * |
|---|
| 5 | * http://www.hydrogen-music.org |
|---|
| 6 | * |
|---|
| 7 | * This program is free software; you can redistribute it and/or modify |
|---|
| 8 | * it under the terms of the GNU General Public License as published by |
|---|
| 9 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 10 | * (at your option) any later version. |
|---|
| 11 | * |
|---|
| 12 | * This program is distributed in the hope that it will be useful, |
|---|
| 13 | * but WITHOUT ANY WARRANTY, without even the implied warranty of |
|---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 | * GNU General Public License for more details. |
|---|
| 16 | * |
|---|
| 17 | * You should have received a copy of the GNU General Public License |
|---|
| 18 | * along with this program; if not, write to the Free Software |
|---|
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 20 | * |
|---|
| 21 | */ |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | #ifndef EXPORT_SONG_DIALOG_H |
|---|
| 25 | #define EXPORT_SONG_DIALOG_H |
|---|
| 26 | |
|---|
| 27 | #include "config.h" |
|---|
| 28 | |
|---|
| 29 | #include "ui_ExportSongDialog_UI.h" |
|---|
| 30 | #include "EventListener.h" |
|---|
| 31 | #include <hydrogen/Object.h> |
|---|
| 32 | |
|---|
| 33 | /// |
|---|
| 34 | /// Dialog for exporting song |
|---|
| 35 | /// |
|---|
| 36 | class ExportSongDialog : public QDialog, public Ui_ExportSongDialog_UI, public EventListener, public Object |
|---|
| 37 | { |
|---|
| 38 | Q_OBJECT |
|---|
| 39 | |
|---|
| 40 | public: |
|---|
| 41 | ExportSongDialog(QWidget* parent); |
|---|
| 42 | ~ExportSongDialog(); |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | virtual void progressEvent( int nValue ); |
|---|
| 46 | |
|---|
| 47 | bool b_QfileDialog; |
|---|
| 48 | |
|---|
| 49 | private slots: |
|---|
| 50 | void on_browseBtn_clicked(); |
|---|
| 51 | void on_closeBtn_clicked(); |
|---|
| 52 | void on_okBtn_clicked(); |
|---|
| 53 | void on_exportNameTxt_textChanged(const QString& text); |
|---|
| 54 | void on_templateCombo_currentIndexChanged(int index ); |
|---|
| 55 | |
|---|
| 56 | private: |
|---|
| 57 | bool m_bExporting; |
|---|
| 58 | void exportTracks(); |
|---|
| 59 | bool m_btrackoutexport; |
|---|
| 60 | bool m_btrackoutisexporting; |
|---|
| 61 | uint m_ninstrument; |
|---|
| 62 | }; |
|---|
| 63 | |
|---|
| 64 | |
|---|
| 65 | #endif |
|---|
| 66 | |
|---|