medit/moo/mooterm/mooterm.h

202 lines
8.9 KiB
C
Raw Normal View History

2005-06-22 11:20:32 -07:00
/*
* mooterm.h
2005-06-22 11:20:32 -07:00
*
* Copyright (C) 2004-2005 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* 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 __MOO_TERM_H__
#define __MOO_TERM_H__
2005-06-22 11:20:32 -07:00
#include <gtk/gtkwidget.h>
2005-06-22 11:20:32 -07:00
G_BEGIN_DECLS
#define MOO_TYPE_TERM (moo_term_get_type ())
2005-07-26 04:12:40 -07:00
#define MOO_TYPE_TERM_PROFILE (moo_term_profile_get_type ())
#define MOO_TYPE_TERM_COMMAND (moo_term_command_get_type ())
2005-06-22 11:20:32 -07:00
#define MOO_TERM(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_TERM, MooTerm))
#define MOO_TERM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_TERM, MooTermClass))
#define MOO_IS_TERM(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_TERM))
#define MOO_IS_TERM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_TERM))
#define MOO_TERM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_TERM, MooTermClass))
typedef struct _MooTerm MooTerm;
typedef struct _MooTermPrivate MooTermPrivate;
typedef struct _MooTermClass MooTermClass;
typedef struct _MooTermProfile MooTermProfile;
typedef struct _MooTermCommand MooTermCommand;
typedef struct _MooTermProfileArray MooTermProfileArray;
2005-06-22 11:20:32 -07:00
struct _MooTerm
{
GtkWidget parent;
MooTermPrivate *priv;
};
struct _MooTermClass
{
GtkWidgetClass parent_class;
void (* set_scroll_adjustments) (GtkWidget *widget,
GtkAdjustment *hadjustment,
GtkAdjustment *vadjustment);
void (*bell) (MooTerm *term);
void (*set_window_title) (MooTerm *term,
const char *title);
void (*set_icon_name) (MooTerm *term,
const char *icon);
void (*child_died) (MooTerm *term);
2005-07-15 02:50:18 -07:00
void (*populate_popup) (MooTerm *term,
GtkWidget *menu);
2005-07-23 21:58:57 -07:00
void (*apply_settings) (MooTerm *term);
void (*new_line) (MooTerm *term);
2005-06-22 11:20:32 -07:00
};
typedef enum {
MOO_TERM_ERASE_AUTO,
MOO_TERM_ERASE_ASCII_BACKSPACE,
MOO_TERM_ERASE_ASCII_DELETE,
MOO_TERM_ERASE_DELETE_SEQUENCE
} MooTermEraseBinding;
2005-06-22 11:20:32 -07:00
2005-07-26 04:12:40 -07:00
struct _MooTermProfile {
char *name;
MooTermCommand *cmd;
char **envp;
char *working_dir;
};
struct _MooTermCommand {
2005-07-26 04:12:40 -07:00
char *cmd_line;
char **argv;
};
2005-06-22 11:20:32 -07:00
struct _MooTermProfileArray {
MooTermProfile **data;
guint len;
};
#define MOO_TERM_ERROR (moo_term_error_quark())
GQuark moo_term_error_quark (void) G_GNUC_CONST;
2005-07-26 04:12:40 -07:00
GType moo_term_get_type (void) G_GNUC_CONST;
GType moo_term_command_get_type (void) G_GNUC_CONST;
2005-07-26 04:12:40 -07:00
GType moo_term_profile_get_type (void) G_GNUC_CONST;
GType moo_term_profile_array_get_type (void) G_GNUC_CONST;
2005-07-26 04:12:40 -07:00
GType moo_term_erase_binding_get_type (void) G_GNUC_CONST;
void moo_term_set_adjustment (MooTerm *term,
2005-06-22 11:20:32 -07:00
GtkAdjustment *vadj);
gboolean moo_term_fork_command (MooTerm *term,
const MooTermCommand *cmd,
const char *working_dir,
char **envp,
GError **error);
gboolean moo_term_fork_command_line (MooTerm *term,
const char *cmd_line,
2005-06-22 15:13:12 -07:00
const char *working_dir,
char **envp,
GError **error);
2005-07-26 04:12:40 -07:00
gboolean moo_term_fork_argv (MooTerm *term,
char **argv,
const char *working_dir,
char **envp,
GError **error);
gboolean moo_term_child_alive (MooTerm *term);
2005-07-25 11:50:24 -07:00
void moo_term_kill_child (MooTerm *term);
2005-07-30 23:20:59 -07:00
/* makes sense only for win32 */
void moo_term_set_helper_directory (const char *dir);
void moo_term_feed (MooTerm *term,
const char *data,
int len);
void moo_term_feed_child (MooTerm *term,
const char *string,
int len);
void moo_term_scroll_to_top (MooTerm *term);
void moo_term_scroll_to_bottom (MooTerm *term);
void moo_term_scroll_lines (MooTerm *term,
int lines);
void moo_term_scroll_pages (MooTerm *term,
int pages);
void moo_term_copy_clipboard (MooTerm *term,
GdkAtom selection);
void moo_term_paste_clipboard (MooTerm *term,
GdkAtom selection);
2005-07-23 21:58:57 -07:00
void moo_term_select_all (MooTerm *term);
char *moo_term_get_selection (MooTerm *term);
char *moo_term_get_content (MooTerm *term);
void moo_term_ctrl_c (MooTerm *term);
void moo_term_set_pointer_visible (MooTerm *term,
gboolean visible);
2005-07-21 15:11:16 -07:00
void moo_term_set_font_from_string (MooTerm *term,
const char *font);
2005-07-23 21:58:57 -07:00
void moo_term_set_cursor_blink_time (MooTerm *term,
guint ms);
2005-06-22 15:13:12 -07:00
void moo_term_reset (MooTerm *term);
void moo_term_soft_reset (MooTerm *term);
2005-06-22 11:20:32 -07:00
MooTermProfile *moo_term_profile_new (const char *name,
const MooTermCommand *cmd,
char **envp,
const char *working_dir);
MooTermProfile *moo_term_profile_copy (const MooTermProfile *profile);
void moo_term_profile_free (MooTermProfile *profile);
MooTermProfileArray *moo_term_profile_array_new (void);
void moo_term_profile_array_add (MooTermProfileArray *array,
const MooTermProfile *profile);
MooTermProfileArray *moo_term_profile_array_copy(MooTermProfileArray *array);
void moo_term_profile_array_free(MooTermProfileArray *array);
MooTermProfileArray *moo_term_get_profiles (MooTerm *term);
MooTermProfile *moo_term_get_profile (MooTerm *term,
guint index);
void moo_term_set_profile (MooTerm *term,
guint index,
const MooTermProfile *profile);
void moo_term_add_profile (MooTerm *term,
const MooTermProfile *profile);
void moo_term_remove_profile (MooTerm *term,
guint index);
void moo_term_set_default_profile (MooTerm *term,
int profile);
int moo_term_get_default_profile (MooTerm *term);
gboolean moo_term_start_default_profile (MooTerm *term,
GError **error);
gboolean moo_term_start_profile (MooTerm *term,
int profile,
GError **error);
MooTermCommand *moo_term_command_new (const char *cmd_line,
char **argv);
MooTermCommand *moo_term_command_copy (const MooTermCommand *cmd);
void moo_term_command_free (MooTermCommand *cmd);
2005-06-22 11:20:32 -07:00
G_END_DECLS
#endif /* __MOO_TERM_H__ */