2007-04-26 20:54:31 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2005-2013 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
|
* Copyright (C) 2007-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2009-2011 David Robillard <d@drobilla.net>
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2007-04-26 20:54:31 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
#ifndef __ardour_gtk_enums_h__
|
|
|
|
|
#define __ardour_gtk_enums_h__
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/types.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
enum Width {
|
|
|
|
|
Wide,
|
|
|
|
|
Narrow,
|
|
|
|
|
};
|
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
|
class Rectangle;
|
2005-11-13 18:13:50 +00:00
|
|
|
}
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-05-17 10:41:14 +00:00
|
|
|
enum LayerDisplay {
|
|
|
|
|
Overlaid,
|
2011-12-27 01:42:49 +00:00
|
|
|
Stacked,
|
|
|
|
|
Expanded
|
2007-05-17 10:41:14 +00:00
|
|
|
};
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
struct SelectionRect {
|
2013-04-04 00:32:52 -04:00
|
|
|
ArdourCanvas::Rectangle *rect;
|
|
|
|
|
ArdourCanvas::Rectangle *end_trim;
|
|
|
|
|
ArdourCanvas::Rectangle *start_trim;
|
2005-09-25 18:42:24 +00:00
|
|
|
uint32_t id;
|
|
|
|
|
};
|
|
|
|
|
|
2010-05-11 00:09:41 +00:00
|
|
|
enum Height {
|
|
|
|
|
HeightLargest,
|
|
|
|
|
HeightLarger,
|
|
|
|
|
HeightLarge,
|
|
|
|
|
HeightNormal,
|
2011-06-02 00:06:35 +00:00
|
|
|
HeightSmall
|
2010-05-11 00:09:41 +00:00
|
|
|
};
|
|
|
|
|
|
2007-01-07 22:10:36 +00:00
|
|
|
extern void setup_gtk_ardour_enums ();
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
#endif /* __ardour_gtk_enums_h__ */
|