Add Clojure filetype
[geany-mirror.git] / src / documentprivate.h
blob8e3ecdd2900fb8f73fbdc66835bbaf13576c1e9c
1 /*
2 * document-private.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2008-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2008-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef GEANY_DOCUMENT_PRIVATE_H
24 #define GEANY_DOCUMENT_PRIVATE_H
27 /* available UNDO actions, UNDO_SCINTILLA is a pseudo action to trigger Scintilla's
28 * undo management */
29 enum
31 UNDO_SCINTILLA = 0,
32 UNDO_ENCODING,
33 UNDO_BOM,
34 UNDO_ACTIONS_MAX
37 typedef enum
39 FILE_OK,
40 FILE_CHANGED, /* also valid for deleted files */
41 FILE_IGNORE
43 FileDiskStatus;
46 typedef struct FileEncoding
48 gchar *encoding;
49 gboolean has_bom;
51 FileEncoding;
54 /* Private GeanyDocument fields */
55 typedef struct GeanyDocumentPrivate
57 /* GtkLabel shown in the notebook header. */
58 GtkWidget *tab_label;
59 /* GtkTreeView object for this document within the Symbols treeview of the sidebar. */
60 GtkWidget *tag_tree;
61 /* GtkTreeStore object for this document within the Symbols treeview of the sidebar. */
62 GtkTreeStore *tag_store;
63 /* Iter for this document within the Open Files treeview of the sidebar. */
64 GtkTreeIter iter;
65 /* Used by the Undo/Redo management code. */
66 GTrashStack *undo_actions;
67 /* Used by the Undo/Redo management code. */
68 GTrashStack *redo_actions;
69 /* Used so Undo/Redo works for encoding changes. */
70 FileEncoding saved_encoding;
71 gboolean colourise_needed; /* use document.c:queue_colourise() instead */
72 gint line_count; /* Number of lines in the document. */
73 gint symbol_list_sort_mode;
74 /* indicates whether a file is on a remote filesystem, works only with GIO/GVfs */
75 gboolean is_remote;
76 /* File status on disk of the document */
77 FileDiskStatus file_disk_status;
78 /* Reference to a GFileMonitor object, only used when GIO file monitoring is used. */
79 gpointer monitor;
80 /* Time of the last disk check, only used when legacy file monitoring is used. */
81 time_t last_check;
82 /* Modification time of the document on disk, only used when legacy file monitoring is used. */
83 time_t mtime;
84 /* ID of the idle callback updating the tag list */
85 guint tag_list_update_source;
87 GeanyDocumentPrivate;
89 #endif