You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
589 B
26 lines
589 B
/****************************************/
|
|
/* 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
|