view finch/libgnt/pygnt/gendef.sh @ 16481:1dc138345d15

merge of '58d962c82219fc41a3ae1310386b9f340b233116' and 'c27d90ccc3ab684085667d5a5926eaa7a85644c2'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 27 Apr 2007 03:27:29 +0000
parents 8fd5ab3f9716
children 5e1412f4e67a
line wrap: on
line source

#!/bin/sh
FILES="
	gntwidget.h
	gntbindable.h
	gntbox.h
	gntbutton.h
	gntcheckbox.h
	gntclipboard.h
	gntcolors.h
	gntcombobox.h
	gntentry.h
	gntfilesel.h
	gntkeys.h
	gntlabel.h
	gntline.h
	gntmarshal.h
	gntmenu.h
	gntmenuitem.h
	gntmenuitemcheck.h
	gntstyle.h
	gnttextview.h
	gnttree.h
	gntutils.h
	gntwindow.h
	gntwm.h
	gnt.h"

# Generate the def file
rm gnt.def
for file in $FILES
do
	python /usr/share/pygtk/2.0/codegen/h2def.py ../$file >> gnt.def
done

# Remove the definitions about the enums
ENUMS="
GNT_TYPE_ALIGNMENT
GNT_TYPE_COLOR_TYPE
GNT_TYPE_MENU_TYPE
GNT_TYPE_STYLE
GNT_TYPE_KEY_PRESS_MODE
GNT_TYPE_ENTRY_FLAG
GNT_TYPE_TEXT_FORMAT_FLAGS
"

for enum in $ENUMS
do
	sed -ie s/^.*gtype-id\ \"$enum\".*$//g gnt.def
done