add forgotten file to bzr3107, add GOST to KICAD_BULD_VERSION if defined KICAD_GOST
This commit is contained in:
parent
9f98995a46
commit
0648addabf
|
@ -6,7 +6,11 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef KICAD_BUILD_VERSION
|
#ifndef KICAD_BUILD_VERSION
|
||||||
#define KICAD_BUILD_VERSION "(2011-aug-04)"
|
#if defined KICAD_GOST
|
||||||
|
# define KICAD_BUILD_VERSION "(2011-aug-04 GOST)"
|
||||||
|
#else
|
||||||
|
# define KICAD_BUILD_VERSION "(2011-aug-04)"
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
/****************************************/
|
||||||
|
/* Macros: used to record and play */
|
||||||
|
/* sequence hotkeys and their positions */
|
||||||
|
/****************************************/
|
||||||
|
|
||||||
|
#ifndef _CLASS_MACROS_RECORD_H
|
||||||
|
#define _CLASS_MACROS_RECORD_H
|
||||||
|
|
||||||
|
#include <list>
|
||||||
|
|
||||||
|
class MACROS_RECORD
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
int m_HotkeyCode;
|
||||||
|
int m_Idcommand;
|
||||||
|
wxPoint m_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
class MACROS_RECORDED
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxPoint m_StartPosition;
|
||||||
|
std::list<MACROS_RECORD> m_Record;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // _CLASS_MACROS_RECORD_H
|
Loading…
Reference in New Issue