1 /*
2  *	Copyright (C) 2004-2005 Vadim Berezniker
3  *	http://www.kryptolus.com
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  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 GNU Make; see the file COPYING.  If not, write to
17  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18  *  http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21 #include "stdafx.h"
22 
23 #include "gui_options.h"
24 #include "gui_customize_colors.h"
25 #include "gui_customize_menu_accels.h"
26 
gui_main_menu_tool_options(gpointer callback_data,gint callback_action,gpointer data)27 void gui_main_menu_tool_options(gpointer callback_data, gint callback_action, gpointer data)
28 {
29   gui_options_show();
30 }
31 
gui_main_menu_tool_colors(gpointer callback_data,gint callback_action,gpointer data)32 void gui_main_menu_tool_colors(gpointer callback_data, gint callback_action, gpointer data)
33 {
34   gui_customize_colors_show();
35 }
36 
gui_main_menu_tool_menu_accels(gpointer callback_data,gint callback_action,gpointer data)37 void gui_main_menu_tool_menu_accels(gpointer callback_data, gint callback_action, gpointer data)
38 {
39   gui_customize_menu_accels_show();
40 }
41