logic: improvements for IDE communication

* fixed Sublime Text plugin to correctly send messages
* activate and focus Coati window when receiving a message
* extended lookup range for activate token message from plugin
This commit is contained in:
Eberhard Graether
2015-11-13 13:09:22 +01:00
parent df7c5ea9b7
commit 3c2804797a
9 changed files with 63 additions and 13 deletions
@@ -0,0 +1,20 @@
#ifndef MESSAGE_ACTIVATE_WINDOW_H
#define MESSAGE_ACTIVATE_WINDOW_H
#include "utility/messaging/Message.h"
class MessageActivateWindow
: public Message<MessageActivateWindow>
{
public:
MessageActivateWindow()
{
}
static const std::string getStaticType()
{
return "MessageActivateWindow";
}
};
#endif // MESSAGE_ACTIVATE_WINDOW_H