summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/genset.h
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/widgets/genset.h')
-rw-r--r--muse2/muse/widgets/genset.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/muse2/muse/widgets/genset.h b/muse2/muse/widgets/genset.h
new file mode 100644
index 00000000..375cf197
--- /dev/null
+++ b/muse2/muse/widgets/genset.h
@@ -0,0 +1,41 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// $Id: genset.h,v 1.3 2004/01/25 09:55:17 wschweer Exp $
+//
+// (C) Copyright 2001 Werner Schweer (ws@seh.de)
+//=========================================================
+
+#ifndef __GENSET_H__
+#define __GENSET_H__
+
+#include "gensetbase.h"
+//Added by qt3to4:
+#include <QShowEvent>
+
+//---------------------------------------------------------
+// GlobalSettingsConfig
+//---------------------------------------------------------
+
+class GlobalSettingsConfig : public GlobalSettingsDialogBase {
+ Q_OBJECT
+
+ private slots:
+ void updateSettings();
+ void apply();
+ void ok();
+ void cancel();
+ void mixerCurrent();
+ void mixer2Current();
+ void bigtimeCurrent();
+ void arrangerCurrent();
+ void transportCurrent();
+
+ protected:
+ void showEvent(QShowEvent*);
+
+ public:
+ GlobalSettingsConfig(QWidget* parent=0, const char* name=0);
+ };
+
+#endif