Author: hisham
Date: 2005-06-14 15:39:29 -0400 (Tue, 14 Jun 2005)
New Revision: 45989

Modified:
   trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am
   trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_button.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_checkbutton.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_enums.cs
Log:
fix fix fix (=

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am  2005-06-14 19:21:45 UTC 
(rev 45988)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am  2005-06-14 19:39:29 UTC 
(rev 45989)
@@ -39,6 +39,8 @@
 ewl/ewl_event.cs \
 ewl/ewl_object.cs \
 ewl/ewl_overlay.cs \
+/ewl/ewl_checkbutton.cs \
+/ewl/ewl_button.cs \
 ewl/ewl_text.cs \
 ewl/ewl_widget.cs \
 ewl/ewl_window.cs \

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_button.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_button.cs    2005-06-14 
19:21:45 UTC (rev 45988)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_button.cs    2005-06-14 
19:39:29 UTC (rev 45989)
@@ -36,14 +36,14 @@
            
            public event EwlEventHandler ClickedEvent
                {            
-               add { events[EventType.Clicked] = new EventData(this, value, 
EventType.Clicked); }           
-                       remove { events[EventType.Clicked] = null; }
+                  add { events[EventType.CLICKED] = new EventData(this, value, 
EventType.CLICKED); }
+                       remove { events[EventType.CLICKED] = null; }
                }
            
            public string Label
            {
                get{ return ewl_button_label_get(Raw);}
-               set{ ewl_button_label_get(Raw, value);}
+               set{ ewl_button_label_set(Raw, value);}
            }       
        }
-}
\ No newline at end of file
+}

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_checkbutton.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_checkbutton.cs       
2005-06-14 19:21:45 UTC (rev 45988)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_checkbutton.cs       
2005-06-14 19:39:29 UTC (rev 45989)
@@ -36,7 +36,7 @@
        
                public CheckButton(string label) 
                {       
-                   objRaw = new HandleRef(this, ewl_checkbutton_new(labeñ));  
     
+                   objRaw = new HandleRef(this, ewl_checkbutton_new(label));
                }                               
     }  
 }

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_enums.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_enums.cs     2005-06-14 
19:21:45 UTC (rev 45988)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/ewl/ewl_enums.cs     2005-06-14 
19:39:29 UTC (rev 45989)
@@ -6,45 +6,45 @@
 
 namespace Enlightenment.Ewl {
 
-       using System;
+   using System;
+   
+   /*  TODO: Fill this  */
+   public class AlignFlags
+     {
+       const int LEFT = 1;
+     }
        
-       /*  TODO: Fill this  */
-       public class AlignFlags
-       {
-               const int LEFT = 1;
-       }
-       
        public class EventType
        {
-               const int EXPOSE = 0;
-               const int REALIZE = 1;
-               const int UNREALIZE = 2;
-               const int SHOW = 3;
-               const int HIDE = 4;
-               const int DESTROY = 5;
-               const int DELETE_WINDOW = 6;
-               const int CONFIGURE = 7;
-               const int REPARENT = 8;
-               const int KEY_DOWN = 9;
-               const int KEY_UP = 10;
-               const int MOUSE_DOWN = 11;
-               const int MOUSE_UP = 12;
-               const int MOUSE_MOVE = 13;
-               const int MOUSE_WHEEL = 14;
-               const int FOCUS_IN = 15;
-               const int FOCUS_OUT = 16;
-               const int SELECT = 17;
-               const int DESELECT = 18;
-               const int CLICKED = 19;
-               const int DOUBLE_CLICKED = 20;
-               const int HILITED = 21;
-               const int VALUE_CHANGED = 22;
-               const int STATE_CHANGED = 23;
-               const int APPEARANCE_CHANGED = 24;
-               const int WIDGET_ENABLE = 25;
-               const int WIDGET_DISABLE = 26;
-               const int PASTE = 27;
-               const int MAX = 28;
+               public const int EXPOSE = 0;
+               public const int REALIZE = 1;
+               public const int UNREALIZE = 2;
+               public const int SHOW = 3;
+               public const int HIDE = 4;
+               public const int DESTROY = 5;
+               public const int DELETE_WINDOW = 6;
+               public const int CONFIGURE = 7;
+               public const int REPARENT = 8;
+               public const int KEY_DOWN = 9;
+               public const int KEY_UP = 10;
+               public const int MOUSE_DOWN = 11;
+               public const int MOUSE_UP = 12;
+               public const int MOUSE_MOVE = 13;
+               public const int MOUSE_WHEEL = 14;
+               public const int FOCUS_IN = 15;
+               public const int FOCUS_OUT = 16;
+               public const int SELECT = 17;
+               public const int DESELECT = 18;
+               public const int CLICKED = 19;
+               public const int DOUBLE_CLICKED = 20;
+               public const int HILITED = 21;
+               public const int VALUE_CHANGED = 22;
+               public const int STATE_CHANGED = 23;
+               public const int APPEARANCE_CHANGED = 24;
+               public const int WIDGET_ENABLE = 25;
+               public const int WIDGET_DISABLE = 26;
+               public const int PASTE = 27;
+               public const int MAX = 28;
        };
        
 }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to