summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/eu.po
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-04-06 01:04:51 +0000
committerThierry Vignaud <tv@mageia.org>2013-04-06 01:04:51 +0000
commit57e331ce9a2acc97509b1f438711a18461bbdcb7 (patch)
tree4c2aa1e57ff7c2222bb9815942615669f021a40a /perl-install/share/po/eu.po
parenta6ff7c5d5c9a4a8cf6fccd5fa6c5bc369755f34b (diff)
downloaddrakx-57e331ce9a2acc97509b1f438711a18461bbdcb7.tar
drakx-57e331ce9a2acc97509b1f438711a18461bbdcb7.tar.gz
drakx-57e331ce9a2acc97509b1f438711a18461bbdcb7.tar.bz2
drakx-57e331ce9a2acc97509b1f438711a18461bbdcb7.tar.xz
drakx-57e331ce9a2acc97509b1f438711a18461bbdcb7.zip
drop our "use modprobe instead" insmod since we've kmod one for free
Diffstat (limited to 'perl-install/share/po/eu.po')
0 files changed, 0 insertions, 0 deletions
span class="hl kwb">void newtGetrc(int * row, int * col); void newtGetWindowPos(int * x, int * y); void newtDrawBox(int left, int top, int width, int height, int shadow); void newtClearBox(int left, int top, int width, int height); int newtGetKey(void); struct newtComponent_struct { /* common data */ int height, width; int top, left; int takesFocus; int isMapped; struct componentOps * ops; newtCallback callback; void * callbackData; void * data; } ; enum eventResultTypes { ER_IGNORED, ER_SWALLOWED, ER_EXITFORM, ER_SETFOCUS, ER_NEXTCOMP }; struct eventResult { enum eventResultTypes result; union { newtComponent focus; } u; }; enum eventTypes { EV_FOCUS, EV_UNFOCUS, EV_KEYPRESS, EV_MOUSE }; enum eventSequence { EV_EARLY, EV_NORMAL, EV_LATE }; struct event { enum eventTypes event; enum eventSequence when; union { int key; struct { enum { MOUSE_MOTION, MOUSE_BUTTON_DOWN, MOUSE_BUTTON_UP } type; int x, y; } mouse; } u; } ; struct componentOps { void (* draw)(newtComponent c); struct eventResult (* event)(newtComponent c, struct event ev); void (* destroy)(newtComponent c); void (* place)(newtComponent c, int newLeft, int newTop); void (* mapped)(newtComponent c, int isMapped); } ; void newtDefaultPlaceHandler(newtComponent c, int newLeft, int newTop); void newtDefaultMappedHandler(newtComponent c, int isMapped); struct eventResult newtDefaultEventHandler(newtComponent c, struct event ev); #endif /* H_NEWT_PR */