2006-05-21 16:11:05 -07:00
|
|
|
/*
|
2005-09-08 00:46:48 -07:00
|
|
|
* moogrep.h
|
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-09-08 00:46:48 -07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MOO_EDIT_PLUGINS_H__
|
|
|
|
#define __MOO_EDIT_PLUGINS_H__
|
|
|
|
|
2005-11-30 08:46:02 -08:00
|
|
|
#include <gtk/gtkversion.h>
|
|
|
|
|
2005-09-08 00:46:48 -07:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
#ifndef __WIN32__
|
2006-04-10 00:56:01 -07:00
|
|
|
gboolean _moo_find_plugin_init (void);
|
2006-03-18 00:45:36 -08:00
|
|
|
#endif
|
|
|
|
|
2006-04-10 00:56:01 -07:00
|
|
|
gboolean _moo_active_strings_plugin_init (void);
|
|
|
|
gboolean _moo_completion_plugin_init (void);
|
2005-11-30 08:46:02 -08:00
|
|
|
|
|
|
|
#if GTK_CHECK_VERSION(2,6,0)
|
2006-04-10 00:56:01 -07:00
|
|
|
gboolean _moo_file_selector_plugin_init (void);
|
2005-10-13 07:08:18 -07:00
|
|
|
#endif
|
|
|
|
|
2005-09-08 00:46:48 -07:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __MOO_EDIT_PLUGINS_H__ */
|