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. r3011 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
libmokoui ([EMAIL PROTECTED])
2. r3012 - in
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine: . data src
([EMAIL PROTECTED])
3. r3013 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
doc doc/reference ([EMAIL PROTECTED])
4. r3014 -
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui
([EMAIL PROTECTED])
5. r3015 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
libmokoui ([EMAIL PROTECTED])
--- Begin Message ---
Author: chris
Date: 2007-09-19 12:14:36 +0200 (Wed, 19 Sep 2007)
New Revision: 3011
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
Log:
* libmokoui/moko-hint-entry.c: (update):
Don't clear entry when user-entered text matches hint text
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
09:47:48 UTC (rev 3010)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
10:14:36 UTC (rev 3011)
@@ -1,5 +1,10 @@
2007-09-19 Chris Lord <[EMAIL PROTECTED]>
+ * libmokoui/moko-hint-entry.c: (update):
+ Don't clear entry when user-entered text matches hint text
+
+2007-09-19 Chris Lord <[EMAIL PROTECTED]>
+
* libmokoui/moko-finger-scroll.c: (moko_finger_scroll_refresh):
Take the border-width property of the container into account when
calculating if scroll-indicators should be visible
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
2007-09-19 09:47:48 UTC (rev 3010)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
2007-09-19 10:14:36 UTC (rev 3011)
@@ -24,7 +24,7 @@
#include <gtk/gtk.h>
#include "moko-hint-entry.h"
-G_DEFINE_TYPE (MokoHintEntry, moko_hint_entry, GTK_TYPE_ENTRY);
+G_DEFINE_TYPE (MokoHintEntry, moko_hint_entry, GTK_TYPE_ENTRY)
#define GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), MOKO_TYPE_HINT_ENTRY,
MokoHintEntryPrivate))
@@ -58,9 +58,9 @@
text = gtk_entry_get_text (GTK_ENTRY (entry));
if (GTK_WIDGET_HAS_FOCUS (entry)) {
- priv->state = STATE_ENTRY;
- gtk_widget_modify_text (widget, GTK_STATE_NORMAL, NULL);
- if (strcmp (text, priv->hint) == 0) {
+ if (priv->state == STATE_HINTING) {
+ priv->state = STATE_ENTRY;
+ gtk_widget_modify_text (widget, GTK_STATE_NORMAL, NULL);
gtk_entry_set_text (GTK_ENTRY (entry), "");
}
} else {
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-19 12:49:16 +0200 (Wed, 19 Sep 2007)
New Revision: 3012
Added:
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/matchboxpanel
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-calculator
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-contacts
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-dialer
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-panel-plugins
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-utils.h
Modified:
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/Makefile.am
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/gtkrc
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-draw.c
Log:
* moko-gtk-engine/src/moko-draw.c:
- Adjust gradient stops to give glossed appearance.
- Add gradient to "inactive" tabs
* moko-gtk-engine/src/moko-utils.h: rename from sato-utils.h
* moko-gtk-engine/data/openmoko-contacts
* moko-gtk-engine/data/openmoko-panel-plugins
* moko-gtk-engine/data/matchboxpanel
* moko-gtk-engine/data/openmoko-dialer
* moko-gtk-engine/data/gtkrc
* moko-gtk-engine/data/openmoko-calculator
* moko-gtk-engine/Makefile.am
- Add application specific rc files
- Tweak colours
Modified: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/Makefile.am
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/Makefile.am
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/Makefile.am
2007-09-19 10:49:16 UTC (rev 3012)
@@ -17,4 +17,10 @@
libmoko_engine_la_LIBADD = $(GTK_LIBS)
gtkthemedir = $(datadir)/themes/Moko/gtk-2.0
-dist_gtktheme_DATA = data/gtkrc
+dist_gtktheme_DATA = \
+ data/gtkrc \
+ data/matchboxpanel \
+ data/openmoko-calculator \
+ data/openmoko-contacts \
+ data/openmoko-dialer \
+ data/openmoko-panel-plugins
Modified: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/gtkrc
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/gtkrc
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/gtkrc
2007-09-19 10:49:16 UTC (rev 3012)
@@ -3,14 +3,18 @@
# Copyright 2007 OpenedHand Ltd <[EMAIL PROTECTED]>
# Taken from OpenedHand's Sato GTK+ Theme
+
+# black: #333333
+# orange: #ff7d00
+
gtk_button_images = 0
gtk_menu_images = 0
style "default"
{
- xthickness = 2
- ythickness = 2
+ xthickness = 2
+ ythickness = 2
GtkWidget::focus_line_width = 2
GtkWidget::focus_padding = 0
@@ -54,9 +58,9 @@
- fg [NORMAL] = "black"
- fg [PRELIGHT] = "black"
- fg [ACTIVE] = "black"
+ fg [NORMAL] = "#333333"
+ fg [PRELIGHT] = "#333333"
+ fg [ACTIVE] = "#333333"
fg [INSENSITIVE] = "#eeeeec"
fg [SELECTED] = "white"
@@ -66,10 +70,10 @@
bg [INSENSITIVE] = "#eeeeec"
bg [SELECTED] = "#ff7d00"
- text [NORMAL] = "black"
- text [PRELIGHT] = "black"
- text [SELECTED] = "black"
- text [ACTIVE] = "black"
+ text [NORMAL] = "#333333"
+ text [PRELIGHT] = "#333333"
+ text [SELECTED] = "#333333"
+ text [ACTIVE] = "#333333"
base [NORMAL] = "white"
base [SELECTED] = "#ff7d00"
@@ -92,7 +96,7 @@
xthickness = 0
ythickness = 0
- bg[NORMAL] = "black"
+ bg[NORMAL] = "#333333"
}
class "GtkToolbar" style "toolbar"
@@ -102,7 +106,7 @@
ythickness = 12
bg[NORMAL] = "#ff7d00"
- bg[PRELIGHT] = "black"
+ bg[PRELIGHT] = "#333333"
}
widget_class "*Tool*GtkToggleButton" style "toolitem"
widget_class "*Tool*GtkButton" style "toolitem"
@@ -112,13 +116,14 @@
xthickness = 0
ythickness = 0
bg[NORMAL] = "#ff7d00"
- bg[ACTIVE] = "black"
+ bg[ACTIVE] = "#333333"
}
class "GtkNotebook" style "notebook"
-style "separator"
-{
- fg[NORMAL] = "white"
-}
-class "GtkSeparatorToolItem" style "separator"
+include "matchboxpanel"
+include "openmoko-calculator"
+include "openmoko-contacts"
+include "openmoko-dialer"
+include "openmoko-panel-plugins"
+
Added: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/matchboxpanel
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/matchboxpanel
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/matchboxpanel
2007-09-19 10:49:16 UTC (rev 3012)
@@ -0,0 +1,5 @@
+style "matchboxpanel" {
+ bg[NORMAL] = "#000000"
+}
+widget "MatchboxPanel" style "matchboxpanel"
+
Added:
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-calculator
===================================================================
---
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-calculator
2007-09-19 10:14:36 UTC (rev 3011)
+++
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-calculator
2007-09-19 10:49:16 UTC (rev 3012)
@@ -0,0 +1,21 @@
+style "calc-window"
+{
+ xthickness = 10
+ ythickness = 10
+}
+widget "*calculator-frame" style "calc-window"
+
+style "calc-display-bg"
+{
+ bg[NORMAL] = "black"
+ fg[NORMAL] = "orange"
+ font_name = "Sans 20"
+ xthickness = 10
+ ythickness = 10
+}
+widget "*calculator-display-background*" style "calc-display-bg"
+
+style "calculator-button-label" {
+ font_name = "Sans 12"
+}
+widget "*calculator-table.GtkButton.*" style "calculator-button-label"
Added:
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-contacts
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-contacts
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-contacts
2007-09-19 10:49:16 UTC (rev 3012)
@@ -0,0 +1,55 @@
+style "mokocontactsadddetail" {
+ xthickness = 0
+ ythickness = 5
+ GtkButton::focus-line-width = 0
+}
+
+
+widget "*moko-contacts-add-detail-button" style "mokocontactsadddetail"
+
+# History view
+style "mokohistorylabel" {
+ 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"
+
Added: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-dialer
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-dialer
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-dialer
2007-09-19 10:49:16 UTC (rev 3012)
@@ -0,0 +1,22 @@
+style "mokodialertextview" {
+ fg[NORMAL] = "#ff7800"
+ text[NORMAL] = "#ff7800"
+ bg[NORMAL] = "#000000"
+ base[NORMAL] = "#000000"
+
+ MokoDialerTextview::small_font = 10
+ MokoDialerTextview::medium_font = 15
+ MokoDialerTextview::large_font = 20
+}
+widget "*.MokoDialerTextview" style "mokodialertextview"
+
+style "mokotips" {
+ fg[NORMAL] = "#ff7800"
+ text[NORMAL] = "#ff7800"
+ bg[NORMAL] = "#000000"
+ base[NORMAL] = "#000000"
+
+ MokoDialerTextview::medium_font = 15
+}
+widget "*.MokoTips*" style "mokotips"
+
Added:
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-panel-plugins
===================================================================
---
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-panel-plugins
2007-09-19 10:14:36 UTC (rev 3011)
+++
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/data/openmoko-panel-plugins
2007-09-19 10:49:16 UTC (rev 3012)
@@ -0,0 +1,10 @@
+style "openmoko-panel-clock" {
+ fg[NORMAL] = "#e2e2e2"
+ fg[PRELIGHT] = "#e2e2e2"
+ fg[ACTIVE] = "#e2e2e2"
+}
+widget "*.MatchboxPanelClock" style "openmoko-panel-clock"
+
+# add styling for other panel plugins here...
+
+
Modified: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-draw.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-draw.c
2007-09-19 10:14:36 UTC (rev 3011)
+++ trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-draw.c
2007-09-19 10:49:16 UTC (rev 3012)
@@ -58,10 +58,10 @@
gc = gdk_gc_new (window);
/* get the start and end colours */
- moko_shade_colour (&style->bg[state_type], &c1, 1.2);
- moko_shade_colour (&style->bg[state_type], &c2, 1.0);
- moko_shade_colour (&style->bg[state_type], &c3, 1.0);
- moko_shade_colour (&style->bg[state_type], &c4, 0.9);
+ moko_shade_colour (&style->bg[state_type], &c1, 1.6);
+ moko_shade_colour (&style->bg[state_type], &c2, 1.4);
+ moko_shade_colour (&style->bg[state_type], &c3, 1.2);
+ moko_shade_colour (&style->bg[state_type], &c4, 1.0);
/* set line for 1px */
gdk_gc_set_line_attributes (gc, 1, GDK_LINE_SOLID, GDK_CAP_BUTT,
@@ -377,10 +377,7 @@
GdkGC *gc;
gc = moko_gc_new (style->fg_gc[state_type], window);
- if (state_type == GTK_STATE_NORMAL)
- moko_gradient (style, window, state_type, x, y, width, height);
- else
- gtk_paint_flat_box (style, window, state_type, shadow_type, area, widget,
detail, x, y, width, height);
+ moko_gradient (style, window, state_type, x, y, width, height);
gdk_draw_rectangle (window, gc, FALSE, x, y, width - 1, height - 1);
g_object_unref (gc);
Copied: trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/moko-utils.h
(from rev 3008,
trunk/src/target/OM-2007.2/libraries/moko-gtk-engine/src/sato-utils.h)
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-19 18:23:28 +0200 (Wed, 19 Sep 2007)
New Revision: 3013
Added:
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/Makefile.am
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/Makefile.am
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/version.xml.in
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
trunk/src/target/OM-2007.2/libraries/libmokoui2/Makefile.am
trunk/src/target/OM-2007.2/libraries/libmokoui2/autogen.sh
trunk/src/target/OM-2007.2/libraries/libmokoui2/configure.ac
Log:
* Makefile.am:
* autogen.sh:
* configure.ac:
* doc/reference/Makefile.am:
* doc/reference/version.xml.in
Add gtk-doc support
* libmokoui/moko-finger-scroll.c: (moko_finger_scroll_init),
(moko_finger_scroll_new_full):
Add documentation for MokoFingerScroll
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
16:23:28 UTC (rev 3013)
@@ -1,3 +1,18 @@
+2007-09-19 Thomas Wood <[EMAIL PROTECTED]>
+
+ * Makefile.am:
+ * autogen.sh:
+ * configure.ac:
+ * doc/reference/Makefile.am:
+ * doc/reference/version.xml.in
+
+ Add gtk-doc support
+
+ * libmokoui/moko-finger-scroll.c: (moko_finger_scroll_init),
+ (moko_finger_scroll_new_full):
+
+ Add documentation for MokoFingerScroll
+
2007-09-19 Chris Lord <[EMAIL PROTECTED]>
* libmokoui/moko-hint-entry.c: (update):
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/Makefile.am
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/Makefile.am 2007-09-19
10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/Makefile.am 2007-09-19
16:23:28 UTC (rev 3013)
@@ -1,4 +1,4 @@
-SUBDIRS = libmokoui
+SUBDIRS = libmokoui doc
pcdata_DATA= libmokoui2.pc
pcdatadir= $(libdir)/pkgconfig
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/autogen.sh
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/autogen.sh 2007-09-19
10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/autogen.sh 2007-09-19
16:23:28 UTC (rev 3013)
@@ -1,4 +1,5 @@
#! /bin/sh
autoreconf -v --install || exit 1
glib-gettextize --force --copy || exit 1
+gtkdocize || exit 1
./configure --enable-maintainer-mode "$@"
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/configure.ac
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/configure.ac
2007-09-19 10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/configure.ac
2007-09-19 16:23:28 UTC (rev 3013)
@@ -31,11 +31,16 @@
AC_SUBST(LIBS)
+GTK_DOC_CHECK([1.4])
+
# output stuff
AC_OUTPUT([
Makefile
libmokoui2.pc
libmokoui/Makefile
+doc/Makefile
+doc/reference/Makefile
+doc/reference/version.xml
])
echo "CFLAGS = $CFLAGS"
Added: trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/Makefile.am
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/Makefile.am
2007-09-19 10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/Makefile.am
2007-09-19 16:23:28 UTC (rev 3013)
@@ -0,0 +1 @@
+SUBDIRS=reference
Added: trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/Makefile.am
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/Makefile.am
2007-09-19 10:49:16 UTC (rev 3012)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/Makefile.am
2007-09-19 16:23:28 UTC (rev 3013)
@@ -0,0 +1,79 @@
+## Process this file with automake to produce Makefile.in
+
+# We require automake 1.6 at least.
+AUTOMAKE_OPTIONS = 1.6
+
+# This is a blank Makefile.am for using gtk-doc.
+# Copy this to your project's API docs directory and modify the variables to
+# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
+# of using the various options.
+
+# The name of the module, e.g. 'glib'.
+DOC_MODULE=libmokoui2
+
+# The top-level SGML file. You can change this if you want to.
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code. Relative to $(srcdir).
+# gtk-doc will search all .c & .h files beneath here for inline comments
+# documenting the functions and macros.
+# e.g. DOC_SOURCE_DIR=../../../gtk
+DOC_SOURCE_DIR=../../libmokoui
+
+# Extra options to pass to gtkdoc-scangobj. Not normally needed.
+SCANGOBJ_OPTIONS=
+
+# Extra options to supply to gtkdoc-scan.
+# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
+SCAN_OPTIONS=
+
+# Extra options to supply to gtkdoc-mkdb.
+# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
+MKDB_OPTIONS=--sgml-mode --output-format=xml
+
+# Extra options to supply to gtkdoc-mktmpl
+# e.g. MKTMPL_OPTIONS=--only-section-tmpl
+MKTMPL_OPTIONS=
+
+# Extra options to supply to gtkdoc-fixref. Not normally needed.
+# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
+FIXXREF_OPTIONS=
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
+# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
+HFILE_GLOB=$(top_srcdir)/libmokoui/*.h
+CFILE_GLOB=$(top_srcdir)/libmokoui/*.c
+
+# Header files to ignore when scanning.
+# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
+IGNORE_HFILES=
+
+# Images to copy into HTML directory.
+# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
+HTML_IMAGES=
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
+# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
+content_files = version.xml
+
+# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
+# These files must be listed here *and* in content_files
+# e.g. expand_content_files=running.sgml
+expand_content_files=
+
+# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
+# Only needed if you are using gtkdoc-scangobj to dynamically query widget
+# signals and properties.
+# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
+
+INCLUDES=-I$(top_srcdir)/src -I$(top_builddir) $(CFLAGS)
+GTKDOC_LIBS=$(top_srcdir)/libmokoui/libmokoui2.la $(LIBS)
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/gtk-doc.make
+
+# Other files to distribute
+# e.g. EXTRA_DIST += version.xml.in
+EXTRA_DIST += version.xml.in
Added:
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/version.xml.in
===================================================================
---
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/version.xml.in
2007-09-19 10:49:16 UTC (rev 3012)
+++
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/version.xml.in
2007-09-19 16:23:28 UTC (rev 3013)
@@ -0,0 +1 @@
[EMAIL PROTECTED]@
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-19 18:25:47 +0200 (Wed, 19 Sep 2007)
New Revision: 3014
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
Log:
* Actually commit new documentation
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
===================================================================
---
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
2007-09-19 16:23:28 UTC (rev 3013)
+++
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
2007-09-19 16:25:47 UTC (rev 3014)
@@ -781,6 +781,13 @@
G_CALLBACK (moko_finger_scroll_redraw), self);
}
+/** moko_finger_scroll_new:
+ *
+ * Create a new finger scroll widget
+ *
+ * Returns: the newly created widget
+ */
+
GtkWidget *
moko_finger_scroll_new (void)
{
@@ -801,6 +808,15 @@
NULL);
}
+/** moko_finger_scroll_add_with_viewport:
+ *
+ * @self: A MokoFingerScroll widget
+ * @child: widget you want to add
+ *
+ * Convenience function used to add a child to a GtkViewport, and add the
+ * viewport to the scrolled window.
+ */
+
void
moko_finger_scroll_add_with_viewport (MokoFingerScroll *self, GtkWidget *child)
{
--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-19 18:26:24 +0200 (Wed, 19 Sep 2007)
New Revision: 3015
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
Log:
* libmokoui/moko-hint-entry.c:
* libmokoui/moko-hint-entry.h:
Relicense under LGPL
Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
16:25:47 UTC (rev 3014)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog 2007-09-19
16:26:24 UTC (rev 3015)
@@ -1,5 +1,12 @@
2007-09-19 Thomas Wood <[EMAIL PROTECTED]>
+ * libmokoui/moko-hint-entry.c:
+ * libmokoui/moko-hint-entry.h:
+
+ Relicense under LGPL
+
+2007-09-19 Thomas Wood <[EMAIL PROTECTED]>
+
* Makefile.am:
* autogen.sh:
* configure.ac:
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
2007-09-19 16:25:47 UTC (rev 3014)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
2007-09-19 16:26:24 UTC (rev 3015)
@@ -4,19 +4,21 @@
*
* Copyright (C) 2007 OpenedHand Ltd
*
- * This program is free software; you can redistribute it and/or modify it
under
- * the terms of the GNU General Public License as published by the Free
Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
+ * Relicensed with permission from GPL version 2 to LGPL version 2.1
*
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
Modified:
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
2007-09-19 16:25:47 UTC (rev 3014)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
2007-09-19 16:26:24 UTC (rev 3015)
@@ -5,19 +5,21 @@
*
* Copyright (C) 2007 OpenedHand Ltd
*
- * This program is free software; you can redistribute it and/or modify it
under
- * the terms of the GNU General Public License as published by the Free
Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
+ * Relicensed with permission from GPL version 2 to LGPL version 2.1
*
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _MOKO_HINT_ENTRY
--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog