diff options
author | Werner Almesberger <werner@almesberger.net> | 2016-08-18 12:41:12 -0300 |
---|---|---|
committer | Werner Almesberger <werner@almesberger.net> | 2016-08-18 12:41:12 -0300 |
commit | c03b6c294cd209703b54cccc236258acfcad60b8 (patch) | |
tree | c329c1a87dd49c575812869208f00ad8363a0e07 /gui/common.h | |
parent | b0ce7932b5bc8ec04120146cac8ca28931b33301 (diff) | |
download | eeshow-c03b6c294cd209703b54cccc236258acfcad60b8.tar.gz eeshow-c03b6c294cd209703b54cccc236258acfcad60b8.tar.bz2 eeshow-c03b6c294cd209703b54cccc236258acfcad60b8.zip |
eeshow/gui/gui.c: move rendering to render.c
Diffstat (limited to 'gui/common.h')
-rw-r--r-- | gui/common.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gui/common.h b/gui/common.h index 8c1bf4b..177d1d8 100644 --- a/gui/common.h +++ b/gui/common.h @@ -106,6 +106,13 @@ struct gui_ctx { void setup_progress_bar(struct gui_ctx *ctx, GtkWidget *window); void progress_update(struct gui_ctx *ctx); +/* render.c */ + +void redraw(const struct gui_ctx *ctx); +void render_sheet(struct gui_sheet *sheet); +void render_delta(struct gui_ctx *ctx); +void render_setup(struct gui_ctx *ctx); + /* glabel.c */ void dehover_glabel(struct gui_ctx *ctx); @@ -117,17 +124,14 @@ void go_to_sheet(struct gui_ctx *ctx, struct gui_sheet *sheet); void do_revision_overlays(struct gui_ctx *ctx); void sheet_setup(struct gui_ctx *ctx); -/* history */ +/* history.c */ void show_history(struct gui_ctx *ctx, enum selecting sel); /* gui.c */ -void redraw(const struct gui_ctx *ctx); struct gui_sheet *find_corresponding_sheet(struct gui_sheet *pick_from, struct gui_sheet *ref_in, const struct gui_sheet *ref); -void render_sheet(struct gui_sheet *sheet); -void render_delta(struct gui_ctx *ctx); void mark_aois(struct gui_ctx *ctx, struct gui_sheet *sheet); #endif /* !GUI_COMMON_H */ |