Author: hisham
Date: 2005-06-14 09:16:33 -0400 (Tue, 14 Jun 2005)
New Revision: 45964

Modified:
   trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am
   trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_button.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_dialog.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_label.cs
   trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_line.cs
Log:
fixes, shadow removed until i add image

Modified: trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs
===================================================================
--- trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs     2005-06-14 
13:03:52 UTC (rev 45963)
+++ trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs     2005-06-14 
13:16:33 UTC (rev 45964)
@@ -46,7 +46,7 @@
    public override void Show()
      {
        i.Show();
-       shadow.Show();
+       //shadow.Show(); add image then uncomment
      }
    
    public override void Hide()
@@ -198,7 +198,7 @@
        EE.Show();              
        
        Edje win_bg = new Edje(EE.Get());
-       win_bg.FileSet("themes/e17/e17.edj","window");
+       
win_bg.FileSet("/usr/share/efl-sharp/data/eblocks/themes/e17.edj","window");
        win_bg.Resize(640, 480);
        win_bg.Move(0, 0);
        win_bg.Lower();

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am  2005-06-14 13:03:52 UTC 
(rev 45963)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/Makefile.am  2005-06-14 13:16:33 UTC 
(rev 45964)
@@ -7,6 +7,7 @@
 
 FILES = \
 AssemblyInfo.cs \
+../bin/data.cs \
 common/e_common.cs \
 ecore/ecore_animator.cs \
 ecore/ecore_app.cs \

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_button.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_button.cs    
2005-06-14 13:03:52 UTC (rev 45963)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_button.cs    
2005-06-14 13:16:33 UTC (rev 45964)
@@ -20,12 +20,13 @@
        
       public Button(Enlightenment.Evas.Canvas c) : base(c)
          {
-            bg.FileSet(DataConfig.DATADIR + "/themes/e17/e17.edj","button");
+            bg.FileSet(DataConfig.DATADIR + 
"/data/eblocks/themes/e17.edj","button");
          }
        
       public Button(Enlightenment.Evas.Canvas c, string txt) : base(c, txt)
-         {     
-            bg.FileSet(DataConfig.DATADIR + "/themes/e17/e17.edj","button");
+         {
+            System.Console.WriteLine(DataConfig.DATADIR + 
"/data/eblocks/themes/e17.edj");
+            bg.FileSet(DataConfig.DATADIR + 
"/data/eblocks/themes/e17.edj","button");
             bg.Clip = clip;
             bg.RepeatEvents = true;    
             bg.StackBelow(text);

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_dialog.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_dialog.cs    
2005-06-14 13:03:52 UTC (rev 45963)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_dialog.cs    
2005-06-14 13:16:33 UTC (rev 45964)
@@ -45,7 +45,7 @@
             explanation.FontSize = 11;
             
             win_bg = new Edje(canvas);
-            win_bg.FileSet(DataConfig.DATADIR + 
"/themes/e17/e17.edj","window");
+            win_bg.FileSet(DataConfig.DATADIR + 
"/data//eblocks/themes/e17.edj","window");
             win_bg.Resize(300, 100);
             win_bg.Move(0, 0);
             win_bg.Lower();

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_label.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_label.cs     
2005-06-14 13:03:52 UTC (rev 45963)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_label.cs     
2005-06-14 13:16:33 UTC (rev 45964)
@@ -37,7 +37,7 @@
        public Label(Enlightenment.Evas.Canvas c)
          {
             canvas = c; // canvas is inherited
-            canvas.FontPathAppend(DataConfig.DATADIR +"/themes/e17/fonts"); // 
Make this follow theme
+            canvas.FontPathAppend(DataConfig.DATADIR +"/data/fonts"); // Make 
this follow theme
             
             internal_item = new Enlightenment.Evas.Rectangle(canvas);
             internal_item.RepeatEvents = true;
@@ -58,7 +58,7 @@
        public Label(Enlightenment.Evas.Canvas c, string txt)
          {
             canvas = c; // canvas is inherited
-            canvas.FontPathAppend(DataConfig.DATADIR + "/themes/e17/fonts"); 
// Make this follow theme
+            canvas.FontPathAppend(DataConfig.DATADIR + "/data/fonts"); // Make 
this follow theme
             
             internal_item = new Enlightenment.Evas.Rectangle(canvas);
             internal_item.Color = new Enlightenment.Evas.Color(0, 0, 0, 0);

Modified: trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_line.cs
===================================================================
--- trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_line.cs      
2005-06-14 13:03:52 UTC (rev 45963)
+++ trunk/efl-sharp/libs/efl-sharp/src/lib/eblocks/eblocks_line.cs      
2005-06-14 13:16:33 UTC (rev 45964)
@@ -43,7 +43,7 @@
             clip.Color = new Enlightenment.Evas.Color(255, 255, 255, 255);
             
             bg = new Edje(c);
-            bg.FileSet(DataConfig.DATADIR + "/themes/e17/e17.edj","hline");    
+            bg.FileSet(DataConfig.DATADIR + 
"/data/eblocks/themes/e17.edj","hline");   
             bg.StackBelow(internal_item);
             bg.RepeatEvents = true;
             bg.Clip = clip;    

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

Reply via email to