[gcompris/gcomprixogoo] Added missing files.
- From: Bruno Coudoin <bcoudoin src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gcompris/gcomprixogoo] Added missing files.
- Date: Mon, 5 Apr 2010 19:01:28 +0000 (UTC)
commit 5ce7ff698b04050473ece92206e1e43741a2b4ff
Author: Bruno Coudoin <bruno coudoin free fr>
Date: Mon Apr 5 21:01:10 2010 +0200
Added missing files.
src/gcompris/status.c | 109 +++++++++++++++++++++++++++++++++++++++++++++++++
src/gcompris/status.h | 30 +++++++++++++
2 files changed, 139 insertions(+), 0 deletions(-)
---
diff --git a/src/gcompris/status.c b/src/gcompris/status.c
new file mode 100644
index 0000000..6308827
--- /dev/null
+++ b/src/gcompris/status.c
@@ -0,0 +1,109 @@
+/* gcompris - status.c
+ *
+ * Copyright (C) 2010 Bruno Coudoin
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <string.h>
+
+#include "gcompris.h"
+
+static GooCanvasItem *rootStatusItem = NULL;
+static GooCanvasItem *itemStatusMsg = NULL;
+
+/*
+ * Close the status box if it was open. It not, do nothing.
+ */
+void gc_status_close() {
+
+ /* If we already running delete the previous one */
+ if(rootStatusItem) {
+ goo_canvas_item_remove(rootStatusItem);
+ }
+
+ rootStatusItem = NULL;
+ itemStatusMsg = NULL;
+
+}
+
+/*
+ * Display a status box
+ * with the given initial message
+ */
+void gc_status_init(gchar *msg)
+{
+ g_warning("Status=%s\n", msg);
+
+ /* If we are already running do nothing */
+ if(rootStatusItem) {
+ g_warning("Cannot run a status box, one is already running. Message = %s\n", msg);
+ return;
+ }
+
+ if(gc_get_canvas() == NULL)
+ {
+ g_warning("Cannot run a status box, canvas not initialized yet = %s\n", msg);
+ return;
+ }
+
+ rootStatusItem =
+ goo_canvas_group_new (goo_canvas_get_root_item(gc_get_canvas()),
+ NULL);
+ /* Set the new canvas to the background color or it's white */
+ guint offsetx = 100;
+ guint offsety = 200;
+ GooCanvasItem *item =
+ goo_canvas_rect_new (rootStatusItem,
+ offsetx,
+ offsety,
+ BOARDWIDTH - offsetx * 2,
+ BOARDHEIGHT - offsety * 2,
+ "fill-color-rgba", 0xD0D0D0D0L,
+ "stroke_color_rgba", 0x000000FFL,
+ "line-width", 1.0,
+ "radius-x", (double) 10,
+ "radius-y", (double) 10,
+ NULL);
+
+ GooCanvasBounds bounds;
+ goo_canvas_item_get_bounds(item, &bounds);
+
+ itemStatusMsg = \
+ goo_canvas_text_new (rootStatusItem,
+ msg,
+ BOARDWIDTH / 2,
+ bounds.y1 + (bounds.y2 - bounds.y1) / 2,
+ (bounds.x2 - bounds.x1) - 20,
+ GTK_ANCHOR_CENTER,
+ NULL);
+
+ while (gtk_events_pending())
+ gtk_main_iteration();
+}
+
+/*
+ * Update the message in the status box
+ */
+void gc_status_set_msg(gchar *msg)
+{
+ g_assert(itemStatusMsg);
+ g_assert(rootStatusItem);
+
+ g_object_set (itemStatusMsg,
+ "text", msg,
+ NULL);
+ while (gtk_events_pending())
+ gtk_main_iteration();
+}
diff --git a/src/gcompris/status.h b/src/gcompris/status.h
new file mode 100644
index 0000000..cac01c5
--- /dev/null
+++ b/src/gcompris/status.h
@@ -0,0 +1,30 @@
+/* gcompris - status.h
+ *
+ * Copyright (C) 2010 Bruno Coudoin
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _STATUS_H_
+#define _STATUS_H_
+
+
+
+/* Status box */
+void gc_status_init(gchar *str);
+void gc_status_close();
+void gc_status_set_msg(gchar *str);
+
+
+#endif
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]