summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/mixer/routedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/mixer/routedialog.h')
-rw-r--r--attic/muse2-oom/muse2/muse/mixer/routedialog.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/attic/muse2-oom/muse2/muse/mixer/routedialog.h b/attic/muse2-oom/muse2/muse/mixer/routedialog.h
new file mode 100644
index 00000000..39bbce2c
--- /dev/null
+++ b/attic/muse2-oom/muse2/muse/mixer/routedialog.h
@@ -0,0 +1,44 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// $Id: routedialog.h,v 1.2 2004/01/31 17:31:49 wschweer Exp $
+//
+// (C) Copyright 2004 Werner Schweer (ws@seh.de)
+//=========================================================
+
+#ifndef __ROUTEDIALOG_H__
+#define __ROUTEDIALOG_H__
+
+#include "ui_routedialogbase.h"
+
+class QCloseEvent;
+class QDialog;
+
+//---------------------------------------------------------
+// RouteDialog
+//---------------------------------------------------------
+
+class RouteDialog : public QDialog, public Ui::RouteDialogBase {
+ Q_OBJECT
+
+ virtual void closeEvent(QCloseEvent*);
+ void routingChanged();
+
+ private slots:
+ void routeSelectionChanged();
+ void removeRoute();
+ void addRoute();
+ void srcSelectionChanged();
+ void dstSelectionChanged();
+ void songChanged(int);
+
+ signals:
+ void closed();
+
+ public:
+ RouteDialog(QWidget* parent=0);
+ };
+
+
+#endif
+