X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=tilda-terminal.h;h=bf19ba2f7cf5f669b81b292b7d2b4f0053b790de;hb=cb11a6373cc816707176e7e9b11b5b273e4173f8;hp=062cfddd05c93a59230c04d23f007671717ca5b5;hpb=b10473197a4e969f9e7e4dbb70d9d5f8a4a1092d;p=tilda-gobject.git diff --git a/tilda-terminal.h b/tilda-terminal.h index 062cfdd..bf19ba2 100644 --- a/tilda-terminal.h +++ b/tilda-terminal.h @@ -18,7 +18,46 @@ struct _TildaTerminal { gboolean dispose_has_run; /* Instance Members */ + // FIXME: ADD THESE BACK + // TildaWindow *tw; + // VteTerminal *vte_term; gint number; + + gchar *background_image; + gchar *shell; + gchar *font; + gchar *title; + gchar *working_directory; + + gint scrollback_lines; + gint transparency_percent; + // TODO: opacity, tint, etc + + // TODO: these really are enums. Maybe the config system + // TODO: can be made to handle top, bottom, left, right. + // TODO: (similar to the true/false handling) + // TODO: + // TODO: or, maybe ints would just be better + // TODO: REMEMBER THOUGH: make the computer do what it's good at ;) + gint backspace_key; + gint delete_key; + gint dynamic_title; + gint exit_action; + gint colorscheme; + // FIXME: ADD THESE BACK + //GdkColor background_color; + //GdkColor foreground_color; + // TODO: all other colors supported by VTE + + gboolean scroll_background; + gboolean scroll_on_output; + gboolean scroll_on_keystroke; + gboolean antialiased; + gboolean allow_bold_text; + gboolean cursor_blinks; + gboolean audible_bell; + gboolean visible_bell; + gboolean double_buffered; }; struct _TildaTerminalClass {