Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto
Dir : e17/proto/etk/src/lib Modified Files: Etk.h Makefile.am etk_dialog.h etk_stock.c etk_stock.h etk_types.h Log Message: - finish Etk_Dialog - add Etk_Message_Dialog =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/Etk.h,v retrieving revision 1.26 retrieving revision 1.27 diff -u -3 -r1.26 -r1.27 --- Etk.h 5 Mar 2006 23:52:58 -0000 1.26 +++ Etk.h 13 Mar 2006 00:41:38 -0000 1.27 @@ -69,5 +69,6 @@ #include "etk_drag.h" #include "etk_argument.h" #include "etk_tooltips.h" +#include "etk_message_dialog.h" #endif =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/Makefile.am,v retrieving revision 1.31 retrieving revision 1.32 diff -u -3 -r1.31 -r1.32 --- Makefile.am 12 Mar 2006 12:13:02 -0000 1.31 +++ Makefile.am 13 Mar 2006 00:41:38 -0000 1.32 @@ -51,7 +51,8 @@ etk_selection.h \ etk_drag.h \ etk_argument.h \ -etk_tooltips.h +etk_tooltips.h \ +etk_message_dialog.h libetk_la_SOURCES = \ etk_main.c etk_utils.c \ @@ -90,6 +91,7 @@ etk_drag.c \ etk_argument.c \ etk_tooltips.c \ +etk_message_dialog.c \ $(ETKHEADERS) installed_headersdir = $(prefix)/include/etk =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/etk_dialog.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- etk_dialog.h 12 Mar 2006 13:31:40 -0000 1.3 +++ etk_dialog.h 13 Mar 2006 00:41:38 -0000 1.4 @@ -37,7 +37,7 @@ }; /** - * @enum Etk_Dialog + * @struct Etk_Dialog * @brief A dialog is a window with buttons in its bottom area to allow the user to respond to a request. @n * A horizontal separator can also separate the button area from the upper area. It's enabled by default */ =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/etk_stock.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- etk_stock.c 12 Mar 2006 13:31:40 -0000 1.11 +++ etk_stock.c 13 Mar 2006 00:41:38 -0000 1.12 @@ -25,6 +25,9 @@ { "actions/contact-new_16", "actions/contact-new_22", "actions/contact-new_48", "" }, { "actions/dialog-ok_16", "actions/dialog-ok_22", "actions/dialog-ok_48", "Ok" }, { "actions/dialog-cancel_16", "actions/dialog-cancel_22", "actions/dialog-cancel_48", "Cancel" }, + { "actions/dialog-yes_16", "actions/dialog-yes_22", "actions/dialog-yes_48", "Yes" }, + { "actions/dialog-no_16", "actions/dialog-no_22", "actions/dialog-no_48", "No" }, + { "actions/dialog-close_16", "actions/dialog-close_22", "actions/dialog-close_48", "Close" }, { "actions/document-new_16", "actions/document-new_22", "actions/document-new_48", "New" }, { "actions/document-open_16", "actions/document-open_22", "actions/document-open_48", "Open" }, { "actions/document-print_16", "actions/document-print_22", "actions/document-print_48", "Print" }, @@ -213,6 +216,7 @@ { "status/dialog-error_16", "status/dialog-error_22", "status/dialog-error_48", "" }, { "status/dialog-information_16", "status/dialog-information_22", "status/dialog-information_48", "" }, { "status/dialog-warning_16", "status/dialog-warning_22", "status/dialog-warning_48", "" }, + { "status/dialog-question_16", "status/dialog-question_22", "status/dialog-question_48", "" }, { "status/folder-drag-accept_16", "status/folder-drag-accept_22", "status/folder-drag-accept_48", "" }, { "status/folder-open_16", "status/folder-open_22", "status/folder-open_48", "" }, { "status/folder-visiting_16", "status/folder-visiting_22", "status/folder-visiting_48", "" }, =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/etk_stock.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- etk_stock.h 12 Mar 2006 13:31:40 -0000 1.10 +++ etk_stock.h 13 Mar 2006 00:41:38 -0000 1.11 @@ -26,6 +26,9 @@ ETK_STOCK_CONTACT_NEW, ETK_STOCK_DIALOG_OK, ETK_STOCK_DIALOG_CANCEL, + ETK_STOCK_DIALOG_YES, + ETK_STOCK_DIALOG_NO, + ETK_STOCK_DIALOG_CLOSE, ETK_STOCK_DOCUMENT_NEW, ETK_STOCK_DOCUMENT_OPEN, ETK_STOCK_DOCUMENT_PRINT, @@ -214,6 +217,7 @@ ETK_STOCK_DIALOG_ERROR, ETK_STOCK_DIALOG_INFORMATION, ETK_STOCK_DIALOG_WARNING, + ETK_STOCK_DIALOG_QUESTION, ETK_STOCK_FOLDER_DRAG_ACCEPT, ETK_STOCK_FOLDER_OPEN, ETK_STOCK_FOLDER_VISITING, =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/etk_types.h,v retrieving revision 1.34 retrieving revision 1.35 diff -u -3 -r1.34 -r1.35 --- etk_types.h 12 Mar 2006 12:13:02 -0000 1.34 +++ etk_types.h 13 Mar 2006 00:41:38 -0000 1.35 @@ -121,6 +121,8 @@ typedef enum _Etk_Argument_Returns Etk_Argument_Returns; typedef enum _Etk_Argument_Flags Etk_Argument_Flags; typedef struct _Etk_Argument Etk_Argument; +typedef struct _Etk_Message_Dialog Etk_Message_Dialog; + /** * @enum Etk_Fill_Policy_Flags * @brief Describes how a child should fill the space allocated by its parent container ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs