The R Project SVN R

Rev

Rev 44016 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44016 Rev 46842
Line 27... Line 27...
27
#define EDITORMAXTITLE 128
27
#define EDITORMAXTITLE 128
28
#define MAXNEDITORS 50
28
#define MAXNEDITORS 50
29
 
29
 
30
struct structEditorData {
30
struct structEditorData {
31
    Rboolean file; /* is the editor associated with an existing file */
31
    Rboolean file; /* is the editor associated with an existing file */
32
    char *filename; /* corresponding file */
32
    char *filename; /* corresponding file, in UTF-8 as from 2.9.0 */
33
    char *title;    /* window title */
33
    char *title;    /* window title */
34
    Rboolean stealconsole;  /* set when using fix() or edit(), so that no events are sent to console until this editor is closed */
34
    Rboolean stealconsole;  /* set when using fix() or edit(), so that no events are sent to console until this editor is closed */
35
    menuitem mcut, mcopy, mdelete, mfind, mreplace,
35
    menuitem mcut, mcopy, mdelete, mfind, mreplace,
36
	mpopcut, mpopcopy, mpopdelete;
36
	mpopcut, mpopcopy, mpopdelete;
37
    HelpMenuItems hmenu;
37
    HelpMenuItems hmenu;