blob: ea0942969f69184a44efabdb151441818b23262f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
//=========================================================
// 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 "ui_gensetbase.h"
#include <QShowEvent>
//---------------------------------------------------------
// GlobalSettingsConfig
//---------------------------------------------------------
class GlobalSettingsConfig : public QDialog, public Ui::GlobalSettingsDialogBase {
Q_OBJECT
private slots:
void updateSettings();
void apply();
void ok();
void cancel();
void mixerCurrent();
void mixer2Current();
void bigtimeCurrent();
void arrangerCurrent();
void transportCurrent();
void selectInstrumentsPath();
void defaultInstrumentsPath();
protected:
void showEvent(QShowEvent*);
QButtonGroup *startSongGroup;
public:
GlobalSettingsConfig(QWidget* parent=0);
};
#endif
|