1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * xed-preferences-dialog.c
4  * This file is part of xed
5  *
6  * Copyright (C) 2001-2005 Paolo Maggi
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23 
24 /*
25  * Modified by the xed Team, 2003. See the AUTHORS file for a
26  * list of people on the xed Team.
27  * See the ChangeLog files for a list of changes.
28  *
29  * $Id$
30  */
31 
32 #ifndef __XED_PREFERENCES_DIALOG_H__
33 #define __XED_PREFERENCES_DIALOG_H__
34 
35 #include <libxapp/xapp-preferences-window.h>
36 
37 #include "xed-window.h"
38 
39 G_BEGIN_DECLS
40 
41 void xed_show_preferences_dialog (XedWindow *parent);
42 
43 G_END_DECLS
44 
45 #endif /* __XED_PREFERENCES_DIALOG_H__ */
46 
47