~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to widgets/genset.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//  $Id: genset.h,v 1.2 2001/11/20 15:19:34 muse Exp $
 
5
//
 
6
//  (C) Copyright 2001 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#ifndef __GENSET_H__
 
10
#define __GENSET_H__
 
11
 
 
12
#include "gensetbase.h"
 
13
 
 
14
//---------------------------------------------------------
 
15
//   GlobalSettingsConfig
 
16
//---------------------------------------------------------
 
17
 
 
18
class GlobalSettingsConfig : public GlobalSettingsDialogBase {
 
19
      Q_OBJECT
 
20
 
 
21
      void applySettings();
 
22
 
 
23
   private slots:
 
24
      void apply();
 
25
      void ok();
 
26
      void cancel();
 
27
 
 
28
   public:
 
29
      GlobalSettingsConfig(QWidget* parent=0, const char* name=0);
 
30
      };
 
31
 
 
32
#endif