83 lines
2.1 KiB
C
83 lines
2.1 KiB
C
/*
|
|
* mooedit-private.h
|
|
*
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
|
*
|
|
* This file is part of medit. medit is free software; you can
|
|
* redistribute it and/or modify it under the terms of the
|
|
* GNU Lesser General Public License as published by the
|
|
* Free Software Foundation; either version 2.1 of the License,
|
|
* or (at your option) any later version.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "mooedit/mooedit-impl.h"
|
|
#include "mooedit/mooeditprogress.h"
|
|
#include "moocpp/gobjptr.h"
|
|
|
|
#define MOO_EDIT_IS_UNTITLED(edit) (!(edit)->priv->file)
|
|
|
|
struct MooEditPrivate
|
|
{
|
|
MooEditor *editor;
|
|
|
|
GtkTextBuffer *buffer;
|
|
MooEditViewArray *views;
|
|
MooEditView *active_view;
|
|
bool dead_active_view;
|
|
|
|
gulong changed_handler_id;
|
|
gulong modified_changed_handler_id;
|
|
guint apply_config_idle;
|
|
bool in_recheck_config;
|
|
|
|
/***********************************************************************/
|
|
/* Document
|
|
*/
|
|
GFile *file;
|
|
char *filename;
|
|
char *norm_name;
|
|
char *display_filename;
|
|
char *display_basename;
|
|
|
|
char *encoding;
|
|
MooLineEndType line_end_type;
|
|
MooEditStatus status;
|
|
|
|
guint file_monitor_id;
|
|
bool modified_on_disk;
|
|
bool deleted_from_disk;
|
|
|
|
// file sync event source ID
|
|
guint sync_timeout_id;
|
|
|
|
MooEditState state;
|
|
MooEditProgress *progress;
|
|
|
|
#ifndef MOO_USE_SCI
|
|
/***********************************************************************/
|
|
/* Bookmarks
|
|
*/
|
|
bool enable_bookmarks;
|
|
GSList *bookmarks; /* sorted by line number */
|
|
guint update_bookmarks_idle;
|
|
#endif
|
|
|
|
/***********************************************************************/
|
|
/* Actions
|
|
*/
|
|
MooActionCollection *actions;
|
|
|
|
MooEditPrivate();
|
|
~MooEditPrivate();
|
|
|
|
MooEditPrivate(const MooEditPrivate&) = delete;
|
|
MooEditPrivate& operator=(const MooEditPrivate&) = delete;
|
|
};
|
|
|
|
void _moo_edit_remove_untitled (MooEdit *doc);
|