Merge pull request #188 from artros/feature/keep-edit-history-on-reload
[geany-mirror.git] / src / documentprivate.h
blobf5f9cbfddc0b56a87a7e19d778078f8237d2d790
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 1
26 #include "gtkcompat.h"
28 G_BEGIN_DECLS
30 /* available UNDO actions, UNDO_SCINTILLA is a pseudo action to trigger Scintilla's
31 * undo management */
32 enum
34 UNDO_SCINTILLA = 0,
35 UNDO_ENCODING,
36 UNDO_BOM,
37 UNDO_RELOAD,
38 UNDO_ACTIONS_MAX
41 typedef struct UndoReloadData
43 guint actions_count; /* How many following undo/redo actions need to be applied. */
44 gint eol_mode; /* End-Of-Line mode before/after reloading. */
46 UndoReloadData;
48 typedef enum
50 FILE_OK,
51 FILE_CHANGED, /* also valid for deleted files */
52 FILE_IGNORE
54 FileDiskStatus;
57 typedef struct FileEncoding
59 gchar *encoding;
60 gboolean has_bom;
62 FileEncoding;
64 enum
66 MSG_TYPE_RELOAD,
67 MSG_TYPE_RESAVE,
69 NUM_MSG_TYPES
72 /* Private GeanyDocument fields */
73 typedef struct GeanyDocumentPrivate
75 /* GtkLabel shown in the notebook header. */
76 GtkWidget *tab_label;
77 /* GtkTreeView object for this document within the Symbols treeview of the sidebar. */
78 GtkWidget *tag_tree;
79 /* GtkTreeStore object for this document within the Symbols treeview of the sidebar. */
80 GtkTreeStore *tag_store;
81 /* Iter for this document within the Open Files treeview of the sidebar. */
82 GtkTreeIter iter;
83 /* Used by the Undo/Redo management code. */
84 GTrashStack *undo_actions;
85 /* Used by the Undo/Redo management code. */
86 GTrashStack *redo_actions;
87 /* Used so Undo/Redo works for encoding changes. */
88 FileEncoding saved_encoding;
89 gboolean colourise_needed; /* use document.c:queue_colourise() instead */
90 gint line_count; /* Number of lines in the document. */
91 gint symbol_list_sort_mode;
92 /* indicates whether a file is on a remote filesystem, works only with GIO/GVfs */
93 gboolean is_remote;
94 /* File status on disk of the document */
95 FileDiskStatus file_disk_status;
96 /* Reference to a GFileMonitor object, only used when GIO file monitoring is used. */
97 gpointer monitor;
98 /* Time of the last disk check, only used when legacy file monitoring is used. */
99 time_t last_check;
100 /* Modification time of the document on disk, only used when legacy file monitoring is used. */
101 time_t mtime;
102 /* ID of the idle callback updating the tag list */
103 guint tag_list_update_source;
104 /* Whether it's temporarily protected (read-only and saving needs confirmation). Does
105 * not imply doc->readonly as writable files can be protected */
106 gint protected;
107 /* Save pointer to info bars allowing to cancel them programatically (to avoid multiple ones) */
108 GtkWidget *info_bars[NUM_MSG_TYPES];
110 GeanyDocumentPrivate;
112 G_END_DECLS
114 #endif /* GEANY_DOCUMENT_PRIVATE_H */