Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto
Dir : e17/proto/etk-perl Modified Files: Etk.xs const-c.inc Log Message: - dialog code from swishy - warnings-- =================================================================== RCS file: /cvs/e/e17/proto/etk-perl/Etk.xs,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- Etk.xs 28 Jun 2006 00:19:47 -0000 1.21 +++ Etk.xs 1 Jul 2006 18:57:20 -0000 1.22 @@ -1273,31 +1273,40 @@ Etk_Widget * etk_dialog_button_add(dialog, label, response_id) - Etk_Dialog * dialog + Etk_Widget * dialog char * label int response_id + CODE: + etk_dialog_button_add(ETK_DIALOG(dialog), label, response_id); Etk_Widget * etk_dialog_button_add_from_stock(dialog, stock_id, response_id) - Etk_Dialog * dialog + Etk_Widget * dialog int stock_id int response_id - + CODE: + etk_dialog_button_add_from_stock(ETK_DIALOG(dialog), stock_id, response_id); + Etk_Bool etk_dialog_has_separator_get(dialog) - Etk_Dialog * dialog + Etk_Widget * dialog + CODE: + etk_dialog_has_separator_get(ETK_DIALOG(dialog)); void etk_dialog_has_separator_set(dialog, has_separator) - Etk_Dialog * dialog + Etk_Widget * dialog Etk_Bool has_separator + CODE: + etk_dialog_has_separator_set(ETK_DIALOG(dialog), has_separator); + Etk_Widget * etk_dialog_new() void etk_dialog_pack_button_in_action_area(dialog, button, response_id, expand, fill, padding, pack_at_end) - Etk_Dialog * dialog + Etk_Widget * dialog Etk_Widget * button int response_id Etk_Bool expand @@ -1305,25 +1314,29 @@ int padding Etk_Bool pack_at_end CODE: - etk_dialog_pack_button_in_action_area(dialog, ETK_BUTTON(button), response_id, expand, fill, padding, pack_at_end); + etk_dialog_pack_button_in_action_area(ETK_DIALOG(dialog), ETK_BUTTON(button), response_id, expand, fill, padding, pack_at_end); void etk_dialog_pack_in_main_area(dialog, widget, expand, fill, padding, pack_at_end) - Etk_Dialog * dialog + Etk_Widget * dialog Etk_Widget * widget Etk_Bool expand Etk_Bool fill int padding Etk_Bool pack_at_end + CODE: + etk_dialog_pack_in_main_area(ETK_DIALOG(dialog), widget, expand, fill, padding, pack_at_end); void etk_dialog_pack_widget_in_action_area(dialog, widget, expand, fill, padding, pack_at_end) - Etk_Dialog * dialog + Etk_Widget * dialog Etk_Widget * widget Etk_Bool expand Etk_Bool fill int padding Etk_Bool pack_at_end + CODE: + etk_dialog_pack_widget_in_action_area(ETK_DIALOG(dialog), widget, expand, fill, padding, pack_at_end); Etk_Type * etk_dialog_type_get() =================================================================== RCS file: /cvs/e/e17/proto/etk-perl/const-c.inc,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- const-c.inc 18 Jun 2006 15:29:50 -0000 1.12 +++ const-c.inc 1 Jul 2006 18:57:20 -0000 1.13 @@ -33,7 +33,7 @@ Regenerate these constant functions by feeding this entire source file to perl -x -#!/usr/bin/perl -w +#!perl -w use ExtUtils::Constant qw (constant_types C_constant XS_constant); my $types = {map {($_, 1)} qw()}; Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs