medit/moo/mooedit/mooedit-fileops.h

71 lines
2.9 KiB
C
Raw Normal View History

2008-09-07 00:15:07 -05:00
/*
* mooedit-fileops.h
*
2016-01-01 22:25:53 -08:00
* Copyright (C) 2004-2016 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
2008-09-07 00:15:07 -05:00
*
* 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/>.
*/
2016-01-01 22:25:53 -08:00
#pragma once
2008-09-07 00:15:07 -05:00
2016-01-04 03:56:42 -08:00
#ifndef __cplusplus
#error "This is a C++ header"
#endif
2008-09-07 00:15:07 -05:00
#include "mooedit/mooedit.h"
2008-09-15 03:59:22 -05:00
#include <gio/gio.h>
2016-01-04 03:56:42 -08:00
#include "moocpp/utils.h"
2016-10-02 21:10:05 -07:00
#include "moogpp/strutils.h"
2016-01-19 03:54:06 -08:00
#include "mooutils/mooutils-misc.h"
2008-09-07 00:15:07 -05:00
G_BEGIN_DECLS
const char *_moo_get_default_encodings (void);
2016-01-04 03:56:42 -08:00
G_END_DECLS
2008-09-07 00:15:07 -05:00
typedef enum {
2015-07-15 02:22:11 -07:00
MOO_EDIT_SAVE_FLAGS_NONE = 0,
2008-09-07 00:15:07 -05:00
MOO_EDIT_SAVE_BACKUP = 1 << 0
} MooEditSaveFlags;
#define MOO_EDIT_FILE_ERROR (_moo_edit_file_error_quark ())
2010-12-12 02:29:20 -08:00
2008-09-15 03:59:22 -05:00
enum {
2010-12-12 02:29:20 -08:00
MOO_EDIT_FILE_ERROR_ENCODING = 1,
2008-09-15 03:59:22 -05:00
MOO_EDIT_FILE_ERROR_FAILED,
2010-12-12 02:29:20 -08:00
MOO_EDIT_FILE_ERROR_NOT_IMPLEMENTED,
MOO_EDIT_FILE_ERROR_NOENT,
MOO_EDIT_FILE_ERROR_CANCELLED
2008-09-15 03:59:22 -05:00
};
2016-01-04 03:56:42 -08:00
MOO_DEFINE_FLAGS(MooEditSaveFlags)
2008-09-07 00:15:07 -05:00
GQuark _moo_edit_file_error_quark (void) G_GNUC_CONST;
2016-10-02 21:10:05 -07:00
bool _moo_is_file_error_cancelled (const g::gerrp& error);
2008-09-07 00:15:07 -05:00
2016-10-02 21:10:05 -07:00
bool _moo_edit_file_is_new (g::File& file);
2016-01-19 03:54:06 -08:00
bool _moo_edit_load_file (Edit edit,
2016-10-02 21:10:05 -07:00
g::File& file,
const g::gstr& init_encoding,
const g::gstr& init_cached_encoding,
g::gerrp& error);
2016-01-04 10:24:03 -08:00
bool _moo_edit_reload_file (Edit edit,
const char* encoding,
2016-10-02 21:10:05 -07:00
g::gerrp& error);
2016-01-19 03:54:06 -08:00
bool _moo_edit_save_file (Edit edit,
2016-10-02 21:10:05 -07:00
g::File& floc,
2016-01-04 10:24:03 -08:00
const char* encoding,
MooEditSaveFlags flags,
2016-10-02 21:10:05 -07:00
g::gerrp& error);
2016-01-04 10:24:03 -08:00
bool _moo_edit_save_file_copy (Edit edit,
2016-10-02 21:10:05 -07:00
g::File& file,
2016-01-04 10:24:03 -08:00
const char* encoding,
MooEditSaveFlags flags,
2016-10-02 21:10:05 -07:00
g::gerrp& error);