2005-06-22 11:20:32 -07:00
|
|
|
/*
|
|
|
|
* mooterm/mooterm.h
|
|
|
|
*
|
|
|
|
* 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 MOOTERM_MOOTERM_H
|
|
|
|
#define MOOTERM_MOOTERM_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
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 ())
|
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))
|
|
|
|
|
2005-07-28 12:25:10 -07:00
|
|
|
typedef struct _MooTerm MooTerm;
|
|
|
|
typedef struct _MooTermPrivate MooTermPrivate;
|
|
|
|
typedef struct _MooTermClass MooTermClass;
|
|
|
|
typedef struct _MooTermProfile MooTermProfile;
|
|
|
|
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);
|
2005-07-10 19:54:58 -07:00
|
|
|
|
|
|
|
void (*bell) (MooTerm *term);
|
|
|
|
void (*set_window_title) (MooTerm *term,
|
|
|
|
const char *title);
|
|
|
|
void (*set_icon_name) (MooTerm *term,
|
|
|
|
const char *icon);
|
2005-07-14 23:37:09 -07:00
|
|
|
void (*child_died) (MooTerm *term);
|
2005-07-15 02:50:18 -07:00
|
|
|
|
|
|
|
void (*populate_popup) (MooTerm *term,
|
|
|
|
GtkMenu *menu);
|
2005-07-23 21:58:57 -07:00
|
|
|
|
|
|
|
void (*apply_settings) (MooTerm *term);
|
2005-06-22 11:20:32 -07:00
|
|
|
};
|
|
|
|
|
2005-07-14 23:37:09 -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;
|
|
|
|
char *cmd_line;
|
|
|
|
char **argv;
|
|
|
|
char **envp;
|
|
|
|
char *working_dir;
|
|
|
|
};
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-07-28 12:25:10 -07:00
|
|
|
struct _MooTermProfileArray {
|
|
|
|
MooTermProfile **data;
|
|
|
|
guint len;
|
|
|
|
};
|
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
|
2005-07-26 04:12:40 -07:00
|
|
|
GType moo_term_get_type (void) G_GNUC_CONST;
|
|
|
|
GType moo_term_profile_get_type (void) G_GNUC_CONST;
|
2005-07-28 12:25:10 -07:00
|
|
|
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;
|
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_set_adjustment (MooTerm *term,
|
2005-06-22 11:20:32 -07:00
|
|
|
GtkAdjustment *vadj);
|
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
gboolean moo_term_fork_command (MooTerm *term,
|
2005-06-22 15:13:12 -07:00
|
|
|
const char *cmd,
|
|
|
|
const char *working_dir,
|
|
|
|
char **envp);
|
2005-07-26 04:12:40 -07:00
|
|
|
gboolean moo_term_fork_argv (MooTerm *term,
|
|
|
|
char **argv,
|
|
|
|
const char *working_dir,
|
|
|
|
char **envp);
|
2005-07-28 12:25:10 -07:00
|
|
|
gboolean moo_term_child_alive (MooTerm *term);
|
2005-07-25 11:50:24 -07:00
|
|
|
void moo_term_kill_child (MooTerm *term);
|
2005-07-10 19:54:58 -07:00
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_feed (MooTerm *term,
|
2005-07-10 19:54:58 -07:00
|
|
|
const char *data,
|
|
|
|
int len);
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_feed_child (MooTerm *term,
|
2005-07-01 02:53:39 -07:00
|
|
|
const char *string,
|
2005-07-04 12:22:02 -07:00
|
|
|
int len);
|
2005-07-01 02:53:39 -07:00
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_scroll_to_top (MooTerm *term);
|
|
|
|
void moo_term_scroll_to_bottom (MooTerm *term);
|
|
|
|
void moo_term_scroll_lines (MooTerm *term,
|
2005-07-01 02:53:39 -07:00
|
|
|
int lines);
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_scroll_pages (MooTerm *term,
|
2005-07-01 02:53:39 -07:00
|
|
|
int pages);
|
|
|
|
|
2005-07-17 09:41:15 -07:00
|
|
|
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);
|
2005-07-14 23:37:09 -07:00
|
|
|
void moo_term_ctrl_c (MooTerm *term);
|
2005-07-01 02:53:39 -07:00
|
|
|
|
2005-07-14 23:37:09 -07:00
|
|
|
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
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-07-28 12:25:10 -07:00
|
|
|
MooTermProfile *moo_term_profile_new (const char *name,
|
|
|
|
const char *cmd_line,
|
|
|
|
char **argv,
|
|
|
|
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);
|
|
|
|
void moo_term_start_default_profile (MooTerm *term);
|
|
|
|
void moo_term_start_profile (MooTerm *term,
|
|
|
|
int profile);
|
|
|
|
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* MOOTERM_MOOTERM_H */
|