mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-22 14:44:04 +02:00
- for consistency, renamed gui_tools to gui_tool
git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5410 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
parent
a1de1ee2d9
commit
e677ee1691
4
Makefile
4
Makefile
@ -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_frame.o
|
||||
gui_tool.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
|
||||
@ -95,7 +95,7 @@ y.tab.c y.tab.h: fpd.y
|
||||
y.tab.o: y.tab.c
|
||||
$(CC) -c $(CFLAGS) $(SLOPPY) y.tab.c
|
||||
|
||||
gui_tools.o: $(XPMS:%=icons/%)
|
||||
gui_tool.o: $(XPMS:%=icons/%)
|
||||
|
||||
# ----- Dependencies ----------------------------------------------------------
|
||||
|
||||
|
2
gui.c
2
gui.c
@ -20,7 +20,7 @@
|
||||
#include "gui_style.h"
|
||||
#include "gui_status.h"
|
||||
#include "gui_canvas.h"
|
||||
#include "gui_tools.h"
|
||||
#include "gui_tool.h"
|
||||
#include "gui_frame.h"
|
||||
#include "gui.h"
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "gui_inst.h"
|
||||
#include "gui_style.h"
|
||||
#include "gui_status.h"
|
||||
#include "gui_tools.h"
|
||||
#include "gui_tool.h"
|
||||
#include "gui.h"
|
||||
#include "gui_canvas.h"
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "gui_util.h"
|
||||
#include "gui_style.h"
|
||||
#include "gui_status.h"
|
||||
#include "gui_tools.h"
|
||||
#include "gui_tool.h"
|
||||
#include "gui.h"
|
||||
#include "gui_frame.h"
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "util.h"
|
||||
#include "meas.h"
|
||||
#include "gui_canvas.h"
|
||||
#include "gui_tools.h"
|
||||
#include "gui_tool.h"
|
||||
#include "gui_meas.h"
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* gui_tools.c - GUI, tool bar
|
||||
* gui_tool.c - GUI, tool bar
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
@ -27,7 +27,7 @@
|
||||
#include "gui_status.h"
|
||||
#include "gui.h"
|
||||
#include "gui_meas.h"
|
||||
#include "gui_tools.h"
|
||||
#include "gui_tool.h"
|
||||
|
||||
|
||||
#include "icons/circ.xpm"
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* gui_tools.h - GUI, tool bar
|
||||
* gui_tool.h - GUI, tool bar
|
||||
*
|
||||
* Written 2009 by Werner Almesberger
|
||||
* Copyright 2009 by Werner Almesberger
|
||||
@ -11,8 +11,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GUI_TOOLS_H
|
||||
#define GUI_TOOLS_H
|
||||
#ifndef GUI_TOOL_H
|
||||
#define GUI_TOOL_H
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
@ -75,4 +75,4 @@ void tool_reset(void);
|
||||
|
||||
GtkWidget *gui_setup_tools(GdkDrawable *drawable);
|
||||
|
||||
#endif /* !GUI_TOOLS_H */
|
||||
#endif /* !GUI_TOOL_H */
|
Loading…
Reference in New Issue
Block a user