medit/moo/mooedit/mooedit-private.h

119 lines
3.5 KiB
C
Raw Normal View History

2006-05-21 16:11:05 -07:00
/*
2005-09-06 09:21:05 -07:00
* mooedit-private.h
2005-06-22 11:20:32 -07:00
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
2005-06-22 11:20:32 -07:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
2005-07-23 21:58:57 -07:00
*/
2005-06-22 11:20:32 -07:00
#ifndef MOOEDIT_COMPILATION
#error "Do not include this file"
#endif
2005-09-06 09:21:05 -07:00
#ifndef __MOO_EDIT_PRIVATE_H__
#define __MOO_EDIT_PRIVATE_H__
2005-06-22 11:20:32 -07:00
#include "mooedit/mooeditor.h"
#include "mooedit/mootextview.h"
2005-06-22 11:20:32 -07:00
G_BEGIN_DECLS
2006-04-20 01:57:05 -07:00
extern GSList *_moo_edit_instances;
void _moo_edit_add_class_actions (MooEdit *edit);
void _moo_edit_check_actions (MooEdit *edit);
void _moo_edit_class_init_actions (MooEditClass *klass);
void _moo_edit_do_popup (MooEdit *edit,
GdkEventButton *event);
2006-04-29 20:54:03 -07:00
gboolean _moo_edit_has_comments (MooEdit *edit,
gboolean *single_line,
gboolean *multi_line);
2006-04-20 01:57:05 -07:00
2005-06-22 11:20:32 -07:00
/***********************************************************************/
/* Preferences
/*/
void _moo_edit_init_settings (void);
void _moo_edit_apply_settings (MooEdit *edit);
void _moo_edit_freeze_config_notify (MooEdit *edit);
void _moo_edit_thaw_config_notify (MooEdit *edit);
void _moo_edit_update_config (void);
2005-06-22 11:20:32 -07:00
/***********************************************************************/
/* File operations
/*/
void _moo_edit_set_filename (MooEdit *edit,
const char *file,
const char *encoding);
char *_moo_edit_filename_to_utf8 (const char *filename);
2005-06-22 11:20:32 -07:00
void _moo_edit_start_file_watch (MooEdit *edit);
void _moo_edit_stop_file_watch (MooEdit *edit);
2005-06-22 11:20:32 -07:00
MooEdit *_moo_edit_new (MooEditor *editor);
void _moo_edit_set_status (MooEdit *edit,
MooEditStatus status);
2005-06-22 11:20:32 -07:00
typedef enum {
MOO_EDIT_LINE_END_NONE,
MOO_EDIT_LINE_END_UNIX,
MOO_EDIT_LINE_END_WIN32,
MOO_EDIT_LINE_END_MAC,
MOO_EDIT_LINE_END_MIX
2005-06-22 11:20:32 -07:00
} MooEditLineEndType;
struct _MooEditPrivate {
MooEditor *editor;
gulong modified_changed_handler_id;
2006-04-26 21:04:41 -07:00
guint apply_config_idle;
2005-06-22 11:20:32 -07:00
/***********************************************************************/
/* Document
/*/
char *filename;
char *basename;
char *display_filename;
char *display_basename;
char *encoding;
MooEditLineEndType line_end_type;
2005-09-02 16:27:25 -07:00
MooEditStatus status;
2005-06-22 11:20:32 -07:00
MooEditOnExternalChanges file_watch_policy;
int file_monitor_id;
gulong file_watch_event_handler_id;
2005-06-22 11:20:32 -07:00
gulong focus_in_handler_id;
gboolean modified_on_disk;
gboolean deleted_from_disk;
/***********************************************************************/
/* Bookmarks
/*/
gboolean enable_bookmarks;
GSList *bookmarks; /* sorted by line number */
guint update_bookmarks_idle;
2006-04-20 01:57:05 -07:00
/***********************************************************************/
/* Actions
/*/
GtkMenu *menu;
2006-05-08 21:57:16 -07:00
GtkActionGroup *actions;
};
2005-06-22 11:20:32 -07:00
G_END_DECLS
2005-09-06 09:21:05 -07:00
#endif /* __MOO_EDIT_PRIVATE_H__ */