r1894 - in trunk/src/target/OM-2007/openmoko-libs: . libmokoui

thomas at sita.openmoko.org thomas at sita.openmoko.org
Wed May 2 16:29:53 CEST 2007


Author: thomas
Date: 2007-05-02 16:29:51 +0200 (Wed, 02 May 2007)
New Revision: 1894

Added:
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-ui.h
Modified:
   trunk/src/target/OM-2007/openmoko-libs/ChangeLog
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/Makefile.am
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.c
   trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.h
Log:
* libmokoui/Makefile.am:
* libmokoui/moko-ui.h:
Added moko-ui.h to include all libmokoui headers

* libmokoui/moko-stock.c:
* libmokoui/moko-stock.h:
Add copyright headers


Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog	2007-05-02 11:51:00 UTC (rev 1893)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog	2007-05-02 14:29:51 UTC (rev 1894)
@@ -1,5 +1,15 @@
 2007-05-02  Thomas Wood  <thomas at openedhand.com>
 
+	* libmokoui/Makefile.am:
+	* libmokoui/moko-ui.h:
+	Added moko-ui.h to include all libmokoui headers
+
+	* libmokoui/moko-stock.c:
+	* libmokoui/moko-stock.h:
+	Add copyright headers
+
+2007-05-02  Thomas Wood  <thomas at openedhand.com>
+
 	* Makefile.am:
 	* configure.ac:
 	* po/LINGUAS:

Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/Makefile.am
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/Makefile.am	2007-05-02 11:51:00 UTC (rev 1893)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/Makefile.am	2007-05-02 14:29:51 UTC (rev 1894)
@@ -1,4 +1,5 @@
 source_h = \
+    moko-ui.h \
     moko-alignment.h \
     moko-application.h \
     moko-details-window.h \

Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.c	2007-05-02 11:51:00 UTC (rev 1893)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.c	2007-05-02 14:29:51 UTC (rev 1894)
@@ -1,3 +1,23 @@
+/*
+ *  libmokoui -- OpenMoko Application Framework UI Library
+ *
+ *  Authored by OpenedHand Ltd <info at openedhand.com>
+ *
+ *  Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU Lesser Public License as published by
+ *  the Free Software Foundation; version 2 of the license.
+ *
+ *  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 Lesser Public License for more details.
+ *
+ *  Current Version: $Rev$ ($Date$) [$Author$]
+ */
+
+
 #include <gtk/gtk.h>
 #include <moko-stock.h>
 #include <glib/gi18n.h>

Modified: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.h	2007-05-02 11:51:00 UTC (rev 1893)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-stock.h	2007-05-02 14:29:51 UTC (rev 1894)
@@ -1,3 +1,21 @@
+/*
+ *  libmokoui -- OpenMoko Application Framework UI Library
+ *
+ *  Authored by OpenedHand Ltd <info at openedhand.com>
+ *
+ *  Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU Lesser Public License as published by
+ *  the Free Software Foundation; version 2 of the license.
+ *
+ *  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 Lesser Public License for more details.
+ *
+ *  Current Version: $Rev$ ($Date$) [$Author$]
+ */
 
 /*
  * OpenMoko Stock Items
@@ -13,6 +31,10 @@
  *
  */
 
+
+#ifndef _MOKO_STOCK_H_
+#define _MOKO_STOCK_H_
+
 #define MOKO_STOCK_CALL_HANGUP "moko-stock-call-hangup"
 #define MOKO_STOCK_CALL_HOLD "moko-stock-call-hold"
 #define MOKO_STOCK_CALL_REDIAL "moko-stock-call-redial"
@@ -35,3 +57,6 @@
 #define MOKO_STOCK_SMS_NEW "moko-stock-new-sms"
 #define MOKO_STOCK_SPEAKER "moko-stock-speaker"
 #define MOKO_STOCK_VIEW "moko-stock-view"
+
+
+#endif /* _MOKO_STOCK_H_ */

Added: trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-ui.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-ui.h	2007-05-02 11:51:00 UTC (rev 1893)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokoui/moko-ui.h	2007-05-02 14:29:51 UTC (rev 1894)
@@ -0,0 +1,44 @@
+/*
+ *  libmokoui -- OpenMoko Application Framework UI Library
+ *
+ *  Authored by OpenedHand Ltd <info at openedhand.com>
+ *
+ *  Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU Lesser Public License as published by
+ *  the Free Software Foundation; version 2 of the license.
+ *
+ *  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 Lesser Public License for more details.
+ *
+ *  Current Version: $Rev$ ($Date$) [$Author$]
+ */
+
+#ifndef _MOKO_UI_H_
+#define _MOKO_UI_H_
+
+#include "moko-alignment.h"
+#include "moko-application.h"
+#include "moko-details-window.h"
+#include "moko-dialog.h"
+#include "moko-dialog-window.h"
+#include "moko-finger-tool-box.h"
+#include "moko-finger-wheel.h"
+#include "moko-finger-window.h"
+#include "moko-fixed.h"
+#include "moko-menu-box.h"
+#include "moko-message-dialog.h"
+#include "moko-navigation-list.h"
+#include "moko-paned-window.h"
+#include "moko-panel-applet.h"
+#include "moko-pixmap-button.h"
+#include "moko-scrolled-pane.h"
+#include "moko-stock.h"
+#include "moko-tool-box.h"
+#include "moko-tree-view.h"
+#include "moko-window.h"
+
+#endif  /* _MOKO_UI_H_ */





More information about the commitlog mailing list