~ubuntu-branches/ubuntu/wily/muse/wily-proposed

« back to all changes in this revision

Viewing changes to muse/dialogs.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-12-03 17:12:54 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20111203171254-28b1j4lpb46r5jtl
Tags: 2.0~rc1-1
* New upstream RC release.
* Refresh patches, remove those patches not needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//    $Id: dialogs.h,v 1.20.2.19 2011/05/05 20:10 flo93 Exp $
 
5
//  (C) Copyright 2011 Florian Jung (flo93@sourceforge.net)
 
6
//
 
7
//  This program is free software; you can redistribute it and/or
 
8
//  modify it under the terms of the GNU General Public License
 
9
//  as published by the Free Software Foundation; version 2 of
 
10
//  the License, or (at your option) any later version.
 
11
//
 
12
//  This program is distributed in the hope that it will be useful,
 
13
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
//  GNU General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU General Public License
 
18
//  along with this program; if not, write to the Free Software
 
19
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
//
 
21
//=========================================================
 
22
 
 
23
#ifndef __DIALOGS_H__
 
24
#define __DIALOGS_H__
 
25
 
 
26
class QWidget;
 
27
 
 
28
namespace MusECore {
 
29
class Xml;
 
30
}
 
31
 
 
32
namespace MusEGui
 
33
{
 
34
        class GateTime;
 
35
        class Velocity;
 
36
        class Quantize;
 
37
        class Remove;
 
38
        class DelOverlaps;
 
39
        class Setlen;
 
40
        class Move;
 
41
        class Transpose;
 
42
        class Crescendo;
 
43
        class Legato;
 
44
        class PasteDialog;
 
45
        class PasteEventsDialog;
 
46
 
 
47
 
 
48
extern GateTime* gatetime_dialog;
 
49
extern Velocity* velocity_dialog;
 
50
extern Quantize* quantize_dialog;
 
51
extern Remove* erase_dialog;
 
52
extern DelOverlaps* del_overlaps_dialog;
 
53
extern Setlen* set_notelen_dialog;
 
54
extern Move* move_notes_dialog;
 
55
extern Transpose* transpose_dialog;
 
56
extern Crescendo* crescendo_dialog;
 
57
extern Legato* legato_dialog;
 
58
extern PasteDialog* paste_dialog;
 
59
extern PasteEventsDialog* paste_events_dialog;
 
60
 
 
61
void init_function_dialogs(QWidget* parent);
 
62
void retranslate_function_dialogs();
 
63
void read_function_dialog_config(MusECore::Xml& xml);
 
64
void write_function_dialog_config(int level, MusECore::Xml& xml);
 
65
 
 
66
}
 
67
 
 
68
#endif