Allow status bar components to be individually shown / hidden.

git-svn-id: svn://localhost/ardour2/branches/3.0@10296 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-10-23 21:31:28 +00:00
parent ae2bbd98a5
commit f8c6840677
5 changed files with 155 additions and 6 deletions

View file

@ -53,6 +53,15 @@ enum Height {
HeightSmall
};
enum StatusBarComponent {
StatusWallClock = 0x1,
StatusDiskSpace = 0x2,
StatusCPULoad = 0x4,
StatusBufferLoad = 0x8,
StatusSampleRate = 0x10,
StatusFormat = 0x20
};
extern void setup_gtk_ardour_enums ();
#endif /* __ardour_gtk_enums_h__ */