mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-04 23:37:33 +02:00
8377ab0e0d
ImageMagick versions (reported by Alvaro Lopes) - we can now also select the frame's origin as a reference - added general frame selection logic - make sure we always use %s when passing names to status_set_name - we can now drag endpoints (in progress) git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5385 99fdad57-331a-0410-800a-d7fa5415bdb3
57 lines
2.0 KiB
C
57 lines
2.0 KiB
C
/*
|
|
* gui_inst.h - GUI, instance functions
|
|
*
|
|
* Written 2009 by Werner Almesberger
|
|
* Copyright 2009 by Werner Almesberger
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#ifndef GUI_INST_H
|
|
#define GUI_INST_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "coord.h"
|
|
#include "inst.h"
|
|
|
|
|
|
struct draw_ctx {
|
|
GtkWidget *widget;
|
|
int scale;
|
|
struct coord center;
|
|
};
|
|
|
|
|
|
struct coord translate(const struct draw_ctx *ctx, struct coord pos);
|
|
struct coord canvas_to_coord(const struct draw_ctx *ctx, int x, int y);
|
|
|
|
unit_type gui_dist_vec(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_vec_fallback(struct inst *self, struct coord pos,
|
|
unit_type scale);
|
|
unit_type gui_dist_line(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_rect(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_pad(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_arc(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_meas(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_frame(struct inst *self, struct coord pos, unit_type scale);
|
|
unit_type gui_dist_frame_eye(struct inst *self, struct coord pos,
|
|
unit_type scale);
|
|
|
|
void gui_draw_vec(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_line(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_rect(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_pad(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_arc(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_meas(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_draw_frame(struct inst *self, struct draw_ctx *ctx);
|
|
|
|
void gui_hover_vec(struct inst *self, struct draw_ctx *ctx);
|
|
void gui_hover_frame(struct inst *self, struct draw_ctx *ctx);
|
|
|
|
#endif /* !GUI_INST_H */
|