2 * filetypes.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005 The Geany contributors
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef GEANY_FILETYPES_H
23 #define GEANY_FILETYPES_H 1
25 #include "geany.h" /* for GEANY() macro */
26 #include "tm_parser.h" /* for TMParserType */
28 #include "gtkcompat.h" /* Needed by ScintillaWidget.h */
29 #include "Scintilla.h" /* Needed by ScintillaWidget.h */
30 #include "ScintillaWidget.h" /* for ScintillaObject */
37 /* Forward-declared to avoid including document.h since it includes this header */
40 /** IDs of known filetypes
42 * @ref filetypes will contain an item for each. Use GeanyData::filetypes_array to
43 * determine the known filetypes at runtime */
46 GEANY_FILETYPES_NONE
= 0, /* first filetype is always None & must be 0 */
49 GEANY_FILETYPES_BASIC
, /* FreeBasic */
50 GEANY_FILETYPES_MATLAB
,
53 GEANY_FILETYPES_GDSCRIPT
,
64 GEANY_FILETYPES_HASKELL
,
71 GEANY_FILETYPES_PYTHON
,
75 GEANY_FILETYPES_PASCAL
,
76 GEANY_FILETYPES_LATEX
,
82 GEANY_FILETYPES_FORTRAN
,
85 GEANY_FILETYPES_DOCBOOK
,
90 GEANY_FILETYPES_CMAKE
,
91 GEANY_FILETYPES_MARKDOWN
,
92 GEANY_FILETYPES_TXT2TAGS
,
94 GEANY_FILETYPES_VERILOG
,
95 GEANY_FILETYPES_FORTH
,
97 GEANY_FILETYPES_ERLANG
,
98 GEANY_FILETYPES_COBOL
,
99 GEANY_FILETYPES_OBJECTIVEC
,
100 GEANY_FILETYPES_ASCIIDOC
,
101 GEANY_FILETYPES_ABAQUS
,
102 GEANY_FILETYPES_BATCH
,
103 GEANY_FILETYPES_POWERSHELL
,
104 GEANY_FILETYPES_RUST
,
105 GEANY_FILETYPES_COFFEESCRIPT
,
107 GEANY_FILETYPES_ZEPHIR
,
108 GEANY_FILETYPES_BIBTEX
,
109 GEANY_FILETYPES_SMALLTALK
,
110 GEANY_FILETYPES_JULIA
,
112 GEANY_FILETYPES_RAKU
,
113 /* ^ append items here */
114 GEANY_MAX_BUILT_IN_FILETYPES
/* Don't use this, use filetypes_array->len instead */
120 * Filetype categories
122 * These are used to provide submenus for each category in the GUI */
125 GEANY_FILETYPE_GROUP_NONE
,
126 GEANY_FILETYPE_GROUP_COMPILED
,
127 GEANY_FILETYPE_GROUP_SCRIPT
,
128 GEANY_FILETYPE_GROUP_MARKUP
,
129 GEANY_FILETYPE_GROUP_MISC
,
130 GEANY_FILETYPE_GROUP_COUNT
132 GeanyFiletypeGroupID
;
135 /* Safe wrapper to get the id field of a possibly NULL filetype pointer.
136 * This shouldn't be necessary since GeanyDocument::file_type is always non-NULL. */
137 #define FILETYPE_ID(filetype_ptr) \
138 (((filetype_ptr) != NULL) ? (filetype_ptr)->id : GEANY_FILETYPES_NONE)
140 /** Represents a filetype. */
141 typedef struct GeanyFiletype
143 GeanyFiletypeID id
; /**< Index in @ref filetypes. */
144 /* Represents the TMParserType of tagmanager (see the table
145 * in src/tagmanager/tm_parser.h). */
147 /** Untranslated short name, such as "C", "None".
148 * Must not be translated as it's used for hash table lookups - use
149 * filetypes_get_display_name() instead. */
151 /** Shown in the file open dialog, such as "C source file". */
153 gchar
*extension
; /**< Default file extension for new files, or @c NULL. */
154 gchar
**pattern
; /**< Array of filename-matching wildcard strings. */
155 gchar
*context_action_cmd
;
157 gchar
*comment_close
;
158 gboolean comment_use_indent
;
159 GeanyFiletypeGroupID group
;
160 gchar
*error_regex_string
;
161 struct GeanyFiletype
*lexer_filetype
;
164 gchar
*comment_single
; /* single-line comment */
165 /* filetype indent settings, -1 if not set */
169 struct GeanyFiletypePrivate
*priv
; /* must be last, append fields before this item */
173 /** Wraps @ref GeanyData::filetypes_array so it can be used with C array syntax.
174 * Example: filetypes[GEANY_FILETYPES_C]->name = ...;
175 * @see filetypes_index(). */
176 #define filetypes ((GeanyFiletype **)GEANY(filetypes_array)->pdata)
179 GeanyFiletype
*filetypes_detect_from_file(const gchar
*utf8_filename
);
181 GeanyFiletype
*filetypes_lookup_by_name(const gchar
*name
);
183 GeanyFiletype
*filetypes_index(gint idx
);
185 const gchar
*filetypes_get_display_name(GeanyFiletype
*ft
);
187 const GSList
*filetypes_get_sorted_by_name(void);
189 #define GEANY_TYPE_FILETYPE (filetype_get_type())
191 GType
filetype_get_type (void);
195 extern GPtrArray
*filetypes_array
;
197 extern GSList
*filetypes_by_title
;
200 void filetypes_init(void);
202 void filetypes_init_types(void);
204 void filetypes_reload_extensions(void);
206 void filetypes_reload(void);
209 GeanyFiletype
*filetypes_detect_from_document(struct GeanyDocument
*doc
);
211 GeanyFiletype
*filetypes_detect_from_extension(const gchar
*utf8_filename
);
213 void filetypes_free_types(void);
215 void filetypes_load_config(guint ft_id
, gboolean reload
);
217 void filetypes_save_commands(GeanyFiletype
*ft
);
219 void filetypes_select_radio_item(const GeanyFiletype
*ft
);
221 GtkFileFilter
*filetypes_create_file_filter(const GeanyFiletype
*ft
);
223 GtkFileFilter
*filetypes_create_file_filter_all_source(void);
225 gboolean
filetype_has_tags(GeanyFiletype
*ft
);
227 gboolean
filetypes_parse_error_message(GeanyFiletype
*ft
, const gchar
*message
,
228 gchar
**filename
, gint
*line
);
230 gboolean
filetype_get_comment_open_close(const GeanyFiletype
*ft
, gboolean single_first
,
231 const gchar
**co
, const gchar
**cc
);
233 #endif /* GEANY_PRIVATE */
237 #endif /* GEANY_FILETYPES_H */