kicad/include/macros.h

234 lines
7.6 KiB
C
Raw Normal View History

/**************************************/
/* Useful macros and inline functions */
/**************************************/
2007-05-06 16:03:28 +00:00
#ifndef MACROS_H
#define MACROS_H
#include <wx/wx.h>
#if wxUSE_UNICODE
2007-11-05 07:07:00 +00:00
#define CONV_TO_UTF8( wxstring ) ( (const char*) wxConvCurrent->cWX2MB( wxstring ) )
#define CONV_FROM_UTF8( utf8string ) ( wxConvCurrent->cMB2WC( utf8string ) )
#else
2009-08-18 18:21:04 +00:00
#define CONV_TO_UTF8( wxstring ) ( (const char*) ( (wxstring).c_str() ) )
2007-11-05 07:07:00 +00:00
#define CONV_FROM_UTF8( utf8string ) (utf8string)
#endif
2007-05-06 16:03:28 +00:00
2009-04-17 06:23:07 +00:00
/**
* Function GetChars
* returns a wxChar* to the actual character data within a wxString, and is
* helpful for passing strings to wxString::Printf(wxT("%s"), GetChars(wxString) )
* <p>
* wxChar is defined to be <ul>
* <li> standard C style char when wxUSE_UNICODE==0 </li>
* <li> wchar_t when wxUSE_UNICODE==1 (the default). </li>
* <ul>
* i.e. it depends on how the wxWidgets library was compiled. There was a period
* during the development of wxWidgets 2.9 when GetData() was missing, so this
* function was used to provide insulation from that design change. It may
* no longer be needed, and is harmless. GetData() seems to be an acceptable
* alternative in all cases now.
2009-04-17 06:23:07 +00:00
*/
static inline const wxChar* GetChars( const wxString& s )
2009-04-17 06:23:07 +00:00
{
#if wxCHECK_VERSION( 2, 9, 0 )
return (const wxChar*) s.c_str();
2009-04-17 06:23:07 +00:00
#else
return s.GetData();
#endif
}
2007-05-06 16:03:28 +00:00
#ifndef MIN
#define MIN( x, y ) ( (x) > (y) ? (y) : (x) )
2007-05-06 16:03:28 +00:00
#endif
#ifndef MAX
#define MAX( x, y ) ( (x) > (y) ? (x) : (y) )
2007-05-06 16:03:28 +00:00
#endif
#ifndef ABS
#define ABS( y ) ( (y) >= 0 ? (y) : ( -(y) ) )
2007-05-06 16:03:28 +00:00
#endif
#define NEGATE( x ) (x = -x)
/// # of elements in an arrray
#define DIM( x ) unsigned( sizeof(x) / sizeof( (x)[0] ) ) // not size_t
#define DEG2RAD( Deg ) ( (Deg) * M_PI / 180.0 )
#define RAD2DEG( Rad ) ( (Rad) * 180.0 / M_PI )
2007-05-06 16:03:28 +00:00
/* Normalize angle to be in the -360.0 .. 360.0 range or 0 .. 360.0: */
#define NORMALIZE_ANGLE( Angle ) { while( Angle < 0 ) \
Angle += 3600;\
while( Angle > 3600 ) \
Angle -= 3600;}
2007-05-06 16:03:28 +00:00
/* Normalize angle to be in the 0.0 .. 360.0 range: */
#define NORMALIZE_ANGLE_POS( Angle ) { while( Angle < 0 ) \
Angle += 3600;while( Angle >= 3600 ) \
Angle -= 3600;}
2007-11-05 07:07:00 +00:00
#define NEGATE_AND_NORMALIZE_ANGLE_POS( Angle ) \
{ Angle = -Angle; while( Angle < 0 ) \
Angle += 3600;while( Angle >= 3600 ) \
Angle -= 3600;}
2007-05-06 16:03:28 +00:00
/* Normalize angle to be in the -90.0 .. 90.0 range */
#define NORMALIZE_ANGLE_90( Angle ) { while( Angle < -900 ) \
Angle += 1800;\
while( Angle > 900 ) \
Angle -= 1800;}
/* Normalize angle to be in the -180.0 .. 180.0 range */
#define NORMALIZE_ANGLE_180( Angle ) { while( Angle <= -1800 ) \
Angle += 3600;\
while( Angle > 1800 ) \
Angle -= 3600;}
/*****************************/
/* macro to exchange 2 items */
/*****************************/
/*
* The EXCHG macro uses BOOST_TYPEOF for compilers that do not have native
* typeof support (MSVC). Please do not attempt to qualify these macros
* within #ifdef compiler definitions pragmas. BOOST_TYPEOF is smart enough
* to check for native typeof support and use it instead of it's own
* implementation. These macros effectively compile to nothing on platforms
* with native typeof support.
*/
#include "boost/typeof/typeof.hpp"
// we have to register the types used with the typeof keyword with boost
2010-10-04 12:58:07 +00:00
BOOST_TYPEOF_REGISTER_TYPE( wxPoint )
BOOST_TYPEOF_REGISTER_TYPE( wxSize )
BOOST_TYPEOF_REGISTER_TYPE( wxString )
class DrawSheetLabelStruct;
2010-10-04 12:58:07 +00:00
BOOST_TYPEOF_REGISTER_TYPE( DrawSheetLabelStruct* )
class EDA_ITEM;
BOOST_TYPEOF_REGISTER_TYPE( EDA_ITEM* )
class D_PAD;
2010-10-04 12:58:07 +00:00
BOOST_TYPEOF_REGISTER_TYPE( D_PAD* )
BOOST_TYPEOF_REGISTER_TYPE( const D_PAD* )
class BOARD_ITEM;
2010-10-04 12:58:07 +00:00
BOOST_TYPEOF_REGISTER_TYPE( BOARD_ITEM* )
#define EXCHG( a, b ) { BOOST_TYPEOF( a ) __temp__ = (a); \
(a) = (b); \
(b) = __temp__; }
/*****************************************************/
2007-11-05 07:07:00 +00:00
/* inline functions to insert menuitems with a icon: */
/*****************************************************/
2007-11-05 07:07:00 +00:00
static inline void ADD_MENUITEM( wxMenu* menu, int id,
const wxString& text,
const wxBitmap& icon )
2007-11-05 07:07:00 +00:00
{
wxMenuItem* l_item;
l_item = new wxMenuItem( menu, id, text );
2010-05-09 02:04:44 +00:00
#if !defined( __WXMAC__ )
2007-11-05 07:07:00 +00:00
l_item->SetBitmap( icon );
2010-05-09 02:04:44 +00:00
#endif /* !defined( __WXMAC__ ) */
2007-11-05 07:07:00 +00:00
menu->Append( l_item );
2010-10-04 12:58:07 +00:00
}
2007-11-05 07:07:00 +00:00
static inline void ADD_MENUITEM_WITH_HELP( wxMenu* menu, int id,
const wxString& text,
const wxString& help,
const wxBitmap& icon )
{
wxMenuItem* l_item;
l_item = new wxMenuItem( menu, id, text, help );
2010-05-09 02:04:44 +00:00
#if !defined( __WXMAC__ )
2007-11-05 07:07:00 +00:00
l_item->SetBitmap( icon );
2010-05-09 02:04:44 +00:00
#endif /* !defined( __WXMAC__ ) */
2007-11-05 07:07:00 +00:00
menu->Append( l_item );
2010-10-04 12:58:07 +00:00
}
2007-05-06 16:03:28 +00:00
#ifdef __WINDOWS__
2007-11-05 07:07:00 +00:00
static inline void ADD_MENUITEM_WITH_SUBMENU( wxMenu* menu, wxMenu* submenu,
int id, const wxString& text,
const wxBitmap& icon )
{
wxMenuItem* l_item;
2007-11-05 07:07:00 +00:00
l_item = new wxMenuItem( menu, id, text );
l_item->SetSubMenu( submenu );
l_item->SetBitmap( icon );
menu->Append( l_item );
};
static inline void ADD_MENUITEM_WITH_HELP_AND_SUBMENU( wxMenu* menu,
wxMenu* submenu,
2007-11-05 07:07:00 +00:00
int id,
const wxString& text,
const wxString& help,
const wxBitmap& icon )
2007-11-05 07:07:00 +00:00
{
wxMenuItem* l_item;
2007-11-05 07:07:00 +00:00
l_item = new wxMenuItem( menu, id, text, help );
l_item->SetSubMenu( submenu );
l_item->SetBitmap( icon );
menu->Append( l_item );
};
2007-05-06 16:03:28 +00:00
#else
2007-11-05 07:07:00 +00:00
static inline void ADD_MENUITEM_WITH_SUBMENU( wxMenu* menu, wxMenu* submenu,
int id,
const wxString& text,
const wxBitmap& icon )
{
wxMenuItem* l_item;
l_item = new wxMenuItem( menu, id, text );
l_item->SetSubMenu( submenu );
2010-05-09 02:04:44 +00:00
#if !defined( __WXMAC__ )
2007-11-05 07:07:00 +00:00
l_item->SetBitmap( icon );
2010-05-09 02:04:44 +00:00
#endif /* !defined( __WXMAC__ ) */
2007-11-05 07:07:00 +00:00
menu->Append( l_item );
2010-10-04 12:58:07 +00:00
}
2007-11-05 07:07:00 +00:00
static inline void ADD_MENUITEM_WITH_HELP_AND_SUBMENU( wxMenu* menu,
wxMenu* submenu,
int id,
const wxString& text,
const wxString& help,
const wxBitmap& icon )
2007-11-05 07:07:00 +00:00
{
wxMenuItem* l_item;
l_item = new wxMenuItem( menu, id, text, help );
l_item->SetSubMenu( submenu );
2010-05-09 02:04:44 +00:00
#if !defined( __WXMAC__ )
2007-11-05 07:07:00 +00:00
l_item->SetBitmap( icon );
2010-05-09 02:04:44 +00:00
#endif /* !defined( __WXMAC__ ) */
2007-11-05 07:07:00 +00:00
menu->Append( l_item );
2010-10-04 12:58:07 +00:00
}
2007-11-05 07:07:00 +00:00
2007-05-06 16:03:28 +00:00
#endif
#ifdef __WINDOWS__
2010-05-09 02:04:44 +00:00
# define SETBITMAPS( icon ) item->SetBitmaps( apply_xpm, (icon) )
2007-05-06 16:03:28 +00:00
#else
2010-05-09 02:04:44 +00:00
# define SETBITMAPS( icon )
2007-05-06 16:03:28 +00:00
#endif
#endif /* ifdef MACRO_H */