2009-07-14 15:06:20 +00:00
|
|
|
/*
|
|
|
|
* geanyplugin.h - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2019-03-19 11:08:17 +01:00
|
|
|
* Copyright 2009 The Geany contributors
|
2009-07-14 15:06:20 +00: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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
2012-08-24 19:25:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-07-14 15:06:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file geanyplugin.h
|
|
|
|
* Single include for plugins.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GEANY_PLUGIN_H
|
|
|
|
#define GEANY_PLUGIN_H 1
|
|
|
|
|
2014-10-13 19:08:57 -07:00
|
|
|
#ifndef HAVE_PLUGINS
|
|
|
|
# define HAVE_PLUGINS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Only include public headers here */
|
2014-05-18 17:31:51 -07:00
|
|
|
#include "app.h"
|
2015-04-01 07:56:30 +02:00
|
|
|
#include "build.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "dialogs.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "document.h"
|
|
|
|
#include "editor.h"
|
|
|
|
#include "encodings.h"
|
|
|
|
#include "filetypes.h"
|
2014-05-18 17:31:51 -07:00
|
|
|
#include "geany.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "geanyfunctions.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "highlighting.h"
|
|
|
|
#include "keybindings.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "main.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "msgwindow.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "navqueue.h"
|
2014-05-18 17:31:51 -07:00
|
|
|
#include "plugindata.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "pluginutils.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "prefs.h"
|
|
|
|
#include "project.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "sciwrappers.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "search.h"
|
2015-07-11 22:12:08 +02:00
|
|
|
#include "spawn.h"
|
2010-03-30 16:29:38 +00:00
|
|
|
#include "stash.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "support.h"
|
2014-10-13 19:08:57 -07:00
|
|
|
#include "symbols.h"
|
2009-07-14 15:06:20 +00:00
|
|
|
#include "templates.h"
|
|
|
|
#include "toolbar.h"
|
|
|
|
#include "ui_utils.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2015-04-01 07:56:30 +02:00
|
|
|
#include "gtkcompat.h"
|
|
|
|
|
2009-07-14 15:06:20 +00:00
|
|
|
#endif
|