~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to muse/mixer/routedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2005-08-23 17:19:39 UTC
  • mto: (4.1.1 breezy) (1.1.9) (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050823171939-hd8fgzokb4dbj007
Tags: upstream-0.7.1+0.7.2pre2
ImportĀ upstreamĀ versionĀ 0.7.1+0.7.2pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//  $Id: routedialog.h,v 1.2 2004/01/31 17:31:49 wschweer Exp $
 
5
//
 
6
//  (C) Copyright 2004 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#ifndef __ROUTEDIALOG_H__
 
10
#define __ROUTEDIALOG_H__
 
11
 
 
12
#include "routedialogbase.h"
 
13
 
 
14
//---------------------------------------------------------
 
15
//   RouteDialog
 
16
//---------------------------------------------------------
 
17
 
 
18
class RouteDialog : public RouteDialogBase {
 
19
      Q_OBJECT
 
20
 
 
21
      virtual void closeEvent(QCloseEvent*);
 
22
      void routingChanged();
 
23
 
 
24
   private slots:
 
25
      void routeSelectionChanged();
 
26
      void removeRoute();
 
27
      void addRoute();
 
28
      void srcSelectionChanged();
 
29
      void dstSelectionChanged();
 
30
      void songChanged(int);
 
31
 
 
32
   signals:
 
33
      void closed();
 
34
 
 
35
   public:
 
36
      RouteDialog(QWidget* parent);
 
37
      };
 
38
 
 
39
 
 
40
#endif
 
41