2011-07-20 10:33:24 +02:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
2012-11-25 11:55:06 +01:00
|
|
|
*
|
|
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
|
|
*
|
|
|
|
* @license GPL v3 (see license file)
|
2011-07-20 10:33:24 +02:00
|
|
|
*/
|
2012-11-25 11:55:06 +01:00
|
|
|
|
2011-07-20 10:33:24 +02:00
|
|
|
#ifndef __MSG_BROADCAST_H__
|
|
|
|
#define __MSG_BROADCAST_H__
|
|
|
|
|
2012-02-03 18:14:45 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Event of the gui request something :
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
extern const char* const ednMsgGuiNew; // data : ""
|
|
|
|
extern const char* const ednMsgGuiOpen; // data : ""
|
|
|
|
extern const char* const ednMsgGuiClose; // data : "current" "All"
|
|
|
|
extern const char* const ednMsgGuiSave; // data : ""
|
|
|
|
extern const char* const ednMsgGuiSaveAs; // data : ""
|
2012-07-18 18:21:21 +02:00
|
|
|
extern const char* const ednMsgProperties; // data : ""
|
2013-05-28 22:09:53 +02:00
|
|
|
extern const char* const ednMsgGuiExit; // data : ""
|
2012-02-03 18:14:45 +01:00
|
|
|
|
|
|
|
extern const char* const ednMsgGuiUndo; // data : ""
|
|
|
|
extern const char* const ednMsgGuiRedo; // data : ""
|
|
|
|
extern const char* const ednMsgGuiCopy; // data : "STD" "Middle" "1" ... "9"
|
|
|
|
extern const char* const ednMsgGuiCut; // data : "STD" "Middle" "1" ... "9"
|
|
|
|
extern const char* const ednMsgGuiPaste; // data : "STD" "Middle" "1" ... "9"
|
|
|
|
extern const char* const ednMsgGuiRm; // data : "Word" "Line" "Paragraph"
|
|
|
|
extern const char* const ednMsgGuiSelect; // data : "ALL" "NONE"
|
|
|
|
extern const char* const ednMsgGuiGotoLine; // data : "???" / "1" ... "999999999999"
|
|
|
|
|
|
|
|
extern const char* const ednMsgGuiSearch; // data : ""
|
2012-07-01 17:54:50 +02:00
|
|
|
extern const char* const ednMsgGuiReplace; // data : "Normal" "All"
|
2012-02-16 18:18:04 +01:00
|
|
|
extern const char* const ednMsgGuiFind; // data : "Next" "Previous" "All" "None"
|
2012-02-03 18:14:45 +01:00
|
|
|
|
|
|
|
extern const char* const ednMsgGuiChangeColor; // data : "Black" "White"
|
|
|
|
extern const char* const ednMsgGuiChangeCharset; // data : "UTF-8" "ISO-8859-1" "ISO-8859-15"
|
|
|
|
extern const char* const ednMsgGuiShowSpaces; // data : "enable" "disable"
|
|
|
|
extern const char* const ednMsgGuiShowEndOfLine; // data : "enable" "disable"
|
|
|
|
|
2012-02-09 17:20:52 +01:00
|
|
|
extern const char* const ednMsgGuiCtags; // data : "Load" "ReLoad" "Jump" "Back"
|
2012-10-17 10:24:23 +02:00
|
|
|
extern const char* const ednMsgCtagsLoadFile; // data : "filename of the ctags file"
|
2012-02-03 18:14:45 +01:00
|
|
|
|
2012-10-11 18:05:56 +02:00
|
|
|
extern const char* const ednMsgGuiReloadShader; // data : ""
|
2012-02-03 18:14:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Event internal :
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2012-02-09 17:20:52 +01:00
|
|
|
extern const char* const ednMsgBufferState; // data : "Saved" "Modify" "HasHistory" "HasNotHistory" "HasFutureHistory" "HasNotFutureHistory"
|
|
|
|
extern const char* const ednMsgBufferName; // data : "filename"
|
|
|
|
extern const char* const ednMsgBufferId; // data : "0" ... "99999999999"
|
|
|
|
extern const char* const ednMsgCodeViewSelectedId; // data : "0" ... "99999999999"
|
|
|
|
extern const char* const ednMsgOpenFile; // data : "/Compleate/file/name.xx"
|
2012-02-03 18:14:45 +01:00
|
|
|
|
|
|
|
extern const char* const ednMsgBufferListChange; // data : ""
|
|
|
|
|
|
|
|
extern const char* const ednMsgBufferColor; // data : "new"
|
|
|
|
|
|
|
|
|
2011-07-20 10:33:24 +02:00
|
|
|
#endif
|
|
|
|
|