summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/confmport.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/confmport.h')
-rw-r--r--attic/muse2-oom/muse2/muse/confmport.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/attic/muse2-oom/muse2/muse/confmport.h b/attic/muse2-oom/muse2/muse/confmport.h
deleted file mode 100644
index d8bd663b..00000000
--- a/attic/muse2-oom/muse2/muse/confmport.h
+++ /dev/null
@@ -1,51 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: confmport.h,v 1.3 2004/01/25 11:20:31 wschweer Exp $
-//
-// (C) Copyright 2000 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#ifndef __CONFMPORT_H__
-#define __CONFMPORT_H__
-
-#include <QWidget>
-#include <QToolTip>
-
-#include "ui_synthconfigbase.h"
-
-class QTreeWidget;
-class QTableWidget;
-class QPoint;
-class QMenu;
-class Xml;
-
-//---------------------------------------------------------
-// MPConfig
-// Midi Port Config
-//---------------------------------------------------------
-
-class MPConfig : public QDialog, Ui::SynthConfigBase {
- QMenu* instrPopup;
- //QMenu* popup;
- int _showAliases; // -1: None. 0: First aliases. 1: Second aliases etc.
- void setWhatsThis(QTableWidgetItem *item, int col);
- void setToolTip(QTableWidgetItem *item, int col);
- void addItem(int row, int col, QTableWidgetItem *item, QTableWidget *table);
-
- Q_OBJECT
-
- private slots:
- void rbClicked(QTableWidgetItem*);
- void mdevViewItemRenamed(QTableWidgetItem*);
- void songChanged(int);
- void selectionChanged();
- void addInstanceClicked();
- void removeInstanceClicked();
-
- public:
- MPConfig(QWidget* parent=0);
- ~MPConfig();
- };
-
-#endif