1 /* AbiWord
2  * Copyright (C) 2001 AbiSource, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 
21 /*****************************************************************
22 ******************************************************************
23 ** IT IS IMPORTANT THAT THIS FILE ALLOW ITSELF TO BE INCLUDED
24 ** MORE THAN ONE TIME.
25 ******************************************************************
26 *****************************************************************/
27 
28 BeginLayout(ContextImageT,EV_EMC_IMAGE)
29 
30 	BeginPopupMenu()
31 		MenuItem(AP_MENU_ID_CONTEXT_IMAGE)
32 		MenuItem(AP_MENU_ID_FMT_SETPOSIMAGE)
33 		MenuItem(AP_MENU_ID_FILE_SAVEIMAGE)
34 		Separator()
35 		MenuItem(AP_MENU_ID_EDIT_CUT)
36 		MenuItem(AP_MENU_ID_EDIT_COPY)
37 		MenuItem(AP_MENU_ID_EDIT_PASTE)
38 	    MenuItem(AP_MENU_ID_EDIT_PASTE_SPECIAL)
39 		Separator()
40      BeginSubMenu(AP_MENU_ID_TABLE)
41 		MenuItem(AP_MENU_ID_TABLE_INSERTTABLE)
42 		MenuItem(AP_MENU_ID_TABLE_DELETETABLE)
43 		Separator()
44 		MenuItem(AP_MENU_ID_TABLE_INSERTROW)
45 		MenuItem(AP_MENU_ID_TABLE_INSERTCOLUMN)
46 		MenuItem(AP_MENU_ID_TABLE_DELETEROW)
47 		MenuItem(AP_MENU_ID_TABLE_DELETECOLUMN)
48 		MenuItem(AP_MENU_ID_TABLE_MERGE_CELLS)
49 		Separator()
50 		MenuItem(AP_MENU_ID_TABLE_FORMAT)
51      EndSubMenu()
52 		MenuItem(AP_MENU_ID_INSERT_HYPERLINK)
53 		Separator()
54 		MenuItem(AP_MENU_ID_FMT_FONT)
55 	    MenuItem(AP_MENU_ID_FMT_LANGUAGE)
56 		MenuItem(AP_MENU_ID_FMT_PARAGRAPH)
57 	    MenuItem(AP_MENU_ID_FMT_BULLETS)
58 	EndPopupMenu()
59 
60 EndLayout()
61