summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/mixdowndialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/widgets/mixdowndialog.h')
-rw-r--r--muse2/muse/widgets/mixdowndialog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/muse2/muse/widgets/mixdowndialog.h b/muse2/muse/widgets/mixdowndialog.h
new file mode 100644
index 00000000..95440b38
--- /dev/null
+++ b/muse2/muse/widgets/mixdowndialog.h
@@ -0,0 +1,37 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// $Id: mixdowndialog.h,v 1.1.1.1 2003/10/27 18:54:28 wschweer Exp $
+// (C) Copyright 2001 Werner Schweer (ws@seh.de)
+//=========================================================
+
+#ifndef __MIXDOWNDIALOG_H__
+#define __MIXDOWNDIALOG_H__
+
+#include "mixdowndialogbase.h"
+
+class SndFile;
+
+extern SndFile* getSndFile(const SndFile* sf, QWidget* parent,
+ const char* name);
+
+//---------------------------------------------------------
+// MixdownFileDialog
+//---------------------------------------------------------
+
+class MixdownFileDialog : public MixdownFileDialogBase {
+ Q_OBJECT
+ SndFile* sf;
+
+ private slots:
+ void fdialog();
+ virtual void accept();
+
+ public:
+ MixdownFileDialog(const SndFile* f, QWidget* parent = 0,
+ const char* name = 0, bool modal = false, Qt::WFlags fl = 0);
+ SndFile* sndFile() { return sf; }
+ };
+
+#endif
+