annotate inkscape/firefox/template/textmenu/app.h @ 435:2bdd4f5dd2ca

Make sh_text and sh_stext optional. Since sh_text depends on pango, and we want a version of MadButterfly without Pango (lite version), we make sh_text and sh_stext optional. User can choice which one to enable.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 29 Jul 2009 20:22:36 +0800
parents 3d21115297ba
children 9b8dda201ccb
rev   line source
371
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
1 #ifndef _APP_H
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
2 #define _APP_H
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
3 typedef struct {
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
4 mb_animated_menu_t *m;
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
5 }MyAppData;
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
6
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
7 extern void MyApp_InitContent(MBApp *app,int argc, char *argv[]);
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
8
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
9 void myselect_callback(mb_animated_menu_t *m, int select);
3d21115297ba Add textmenu template
wycc
parents:
diff changeset
10 #endif