2013-05-01 23:53:28 +00:00
/*
2013-06-15 11:09:02 +00:00
* This file is subject to the terms of the GFX License . If a copy of
2013-05-03 14:36:17 +00:00
* the license was not distributed with this file , you can obtain one at :
*
2013-07-21 20:20:37 +00:00
* http : //ugfx.org/license.html
2013-05-03 14:36:17 +00:00
*/
2013-02-18 07:33:35 +00:00
/**
* @ file include / gfx_rules . h
* @ brief GFX system safety rules header file .
*
* @ addtogroup GFX
* @ {
*/
# ifndef _GFX_RULES_H
# define _GFX_RULES_H
/**
* Safety checks on all the defines .
*
* These are defined in the order of their inter - dependancies .
*/
2013-05-24 15:26:52 +00:00
# ifndef GFX_DISPLAY_RULE_WARNINGS
# define GFX_DISPLAY_RULE_WARNINGS FALSE
# endif
2013-07-23 00:12:52 +00:00
# if !GFX_USE_OS_CHIBIOS && !GFX_USE_OS_WIN32 && !GFX_USE_OS_LINUX && !GFX_USE_OS_OSX
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GOS: No Operating System has been defined. ChibiOS (GFX_USE_OS_CHIBIOS) has been turned on for you."
# endif
# undef GFX_USE_OS_CHIBIOS
# define GFX_USE_OS_CHIBIOS TRUE
# endif
2013-07-23 00:12:52 +00:00
# if GFX_USE_OS_CHIBIOS + GFX_USE_OS_WIN32 + GFX_USE_OS_LINUX + GFX_USE_OS_OSX != 1 * TRUE
2013-05-24 15:26:52 +00:00
# error "GOS: More than one operation system has been defined as TRUE."
# endif
2013-02-18 07:33:35 +00:00
# if GFX_USE_GWIN
# if !GFX_USE_GDISP
# error "GWIN: GFX_USE_GDISP must be TRUE when using GWIN"
# endif
# if !GDISP_NEED_CLIP
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GWIN: Drawing can occur outside the defined windows as GDISP_NEED_CLIP is FALSE"
# endif
2013-02-18 07:33:35 +00:00
# endif
2013-07-03 14:20:32 +00:00
# if GWIN_NEED_IMAGE
# if !GDISP_NEED_IMAGE
# error "GWIN: GDISP_NEED_IMAGE is required when GWIN_NEED_IMAGE is TRUE."
# endif
# endif
2013-07-05 15:46:34 +00:00
# if GWIN_NEED_RADIO
# if !GDISP_NEED_CIRCLE
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GWIN: GDISP_NEED_CIRCLE should be set to TRUE for much nicer radio button widgets."
# endif
# endif
# endif
# if GWIN_NEED_BUTTON || GWIN_NEED_SLIDER || GWIN_NEED_CHECKBOX || GWIN_NEED_LABEL || GWIN_NEED_RADIO
2013-06-07 16:27:59 +00:00
# if !GWIN_NEED_WIDGET
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
2013-06-07 16:27:59 +00:00
# warning "GWIN: GWIN_NEED_WIDGET is required when a Widget is used. It has been turned on for you."
2013-05-24 15:26:52 +00:00
# endif
2013-06-07 16:27:59 +00:00
# undef GWIN_NEED_WIDGET
# define GWIN_NEED_WIDGET TRUE
# endif
# endif
2013-07-17 15:49:21 +00:00
# if GWIN_NEED_LIST
# if !GDISP_NEED_TEXT
# error "GWIN: GDISP_NEED_TEXT is required when GWIN_NEED_LIST is TRUE."
# endif
# endif
2013-06-07 16:27:59 +00:00
# if GWIN_NEED_WIDGET
# if !GDISP_NEED_TEXT
# error "GWIN: GDISP_NEED_TEXT is required if GWIN_NEED_WIDGET is TRUE."
# endif
# if !GFX_USE_GINPUT
// This test also ensures that GFX_USE_GEVENT is set
# error "GWIN: GFX_USE_GINPUT (and one or more input sources) is required if GWIN_NEED_WIDGET is TRUE"
2013-02-18 07:33:35 +00:00
# endif
2013-06-10 07:18:01 +00:00
# if !GWIN_NEED_WINDOWMANAGER
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GWIN: GWIN_NEED_WINDOWMANAGER is required if GWIN_NEED_WIDGET is TRUE. It has been turned on for you."
# endif
# undef GWIN_NEED_WINDOWMANAGER
# define GWIN_NEED_WINDOWMANAGER TRUE
# endif
2013-02-18 07:33:35 +00:00
# if !GDISP_NEED_MULTITHREAD && !GDISP_NEED_ASYNC
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
2013-06-07 16:27:59 +00:00
# warning "GWIN: Either GDISP_NEED_MULTITHREAD or GDISP_NEED_ASYNC is required if GWIN_NEED_WIDGET is TRUE."
2013-05-24 15:26:52 +00:00
# warning "GWIN: GDISP_NEED_MULTITHREAD has been turned on for you."
# endif
2013-02-18 07:33:35 +00:00
# undef GDISP_NEED_MULTITHREAD
# define GDISP_NEED_MULTITHREAD TRUE
# endif
# endif
2013-06-10 07:18:01 +00:00
# if GWIN_NEED_WINDOWMANAGER
# if !GFX_USE_GQUEUE || !GQUEUE_NEED_ASYNC
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GWIN: GFX_USE_GQUEUE and GQUEUE_NEED_ASYNC is required if GWIN_NEED_WINDOWMANAGER is TRUE. It has been turned on for you."
# endif
# undef GFX_USE_GQUEUE
# undef GQUEUE_NEED_ASYNC
# define GFX_USE_GQUEUE TRUE
# define GQUEUE_NEED_ASYNC TRUE
# endif
# endif
# if GWIN_NEED_CONSOLE
# if !GDISP_NEED_TEXT
# error "GWIN: GDISP_NEED_TEXT is required if GWIN_NEED_CONSOLE is TRUE."
# endif
# endif
# if GWIN_NEED_GRAPH
# endif
2013-02-18 07:33:35 +00:00
# endif
# if GFX_USE_GINPUT
# if !GFX_USE_GEVENT
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GINPUT: GFX_USE_GEVENT is required if GFX_USE_GINPUT is TRUE. It has been turned on for you."
# endif
2013-02-18 07:33:35 +00:00
# undef GFX_USE_GEVENT
# define GFX_USE_GEVENT TRUE
# endif
# if !GFX_USE_GTIMER
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GINPUT: GFX_USE_GTIMER is required if GFX_USE_GINPUT is TRUE. It has been turned on for you."
# endif
2013-02-18 07:33:35 +00:00
# undef GFX_USE_GTIMER
# define GFX_USE_GTIMER TRUE
# endif
# endif
# if GFX_USE_GDISP
# if GDISP_NEED_MULTITHREAD && GDISP_NEED_ASYNC
# error "GDISP: Only one of GDISP_NEED_MULTITHREAD and GDISP_NEED_ASYNC should be defined."
# endif
2013-05-25 16:06:55 +00:00
# if GDISP_NEED_ASYNC && !(GFX_USE_GQUEUE && GQUEUE_NEED_GSYNC)
# if GFX_DISPLAY_RULE_WARNINGS
2013-07-29 06:31:54 +00:00
# warning "GDISP: GDISP_NEED_ASYNC requires GFX_USE_GQUEUE and GQUEUE_NEED_GSYNC. They have been turned on for you."
2013-05-25 16:06:55 +00:00
# endif
# undef GFX_USE_GQUEUE
# define GFX_USE_GQUEUE TRUE
# undef GQUEUE_NEED_GSYNC
# define GQUEUE_NEED_GSYNC TRUE
# endif
2013-07-29 06:31:54 +00:00
# if GDISP_NEED_ANTIALIAS && !GDISP_NEED_PIXELREAD
# if GDISP_HARDWARE_PIXELREAD
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GDISP: GDISP_NEED_ANTIALIAS has been set but GDISP_NEED_PIXELREAD has not. It has been turned on for you."
# endif
# undef GDISP_NEED_PIXELREAD
# define GDISP_NEED_PIXELREAD TRUE
# else
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GDISP: GDISP_NEED_ANTIALIAS has been set but your hardware does not support reading back pixels. Anti-aliasing will only occur for filled characters."
# endif
# endif
# endif
2013-08-17 13:32:53 +00:00
# if (defined(GDISP_INCLUDE_FONT_SMALL) && GDISP_INCLUDE_FONT_SMALL) || (defined(GDISP_INCLUDE_FONT_LARGER) && GDISP_INCLUDE_FONT_LARGER)
2013-07-29 06:31:54 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
2013-08-17 13:32:53 +00:00
# warning "GDISP: An old font (Small or Larger) has been defined. A single default font of DEJAVUSANS12 has been added instead."
2013-07-29 06:31:54 +00:00
# warning "GDISP: Please see <$(GFXLIB) / include /gdisp/fonts/fonts.h> for a list of available font names."
# endif
# undef GDISP_INCLUDE_FONT_DEJAVUSANS12
# define GDISP_INCLUDE_FONT_DEJAVUSANS12 TRUE
# endif
2013-02-18 07:33:35 +00:00
# endif
# if GFX_USE_TDISP
# endif
2013-02-28 23:04:52 +00:00
# if GFX_USE_GAUDIN
# if GFX_USE_GEVENT && !GFX_USE_GTIMER
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GAUDIN: GFX_USE_GTIMER is required if GFX_USE_GAUDIN and GFX_USE_GEVENT are TRUE. It has been turned on for you."
# endif
2013-02-28 23:04:52 +00:00
# undef GFX_USE_GTIMER
# define GFX_USE_GTIMER TRUE
# endif
# endif
2013-02-18 07:33:35 +00:00
# if GFX_USE_GADC
# if !GFX_USE_GTIMER
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GADC: GFX_USE_GTIMER is required if GFX_USE_GADC is TRUE. It has been turned on for you."
# endif
2013-02-18 07:33:35 +00:00
# undef GFX_USE_GTIMER
# define GFX_USE_GTIMER TRUE
# endif
# endif
# if GFX_USE_GEVENT
# endif
# if GFX_USE_GTIMER
# if GFX_USE_GDISP && !GDISP_NEED_MULTITHREAD && !GDISP_NEED_ASYNC
2013-05-24 15:26:52 +00:00
# if GFX_DISPLAY_RULE_WARNINGS
# warning "GTIMER: Neither GDISP_NEED_MULTITHREAD nor GDISP_NEED_ASYNC has been specified."
# warning "GTIMER: Make sure you are not performing any GDISP / GWIN drawing operations in the timer callback!"
# endif
2013-02-18 07:33:35 +00:00
# endif
# endif
# if GFX_USE_GAUDOUT
# endif
2013-05-25 16:06:55 +00:00
# if GFX_USE_GQUEUE
# endif
2013-02-18 07:33:35 +00:00
# if GFX_USE_GMISC
# endif
# endif /* _GFX_H */
/** @} */