summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-12-08 12:59:37 -0500
committerKristian Høgsberg <krh@redhat.com>2008-12-08 12:59:37 -0500
commit1584c57edcbeb34a628afe12fd6e527fda8ec486 (patch)
tree3edc58e6d9512e2ca23d66b3c63fd89fdad253f6
parent17809b1e4373ea9e3635d224c5ef1efda6889cfb (diff)
downloadwayland-1584c57edcbeb34a628afe12fd6e527fda8ec486.tar.gz
wayland-1584c57edcbeb34a628afe12fd6e527fda8ec486.tar.xz
wayland-1584c57edcbeb34a628afe12fd6e527fda8ec486.zip
Snap terminal size to an integer number of character cells.
-rw-r--r--gears.c2
-rw-r--r--terminal.c27
-rw-r--r--window.c9
-rw-r--r--window.h2
4 files changed, 34 insertions, 6 deletions
diff --git a/gears.c b/gears.c
index e8d3e0b..32fb1f7 100644
--- a/gears.c
+++ b/gears.c
@@ -269,7 +269,7 @@ resize_window(struct gears *gears)
}
static void
-resize_handler(struct window *window, int32_t width, int32_t height, void *data)
+resize_handler(struct window *window, struct rectangle *rectangle, void *data)
{
struct gears *gears = data;
diff --git a/terminal.c b/terminal.c
index 82227e3..40aa2b7 100644
--- a/terminal.c
+++ b/terminal.c
@@ -63,6 +63,7 @@ struct terminal {
char escape[64];
int escape_length;
int state;
+ int margin;
};
static void
@@ -93,7 +94,8 @@ terminal_draw_contents(struct terminal *terminal)
cairo_font_extents(cr, &extents);
for (i = 0; i < terminal->total_rows; i++) {
row = (terminal->tail + i) % terminal->height;
- cairo_move_to(cr, 0, extents.ascent + extents.height * i);
+ cairo_move_to(cr, terminal->margin,
+ terminal->margin + extents.ascent + extents.height * i);
cairo_show_text(cr, &terminal->data[row * (terminal->width + 1)]);
}
cairo_destroy(cr);
@@ -232,9 +234,29 @@ terminal_data(struct terminal *terminal, const char *data, size_t length)
}
static void
-resize_handler(struct window *window, int32_t width, int32_t height, void *data)
+resize_handler(struct window *window, struct rectangle *rectangle, void *data)
{
struct terminal *terminal = data;
+ cairo_surface_t *surface;
+ cairo_font_extents_t extents;
+ cairo_t *cr;
+
+ /* Adjust the size to an integer number of character cells.
+ * Maybe this is better done in the redraw path, as we're
+ * creating the cr and setting the font there anyway. */
+
+ surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 0, 0);
+ cr = cairo_create(surface);
+ cairo_select_font_face (cr, "mono",
+ CAIRO_FONT_SLANT_NORMAL,
+ CAIRO_FONT_WEIGHT_NORMAL);
+ cairo_set_font_size(cr, 14);
+ cairo_font_extents(cr, &extents);
+ cairo_destroy(cr);
+ cairo_surface_destroy(surface);
+
+ rectangle->width -= (rectangle->width - 2 * terminal->margin) % (int32_t) extents.max_x_advance;
+ rectangle->height -= (rectangle->height - 2 * terminal->margin) % (int32_t) extents.height;
terminal_schedule_redraw(terminal);
}
@@ -383,6 +405,7 @@ terminal_create(struct wl_display *display, int fd)
terminal->width = 80;
terminal->height = 25;
terminal->total_rows = 1;
+ terminal->margin = 5;
size = (terminal->width + 1) * terminal->height;
terminal->data = malloc(size);
memset(terminal->data, 0, size);
diff --git a/window.c b/window.c
index 4f94c50..61f93f2 100644
--- a/window.c
+++ b/window.c
@@ -190,6 +190,7 @@ event_handler(struct wl_display *display,
uint32_t size, uint32_t *p, void *data)
{
struct window *window = data;
+ struct rectangle rectangle;
int location;
int grip_size = 16;
@@ -251,11 +252,15 @@ event_handler(struct wl_display *display,
if (window->height < window->minimum_height)
window->height = window->minimum_height;
+ window_get_child_rectangle(window, &rectangle);
if (window->resize_handler)
(*window->resize_handler)(window,
- window->width,
- window->height,
+ &rectangle,
window->user_data);
+
+ window->width = rectangle.width + 20;
+ window->height = rectangle.height + 60;
+
break;
}
} else if (opcode == 1) {
diff --git a/window.h b/window.h
index 1a28d29..c86f264 100644
--- a/window.h
+++ b/window.h
@@ -32,7 +32,7 @@ struct rectangle {
int32_t height;
};
-typedef void (*window_resize_handler_t)(struct window *window, int32_t width, int32_t height, void *data);
+typedef void (*window_resize_handler_t)(struct window *window, struct rectangle *rectangle, void *data);
typedef void (*window_frame_handler_t)(struct window *window, uint32_t frame, uint32_t timestamp, void *data);
typedef void (*window_acknowledge_handler_t)(struct window *window, uint32_t key, void *data);
typedef void (*window_key_handler_t)(struct window *window, uint32_t key, uint32_t state, void *data);