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