mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
e5c0c7185e
svn path=/trunk/; revision=2456
138 lines
3.7 KiB
C
138 lines
3.7 KiB
C
#ifndef __EDIT_CMD_DEF_H
|
|
#define __EDIT_CMD_DEF_H
|
|
|
|
/* in the distant future, keyboards will be invented with a
|
|
seperate key for each one of these commands *sigh* */
|
|
|
|
/* cursor movements */
|
|
#define CK_No_Command -1
|
|
#define CK_BackSpace 1
|
|
#define CK_Delete 2
|
|
#define CK_Enter 3
|
|
#define CK_Page_Up 4
|
|
#define CK_Page_Down 5
|
|
#define CK_Left 6
|
|
#define CK_Right 7
|
|
#define CK_Word_Left 8
|
|
#define CK_Word_Right 9
|
|
#define CK_Up 10
|
|
#define CK_Down 11
|
|
#define CK_Home 12
|
|
#define CK_End 13
|
|
#define CK_Tab 14
|
|
#define CK_Undo 15
|
|
#define CK_Beginning_Of_Text 16
|
|
#define CK_End_Of_Text 17
|
|
#define CK_Scroll_Up 18
|
|
#define CK_Scroll_Down 19
|
|
#define CK_Return 20
|
|
#define CK_Begin_Page 21
|
|
#define CK_End_Page 22
|
|
#define CK_Delete_Word_Left 23
|
|
#define CK_Delete_Word_Right 24
|
|
#define CK_Paragraph_Up 25
|
|
#define CK_Paragraph_Down 26
|
|
|
|
|
|
/* file commands */
|
|
#define CK_Save 101
|
|
#define CK_Load 102
|
|
#define CK_New 103
|
|
#define CK_Save_As 104
|
|
|
|
/* block commands */
|
|
#define CK_Mark 201
|
|
#define CK_Copy 202
|
|
#define CK_Move 203
|
|
#define CK_Remove 204
|
|
#define CK_Unmark 206
|
|
#define CK_Save_Block 207
|
|
|
|
/* search and replace */
|
|
#define CK_Find 301
|
|
#define CK_Find_Again 302
|
|
#define CK_Replace 303
|
|
#define CK_Replace_Again 304
|
|
|
|
/* misc */
|
|
#define CK_Insert_File 401
|
|
#define CK_Exit 402
|
|
#define CK_Toggle_Insert 403
|
|
#define CK_Help 404
|
|
#define CK_Date 405
|
|
#define CK_Refresh 406
|
|
#define CK_Goto 407
|
|
#define CK_Delete_Line 408
|
|
#define CK_Delete_To_Line_End 409
|
|
#define CK_Delete_To_Line_Begin 410
|
|
#define CK_Man_Page 411
|
|
#define CK_Sort 412
|
|
#define CK_Mail 413
|
|
#define CK_Cancel 414
|
|
#define CK_Complete 415
|
|
#define CK_Paragraph_Format 416
|
|
|
|
/* application control */
|
|
#define CK_Save_Desktop 451
|
|
#define CK_New_Window 452
|
|
#define CK_Cycle 453
|
|
#define CK_Menu 454
|
|
#define CK_Save_And_Quit 455
|
|
#define CK_Run_Another 456
|
|
#define CK_Check_Save_And_Quit 457
|
|
|
|
/* macro */
|
|
#define CK_Begin_Record_Macro 501
|
|
#define CK_End_Record_Macro 502
|
|
#define CK_Delete_Macro 503
|
|
|
|
/* highlight commands */
|
|
#define CK_Page_Up_Highlight 604
|
|
#define CK_Page_Down_Highlight 605
|
|
#define CK_Left_Highlight 606
|
|
#define CK_Right_Highlight 607
|
|
#define CK_Word_Left_Highlight 608
|
|
#define CK_Word_Right_Highlight 609
|
|
#define CK_Up_Highlight 610
|
|
#define CK_Down_Highlight 611
|
|
#define CK_Home_Highlight 612
|
|
#define CK_End_Highlight 613
|
|
#define CK_Beginning_Of_Text_Highlight 614
|
|
#define CK_End_Of_Text_Highlight 615
|
|
#define CK_Begin_Page_Highlight 616
|
|
#define CK_End_Page_Highlight 617
|
|
#define CK_Scroll_Up_Highlight 618
|
|
#define CK_Scroll_Down_Highlight 619
|
|
#define CK_Paragraph_Up_Highlight 620
|
|
#define CK_Paragraph_Down_Highlight 621
|
|
|
|
/* X clipboard operations */
|
|
|
|
#define CK_XStore 701
|
|
#define CK_XCut 702
|
|
#define CK_XPaste 703
|
|
#define CK_Selection_History 704
|
|
|
|
#ifdef MIDNIGHT /* cooledit now has its own full-featured script editor and executor */
|
|
/*
|
|
Process a block through a shell command: CK_Pipe_Block(i) executes shell_cmd[i].
|
|
shell_cmd[i] must process the file ~/cooledit.block and output ~/cooledit.block
|
|
which is then inserted into the text in place of the original block. shell_cmd[i] must
|
|
also produce a file homedir/cooledit.error . If this file is not empty an error will
|
|
have been assumed to have occured, and the block will not be replaced.
|
|
TODO: bring up a viewer to display the error message instead of inserting
|
|
it into the text, which is annoying.
|
|
*/
|
|
#define CK_Pipe_Block(i) (1000+(i))
|
|
#define SHELL_COMMANDS_i {"/.cedit/edit.indent.rc", "/.cedit/edit.spell.rc", /* and so on */ 0};
|
|
#else
|
|
#define CK_User_Command(i) (1000+(i))
|
|
#endif
|
|
|
|
/* execute a macro */
|
|
#define CK_Macro(i) (2000+(i))
|
|
#define CK_Last_Macro CK_Macro(0x7FFF)
|
|
|
|
|
|
#endif
|
|
|