medit/moo/mooterm/mooterm-draw.c

1196 lines
34 KiB
C
Raw Normal View History

2005-06-22 11:20:32 -07:00
/*
* mooterm/mootermdraw.c
*
* 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.
*/
#define MOOTERM_COMPILATION
#include "mooterm/mooterm-private.h"
#include "mooterm/mooterm-selection.h"
#include "mooterm/mootermbuffer-private.h"
#include "mooterm/mootermline-private.h"
#include <string.h>
2005-06-22 11:20:32 -07:00
#define CHAR_WIDTH(term__) ((term__)->priv->font->width)
#define CHAR_HEIGHT(term__) ((term__)->priv->font->height)
#define CHAR_ASCENT(term__) ((term__)->priv->font->ascent)
#define PIXEL_WIDTH(term__) (CHAR_WIDTH (term__) * (term__)->priv->width)
#define PIXEL_HEIGHT(term__) (CHAR_HEIGHT (term__) * (term__)->priv->height)
2005-07-21 15:11:16 -07:00
2005-06-22 11:20:32 -07:00
#define CHARS \
"`1234567890-=~!@#$%^&*()_+qwertyuiop[]\\QWERTYUIOP"\
"{}|asdfghjkl;'ASDFGHJKL:\"zxcvbnm,./ZXCVBNM<>?"
#define HOW_MANY(x__,y__) (((x__) + (y__) - 1) / (y__))
2005-06-22 11:20:32 -07:00
static void moo_term_invalidate_content_all (MooTerm *term);
static void moo_term_invalidate_content_rect(MooTerm *term,
GdkRectangle *rect);
static void
font_calculate (MooTermFont *font)
{
2005-07-21 15:11:16 -07:00
PangoRectangle logical;
PangoLayout *layout;
PangoLayoutIter *iter;
2005-07-21 15:11:16 -07:00
g_assert (font->ctx != NULL);
2005-07-21 15:11:16 -07:00
layout = pango_layout_new (font->ctx);
pango_layout_set_text (layout, CHARS, strlen(CHARS));
pango_layout_get_extents (layout, NULL, &logical);
2005-07-21 15:11:16 -07:00
font->width = HOW_MANY (logical.width, strlen (CHARS));
font->width = PANGO_PIXELS ((int)font->width);
2005-07-21 15:11:16 -07:00
iter = pango_layout_get_iter (layout);
font->height = PANGO_PIXELS (logical.height);
font->ascent = PANGO_PIXELS (pango_layout_iter_get_baseline (iter));
pango_layout_iter_free (iter);
g_object_unref (layout);
}
static MooTermFont*
moo_term_font_new (PangoContext *ctx)
2005-06-22 11:20:32 -07:00
{
2005-07-21 15:11:16 -07:00
MooTermFont *font = g_new0 (MooTermFont, 1);
font->ctx = ctx;
g_object_ref (ctx);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
font_calculate (font);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
return font;
}
2005-06-22 11:20:32 -07:00
void
moo_term_set_font_from_string (MooTerm *term,
const char *font)
2005-07-21 15:11:16 -07:00
{
PangoFontDescription *font_desc;
2005-06-22 11:20:32 -07:00
if (font)
{
2005-07-21 15:11:16 -07:00
font_desc = pango_font_description_from_string (font);
}
else
{
GtkWidget *widget = GTK_WIDGET (term);
gtk_widget_ensure_style (widget);
font_desc =
pango_font_description_copy_static (widget->style->font_desc);
2005-06-22 11:20:32 -07:00
}
2005-07-21 15:11:16 -07:00
g_return_if_fail (font_desc != NULL);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
if (!pango_font_description_get_size (font_desc))
{
pango_font_description_free (font_desc);
g_return_if_reached ();
2005-07-21 15:11:16 -07:00
}
2005-07-06 16:41:14 -07:00
2005-07-21 15:11:16 -07:00
g_free (term->priv->font->name);
term->priv->font->name = g_strdup (font);
pango_context_set_font_description (term->priv->font->ctx, font_desc);
2005-07-16 19:36:26 -07:00
2005-07-21 15:11:16 -07:00
font_calculate (term->priv->font);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
if (GTK_WIDGET_REALIZED (term))
_moo_term_size_changed (term);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
pango_font_description_free (font_desc);
}
2005-06-22 11:20:32 -07:00
void
_moo_term_init_font_stuff (MooTerm *term)
2005-07-21 15:11:16 -07:00
{
PangoContext *ctx;
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
if (term->priv->font)
_moo_term_font_free (term->priv->font);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
gtk_widget_ensure_style (GTK_WIDGET (term));
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
ctx = gtk_widget_create_pango_context (GTK_WIDGET (term));
g_return_if_fail (ctx != NULL);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
term->priv->font = moo_term_font_new (ctx);
term->priv->layout = pango_layout_new (ctx);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
g_object_unref (ctx);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
gtk_widget_set_size_request (GTK_WIDGET (term),
term->priv->font->width * MIN_TERMINAL_WIDTH,
term->priv->font->height * MIN_TERMINAL_HEIGHT);
2005-06-22 11:20:32 -07:00
}
void
_moo_term_font_free (MooTermFont *font)
2005-06-22 11:20:32 -07:00
{
2005-07-21 15:11:16 -07:00
if (font)
{
g_object_unref (font->ctx);
g_free (font->name);
g_free (font);
}
}
2005-06-22 11:20:32 -07:00
static gboolean
process_updates (MooTerm *term)
2005-07-21 15:11:16 -07:00
{
gdk_window_process_updates (GTK_WIDGET(term)->window, FALSE);
term->priv->pending_expose = 0;
return FALSE;
2005-06-22 11:20:32 -07:00
}
static void
add_update_timeout (MooTerm *term)
2005-06-22 11:20:32 -07:00
{
2005-07-21 15:11:16 -07:00
if (!term->priv->pending_expose)
2005-06-22 11:20:32 -07:00
{
2005-07-21 15:11:16 -07:00
term->priv->pending_expose =
g_timeout_add_full (EXPOSE_PRIORITY,
EXPOSE_TIMEOUT,
(GSourceFunc) process_updates,
term,
NULL);
2005-06-22 11:20:32 -07:00
}
}
static void
remove_update_timeout (MooTerm *term)
2005-07-21 15:11:16 -07:00
{
if (term->priv->pending_expose)
g_source_remove (term->priv->pending_expose);
term->priv->pending_expose = 0;
}
2005-06-22 11:20:32 -07:00
void
_moo_term_invalidate_all (MooTerm *term)
2005-07-19 07:01:41 -07:00
{
GdkRectangle rec = {0, 0, term->priv->width, term->priv->height};
_moo_term_invalidate_rect (term, &rec);
2005-07-19 07:01:41 -07:00
}
void
_moo_term_invalidate_rect (MooTerm *term,
GdkRectangle *rect)
2005-06-22 11:20:32 -07:00
{
2005-07-20 08:52:15 -07:00
if (GTK_WIDGET_REALIZED (term))
{
GdkRectangle r = {
2005-07-21 15:11:16 -07:00
rect->x * CHAR_WIDTH(term),
rect->y * CHAR_HEIGHT(term),
rect->width * CHAR_WIDTH(term),
rect->height * CHAR_HEIGHT(term)
2005-07-20 08:52:15 -07:00
};
gdk_window_invalidate_rect (GTK_WIDGET(term)->window,
&r, FALSE);
moo_term_invalidate_content_rect (term, rect);
add_update_timeout (term);
}
2005-07-06 16:41:14 -07:00
}
void
moo_term_set_colors (MooTerm *term,
GdkColor *colors,
guint n_colors)
2005-07-06 16:41:14 -07:00
{
guint i;
2005-07-22 05:02:36 -07:00
g_return_if_fail (MOO_IS_TERM (term));
g_return_if_fail (colors != NULL);
g_return_if_fail (n_colors == MOO_TERM_COLOR_MAX ||
n_colors == 2*MOO_TERM_COLOR_MAX);
2005-07-22 05:02:36 -07:00
for (i = 0; i < MOO_TERM_COLOR_MAX; ++i)
2005-07-22 05:02:36 -07:00
{
term->priv->palette[i] = colors[i];
if (n_colors > MOO_TERM_COLOR_MAX)
term->priv->palette[i + MOO_TERM_COLOR_MAX] = colors[i + MOO_TERM_COLOR_MAX];
else
term->priv->palette[ + MOO_TERM_COLOR_MAX] = colors[i];
2005-07-22 05:02:36 -07:00
}
if (GTK_WIDGET_REALIZED (term))
_moo_term_update_palette (term);
2005-07-22 05:02:36 -07:00
}
static void
moo_term_update_text_colors (MooTerm *term)
2005-07-22 05:02:36 -07:00
{
GtkWidget *widget = GTK_WIDGET (term);
2005-07-06 16:41:14 -07:00
GdkColormap *colormap;
GdkGCValues vals;
2005-06-22 11:20:32 -07:00
if (!GTK_WIDGET_REALIZED (widget))
return;
2005-06-22 11:20:32 -07:00
2005-07-22 05:02:36 -07:00
colormap = gdk_colormap_get_system ();
g_return_if_fail (colormap != NULL);
gdk_colormap_alloc_color (colormap, &term->priv->fg_color[0],
TRUE, TRUE);
gdk_colormap_alloc_color (colormap, &term->priv->fg_color[1],
TRUE, TRUE);
gdk_colormap_alloc_color (colormap, &term->priv->bg_color,
TRUE, TRUE);
if (term->priv->fg[0])
{
g_object_unref (term->priv->fg[0]);
g_object_unref (term->priv->fg[1]);
g_object_unref (term->priv->bg);
}
term->priv->fg[0] =
gdk_gc_new_with_values (widget->window, &vals, 0);
term->priv->fg[1] =
2005-07-20 10:00:21 -07:00
gdk_gc_new_with_values (widget->window, &vals, 0);
term->priv->bg =
gdk_gc_new_with_values (widget->window, &vals, 0);
2005-07-06 16:41:14 -07:00
2005-07-22 05:02:36 -07:00
gdk_gc_set_foreground (term->priv->fg[0], &term->priv->fg_color[0]);
gdk_gc_set_foreground (term->priv->fg[1], &term->priv->fg_color[1]);
gdk_gc_set_foreground (term->priv->bg, &term->priv->bg_color);
2005-07-06 16:41:14 -07:00
2005-07-22 05:02:36 -07:00
gdk_window_set_background (widget->window, &term->priv->bg_color);
2005-07-06 16:41:14 -07:00
2006-03-10 13:19:53 -08:00
_moo_term_invalidate_all (term);
}
static void
moo_term_set_text_colors (MooTerm *term,
GdkColor *fg,
GdkColor *fg_bold,
GdkColor *bg)
{
g_return_if_fail (MOO_IS_TERM (term));
if (fg)
term->priv->fg_color[0] = *fg;
if (fg_bold)
term->priv->fg_color[1] = *fg_bold;
else if (fg)
term->priv->fg_color[1] = *fg;
if (bg)
term->priv->bg_color = *bg;
if (GTK_WIDGET_REALIZED (term))
moo_term_update_text_colors (term);
}
void
_moo_term_init_palette (MooTerm *term)
{
int i;
GdkColor colors[2 * MOO_TERM_COLOR_MAX];
GtkWidget *widget = GTK_WIDGET (term);
gtk_widget_ensure_style (widget);
moo_term_set_text_colors (term,
&widget->style->text[GTK_STATE_NORMAL],
&widget->style->text[GTK_STATE_NORMAL],
&widget->style->base[GTK_STATE_NORMAL]);
for (i = 0; i < 2; ++i)
{
gdk_color_parse ("black", &colors[8*i + MOO_TERM_BLACK]);
gdk_color_parse ("red", &colors[8*i + MOO_TERM_RED]);
gdk_color_parse ("green", &colors[8*i + MOO_TERM_GREEN]);
gdk_color_parse ("yellow", &colors[8*i + MOO_TERM_YELLOW]);
gdk_color_parse ("blue", &colors[8*i + MOO_TERM_BLUE]);
gdk_color_parse ("magenta", &colors[8*i + MOO_TERM_MAGENTA]);
gdk_color_parse ("cyan", &colors[8*i + MOO_TERM_CYAN]);
gdk_color_parse ("white", &colors[8*i + MOO_TERM_WHITE]);
}
moo_term_set_colors (term, colors, 2 * MOO_TERM_COLOR_MAX);
}
void
_moo_term_update_palette (MooTerm *term)
{
int i, j;
GtkWidget *widget = GTK_WIDGET (term);
GdkColormap *colormap;
GdkGCValues vals;
g_return_if_fail (GTK_WIDGET_REALIZED (widget));
colormap = gdk_colormap_get_system ();
g_return_if_fail (colormap != NULL);
gdk_colormap_alloc_color (colormap, &term->priv->fg_color[0],
TRUE, TRUE);
gdk_colormap_alloc_color (colormap, &term->priv->fg_color[1],
TRUE, TRUE);
gdk_colormap_alloc_color (colormap, &term->priv->bg_color,
TRUE, TRUE);
if (term->priv->color[0])
for (i = 0; i < 2*MOO_TERM_COLOR_MAX; ++i)
g_object_unref (term->priv->color[i]);
2005-07-06 16:41:14 -07:00
for (i = 0; i < MOO_TERM_COLOR_MAX; ++i)
2005-07-22 05:02:36 -07:00
for (j = 0; j < 2; ++j)
gdk_colormap_alloc_color (colormap,
&term->priv->palette[8*j + i],
TRUE, TRUE);
2005-07-06 16:41:14 -07:00
for (i = 0; i < MOO_TERM_COLOR_MAX; ++i)
2005-07-22 05:02:36 -07:00
for (j = 0; j < 2; ++j)
2005-06-22 11:20:32 -07:00
{
2005-07-22 05:02:36 -07:00
vals.foreground = term->priv->palette[8*j + i];
term->priv->color[8*j + i] =
2005-07-06 16:41:14 -07:00
gdk_gc_new_with_values (widget->window,
&vals,
2005-07-20 10:00:21 -07:00
GDK_GC_FOREGROUND);
2005-07-06 16:41:14 -07:00
}
moo_term_update_text_colors (term);
}
void
_moo_term_style_set (GtkWidget *widget,
G_GNUC_UNUSED GtkStyle *previous_style)
{
g_return_if_fail (widget->style != NULL);
moo_term_set_text_colors (MOO_TERM (widget),
&widget->style->text[GTK_STATE_NORMAL],
&widget->style->text[GTK_STATE_NORMAL],
&widget->style->base[GTK_STATE_NORMAL]);
moo_term_update_text_colors (MOO_TERM (widget));
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
static void
invalidate_screen_cell (MooTerm *term,
guint row,
guint column)
2005-07-06 16:41:14 -07:00
{
2005-07-15 02:46:44 -07:00
int scrollback, top_line;
GdkRectangle small_rect = {0, 0, 1, 1};
2005-06-22 11:20:32 -07:00
2005-07-15 02:46:44 -07:00
scrollback = buf_scrollback (term->priv->buffer);
top_line = term_top_line (term);
2005-06-22 11:20:32 -07:00
2005-07-15 02:46:44 -07:00
small_rect.x = column;
small_rect.y = row + scrollback - top_line;
2005-07-07 00:01:19 -07:00
_moo_term_invalidate_rect (term, &small_rect);
2005-07-15 02:46:44 -07:00
}
2005-06-22 11:20:32 -07:00
2005-07-07 00:01:19 -07:00
void
_moo_term_cursor_moved (MooTerm *term,
MooTermBuffer *buf)
2005-07-15 02:46:44 -07:00
{
int new_row, new_col;
2005-06-22 11:20:32 -07:00
2005-07-20 08:52:15 -07:00
if (buf != term->priv->buffer)
2005-07-15 02:46:44 -07:00
return;
2005-07-15 02:46:44 -07:00
new_row = buf_cursor_row (buf);
2005-12-03 12:29:23 -08:00
new_col = buf_cursor_col_display (buf);
2005-12-03 12:29:23 -08:00
if (new_row != (int) term->priv->cursor_row ||
new_col != (int) term->priv->cursor_col)
2005-07-15 02:46:44 -07:00
{
2005-12-03 12:29:23 -08:00
if (term->priv->cursor_visible && term->priv->blink_cursor_visible)
{
invalidate_screen_cell (term,
term->priv->cursor_row,
term->priv->cursor_col);
invalidate_screen_cell (term, new_row, new_col);
}
2005-07-20 08:52:15 -07:00
2005-12-03 12:29:23 -08:00
term->priv->cursor_col = new_col;
term->priv->cursor_row = new_row;
}
2005-06-22 11:20:32 -07:00
}
void
_moo_term_init_back_pixmap (MooTerm *term)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
if (term->priv->back_pixmap)
2005-06-22 11:20:32 -07:00
return;
2005-07-06 16:41:14 -07:00
term->priv->back_pixmap =
gdk_pixmap_new (GTK_WIDGET(term)->window,
2005-07-21 15:11:16 -07:00
PIXEL_WIDTH(term), PIXEL_HEIGHT(term), -1);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
term->priv->clip = gdk_gc_new (term->priv->back_pixmap);
gdk_gc_set_clip_origin (term->priv->clip, 0, 0);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
moo_term_invalidate_content_all (term);
2005-06-22 11:20:32 -07:00
}
void
_moo_term_resize_back_pixmap (MooTerm *term)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
if (term->priv->font_changed)
{
GdkPixmap *pix;
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
term->priv->font_changed = FALSE;
pix = gdk_pixmap_new (term->priv->back_pixmap,
2005-07-21 15:11:16 -07:00
PIXEL_WIDTH(term), PIXEL_HEIGHT(term), -1);
2005-07-06 16:41:14 -07:00
g_object_unref (term->priv->back_pixmap);
term->priv->back_pixmap = pix;
moo_term_invalidate_content_all (term);
}
else
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
GdkPixmap *pix;
GdkRegion *region;
int old_width, old_height;
2005-07-21 15:11:16 -07:00
int width = PIXEL_WIDTH(term);
int height = PIXEL_HEIGHT(term);
2005-07-06 16:41:14 -07:00
GdkRectangle rec = {0, 0, width, height};
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
pix = gdk_pixmap_new (term->priv->back_pixmap,
width, height, -1);
2005-06-22 11:20:32 -07:00
2005-07-07 00:01:19 -07:00
gdk_drawable_get_size (term->priv->back_pixmap,
&old_width, &old_height);
2005-07-06 16:41:14 -07:00
gdk_gc_set_clip_rectangle (term->priv->clip, &rec);
gdk_draw_drawable (pix, term->priv->clip,
term->priv->back_pixmap,
0, 0, 0, 0,
MIN (width, old_width),
MIN (height, old_height));
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (width > old_width)
{
2005-07-21 15:11:16 -07:00
rec.x = old_width / CHAR_WIDTH(term);
rec.width = (width - old_width) / CHAR_WIDTH(term);
2005-07-06 16:41:14 -07:00
rec.y = 0;
2005-07-21 15:11:16 -07:00
rec.height = height / CHAR_HEIGHT(term);
2005-07-06 16:41:14 -07:00
moo_term_invalidate_content_rect (term, &rec);
}
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (height > old_height)
{
rec.x = 0;
2005-07-21 15:11:16 -07:00
rec.width = width / CHAR_WIDTH(term);
rec.y = old_height / CHAR_HEIGHT(term);
rec.height = (height - old_height) / CHAR_HEIGHT(term);
2005-07-06 16:41:14 -07:00
moo_term_invalidate_content_rect (term, &rec);
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
rec.x = rec.y = 0;
2005-07-21 15:11:16 -07:00
rec.width = width / CHAR_WIDTH(term);
rec.height = height / CHAR_HEIGHT(term);
2005-07-06 16:41:14 -07:00
if (term->priv->changed_content)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
region = gdk_region_rectangle (&rec);
gdk_region_intersect (term->priv->changed_content, region);
gdk_region_destroy (region);
}
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
g_object_unref (term->priv->back_pixmap);
term->priv->back_pixmap = pix;
}
}
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
/* absolute row */
static void term_draw_range (MooTerm *term,
GdkDrawable *drawable,
guint row,
guint start,
guint len);
2005-06-22 11:20:32 -07:00
void
_moo_term_update_back_pixmap (MooTerm *term)
2005-07-06 16:41:14 -07:00
{
GdkRectangle *rects = NULL;
int n_rects;
int i, j;
int top_line = term_top_line (term);
int width = term->priv->width;
int height = term->priv->height;
2005-07-06 16:41:14 -07:00
GdkRectangle clip = {0, 0, width, height};
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (!term->priv->changed_content)
return;
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
gdk_region_get_rectangles (term->priv->changed_content,
&rects, &n_rects);
for (i = 0; i < n_rects; ++i)
{
if (gdk_rectangle_intersect (&rects[i], &clip, &rects[i]))
{
for (j = 0; j < rects[i].height; ++j)
term_draw_range (term, term->priv->back_pixmap,
top_line + rects[i].y + j,
2005-07-06 16:41:14 -07:00
rects[i].x, rects[i].width);
}
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
g_free (rects);
gdk_region_destroy (term->priv->changed_content);
term->priv->changed_content = NULL;
}
static void
moo_term_invalidate_content_all (MooTerm *term)
2005-07-06 16:41:14 -07:00
{
GdkRectangle rect = {0, 0, term->priv->width, term->priv->height};
2005-07-06 16:41:14 -07:00
moo_term_invalidate_content_rect (term, &rect);
}
static void
moo_term_invalidate_content_rect (MooTerm *term,
GdkRectangle *rect)
2005-07-06 16:41:14 -07:00
{
if (term->priv->changed_content)
gdk_region_union_with_rect (term->priv->changed_content, rect);
else
term->priv->changed_content = gdk_region_rectangle (rect);
2005-06-22 11:20:32 -07:00
}
gboolean
_moo_term_expose_event (GtkWidget *widget,
GdkEventExpose *event)
2005-06-22 11:20:32 -07:00
{
GdkRectangle text_rec = {0, 0, 0, 0};
GdkRegion *text_reg;
MooTerm *term = MOO_TERM (widget);
g_assert (term_top_line (term) <= buf_scrollback (term->priv->buffer));
2005-06-22 11:20:32 -07:00
remove_update_timeout (term);
2005-07-21 15:11:16 -07:00
text_rec.width = PIXEL_WIDTH(term);
text_rec.height = PIXEL_HEIGHT(term);
2005-06-22 11:20:32 -07:00
if (event->area.x + event->area.width >= text_rec.width)
{
gdk_draw_rectangle (widget->window,
2005-07-20 10:00:21 -07:00
term->priv->bg, TRUE,
2005-06-22 11:20:32 -07:00
text_rec.width, 0,
2005-07-21 15:11:16 -07:00
CHAR_WIDTH(term),
2005-06-22 11:20:32 -07:00
widget->allocation.height);
}
if (event->area.y + event->area.height >= text_rec.height)
{
gdk_draw_rectangle (widget->window,
2005-07-20 10:00:21 -07:00
term->priv->bg, TRUE,
2005-06-22 11:20:32 -07:00
0, text_rec.height,
widget->allocation.width,
2005-07-21 15:11:16 -07:00
CHAR_HEIGHT(term));
2005-06-22 11:20:32 -07:00
}
text_reg = gdk_region_rectangle (&text_rec);
gdk_region_intersect (event->region, text_reg);
gdk_region_destroy (text_reg);
if (!gdk_region_empty (event->region))
{
_moo_term_update_back_pixmap (term);
2005-07-06 16:41:14 -07:00
gdk_gc_set_clip_region (term->priv->clip,
event->region);
gdk_draw_drawable (event->window,
term->priv->clip,
term->priv->back_pixmap,
0, 0, 0, 0,
text_rec.width,
text_rec.height);
}
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
return TRUE;
}
/****************************************************************************/
/* Drawing
*/
static void term_draw_range_simple (MooTerm *term,
GdkDrawable *drawable,
2005-07-06 16:41:14 -07:00
guint abs_row,
guint start,
guint len,
int selected);
static void term_draw_cells (MooTerm *term,
GdkDrawable *drawable,
2005-07-06 16:41:14 -07:00
guint abs_row,
guint start,
guint len,
MooTermTextAttr attr,
2005-07-06 16:41:14 -07:00
int selected);
static void term_draw_cursor (MooTerm *term,
GdkDrawable *drawable);
2005-07-06 16:41:14 -07:00
static void
term_draw_range (MooTerm *term,
GdkDrawable *drawable,
guint abs_row,
guint start,
guint len)
2005-07-06 16:41:14 -07:00
{
int selected;
guint first = start;
guint last = start + len;
g_return_if_fail (len != 0);
g_assert (start + len <= term->priv->width);
2005-07-06 16:41:14 -07:00
g_assert (abs_row < buf_total_height (term->priv->buffer));
if (term->priv->cursor_visible && term->priv->blink_cursor_visible &&
2005-07-15 02:46:44 -07:00
term->priv->cursor_row + buf_scrollback (term->priv->buffer) == abs_row)
2005-07-06 16:41:14 -07:00
{
2005-12-03 12:29:23 -08:00
guint cursor = buf_cursor_col_display (term->priv->buffer);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (cursor >= start && cursor < start + len)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
if (cursor > start)
term_draw_range (term, drawable, abs_row,
2005-07-06 16:41:14 -07:00
start, cursor - start);
2005-06-22 11:20:32 -07:00
term_draw_cursor (term, drawable);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (cursor < start + len - 1)
term_draw_range (term, drawable, abs_row,
2005-07-06 16:41:14 -07:00
cursor + 1, start + len - 1 - cursor);
return;
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
selected = _moo_term_row_selected (term, abs_row);
2005-07-06 16:41:14 -07:00
switch (selected)
{
case FULL_SELECTED:
case NOT_SELECTED:
term_draw_range_simple (term, drawable, abs_row, first, len, selected);
2005-07-06 16:41:14 -07:00
break;
case PART_SELECTED:
2005-06-22 11:20:32 -07:00
{
guint l_row, l_col, r_row, r_col;
_moo_term_get_selected_cells (term, &l_row, &l_col,
&r_row, &r_col);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (l_row == r_row)
{
g_assert (abs_row == l_row);
if (r_col <= first || last <= l_col)
{
term_draw_range_simple (term, drawable, abs_row,
2005-07-19 07:01:41 -07:00
first, len, FALSE);
2005-07-06 16:41:14 -07:00
}
else if (l_col <= first && last <= r_col)
{
term_draw_range_simple (term, drawable, abs_row,
2005-07-19 07:01:41 -07:00
first, len, TRUE);
2005-07-06 16:41:14 -07:00
}
else if (first < l_col)
{
term_draw_range_simple (term, drawable, abs_row,
first, l_col - first, FALSE);
term_draw_range_simple (term, drawable, abs_row, l_col,
MIN (last, r_col) - l_col, TRUE);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (r_col < last)
term_draw_range_simple (term, drawable, abs_row,
r_col, last - r_col, FALSE);
2005-07-06 16:41:14 -07:00
}
else
{
term_draw_range_simple (term, drawable, abs_row, first,
MIN (last, r_col) - first, TRUE);
2005-07-06 16:41:14 -07:00
if (r_col < last)
term_draw_range_simple (term, drawable, abs_row,
r_col, last - r_col, FALSE);
2005-07-06 16:41:14 -07:00
}
}
else if (l_row == abs_row)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
if (last <= l_col)
{
term_draw_range_simple (term, drawable, abs_row,
first, len, FALSE);
2005-07-06 16:41:14 -07:00
}
else if (l_col <= first)
{
term_draw_range_simple (term, drawable, abs_row,
first, len, TRUE);
2005-07-06 16:41:14 -07:00
}
else
{
term_draw_range_simple (term, drawable, abs_row,
first, l_col - first, FALSE);
term_draw_range_simple (term, drawable, abs_row,
l_col, last - l_col, TRUE);
2005-07-06 16:41:14 -07:00
}
}
else
{
g_assert (abs_row == r_row);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
if (last <= r_col)
{
term_draw_range_simple (term, drawable, abs_row,
first, len, TRUE);
2005-07-06 16:41:14 -07:00
}
else if (r_col <= first)
{
term_draw_range_simple (term, drawable, abs_row,
first, len, FALSE);
2005-07-06 16:41:14 -07:00
}
else {
term_draw_range_simple (term, drawable, abs_row,
first, r_col - first, TRUE);
term_draw_range_simple (term, drawable, abs_row,
r_col, last - r_col, FALSE);
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
break;
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
default:
g_assert_not_reached ();
2005-06-22 11:20:32 -07:00
}
}
static void
term_draw_range_simple (MooTerm *term,
GdkDrawable *drawable,
guint abs_row,
guint start,
guint len,
gboolean selected)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
MooTermLine *line = buf_line (term->priv->buffer, abs_row);
2005-07-21 15:11:16 -07:00
int y = (abs_row - term_top_line (term)) * CHAR_HEIGHT(term);
2005-07-20 10:00:21 -07:00
GdkGC *bg;
guint invert;
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
g_assert (selected == 0 || selected == 1);
2005-06-22 11:20:32 -07:00
2005-07-20 10:00:21 -07:00
invert = (selected ? 1 : 0) + (term->priv->colors_inverted ? 1 : 0);
invert %= 2;
if (!invert)
bg = term->priv->bg;
2005-07-16 11:31:03 -07:00
else
2005-07-22 05:02:36 -07:00
bg = term->priv->fg[COLOR_NORMAL];
2005-07-16 11:31:03 -07:00
if (start >= _moo_term_line_width (line))
2005-07-06 16:41:14 -07:00
{
gdk_draw_rectangle (drawable,
2005-07-20 10:00:21 -07:00
bg,
2005-07-06 16:41:14 -07:00
TRUE,
2005-07-21 15:11:16 -07:00
start * CHAR_WIDTH(term),
2005-07-06 16:41:14 -07:00
y,
2005-07-21 15:11:16 -07:00
len * CHAR_WIDTH(term),
CHAR_HEIGHT(term));
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
return;
}
else if (start + len > _moo_term_line_width (line))
2005-07-06 16:41:14 -07:00
{
gdk_draw_rectangle (drawable,
2005-07-20 10:00:21 -07:00
bg,
2005-07-06 16:41:14 -07:00
TRUE,
_moo_term_line_width (line) * CHAR_WIDTH(term),
2005-07-06 16:41:14 -07:00
y,
(start + len - _moo_term_line_width (line)) * CHAR_WIDTH(term),
2005-07-21 15:11:16 -07:00
CHAR_HEIGHT(term));
2005-07-06 16:41:14 -07:00
len = _moo_term_line_width (line) - start;
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
g_assert (start + len <= _moo_term_line_width (line));
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
while (len)
2005-06-22 11:20:32 -07:00
{
2005-07-06 16:41:14 -07:00
guint i;
MooTermTextAttr attr = _moo_term_line_get_attr (line, start);
2005-07-06 16:41:14 -07:00
for (i = 1; i < len &&
MOO_TERM_TEXT_ATTR_EQUAL (attr, _moo_term_line_get_attr (line, start + i));
++i) ;
2005-07-06 16:41:14 -07:00
term_draw_cells (term, drawable, abs_row, start, i, attr, selected);
2005-07-06 16:41:14 -07:00
len -= i;
start += i;
2005-06-22 11:20:32 -07:00
}
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
static void
term_draw_cells (MooTerm *term,
GdkDrawable *drawable,
guint abs_row,
guint start,
guint len,
MooTermTextAttr attr,
gboolean selected)
2005-07-06 16:41:14 -07:00
{
static char buf[8 * MAX_TERMINAL_WIDTH];
guint buf_len;
GdkGC *fg = NULL;
GdkGC *bg = NULL;
2005-07-20 10:00:21 -07:00
guint bold;
guint invert;
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
MooTermLine *line = buf_line (term->priv->buffer, abs_row);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
g_assert (len != 0);
g_assert (start + len <= _moo_term_line_width (line));
2005-06-22 11:20:32 -07:00
buf_len = _moo_term_line_get_chars (line, buf, start, len);
2005-07-06 16:41:14 -07:00
g_return_if_fail (buf_len != 0);
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
pango_layout_set_text (term->priv->layout, buf, buf_len);
2005-06-22 11:20:32 -07:00
bold = (attr.mask & MOO_TERM_TEXT_BOLD) ? COLOR_BOLD : COLOR_NORMAL;
2005-07-20 10:00:21 -07:00
if (attr.mask & MOO_TERM_TEXT_FOREGROUND)
2005-06-22 11:20:32 -07:00
{
g_return_if_fail (attr.foreground < MOO_TERM_COLOR_MAX);
fg = term->priv->color[8*bold + attr.foreground];
2005-07-20 10:00:21 -07:00
}
else
{
fg = term->priv->fg[bold];
2005-06-22 11:20:32 -07:00
}
if (attr.mask & MOO_TERM_TEXT_BACKGROUND)
2005-06-22 11:20:32 -07:00
{
g_return_if_fail (attr.foreground < MOO_TERM_COLOR_MAX);
bg = term->priv->color[8*bold + attr.background];
2005-07-20 10:00:21 -07:00
}
else
{
bg = term->priv->bg;
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
2005-07-20 10:00:21 -07:00
invert = (selected ? 1 : 0) + (term->priv->colors_inverted ? 1 : 0) +
(attr.mask & MOO_TERM_TEXT_REVERSE ? 1 : 0);
2005-07-20 10:00:21 -07:00
invert %= 2;
2005-06-22 11:20:32 -07:00
2005-07-20 10:00:21 -07:00
if (invert)
2005-07-16 11:31:03 -07:00
{
GdkGC *tmp = fg;
fg = bg;
bg = tmp;
}
gdk_draw_rectangle (drawable,
2005-07-06 16:41:14 -07:00
bg,
TRUE,
2005-07-21 15:11:16 -07:00
start * CHAR_WIDTH(term),
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term),
len * CHAR_WIDTH(term),
CHAR_HEIGHT(term));
2005-07-06 16:41:14 -07:00
gdk_draw_layout (drawable,
2005-07-06 16:41:14 -07:00
fg,
2005-07-21 15:11:16 -07:00
start * CHAR_WIDTH(term),
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term),
2005-07-06 16:41:14 -07:00
term->priv->layout);
if ((attr.mask & MOO_TERM_TEXT_BOLD) && term->priv->settings.allow_bold)
gdk_draw_layout (drawable,
fg,
2005-07-21 15:11:16 -07:00
start * CHAR_WIDTH(term) + 1,
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term),
term->priv->layout);
if (attr.mask & MOO_TERM_TEXT_UNDERLINE)
gdk_draw_line (drawable,
fg,
2005-07-21 15:11:16 -07:00
start * CHAR_WIDTH(term),
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term) + CHAR_ASCENT(term) + 1,
(start + len) * CHAR_WIDTH(term) + 1,
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term) + CHAR_ASCENT(term) + 1);
2005-07-06 16:41:14 -07:00
}
2005-06-22 11:20:32 -07:00
2005-07-06 16:41:14 -07:00
static void
term_draw_cursor (MooTerm *term,
GdkDrawable *drawable)
2005-07-06 16:41:14 -07:00
{
2005-07-20 10:00:21 -07:00
guint scrollback = buf_scrollback (term->priv->buffer);
guint abs_row = term->priv->cursor_row + scrollback;
guint column = term->priv->cursor_col;
2005-07-07 00:01:19 -07:00
MooTermLine *line = buf_line (term->priv->buffer, abs_row);
if (_moo_term_line_width (line) > column)
2005-07-07 00:01:19 -07:00
{
return term_draw_cells (term, drawable, abs_row, column, 1,
_moo_term_line_get_attr (line, column),
!_moo_term_cell_selected (term, abs_row, column));
2005-07-07 00:01:19 -07:00
}
else
{
2005-07-20 10:00:21 -07:00
GdkGC *color;
guint invert;
2005-07-07 00:01:19 -07:00
invert = 1 + (_moo_term_cell_selected (term, abs_row, column) ? 1 : 0) +
2005-07-20 10:00:21 -07:00
(term->priv->colors_inverted ? 1 : 0);
invert %= 2;
2005-07-16 11:31:03 -07:00
2005-07-20 10:00:21 -07:00
if (invert)
2005-07-22 05:02:36 -07:00
color = term->priv->fg[COLOR_NORMAL];
2005-07-20 10:00:21 -07:00
else
color = term->priv->bg;
2005-07-07 00:01:19 -07:00
gdk_draw_rectangle (drawable,
2005-07-20 10:00:21 -07:00
color,
TRUE,
2005-07-21 15:11:16 -07:00
column * CHAR_WIDTH(term),
(abs_row - term_top_line (term)) * CHAR_HEIGHT(term),
CHAR_WIDTH(term),
CHAR_HEIGHT(term));
2005-07-07 00:01:19 -07:00
}
2005-06-22 11:20:32 -07:00
}
void
_moo_term_buf_content_changed (MooTerm *term,
MooTermBuffer *buf)
2005-06-22 11:20:32 -07:00
{
GdkRectangle *rect = NULL;
GdkRegion *dirty, *changed;
int n_rect, i;
guint top_line, scrollback;
int height;
if (!GTK_WIDGET_DRAWABLE (term))
return;
changed = buf_get_changed (buf);
if (buf != term->priv->buffer || !changed || gdk_region_empty (changed))
return;
2005-06-22 11:20:32 -07:00
/* TODO TODO TODO*/
buf->priv->changed = NULL;
buf->priv->changed_all = FALSE;
top_line = term_top_line (term);
scrollback = buf_scrollback (buf);
height = term->priv->height;
g_assert (top_line <= scrollback);
if (top_line != scrollback)
2005-06-22 11:20:32 -07:00
{
GdkRectangle clip = {0, 0, term->priv->width, height};
GdkRegion *tmp;
2005-06-22 11:20:32 -07:00
gdk_region_offset (changed, 0, scrollback - top_line);
2005-06-22 11:20:32 -07:00
tmp = gdk_region_rectangle (&clip);
gdk_region_intersect (changed, tmp);
gdk_region_destroy (tmp);
}
2005-07-06 16:41:14 -07:00
if (gdk_region_empty (changed))
{
gdk_region_destroy (changed);
return;
}
2005-06-22 11:20:32 -07:00
gdk_region_get_rectangles (changed, &rect, &n_rect);
g_return_if_fail (rect != NULL);
2005-06-22 11:20:32 -07:00
dirty = gdk_region_new ();
2005-06-22 11:20:32 -07:00
for (i = 0; i < n_rect; ++i)
{
moo_term_invalidate_content_rect (term, &rect[i]);
2005-06-22 11:20:32 -07:00
2005-07-21 15:11:16 -07:00
rect[i].x *= CHAR_WIDTH(term);
rect[i].y *= CHAR_HEIGHT(term);
rect[i].width *= CHAR_WIDTH(term);
rect[i].height *= CHAR_HEIGHT(term);
2005-06-22 11:20:32 -07:00
gdk_region_union_with_rect (dirty, &rect[i]);
}
2005-06-22 11:20:32 -07:00
gdk_window_invalidate_region (GTK_WIDGET(term)->window,
dirty, FALSE);
add_update_timeout (term);
2005-06-22 11:20:32 -07:00
g_free (rect);
gdk_region_destroy (changed);
gdk_region_destroy (dirty);
}
2005-07-06 16:41:14 -07:00
2005-06-22 11:20:32 -07:00
void
_moo_term_force_update (MooTerm *term)
{
GdkRegion *region;
GdkWindow *window = GTK_WIDGET (term)->window;
region = gdk_window_get_update_area (window);
2005-07-06 16:41:14 -07:00
if (region)
{
GdkEvent *event = gdk_event_new (GDK_EXPOSE);
event->expose.window = g_object_ref (window);
event->expose.send_event = TRUE;
gdk_region_get_clipbox (region, &event->expose.area);
event->expose.region = region;
gtk_main_do_event (event);
gdk_event_free (event);
2005-06-22 11:20:32 -07:00
}
}
void
_moo_term_invert_colors (MooTerm *term,
gboolean invert)
{
2005-07-16 11:31:03 -07:00
if (invert != term->priv->colors_inverted)
{
_moo_term_invalidate_all (term);
2005-07-16 11:31:03 -07:00
term->priv->colors_inverted = invert;
}
}
void
_moo_term_set_cursor_visible (MooTerm *term,
gboolean visible)
{
term->priv->cursor_visible = visible;
2005-07-20 08:52:15 -07:00
invalidate_screen_cell (term,
term->priv->cursor_row,
term->priv->cursor_col);
}
2005-07-15 02:46:44 -07:00
static gboolean
blink (MooTerm *term)
2005-07-20 08:52:15 -07:00
{
term->priv->blink_cursor_visible =
!term->priv->blink_cursor_visible;
2005-07-20 08:52:15 -07:00
invalidate_screen_cell (term,
term->priv->cursor_row,
term->priv->cursor_col);
return TRUE;
}
static void
start_cursor_blinking (MooTerm *term)
2005-07-20 08:52:15 -07:00
{
if (!term->priv->cursor_blink_timeout_id && term->priv->cursor_blinks)
term->priv->cursor_blink_timeout_id =
g_timeout_add (term->priv->cursor_blink_time,
2005-07-20 08:52:15 -07:00
(GSourceFunc) blink,
term);
}
static void
stop_cursor_blinking (MooTerm *term)
2005-07-20 08:52:15 -07:00
{
if (term->priv->cursor_blink_timeout_id)
2005-07-20 10:00:21 -07:00
{
g_source_remove (term->priv->cursor_blink_timeout_id);
term->priv->cursor_blink_timeout_id = 0;
term->priv->blink_cursor_visible = TRUE;
2005-07-20 10:00:21 -07:00
invalidate_screen_cell (term,
term->priv->cursor_row,
term->priv->cursor_col);
}
}
void
_moo_term_pause_cursor_blinking (MooTerm *term)
{
if (term->priv->cursor_blinks)
{
stop_cursor_blinking (term);
start_cursor_blinking (term);
}
}
void
_moo_term_set_cursor_blinks (MooTerm *term,
gboolean blinks)
{
term->priv->cursor_blinks = blinks;
if (blinks)
start_cursor_blinking (term);
else
stop_cursor_blinking (term);
g_object_notify (G_OBJECT (term), "cursor-blinks");
}
2005-07-23 21:58:57 -07:00
void
moo_term_set_cursor_blink_time (MooTerm *term,
guint ms)
2005-07-23 21:58:57 -07:00
{
if (ms)
{
term->priv->cursor_blink_time = ms;
_moo_term_set_cursor_blinks (term, TRUE);
_moo_term_pause_cursor_blinking (term);
2005-07-23 21:58:57 -07:00
}
else
{
_moo_term_set_cursor_blinks (term, FALSE);
2005-07-23 21:58:57 -07:00
}
}