1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-06-26 04:02:20 +03:00

- moved handling of frame area from gui.c to gui_frame.c and cleaned up their

includes



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5409 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner 2009-08-08 19:35:16 +00:00
parent 3dd46bb1c4
commit a1de1ee2d9
4 changed files with 1129 additions and 1085 deletions

View File

@ -14,7 +14,7 @@ OBJS = fped.o expr.o coord.o obj.o delete.o inst.o util.o error.o \
unparse.o dump.o meas.o \
cpp.o lex.yy.o y.tab.o \
gui.o gui_util.o gui_style.o gui_inst.o gui_status.o gui_canvas.o \
gui_tools.o gui_over.o gui_meas.o
gui_tools.o gui_over.o gui_meas.o gui_frame.o
XPMS = point.xpm delete.xpm vec.xpm frame.xpm frame_locked.xpm frame_ready.xpm \
line.xpm rect.xpm pad.xpm circ.xpm meas.xpm meas_x.xpm meas_y.xpm

1085
gui.c

File diff suppressed because it is too large Load Diff

1101
gui_frame.c Normal file

File diff suppressed because it is too large Load Diff

26
gui_frame.h Normal file
View File

@ -0,0 +1,26 @@
/*
* gui_frame.h - GUI, frame window
*
* 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_FRAME_H
#define GUI_FRAME_H
#include <gtk/gtk.h>
void make_popups(void);
void select_frame(struct frame *frame);
void build_frames(GtkWidget *vbox);
#endif /* !GUI_FRAME_H */