You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rosegarden/src/base/StaffExportTypes.h

74 lines
2.3 KiB

/*
Rosegarden
A MIDI and audio sequencer and musical notation editor.
This program is Copyright 2000-2008
Guillaume Laurent <glaurent@telegraph-road.org>,
Chris Cannam <cannam@all-day-breakfast.com>,
Richard Bown <richard.bown@ferventsoftware.com>
This file Coypright 2008 D. Michael McIntyre
The moral rights of Guillaume Laurent, Chris Cannam, and Richard
Bown to claim authorship of this work have been asserted.
Other copyrights also apply to some parts of this work. Please
see the AUTHORS file and individual file headers for details.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#ifndef _STAFF_EXPORT_H_
#define _STAFF_EXPORT_H_
namespace Rosegarden
{
/**
* StaffTypes are currently only used for LilyPond export, and amount to named
* constant indices for the Track Parameters Box. They are used to control the
* size of notation exported on a given staff, and boil down to a complicated
* way to insert a \tiny or \small in the data stream ahead of the first clef,
* etc.
*/
typedef int StaffType;
namespace StaffTypes
{
const StaffType Normal = 0;
const StaffType Small = 1;
const StaffType Tiny = 2;
}
/**
* Brackets are currently only used for LilyPond export, and amount to named
* constant indices for the Track Parameters Box. They are used to control how
* staffs are bracketed together, and it is unfortunately necessary to have a
* staggering number of them in order to handle all the possible combinations of
* opening and closing brackets while keeping the interface as simple as
* possible.
*/
typedef int Bracket;
namespace Brackets
{
const Bracket None = 0; // ----
const Bracket SquareOn = 1; // [
const Bracket SquareOff = 2; // ]
const Bracket SquareOnOff = 3; // [ ]
const Bracket CurlyOn = 4; // {
const Bracket CurlyOff = 5; // }
const Bracket CurlySquareOn = 6; // {[
const Bracket CurlySquareOff = 7; // ]}
}
}
#endif