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:
@@ -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
|
||||
Reference in New Issue
Block a user