initial commit

This commit is contained in:
Daniel Micay 2012-05-22 00:34:35 -04:00
commit e4a92c7efd
3 changed files with 130 additions and 0 deletions

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
PREFIX = /usr/local
CC = gcc
CFLAGS = -std=c99 -O3 -Wall -Wextra -pedantic
LDFLAGS = -s
CFLAGS += $(shell pkg-config --cflags gtk+-2.0 vte)
LDFLAGS += -s $(shell pkg-config --libs gtk+-2.0 vte)
term: term.c config.h
${CC} ${CFLAGS} -o $@ $< ${LDFLAGS}
install: term
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f term ${DESTDIR}${PREFIX}/bin
chmod 755 ${DESTDIR}${PREFIX}/bin/term
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/term
.PHONY: install uninstall

36
config.h Normal file
View File

@ -0,0 +1,36 @@
#ifndef CONFIG_H
#define CONFIG_H
#include <stdbool.h>
static const char *font = "Consolas 9";
static const long scrollback_lines = 1000;
static const char *foreground_color = "#dcdccc";
static const char *background_color = "#3f3f3f";
static const char *colors[16] = {
"#3f3f3f",
"#705050",
"#60b48a",
"#dfaf8f",
"#506070",
"#dc8cc3",
"#8cd0d3",
"#dcdccc",
"#709080",
"#dca3a3",
"#c3bf9f",
"#f0dfaf",
"#94bff3",
"#ec93d3",
"#93e0e3",
"#ffffff",
};
static const bool scroll_on_output = false;
static const bool scroll_on_keystroke = true;
static const char *term = "xterm-256color";
#endif

73
term.c Normal file
View File

@ -0,0 +1,73 @@
#include <gtk/gtk.h>
#include <vte/vte.h>
#include "config.h"
int main(int argc, char **argv) {
GError *error = NULL;
gtk_init(&argc, &argv);
GtkWidget *window;
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
/*gtk_window_set_default_size(GTK_WINDOW(window), 400, 400);*/
GtkWidget *vte = vte_terminal_new();
char *command_argv[2] = {NULL, NULL};
command_argv[0] = g_strdup(g_getenv("SHELL"));
VtePty *pty = vte_terminal_pty_new(VTE_TERMINAL(vte), 0, &error);
if (!pty) {
fprintf(stderr, "Failed to create pty: %s", error->message);
return 1;
}
vte_terminal_set_pty_object(VTE_TERMINAL(vte), pty);
vte_pty_set_term(pty, term);
GPid ppid;
if (g_spawn_async(NULL, command_argv, NULL,
G_SPAWN_DO_NOT_REAP_CHILD,
(GSpawnChildSetupFunc)vte_pty_child_setup, pty,
&ppid, &error)) {
vte_terminal_watch_child(VTE_TERMINAL(vte), ppid);
} else {
return 1;
}
/*vte_terminal_fork_command_full(VTE_TERMINAL(vte), VTE_PTY_DEFAULT, NULL, command_argv, NULL, 0, NULL, NULL, NULL, NULL);*/
gtk_container_add(GTK_CONTAINER(window), vte);
g_signal_connect(vte, "child-exited", G_CALLBACK(gtk_main_quit), NULL);
vte_terminal_set_scrollback_lines(VTE_TERMINAL(vte), scrollback_lines);
vte_terminal_set_font_from_string(VTE_TERMINAL(vte), font);
vte_terminal_set_scroll_on_output(VTE_TERMINAL(vte), scroll_on_output);
vte_terminal_set_scroll_on_keystroke(VTE_TERMINAL(vte), scroll_on_keystroke);
// set colors
GdkColor foreground, background;
gdk_color_parse(foreground_color, &foreground);
gdk_color_parse(background_color, &background);
GdkColor palette[16];
for (size_t i = 0; i < 16; i++) {
gdk_color_parse(colors[i], &palette[i]);
}
vte_terminal_set_colors(VTE_TERMINAL(vte), &foreground, &background, palette, 16);
gtk_widget_grab_focus(vte);
g_signal_connect(G_OBJECT (window), "destroy", G_CALLBACK(gtk_main_quit), NULL);
gtk_widget_show_all(window);
gtk_main();
return 0;
}