f101e95aab
Merge README.I18N with latest from the wiki. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2917 ea778897-0a13-0410-b9d1-a72fbfd435f5
119 lines
3.2 KiB
C
119 lines
3.2 KiB
C
/*
|
|
* geany.h - this file is part of Geany, a fast and lightweight IDE
|
|
*
|
|
* Copyright 2005-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
|
* Copyright 2006-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Main header - should be included first in all source files.
|
|
* externs and function prototypes are implemented in main.c. */
|
|
|
|
#ifndef GEANY_H
|
|
#define GEANY_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "tm_tagmanager.h"
|
|
|
|
#ifndef PLAT_GTK
|
|
# define PLAT_GTK 1 /* needed when including ScintillaWidget.h */
|
|
#endif
|
|
|
|
|
|
/* for detailed description look in the documentation, things are not
|
|
* listed in the documentation should not be changed */
|
|
#define GEANY_FILEDEFS_SUBDIR "filedefs"
|
|
#define GEANY_TEMPLATES_SUBDIR "templates"
|
|
#define GEANY_CODENAME "Quillan"
|
|
#define GEANY_HOMEPAGE "http://www.geany.org/"
|
|
#define GEANY_USE_WIN32_DIALOG 0
|
|
#define GEANY_STRING_UNTITLED _("untitled")
|
|
#define GEANY_WINDOW_MINIMAL_WIDTH 550
|
|
#define GEANY_WINDOW_MINIMAL_HEIGHT 350
|
|
#define GEANY_WINDOW_DEFAULT_WIDTH 900
|
|
#define GEANY_WINDOW_DEFAULT_HEIGHT 600
|
|
|
|
|
|
/* Common forward declarations */
|
|
typedef struct GeanyDocument GeanyDocument;
|
|
typedef struct GeanyFiletype GeanyFiletype;
|
|
|
|
|
|
/** Important application fields. */
|
|
typedef struct GeanyApp
|
|
{
|
|
gboolean debug_mode; /**< @c TRUE if debug messages should be printed. */
|
|
/** User configuration directory, usually @c ~/.geany.
|
|
* @note Plugin configuration files should be saved as:
|
|
* @code g_build_path(G_DIR_SEPARATOR_S, geany->app->configdir, "plugins", "pluginname",
|
|
* "file.conf"); @endcode */
|
|
gchar *configdir;
|
|
gchar *datadir;
|
|
gchar *docdir;
|
|
const TMWorkspace *tm_workspace; /**< TagManager workspace/session tags. */
|
|
struct GeanyProject *project; /**< Currently active project or @c NULL if none is open. */
|
|
}
|
|
GeanyApp;
|
|
|
|
extern GeanyApp *app;
|
|
|
|
|
|
extern gboolean ignore_callback;
|
|
|
|
|
|
enum
|
|
{
|
|
GEANY_IMAGE_SMALL_CROSS,
|
|
GEANY_IMAGE_LOGO,
|
|
GEANY_IMAGE_COMPILE,
|
|
GEANY_IMAGE_SAVE_ALL,
|
|
GEANY_IMAGE_NEW_ARROW
|
|
};
|
|
|
|
enum
|
|
{
|
|
UP,
|
|
DOWN,
|
|
LEFT,
|
|
RIGHT
|
|
};
|
|
|
|
enum
|
|
{
|
|
KILOBYTE = 1024,
|
|
MEGABYTE = (KILOBYTE*1024),
|
|
GIGABYTE = (MEGABYTE*1024)
|
|
};
|
|
|
|
|
|
/* Useful for some variable argument list functions, e.g. in utils.h */
|
|
#if ! GLIB_CHECK_VERSION(2, 8, 0)
|
|
#define G_GNUC_NULL_TERMINATED
|
|
#endif
|
|
|
|
|
|
/* prototype is here so that all files can use it. */
|
|
void geany_debug(gchar const *format, ...) G_GNUC_PRINTF (1, 2);
|
|
|
|
#endif
|