aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Small <csmall@src.gnome.org>1998-03-31 11:40:28 +0800
committerCraig Small <csmall@src.gnome.org>1998-03-31 11:40:28 +0800
commit0d8c9252ca14c3aa0e63ca7d807d5a569597e247 (patch)
tree0e6d5fdf3e740339f93b289ea0cbd2056d330d00
parentee2e59f3f08950b1fcc20ee6dceff20edebaa857 (diff)
downloadgsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar.gz
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar.bz2
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar.lz
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar.xz
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.tar.zst
gsoc2013-evolution-0d8c9252ca14c3aa0e63ca7d807d5a569597e247.zip
added clist.[ch]
svn path=/trunk/; revision=78
-rw-r--r--calendar/Makefile.am4
-rw-r--r--calendar/clist.c97
-rw-r--r--calendar/clist.h2
-rw-r--r--calendar/gui/Makefile.am4
4 files changed, 105 insertions, 2 deletions
diff --git a/calendar/Makefile.am b/calendar/Makefile.am
index 9cac22c259..f4c7ead95d 100644
--- a/calendar/Makefile.am
+++ b/calendar/Makefile.am
@@ -9,7 +9,9 @@ gncal_SOURCES = \
gncal.c \
gncal.h \
calcs.c \
- calcs.h
+ calcs.h \
+ clist.c \
+ clist.h
gncal_LDADD = \
$(GNOME_LIBDIR) \
diff --git a/calendar/clist.c b/calendar/clist.c
new file mode 100644
index 0000000000..8491d45174
--- /dev/null
+++ b/calendar/clist.c
@@ -0,0 +1,97 @@
+/*
+ * clist.c: All the good stuf to work with the clists that are used for the
+ * tasklist.
+ *
+ * This file is largely based upon GTT code by Eckehard Berns.
+ *
+ * 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.
+ *
+ * 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+#include <config.h>
+#include <gnome.h>
+
+static void
+select_row(GtkCList *clist, gint row, gint col, GdkEventButton *event)
+{
+ if (!event) return;
+
+ g_print("select_row, row=%d col=%d button=%d\n", row, col, event->button);
+}
+
+static void
+unselect_row(GtkCList *clist, gint row, gint col, GdkEventButton *event)
+{
+ if (!event) return;
+
+ g_print("unselect_row, row=%d col=%d button=%d\n", row, col, event->button);
+}
+
+static void
+click_column(GtkCList *clist, gint col)
+{
+
+ g_print("click_column, col=%d\n ", col);
+}
+
+
+
+
+GtkWidget * create_clist(void)
+{
+ GtkStyle *style;
+ GdkGCValues vals;
+
+ GtkWidget *clist;
+ char *titles[2] = {
+ N_("Time"),
+ N_("Event")
+ };
+
+ titles[0] = _(titles[0]);
+ titles[1] = _(titles[1]);
+ clist = gtk_clist_new_with_titles(2,titles);
+ gtk_clist_set_selection_mode(GTK_CLIST(clist), GTK_SELECTION_SINGLE);
+ gtk_clist_set_column_justification(GTK_CLIST(clist), 0, GTK_JUSTIFY_CENTER);
+ style = gtk_widget_get_style(clist);
+ g_return_val_if_fail(style != NULL, NULL);
+ gdk_gc_get_values(style->fg_gc[0], &vals);
+ gtk_clist_set_column_width(GTK_CLIST(clist), 0, gdk_string_width(vals.font, "00:00"));
+ gtk_clist_set_policy(GTK_CLIST(clist),
+ GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
+ gtk_signal_connect(GTK_OBJECT(clist), "select_row",
+ GTK_SIGNAL_FUNC(select_row), NULL);
+ gtk_signal_connect(GTK_OBJECT(clist), "click_column",
+ GTK_SIGNAL_FUNC(click_column), NULL);
+ gtk_signal_connect(GTK_OBJECT(clist), "unselect_row",
+ GTK_SIGNAL_FUNC(unselect_row), NULL);
+ return clist;
+}
+
+void
+setup_clist(GtkWidget *clist)
+{
+ char buf1[10];
+ char buf2[1000] = "Programming GNOME";
+ char *tmp[2] = { buf1, buf2 };
+ int i, row;
+
+ gtk_clist_freeze(GTK_CLIST(clist));
+ gtk_clist_clear(GTK_CLIST(clist));
+ for (i=0; i < 24; i++) {
+ sprintf(buf1, "%d:00", i);
+ row = gtk_clist_append(GTK_CLIST(clist), tmp);
+ }
+ gtk_clist_thaw(GTK_CLIST(clist));
+
+}
diff --git a/calendar/clist.h b/calendar/clist.h
new file mode 100644
index 0000000000..061c1b316c
--- /dev/null
+++ b/calendar/clist.h
@@ -0,0 +1,2 @@
+GtkWidget *create_clist(void);
+void setup_clist(GtkWidget *clist);
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am
index 9cac22c259..f4c7ead95d 100644
--- a/calendar/gui/Makefile.am
+++ b/calendar/gui/Makefile.am
@@ -9,7 +9,9 @@ gncal_SOURCES = \
gncal.c \
gncal.h \
calcs.c \
- calcs.h
+ calcs.h \
+ clist.c \
+ clist.h
gncal_LDADD = \
$(GNOME_LIBDIR) \