Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r2086 -
      trunk/src/target/OM-2007/applications/openmoko-dialer/src
      ([EMAIL PROTECTED])
   2. r2087 -
      trunk/src/target/OM-2007/applications/openmoko-dialer/src
      ([EMAIL PROTECTED])
   3. r2088 -
      trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: thomas
Date: 2007-05-25 14:25:12 +0200 (Fri, 25 May 2007)
New Revision: 2086

Modified:
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
Log:
openmoko-dialer: use correct gsm event for when an outgoing call is rejected


Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
  2007-05-24 23:41:11 UTC (rev 2085)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-outgoing.c
  2007-05-25 12:25:12 UTC (rev 2086)
@@ -128,9 +128,8 @@
 call_progress_cb (MokoGsmdConnection *connection, int type, MokoDialerData 
*data)
 {
   g_debug ("Outgoing Call Progress: %d", type);
-  if (type == MOKO_GSMD_PROG_REJECT)
+  if (type == MOKO_GSMD_PROG_DISCONNECT)
   {
-    g_debug ("call rejected");
     gtk_dialog_response (GTK_DIALOG (data->window_outgoing), 
GTK_RESPONSE_CANCEL);
     return;
   }




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-25 16:10:54 +0200 (Fri, 25 May 2007)
New Revision: 2087

Modified:
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-callbacks-connection.c
   trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c
   
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-incoming.c
Log:
openmoko-dialer:
  * Remove threads init from dialer-main.c
  * Update journal entry on incoming CLIP
  * Commit journal after incoming call


Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-callbacks-connection.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-callbacks-connection.c
     2007-05-25 12:25:12 UTC (rev 2086)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-callbacks-connection.c
     2007-05-25 14:10:54 UTC (rev 2087)
@@ -35,13 +35,6 @@
 }
 
 void
-incoming_clip_cb (MokoGsmdConnection *self, const char *number, MokoDialerData 
*data)
-{
-  /* caller id */
-  window_incoming_update_message (data, number);
-}
-
-void
 incoming_pin_request_cb (MokoGsmdConnection *self, int type, MokoDialerData 
*data)
 {
     g_debug( "incoming pin request for type %d", type );

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c     
2007-05-25 12:25:12 UTC (rev 2086)
+++ trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c     
2007-05-25 14:10:54 UTC (rev 2087)
@@ -173,8 +173,6 @@
   setlock ("/tmp/dialer.lock");
 
   /* Initialize Threading & GTK+ */
-  g_thread_init (NULL);
-  gdk_threads_init ();
   gtk_init (&argc, &argv);
   moko_stock_register ();
 
@@ -196,11 +194,11 @@
 
   g_signal_connect (G_OBJECT (conn), "network-registration", (GCallback) 
network_registration_cb, p_dialer_data);
   g_signal_connect (G_OBJECT (conn), "incoming-call", (GCallback) 
incoming_call_cb, p_dialer_data);
-  g_signal_connect (G_OBJECT (conn), "incoming-clip", (GCallback) 
incoming_clip_cb, p_dialer_data);
   g_signal_connect (G_OBJECT (conn), "pin-requested", (GCallback) 
incoming_pin_request_cb, p_dialer_data);
 
   /* Set up journal handling */
   p_dialer_data->journal = moko_journal_open_default ();
+  moko_journal_load_from_storage (p_dialer_data->journal);
 
   signal (SIGUSR1, handle_sigusr1);
 
@@ -216,10 +214,8 @@
     handle_sigusr1 (SIGUSR1);
   }
   
-  gdk_threads_enter ();
   gtk_main ();
-  gdk_threads_leave ();
-
+  
   //release everything
   contact_release_contact_list (&(p_dialer_data->g_contactlist));
 

Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-incoming.c
===================================================================
--- 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-incoming.c
  2007-05-25 12:25:12 UTC (rev 2086)
+++ 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-incoming.c
  2007-05-25 14:10:54 UTC (rev 2087)
@@ -27,39 +27,12 @@
 #include "dialer-window-talking.h"
 #include "dialer-window-history.h"
 
-void
-window_incoming_prepare (MokoDialerData * appdata) 
-{
-  if (!appdata)
-    
-  {
-    DBG_WARN ("appdata=NULL!");
-    return;
-  }
-  if (appdata->window_incoming == 0)
-    
-  {
-    window_incoming_init (appdata);
-  }
-  moko_dialer_status_set_person_number (appdata->status_incoming,
-                                          appdata->g_peer_info.number);
-  if (appdata->g_peer_info.hasname)
-    
-  {
-    moko_dialer_status_set_person_image (appdata->status_incoming,
-                                           appdata->g_peer_info.ID);
-    moko_dialer_status_set_person_name (appdata->status_incoming,
-                                         appdata->g_peer_info.name);
-  }
-  
-  else
-    
-  {
-    moko_dialer_status_set_person_image (appdata->status_incoming, "");
-    moko_dialer_status_set_person_name (appdata->status_incoming, "");
-  }
-}
+struct clip_callback_data {
+  MokoDialerData *data;
+  MokoJournalVoiceInfo *voice_info;
+};
 
+static void incoming_clip_cb (MokoGsmdConnection *self, char *number, struct 
clip_callback_data *clip_data);
 
 void
 window_incoming_init (MokoDialerData * data) 
@@ -96,7 +69,8 @@
 {
   MokoJournalEntry *entry = NULL;
   MokoJournalVoiceInfo *info = NULL;
-  gulong progress_handler;
+  gulong progress_handler, clip_handler;
+  struct clip_callback_data clip_data;
 
   if (!data->window_incoming)
   {
@@ -111,8 +85,12 @@
   moko_journal_add_entry (data->journal, entry);
 
   /* connect our handler to track call progress */
-  progress_handler = g_signal_connect (data->connection, "call-progress", 
+  progress_handler = g_signal_connect (data->connection, "call-progress",
                     G_CALLBACK (call_progress_cb), data);
+  clip_data.voice_info = info;
+  clip_data.data = data;
+  clip_handler = g_signal_connect (data->connection, "incoming-clip",
+                    G_CALLBACK (incoming_clip_cb), &clip_data);
 
 
   if (gtk_dialog_run (GTK_DIALOG (data->window_incoming)) == GTK_RESPONSE_OK)
@@ -135,15 +113,20 @@
 
   gtk_widget_hide (data->window_incoming);
 
-  /* disconnect the call progress handler since we no longer need it */
+  /* disconnect the call progress and clip handlers since we no longer need 
them */
   g_signal_handler_disconnect (data->connection, progress_handler);
+  g_signal_handler_disconnect (data->connection, clip_handler);
+
+  /* commit the journal entry */
+  moko_journal_write_to_storage (data->journal);
 }
 
-void
-window_incoming_update_message (MokoDialerData *data, const gchar *clip)
+static void
+incoming_clip_cb (MokoGsmdConnection *self, char *number, struct 
clip_callback_data *clip_data)
 {
-  g_debug ("Incoming Call CLIP: %s", clip);
-  moko_message_dialog_set_message (MOKO_MESSAGE_DIALOG (data->window_incoming),
-                                   "Incoming call from %s", clip);
-  // moko_journal_voice_info_set_distant_number ();
+  moko_message_dialog_set_message (MOKO_MESSAGE_DIALOG 
(clip_data->data->window_incoming),
+                                   "Incoming call from %s", number);
+
+  moko_journal_voice_info_set_distant_number (clip_data->voice_info, number);
 }
+




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-25 18:34:49 +0200 (Fri, 25 May 2007)
New Revision: 2088

Modified:
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkbutton
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkcheckbutton
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkentry
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenu
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenuitem
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkpaned
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkradiobutton
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscale
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscrollbar
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkspinbutton
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtktreeview
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/matchboxpanel
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodetailswindow
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodialogwindow
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingerbutton
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingertoolbox
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokomenubox
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokonavigationlist
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokoscrolledpane
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokostylusbutton
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotoolbox
   
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotreeview
   trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/transparent
Log:
theme:
  * Remove unimplemented recolourable option
  * Remove gtkwidget.png from being loaded in every GtkRcStyle


Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane  
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane  
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -55,7 +55,6 @@
                         function        = SHADOW
                         shadow          = IN
                         file            = "fieldentry.png"
-                        recolorable     = TRUE
                         border          = { 17, 17, 15, 15 }
                 }
         }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkbutton
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkbutton 
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkbutton 
2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "gtkbutton.png"
 #            border          = { 22, 33, 18, 25 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "gtkbutton.png"
 #            border          = { 22, 33, 18, 25 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "gtkbutton_p.png"
 #            border          = { 22, 33, 18, 25 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkcheckbutton
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkcheckbutton
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkcheckbutton
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -3,7 +3,6 @@
         image {
             function        = CHECK
             state           = NORMAL
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "checkbutton_off.png"
             overlay_stretch = TRUE
@@ -11,7 +10,6 @@
         image {
             function        = CHECK
             state           = PRELIGHT
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "checkbutton_off.png"
             overlay_stretch = TRUE
@@ -19,7 +17,6 @@
         image {
             function        = CHECK
             state           = ACTIVE
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "checkbutton_off.png"
             overlay_stretch = TRUE
@@ -27,7 +24,6 @@
         image {
             function        = CHECK
             state           = INSENSITIVE
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "checkbutton_off_disable.png"
             overlay_stretch = TRUE
@@ -35,7 +31,6 @@
         image {
             function        = CHECK
             state           = NORMAL
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "checkbutton_on.png"
             overlay_stretch = TRUE
@@ -43,7 +38,6 @@
         image {
             function        = CHECK
             state           = PRELIGHT
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "checkbutton_on.png"
             overlay_stretch = TRUE
@@ -51,7 +45,6 @@
         image {
             function        = CHECK
             state           = ACTIVE
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "checkbutton_on.png"
             overlay_stretch = TRUE
@@ -59,7 +52,6 @@
         image {
             function        = CHECK
             state           = INSENSITIVE
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "checkbutton_on_disable.png"
             overlay_stretch = TRUE
@@ -69,7 +61,6 @@
 #
         image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             file            = "transparency100.png"
             border          = { 10,5,5,10 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkentry
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkentry  
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkentry  
2007-05-25 16:34:49 UTC (rev 2088)
@@ -6,7 +6,6 @@
             function        = SHADOW
             shadow          = IN
             file            = "gtkentry.png"
-            recolorable     = TRUE
             border          = { 17, 17, 15, 15 }
               }
         }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenu
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenu   
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenu   
2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             file            = "gtkmenu.png"
             border          = { 2, 2, 2, 10 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenuitem
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenuitem   
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkmenuitem   
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "transparency100.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "gtkmenuitem-selected.png"
             border          = { 11, 11, 11, 11 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkpaned
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkpaned  
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkpaned  
2007-05-25 16:34:49 UTC (rev 2088)
@@ -5,7 +5,6 @@
 #
         image {
             function        = HANDLE
-            recolorable     = TRUE
             state           = NORMAL
             file            = "gtkhpaned.png"
             border          = { 0, 0, 0, 0 }
@@ -19,7 +18,6 @@
         image {
             function        = HANDLE
             state           = PRELIGHT
-            recolorable     = TRUE
             file            = "gtkhpaned-pressed.png"
             border          = { 0, 0, 0, 0 }
             stretch         = TRUE
@@ -31,7 +29,6 @@
 
         image {
             function        = HANDLE
-            recolorable     = TRUE
             state           = NORMAL
             file            = "gtkvpaned.png"
             border          = { 0, 0, 0, 0 }
@@ -45,7 +42,6 @@
         image {
             function        = HANDLE
             state           = PRELIGHT
-            recolorable     = TRUE
             file            = "gtkvpaned-pressed.png"
             border          = { 0, 0, 0, 0 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkradiobutton
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkradiobutton
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkradiobutton
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -3,7 +3,6 @@
         image {
             function        = OPTION
             state           = NORMAL
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "radiobutton_off.png"
             overlay_stretch = TRUE
@@ -11,7 +10,6 @@
         image {
             function        = OPTION
             state           = PRELIGHT
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "radiobutton_off.png"
             overlay_stretch = TRUE
@@ -19,7 +17,6 @@
         image {
             function        = OPTION
             state           = ACTIVE
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "radiobutton_off.png"
             overlay_stretch = TRUE
@@ -27,7 +24,6 @@
         image {
             function        = OPTION
             state           = INSENSITIVE
-            recolorable     = TRUE
             shadow          = OUT
             overlay_file    = "radiobutton_off_disable.png"
             overlay_stretch = TRUE
@@ -35,7 +31,6 @@
         image {
             function        = OPTION
             state           = NORMAL
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "radiobutton_on.png"
             overlay_stretch = TRUE
@@ -43,7 +38,6 @@
         image {
             function        = OPTION
             state           = PRELIGHT
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "radiobutton_on.png"
             overlay_stretch = TRUE
@@ -51,7 +45,6 @@
         image {
             function        = OPTION
             state           = ACTIVE
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "radiobutton_on.png"
             overlay_stretch = TRUE
@@ -59,7 +52,6 @@
         image {
             function        = OPTION
             state           = INSENSITIVE
-            recolorable     = TRUE
             shadow          = IN
             overlay_file    = "radiobutton_on_disable.png"
             overlay_stretch = TRUE
@@ -69,7 +61,6 @@
 #
         image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             file            = "transparency100.png"
             border          = { 10,5,5,10 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc     
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc     
2007-05-25 16:34:49 UTC (rev 2088)
@@ -1,8 +1,9 @@
 style "moko-window-default" {
-    # FIXME do we want a general background brush? Or just a color?
-       # NOTE bg_pixmap[NORMAL] _must_ match with the SHADOW pixmaps
-    bg_pixmap[NORMAL] = "gtkwidget.png"
 
+    # We do not want a general background brush because it is loaded for every
+    # GtkRcStyle created
+    # bg_pixmap[NORMAL] = "gtkwidget.png"
+
     bg[NORMAL]        = "#666666" #
     bg[PRELIGHT]      = "#ff0000" # light beige
     bg[ACTIVE]        = "#ff0000" # dark beige
@@ -34,7 +35,6 @@
     engine "pixmap" {
         image {
             function        = SHADOW
-            recolorable     = TRUE
             shadow          = IN
             file            = "openmoko-shadow-in.png"
             border          = { 6, 6, 6, 6 }
@@ -42,7 +42,6 @@
         }
         image {
             function        = SHADOW
-            recolorable     = TRUE
             shadow          = OUT
             file            = "openmoko-shadow-in.png" # FIXME add proper 
shadow
             border          = { 6, 6, 6, 6 }
@@ -50,7 +49,6 @@
         }
         image {
             function        = SHADOW
-            recolorable     = TRUE
             shadow          = ETCHED_IN
             file            = "openmoko-shadow-in.png" # FIXME add proper 
shadow
             border          = { 6, 6, 6, 6 }
@@ -58,7 +56,6 @@
         }
         image {
             function        = SHADOW
-            recolorable     = TRUE
             shadow          = ETCHED_OUT
             file            = "openmoko-shadow-in.png" # FIXME add proper 
shadow
             border          = { 6, 6, 6, 6 }
@@ -82,14 +79,7 @@
 }
 
 class "GtkWidget" style "moko-window-default"
-class "GtkLabel" style "moko-window-default"
 
-#FIXME that doesn't look correct, but is there a better way to get
-#a) Frames and Labels inherit the default color
-#b) items on menubar _not_ the default color
-widget_class "*.GtkLabel*" style "moko-window-default"
-#FIXME e.g. how to say widget "*" style "moko-window-default", but change 
menuitem color afterwards. that doesn't seem to work!?
-
 include "transparent"
 include "matchboxpanel"
 

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscale
===================================================================
--- trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscale  
2007-05-25 14:10:54 UTC (rev 2087)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscale  
2007-05-25 16:34:49 UTC (rev 2088)
@@ -11,7 +11,6 @@
         }
         image {
             function                  = SLIDER
-                 recolorable               = FALSE
             file                      = "gtkprogressbar-bar.png"
             stretch                   = TRUE
             orientation               = HORIZONTAL

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscrollbar
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscrollbar  
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkscrollbar  
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -22,7 +22,6 @@
 #
     image {
         function        = BOX
-        recolorable     = TRUE
         detail          = "slider"
         file            = "openmoko-scrollbar-horizontal.png"
         border          = { 13, 12, 2, 2 }
@@ -31,7 +30,6 @@
     }
     image {
         function        = BOX
-        recolorable     = TRUE
         detail          = "slider"
         state           = NORMAL
         file            = "openmoko-scrollbar-vertical.png"
@@ -41,7 +39,6 @@
     }
     image {
         function        = BOX
-        recolorable     = TRUE
         detail          = "slider"
         state           = PRELIGHT
         file            = "openmoko-scrollbar-vertical-pressed.png"
@@ -54,7 +51,6 @@
 #
     image {
         function        = BOX
-        recolorable     = TRUE
         detail          = "trough"
         file            = "vtrough.png"
         border          = { 3, 3, 23, 23 }
@@ -63,7 +59,6 @@
     }
     image {
         function        = BOX
-        recolorable     = TRUE
         detail          = "trough"
         file            = "htrough.png"
         border          = { 23, 23, 3, 3 }
@@ -151,14 +146,12 @@
 #
 #    image {
 #        function        = BOX
-#        recolorable     = TRUE
 #        file            = "arrow-background.png"
 #        border          = { 0, 0, 0, 0 }
 #        stretch         = TRUE
 #    }
     image {
         function        = ARROW
-        recolorable     = TRUE
         overlay_file    = "arrow-up.png"
         overlay_border  = { 0, 0, 0, 0 }
         overlay_stretch = TRUE
@@ -166,7 +159,6 @@
     }
     image {
         function        = ARROW
-        recolorable     = TRUE
         overlay_file    = "arrow-down.png"
         overlay_border  = { 0, 0, 0, 0 }
         overlay_stretch = TRUE
@@ -174,7 +166,6 @@
     }
     image {
         function        = ARROW
-        recolorable     = TRUE
         overlay_file    = "arrow-left.png"
         overlay_border  = { 0, 0, 0, 0 }
         overlay_stretch = TRUE
@@ -182,7 +173,6 @@
     }
     image {
         function        = ARROW
-        recolorable     = TRUE
         overlay_file    = "arrow-right.png"
         overlay_border  = { 0, 0, 0, 0 }
         overlay_stretch = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkspinbutton
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkspinbutton 
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkspinbutton 
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -36,7 +36,6 @@
         image   
         {
             function        = ARROW 
-            recolorable     = TRUE  
             overlay_file    = "gtkspinbutton-plus.png"
             overlay_border  = { 0, 0, 0, 0 }
             overlay_stretch = FALSE 
@@ -45,7 +44,6 @@
         image   
         {
             function        = ARROW 
-            recolorable     = TRUE  
             overlay_file    = "gtkspinbutton-minus.png"
             overlay_border  = { 0, 0, 0, 0 }
             overlay_stretch = FALSE 

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtktreeview
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtktreeview   
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtktreeview   
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {    
       image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "entry-background.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
       }
       image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             state           = SELECTED
             file            = "list_bg_row_sel_stretch.png"
             border          = { 0, 0, 0, 0 }
@@ -18,7 +16,6 @@
       }
 #      image {
 #          function        = FOCUS
-#          recolorable     = FALSE
 #          file            = "list_bg_row_sel_stretch.png"
 #          border          = { 0, 0, 0, 0 }
 #          stretch         = TRUE
@@ -43,7 +40,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             #state           = NORMAL
             file            = "gtktreeview-gtkbutton.png"
             border          = { 5, 5, 5, 5 }
@@ -85,7 +81,6 @@
     engine "pixmap" {
       image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             state           = SELECTED
             file            = "gtktreeview-black-row-sel-stretch.png"
             border          = { 0, 0, 0, 0 }
@@ -93,7 +88,6 @@
       }
       image {
             function        = FLAT_BOX
-            recolorable     = TRUE
 #            state           = NORMAL
             file            = "gtktreeview-black-background.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/matchboxpanel
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/matchboxpanel 
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/matchboxpanel 
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             file            = "matchbox-panel-background.png"
             border          = { 0, 0, 0, 0 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodetailswindow
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodetailswindow
 2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodetailswindow
 2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "openmoko-scroll-fullscreen-btn-off.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-scroll-fullscreen-btn-off.png"
             border          = { 0, 0, 0, 0 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-scroll-fullscreen-btn-off-pressed.png"
             border          = { 0, 0, 0, 0 }
@@ -34,7 +31,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             shadow          = OUT
             file            = "openmoko-scroll-fullscreen-btn-on.png"
@@ -43,7 +39,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-scroll-fullscreen-btn-on.png"
             border          = { 0, 0, 0, 0 }
@@ -51,7 +46,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-scroll-fullscreen-btn-on-pressed.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodialogwindow
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodialogwindow
  2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokodialogwindow
  2007-05-25 16:34:49 UTC (rev 2088)
@@ -16,7 +16,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "mokodialogwindow-closebutton.png"
             border          = { 0, 0, 0, 0 }
@@ -24,7 +23,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "mokodialogwindow-closebutton.png"
             border          = { 0, 0, 0, 0 }
@@ -32,7 +30,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "mokodialogwindow-closebutton-pressed.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingerbutton
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingerbutton
  2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingerbutton
  2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_type01.png"
             border          = { 17, 17, 17, 17 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_type01.png"
             border          = { 17, 17, 17, 17 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_type01_p.png"
             border          = { 17, 17, 17, 17 }
@@ -35,7 +32,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_type04.png"
             border          = { 27, 27, 29, 29 }
@@ -43,7 +39,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_type04.png"
             border          = { 27, 27, 29, 29 }
@@ -51,7 +46,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_type04_p.png"
             border          = { 27, 27, 29, 29 }
@@ -68,7 +62,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_type05.png"
             border          = { 40, 20, 8, 7 }
@@ -76,7 +69,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_type05.png"
             border          = { 40, 20, 8, 7 }
@@ -84,7 +76,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_type05_p.png"
             border          = { 40, 20, 8, 7 }
@@ -102,21 +93,18 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_white.png"
             stretch         = TRUE
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_white.png"
             stretch         = TRUE
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_white_p.png"
             stretch         = TRUE
@@ -135,21 +123,18 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_big.png"
             stretch         = TRUE
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_big.png"
             stretch         = TRUE
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_big_p.png"
             stretch         = TRUE
@@ -174,7 +159,6 @@
     image
       {
         function        = BOX
-        recolorable     = TRUE
         state           = NORMAL
         file            = "transparency100.png"
         stretch         = TRUE
@@ -182,7 +166,6 @@
     image
       {
         function        = BOX
-        recolorable     = TRUE
         state           = PRELIGHT
         file            = "main_menu_sel_icon.png"
         stretch         = TRUE
@@ -190,7 +173,6 @@
     image
       {
         function        = BOX
-        recolorable     = TRUE
         state           = ACTIVE
         file            = "main_menu_sel_icon.png"
         stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingertoolbox
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingertoolbox
 2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokofingertoolbox
 2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_dialog_prev.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_dialog_prev.png"
             border          = { 0, 0, 0, 0 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_dialog_prev_p.png"
             border          = { 0, 0, 0, 0 }
@@ -36,7 +33,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_dialog_next.png"
             border          = { 0, 0, 0, 0 }
@@ -44,7 +40,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_dialog_next.png"
             border          = { 0, 0, 0, 0 }
@@ -52,7 +47,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_dialog_next_p.png"
             border          = { 0, 0, 0, 0 }
@@ -70,7 +64,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "btn_type03.png"
             border          = { 0, 0, 0, 0 }
@@ -78,7 +71,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "btn_type03.png"
             border          = { 0, 0, 0, 0 }
@@ -86,7 +78,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "btn_type03_p.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokomenubox
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokomenubox   
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokomenubox   
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             file            = "openmoko-application-menu-bg.png"
             border          = { 0, 20, 0, 0 }
             stretch         = TRUE
@@ -17,7 +16,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             file            = "openmoko-filter-menu-bg.png"
             border          = { 0, 30, 0, 0 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokonavigationlist
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokonavigationlist
        2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokonavigationlist
        2007-05-25 16:34:49 UTC (rev 2088)
@@ -5,7 +5,6 @@
     image
       {
         function        = FLAT_BOX
-        recolorable     = TRUE
         detail          = "viewportbin"
         file            = "openmoko-navigation-list-background.png"
         stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokoscrolledpane
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokoscrolledpane
  2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokoscrolledpane
  2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "openmoko-scroll-fullscreen-btn-off.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-scroll-fullscreen-btn-off.png"
             border          = { 0, 0, 0, 0 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-scroll-fullscreen-btn-off-pressed.png"
             border          = { 0, 0, 0, 0 }
@@ -34,7 +31,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             shadow          = OUT
             file            = "openmoko-scroll-fullscreen-btn-on.png"
@@ -43,7 +39,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-scroll-fullscreen-btn-on.png"
             border          = { 0, 0, 0, 0 }
@@ -51,7 +46,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-scroll-fullscreen-btn-on-pressed.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokostylusbutton
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokostylusbutton
  2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokostylusbutton
  2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "mokostylusbutton-white.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "mokostylusbutton-white.png"
             border          = { 0, 0, 0, 0 }
@@ -18,7 +16,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "mokostylusbutton-white-pressed.png"
             border          = { 0, 0, 0, 0 }
@@ -39,7 +36,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "mokostylusbutton-black.png"
             border          = { 0, 0, 0, 0 }
@@ -47,7 +43,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "mokostylusbutton-black.png"
             border          = { 0, 0, 0, 0 }
@@ -55,7 +50,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "mokostylusbutton-black-pressed.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotoolbox
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotoolbox   
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotoolbox   
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -23,7 +23,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "openmoko-mokotoolbox-search-button.png"
             border          = { 0, 0, 0, 0 }
@@ -31,7 +30,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-mokotoolbox-search-button.png"
             border          = { 0, 0, 0, 0 }
@@ -39,7 +37,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-mokotoolbox-search-button-pressed.png"
             border          = { 0, 0, 0, 0 }
@@ -56,7 +53,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = "openmoko-mokotoolbox-back-button.png"
             border          = { 0, 0, 0, 0 }
@@ -64,7 +60,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = "openmoko-mokotoolbox-back-button.png"
             border          = { 0, 0, 0, 0 }
@@ -72,7 +67,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = "openmoko-mokotoolbox-back-button-pressed.png"
             border          = { 0, 0, 0, 0 }
@@ -89,7 +83,6 @@
         image {
             function        = FLAT_BOX
             file            = "transparency100.png"
-            recolorable     = TRUE
         }
     }
     base[NORMAL] = "#ffeddb"
@@ -101,7 +94,6 @@
         image {
             function        = FLAT_BOX
             file            = "transparency100.png"
-            recolorable     = TRUE
         }
     }
 
@@ -113,7 +105,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = NORMAL
             file            = 
"openmoko-mokotoolbox-action-button-background.png"
             border          = { 0, 0, 0, 0 }
@@ -121,7 +112,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = PRELIGHT
             file            = 
"openmoko-mokotoolbox-action-button-background.png"
             border          = { 0, 0, 0, 0 }
@@ -129,7 +119,6 @@
         }
         image {
             function        = BOX
-            recolorable     = TRUE
             state           = ACTIVE
             file            = 
"openmoko-mokotoolbox-action-button-pressed-background.png"
             border          = { 0, 0, 0, 0 }

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotreeview
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotreeview  
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/mokotreeview  
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
     engine "pixmap" {
       image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             state           = SELECTED
             file            = "list_bg_row_sel_stretch.png"
             border          = { 0, 0, 0, 0 }
@@ -13,7 +12,6 @@
 #
 #      image {
 #          function        = FOCUS
-#          recolorable     = FALSE
 #          file            = "list_bg_row_sel_stretch.png"
 #          border          = { 0, 0, 0, 0 }
 #          stretch         = TRUE
@@ -39,7 +37,6 @@
     engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             file            = "mokotreeview-gtkbutton.png"
             border          = { 5, 5, 5, 5 }
             stretch         = TRUE

Modified: 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/transparent
===================================================================
--- 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/transparent   
    2007-05-25 14:10:54 UTC (rev 2087)
+++ 
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/transparent   
    2007-05-25 16:34:49 UTC (rev 2088)
@@ -2,7 +2,6 @@
    engine "pixmap" {
         image {
             function        = BOX
-            recolorable     = TRUE
             # state = ALL
             file            = "transparency100.png"
             border          = { 0, 0, 0, 0 }
@@ -10,7 +9,6 @@
         }
         image {
             function        = FLAT_BOX
-            recolorable     = TRUE
             # state = ALL
             file            = "transparency100.png"
             border          = { 0, 0, 0, 0 }




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to