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, 0 insertions, 44 deletions
diff --git a/attic/muse2-oom/muse2/muse/mixer/routedialog.h b/attic/muse2-oom/muse2/muse/mixer/routedialog.h
deleted file mode 100644
index 39bbce2c..00000000
--- a/attic/muse2-oom/muse2/muse/mixer/routedialog.h
+++ /dev/null
@@ -1,44 +0,0 @@
-//=========================================================
-// 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
-