From 3ffd0dacdd7447c6c377f95c1fa7fc45a2612d98 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Tue, 14 Feb 2012 17:26:03 +0000 Subject: - added support for custom controller columns in the tracklist they are stored in and read from the global config file. - tracklist header is now saved into global config, not in songfile. TODO: - allow the user to customize the custom columns - make recreating the Header work (graphical glitches currently) --- muse2/muse/widgets/utils.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'muse2/muse/widgets/utils.h') diff --git a/muse2/muse/widgets/utils.h b/muse2/muse/widgets/utils.h index 95b9a133..07899a84 100644 --- a/muse2/muse/widgets/utils.h +++ b/muse2/muse/widgets/utils.h @@ -23,6 +23,9 @@ #ifndef __UTILS_H__ #define __UTILS_H__ +#define MAX(a,b) (((a)>(b))?(a):(b)) +#define MIN(a,b) (((a)<(b))?(a):(b)) + class QFrame; class QString; class QWidget; -- cgit v1.2.3