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. r2010 - in
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup: .
src ([EMAIL PROTECTED])
2. r2011 -
trunk/src/target/OM-2007/applications/openmoko-dialer/src
([EMAIL PROTECTED])
3. r2012 - in trunk/src/target/OM-2007/openmoko-libs: .
libmokoui ([EMAIL PROTECTED])
4. r2013 - in trunk/src/target/OM-2007/openmoko-libs: .
libmokojournal/src ([EMAIL PROTECTED])
5. r2014 - in
trunk/src/target/OM-2007/applications/openmoko-contacts: . src
([EMAIL PROTECTED])
6. r2015 -
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0
([EMAIL PROTECTED])
7. r2016 -
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0
([EMAIL PROTECTED])
--- Begin Message ---
Author: stefan
Date: 2007-05-18 13:58:37 +0200 (Fri, 18 May 2007)
New Revision: 2010
Modified:
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/ChangeLog
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/src/openmoko-panel-startup.c
Log:
2007-05-18 Stefan Schmidt <[EMAIL PROTECTED]>
* src/openmoko-panel-startup.c:
(mb_panel_applet_create):
Make the eventbox around behind the image invisible.
Modified:
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/ChangeLog
2007-05-18 09:28:38 UTC (rev 2009)
+++ trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/ChangeLog
2007-05-18 11:58:37 UTC (rev 2010)
@@ -1,3 +1,9 @@
+2007-05-18 Stefan Schmidt <[EMAIL PROTECTED]>
+
+ * src/openmoko-panel-startup.c:
+ (mb_panel_applet_create):
+ Make the eventbox around behind the image invisible.
+
2007-05-17 Stefan Schmidt <[EMAIL PROTECTED]>
* src/openmoko-panel-startup.c:
Modified:
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/src/openmoko-panel-startup.c
===================================================================
---
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/src/openmoko-panel-startup.c
2007-05-18 09:28:38 UTC (rev 2009)
+++
trunk/src/target/OM-2007/panel-plugins/openmoko-panel-startup/src/openmoko-panel-startup.c
2007-05-18 11:58:37 UTC (rev 2010)
@@ -304,6 +304,7 @@
/* Show! */
applet->eventbox = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(applet->eventbox),
GTK_WIDGET(applet->image));
+ gtk_event_box_set_visible_window(applet->eventbox, FALSE);
moko_panel_applet_set_widget( MOKO_PANEL_APPLET(mokoapplet),
GTK_WIDGET(applet->image) );
gtk_widget_show_all(GTK_WIDGET(mokoapplet));
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-18 16:27:34 +0200 (Fri, 18 May 2007)
New Revision: 2011
Modified:
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
Log:
openmoko-dialer: remove auto-complete functions as they are too slow at the
moment
Modified:
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
===================================================================
---
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
2007-05-18 11:58:37 UTC (rev 2010)
+++
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-window-dialer.c
2007-05-18 14:27:34 UTC (rev 2011)
@@ -40,8 +40,11 @@
static void
cb_delete_button_clicked (GtkButton * button, MokoDialerData * appdata)
{
- g_debug ("delete button clicked");
+ moko_dialer_textview_delete (appdata->moko_dialer_text_view);
+
+ /* skip the auto list for the moment as it is too slow */
+#if 0
if (moko_dialer_autolist_has_selected (appdata->moko_dialer_autolist))
{
//first of all, we un-select the selection.
@@ -81,7 +84,7 @@
}
-
+#endif
}
static void
@@ -90,7 +93,6 @@
if (!appdata->window_history)
window_history_init (appdata);
-//start dialling.
gtk_widget_show_all (appdata->window_history);
}
@@ -191,7 +193,8 @@
moko_dialer_textview_insert (moko_dialer_text_view, input);
//DBG_TRACE();
-
+ /* skip auto complete for the moment as it is too slow */
+#if 0
codesinput =
g_strdup (moko_dialer_textview_get_input (moko_dialer_text_view, FALSE));
@@ -208,6 +211,7 @@
if (codesinput)
g_free (codesinput);
+#endif
}
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-18 16:37:31 +0200 (Fri, 18 May 2007)
New Revision: 2012
Modified:
trunk/src/target/OM-2007/openmoko-libs/ChangeLog
trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-tool-box.c
Log:
Patch by: Neil J Patel <[EMAIL PROTECTED]>
* libmokoui/moko-tool-box.c: (_button_release),
(moko_tool_box_init): Use a private boolean to store entry visibility
Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog 2007-05-18 14:27:34 UTC
(rev 2011)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog 2007-05-18 14:37:31 UTC
(rev 2012)
@@ -1,5 +1,12 @@
2007-05-18 Thomas Wood <[EMAIL PROTECTED]>
+ Patch by: Neil J Patel <[EMAIL PROTECTED]>
+
+ * libmokoui/moko-tool-box.c: (_button_release),
+ (moko_tool_box_init): Use a private boolean to store entry visibility
+
+2007-05-18 Thomas Wood <[EMAIL PROTECTED]>
+
* libmokoui/moko-message-dialog.c: (moko_message_dialog_init): Add
padding and center align the message text
Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-tool-box.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-tool-box.c
2007-05-18 14:27:34 UTC (rev 2011)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-tool-box.c
2007-05-18 14:37:31 UTC (rev 2012)
@@ -40,6 +40,7 @@
GtkWidget* buttonbox; /* GtkHBox */
GtkWidget* searchbar_page; /* MokoFixed */
GtkWidget* entry; /* GtkEntry */
+ gboolean entry_visible;
} MokoToolBoxPriv;
/* add your signals here */
@@ -57,7 +58,8 @@
static void _button_release(GtkWidget* w, MokoToolBox* self)
{
MokoToolBoxPriv *priv = MOKO_TOOL_BOX_GET_PRIVATE(self);
- moko_tool_box_set_search_visible (self, !GTK_WIDGET_DRAWABLE(priv->entry)
);
+ priv->entry_visible = !priv->entry_visible;
+ moko_tool_box_set_search_visible (self, priv->entry_visible );
}
static gboolean _entry_focus_in(GtkWidget *widget, GdkEventFocus *event,
MokoToolBox* self)
@@ -102,6 +104,10 @@
static void moko_tool_box_init(MokoToolBox* self) /* Instance Construction */
{
moko_debug( "moko_tool_box_init" );
+ MokoToolBoxPriv* priv = MOKO_TOOL_BOX_GET_PRIVATE(self);
+
+ priv->entry_visible = FALSE;
+
gtk_notebook_set_show_border( GTK_NOTEBOOK(self), FALSE );
gtk_notebook_set_show_tabs( GTK_NOTEBOOK(self), FALSE );
}
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-18 16:42:09 +0200 (Fri, 18 May 2007)
New Revision: 2013
Modified:
trunk/src/target/OM-2007/openmoko-libs/ChangeLog
trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-journal.c
trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.c
trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.h
Log:
Patch by: Neil J Patel <[EMAIL PROTECTED]>
* libmokojournal/src/moko-journal.c:
(moko_journal_entry_set_direction):
* libmokojournal/src/moko-time.c: (moko_time_as_timet):
* libmokojournal/src/moko-time.h:
- Removes a g_return_if_fail on a enum.
- Makes the moko_time_as_time_t accept a const MokoTime, to
suppress warnings.
Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog 2007-05-18 14:37:31 UTC
(rev 2012)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog 2007-05-18 14:42:09 UTC
(rev 2013)
@@ -2,6 +2,18 @@
Patch by: Neil J Patel <[EMAIL PROTECTED]>
+ * libmokojournal/src/moko-journal.c:
+ (moko_journal_entry_set_direction):
+ * libmokojournal/src/moko-time.c: (moko_time_as_timet):
+ * libmokojournal/src/moko-time.h:
+ - Removes a g_return_if_fail on a enum.
+ - Makes the moko_time_as_time_t accept a const MokoTime, to
+ suppress warnings.
+
+2007-05-18 Thomas Wood <[EMAIL PROTECTED]>
+
+ Patch by: Neil J Patel <[EMAIL PROTECTED]>
+
* libmokoui/moko-tool-box.c: (_button_release),
(moko_tool_box_init): Use a private boolean to store entry visibility
Modified:
trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-journal.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-journal.c
2007-05-18 14:37:31 UTC (rev 2012)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-journal.c
2007-05-18 14:42:09 UTC (rev 2013)
@@ -1656,7 +1656,6 @@
enum MessageDirection direction)
{
g_return_if_fail (a_entry) ;
- g_return_if_fail (direction) ;
a_entry->direction = direction ;
}
Modified: trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.c
2007-05-18 14:37:31 UTC (rev 2012)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.c
2007-05-18 14:42:09 UTC (rev 2013)
@@ -81,7 +81,7 @@
}
time_t
-moko_time_as_timet (MokoTime *time)
+moko_time_as_timet (const MokoTime *time)
{
g_return_val_if_fail (time, 0) ;
return icaltime_as_timet (time->t) ;
Modified: trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.h
2007-05-18 14:37:31 UTC (rev 2012)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/src/moko-time.h
2007-05-18 14:42:09 UTC (rev 2013)
@@ -29,7 +29,7 @@
MokoTime* moko_time_from_timet (const time_t t, gboolean is_date) ;
MokoTime* moko_time_from_string (const gchar *iso_format_date) ;
void moko_time_free (MokoTime *time) ;
-time_t moko_time_as_timet (MokoTime *time) ;
+time_t moko_time_as_timet (const MokoTime *time) ;
const gchar* moko_time_as_ical_string (MokoTime *t) ;
#endif /*__MOKO_TIME_H__*/
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-18 16:45:38 +0200 (Fri, 18 May 2007)
New Revision: 2014
Modified:
trunk/src/target/OM-2007/applications/openmoko-contacts/ChangeLog
trunk/src/target/OM-2007/applications/openmoko-contacts/src/Makefile.am
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-callbacks-ui.c
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-defs.h
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-omoko.c
Log:
Patch by: Neil J Patel <[EMAIL PROTECTED]>
* src/Makefile.am:
* src/contacts-callbacks-ui.c: (contacts_selection_cb):
* src/contacts-defs.h:
* src/contacts-omoko.c: (create_contacts_list),
(create_main_window):
- Adds a new page onto the main notebook, hooks up signals, and
makes contacts aware that there is a history pane.
- Creates a contacts-history-view.h/c which handles the creation
and updating of the ContactsHistory widget. It also has
connects to the 'entry-activated' signal on the history
widget.
- Adds the ContactsHistory widget, which is a self contained
vbox that uses libmokojournal to display a list of
communication with a contact-uid.
- History is displayed with the most recent first.
- Each 'preview widget' van be clicked to reveal more
information (if it exists), and clicked again to close.
- Each 'preview widget' has a tap-and-hold menu, which
allows the user to either select or activate the
current widget.
- Each 'preview widget' is theme-able.
Modified: trunk/src/target/OM-2007/applications/openmoko-contacts/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-contacts/ChangeLog
2007-05-18 14:42:09 UTC (rev 2013)
+++ trunk/src/target/OM-2007/applications/openmoko-contacts/ChangeLog
2007-05-18 14:45:38 UTC (rev 2014)
@@ -1,3 +1,29 @@
+2007-05-18 Thomas Wood <[EMAIL PROTECTED]>
+
+ Patch by: Neil J Patel <[EMAIL PROTECTED]>
+
+ * src/Makefile.am:
+ * src/contacts-callbacks-ui.c: (contacts_selection_cb):
+ * src/contacts-defs.h:
+ * src/contacts-omoko.c: (create_contacts_list),
+ (create_main_window):
+ - Adds a new page onto the main notebook, hooks up signals, and
+ makes contacts aware that there is a history pane.
+ - Creates a contacts-history-view.h/c which handles the creation
+ and updating of the ContactsHistory widget. It also has
+ connects to the 'entry-activated' signal on the history
+ widget.
+ - Adds the ContactsHistory widget, which is a self contained
+ vbox that uses libmokojournal to display a list of
+ communication with a contact-uid.
+ - History is displayed with the most recent first.
+ - Each 'preview widget' van be clicked to reveal more
+ information (if it exists), and clicked again to close.
+ - Each 'preview widget' has a tap-and-hold menu, which
+ allows the user to either select or activate the
+ current widget.
+ - Each 'preview widget' is theme-able.
+
2007-05-17 Thomas Wood <[EMAIL PROTECTED]>
* src/contacts-omoko.c: (create_main_window):
Modified:
trunk/src/target/OM-2007/applications/openmoko-contacts/src/Makefile.am
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-contacts/src/Makefile.am
2007-05-18 14:42:09 UTC (rev 2013)
+++ trunk/src/target/OM-2007/applications/openmoko-contacts/src/Makefile.am
2007-05-18 14:45:38 UTC (rev 2014)
@@ -27,7 +27,11 @@
contacts-omoko.c \
contacts-omoko.h \
contacts-groups-editor.c \
- contacts-groups-editor.h
+ contacts-groups-editor.h \
+ contacts-history-view.c \
+ contacts-history-view.h \
+ contacts-history.c \
+ contacts-history.h
contacts_LDADD = $(CONTACTS_LIBS)
contacts_LDFLAGS = @CONTACTS_LIBS@
Modified:
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-callbacks-ui.c
===================================================================
---
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-callbacks-ui.c
2007-05-18 14:42:09 UTC (rev 2013)
+++
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-callbacks-ui.c
2007-05-18 14:45:38 UTC (rev 2014)
@@ -33,6 +33,7 @@
#include "contacts-contact-pane.h"
#include "contacts-callbacks-ebook.h"
#include "contacts-main.h"
+#include "contacts-history-view.h"
void
contacts_chooser_add_cb (GtkWidget *button, ContactsData *data)
@@ -128,17 +129,21 @@
contacts_set_available_options (data, TRUE, GPOINTER_TO_INT
(data->contact), GPOINTER_TO_INT (data->contact));
- if (current_pane == CONTACTS_CONTACT_PANE)
- {
- contacts_display_summary (data->contact, data);
- }
-
- if (current_pane == CONTACTS_GROUPS_PANE)
- {
- contacts_groups_pane_update_selection (
- selection,
- data);
- }
+ switch (current_pane) {
+ case CONTACTS_CONTACT_PANE:
+ contacts_display_summary (data->contact, data);
+ break;
+ case CONTACTS_GROUPS_PANE:
+ contacts_groups_pane_update_selection (selection,
+ data);
+ break;
+ case CONTACTS_HISTORY_PANE:
+ contacts_history_pane_update_selection (selection,
+ data);
+ break;
+ default:
+ break;
+ }
}
void
Modified:
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-defs.h
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-defs.h
2007-05-18 14:42:09 UTC (rev 2013)
+++ trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-defs.h
2007-05-18 14:45:38 UTC (rev 2014)
@@ -47,7 +47,8 @@
enum {
CONTACTS_CONTACT_PANE = 0,
- CONTACTS_GROUPS_PANE
+ CONTACTS_GROUPS_PANE,
+ CONTACTS_HISTORY_PANE
};
typedef struct {
@@ -84,6 +85,7 @@
GtkWidget *preview_header_hbox;
GtkWidget *groups_vbox;
+ GtkWidget *history;
GtkWidget *add_field_button;
GtkWidget *remove_field_button;
Modified:
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-omoko.c
===================================================================
---
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-omoko.c
2007-05-18 14:42:09 UTC (rev 2013)
+++
trunk/src/target/OM-2007/applications/openmoko-contacts/src/contacts-omoko.c
2007-05-18 14:45:38 UTC (rev 2014)
@@ -26,6 +26,7 @@
#include "contacts-omoko.h"
#include "contacts-groups-editor.h"
#include "contacts-callbacks-ebook.h"
+#include "contacts-history-view.h"
@@ -93,6 +94,7 @@
column = gtk_tree_view_column_new_with_attributes (_("Name"), renderer,
"text",
CONTACT_NAME_COL, NULL);
gtk_tree_view_column_set_sort_column_id (column, CONTACT_NAME_COL);
+ gtk_tree_view_column_set_expand (column, TRUE);
moko_tree_view_append_column (MOKO_TREE_VIEW (treeview), column);
/* mobile column */
@@ -100,6 +102,7 @@
column = gtk_tree_view_column_new_with_attributes (_("Mobile"),
renderer,
"text",
CONTACT_CELLPHONE_COL, NULL);
gtk_tree_view_column_set_sort_column_id (column, CONTACT_CELLPHONE_COL);
+ gtk_tree_view_column_set_expand (column, TRUE);
moko_tree_view_append_column (MOKO_TREE_VIEW (treeview), column);
return treeview;
@@ -220,6 +223,8 @@
/* history button */
widget = GTK_WIDGET (moko_tool_box_add_action_button (MOKO_TOOL_BOX
(moko_tool_box)));
moko_pixmap_button_set_center_stock (MOKO_PIXMAP_BUTTON (widget),
MOKO_STOCK_HISTORY);
+ g_signal_connect (G_OBJECT (widget), "clicked",
+ G_CALLBACK (contacts_history_pane_show),contacts_data);
/* edit button */
widget = GTK_WIDGET (moko_tool_box_add_action_button (MOKO_TOOL_BOX
(moko_tool_box)));
@@ -262,6 +267,12 @@
ui->groups_vbox = gtk_vbox_new (FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (ui->groups_vbox), 12);
gtk_notebook_append_page (GTK_NOTEBOOK (ui->main_notebook),
ui->groups_vbox, NULL);
+
+ /*** history mode ***/
+ ui->history = contacts_history_pane_new ();
+ gtk_notebook_append_page (GTK_NOTEBOOK (ui->main_notebook),
+ ui->history,
+ NULL);
/*** connect signals ***/
g_signal_connect ((gpointer) ui->main_window, "destroy",
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-05-18 16:48:48 +0200 (Fri, 18 May 2007)
New Revision: 2015
Modified:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane
Log:
theme: Adds inital theming to the history preview widgets. Colours were taken
from the mockups in the wiki.
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-18 14:45:38 UTC (rev 2014)
+++
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/contactspane
2007-05-18 14:48:48 UTC (rev 2015)
@@ -114,3 +114,52 @@
}
}
widget "*.removebutton" style "removebutton"
+
+# History view
+style "mokohistorylabel" {
+ font_name = "Vera Sans 14"
+ fg[PRELIGHT] = "#666"
+}
+widget "*.mokohistorylabel" style "mokohistorylabel"
+
+style "mokohistorycall-in" {
+ text[PRELIGHT] = "#666"
+ base[PRELIGHT] = "#000"
+ bg[PRELIGHT] = "#E7FFE6"
+ fg[PRELIGHT] = "#00FF00"
+}
+widget "*.mokohistorycall-in" style "mokohistorycall-in"
+
+style "mokohistorycall-out" {
+ text[PRELIGHT] = "#666"
+ base[PRELIGHT] = "#000"
+ bg[PRELIGHT] = "#FFF7E6"
+ fg[PRELIGHT] = "#00FF00"
+}
+widget "*.mokohistorycall-out" style "mokohistorycall-out"
+
+style "mokohistorycall-missed" {
+ text[PRELIGHT] = "#666"
+ base[PRELIGHT] = "#000"
+ bg[PRELIGHT] = "#FAD7D2"
+ fg[PRELIGHT] = "#00FF00"
+}
+widget "*.mokohistorycall-missed" style "mokohistorycall-missed"
+
+style "mokohistoryemail" {
+ text[PRELIGHT] = "#666"
+ base[PRELIGHT] = "#000"
+ bg[PRELIGHT] = "#FFF"
+ fg[PRELIGHT] = "#00FF00"
+}
+widget "*.mokohistoryemail" style "mokohistoryemail"
+
+style "mokohistorysms" {
+ text[PRELIGHT] = "#666"
+ base[PRELIGHT] = "#000"
+ bg[PRELIGHT] = "#E6F9FF"
+ fg[PRELIGHT] = "#00FF00"
+}
+widget "*.mokohistorysms" style "mokohistorysms"
+
+
--- End Message ---
--- Begin Message ---
Author: alphaone
Date: 2007-05-18 16:50:58 +0200 (Fri, 18 May 2007)
New Revision: 2016
Added:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-background.png
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-progress.png
Modified:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc
Log:
theme: Add theming to openmoko-footer.
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-18 14:48:48 UTC (rev 2015)
+++ trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/gtkrc
2007-05-18 14:50:58 UTC (rev 2016)
@@ -127,5 +127,6 @@
include "contactspane"
include "openmoko-today"
+include "openmoko-footer"
include "mokomessagedialog"
Added:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
===================================================================
---
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
2007-05-18 14:48:48 UTC (rev 2015)
+++
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
2007-05-18 14:50:58 UTC (rev 2016)
@@ -0,0 +1,28 @@
+style "openmoko-footer-progress" {
+ engine "pixmap" {
+ image {
+ function = BOX
+ detail = "trough"
+ file = "openmoko-footer-progress.png"
+ border = { 20, 20, 15, 15 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+ image {
+ function = BOX
+ detail = "bar"
+ file = "gtkprogressbar-bar.png"
+ border = { 13, 13, 11, 14 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+}
+}
+
+style "openmoko-footer" {
+ bg_pixmap[NORMAL] = "openmoko-footer-background.png"
+}
+
+
+widget "*.openmoko-footer-progress" style "openmoko-footer-progress"
+widget "openmoko-footer" style "openmoko-footer"
Added:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-background.png
===================================================================
(Binary files differ)
Property changes on:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-background.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-progress.png
===================================================================
(Binary files differ)
Property changes on:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer-progress.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog