Thu, 07 Apr 2005 14:55:02 +0000
[gaim-migrate @ 12431]
" The following log snippets should explain it: " --rlaager
(20:24:00) rlaager: Regarding the signal handling
conversation the other day... I've written a patch to stop
calling signal handlers and return as soon as we find one
signal handler that returns TRUE to indicate that it's
handled the signal. Is this the right approach?
(20:24:22) Ethan Blanton (Paco-Paco): the trouble is that it's
documented to behave exactly the way it does
(20:24:31) Ethan Blanton (Paco-Paco): so changing it is
notbackwards compatible
(20:24:31) rlaager: I'm talking for HEAD.
(20:24:41) Ethan Blanton (Paco-Paco): oh, I think that's a
good approach, yes
(20:24:53) rlaager: The way I've described is how I
*expected* it to work, having not read the documentation.
(20:25:09) Ethan Blanton (Paco-Paco): I'm convinced
(20:27:04) Stu Tomlinson (nosnilmot): rlaager: this, I
assume, breaks the generic-ness of signals, by assuming
that any that return values return booleans?
(20:27:26) Ethan Blanton (Paco-Paco): please break it
(20:27:33) Ethan Blanton (Paco-Paco): we already have
out-parameters
(20:27:42) rlaager: nosnilmot: from what I can see, the
return type is handled as a (void *)... so I'm checking that
ret_value != NULL
(20:27:57) rlaager: nosnilmot: that's the correct way to do it,
right?
...
(20:29:01) Ethan Blanton (Paco-Paco): allowing a
meaningful return value is an over-engineering
(20:30:07) rlaager: even after this patch, you should be able
to return meaningful return values
(20:30:15) rlaager: it'll just short-circuit on the first handler
that does
committer: Luke Schierer <lschiere@pidgin.im>
| 10703 | 1 | /* gtkcellview.h |
| 2 | * Copyright (C) 2002, 2003 Kristian Rietveld <kris@gtk.org> | |
| 3 | * | |
| 4 | * This library is free software; you can redistribute it and/or | |
| 5 | * modify it under the terms of the GNU Library General Public | |
| 6 | * License as published by the Free Software Foundation; either | |
| 7 | * version 2 of the License, or (at your option) any later version. | |
| 8 | * | |
| 9 | * This library is distributed in the hope that it will be useful, | |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 | * Library General Public License for more details. | |
| 13 | * | |
| 14 | * You should have received a copy of the GNU Library General Public | |
| 15 | * License along with this library; if not, write to the | |
| 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 17 | * Boston, MA 02111-1307, USA. | |
| 18 | */ | |
| 19 | ||
| 20 | #ifndef __GTK_CELL_VIEW_H__ | |
| 21 | #define __GTK_CELL_VIEW_H__ | |
| 22 | ||
| 23 | #include <gtk/gtkwidget.h> | |
| 24 | #include <gtk/gtkcellrenderer.h> | |
| 25 | #include <gtk/gtktreemodel.h> | |
| 26 | ||
| 27 | G_BEGIN_DECLS | |
| 28 | ||
| 29 | #define GTK_TYPE_CELL_VIEW (gtk_cell_view_get_type ()) | |
| 30 | #define GTK_CELL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_VIEW, GtkCellView)) | |
| 31 | #define GTK_CELL_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_TYPE_CELL_VIEW, GtkCellViewClass)) | |
| 32 | #define GTK_IS_CELL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_VIEW)) | |
| 33 | #define GTK_IS_CELL_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), GTK_TYPE_CELL_VIEW)) | |
| 34 | #define GTK_CELL_VIEW_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), GTK_TYPE_CELL_VIEW, GtkCellViewClass)) | |
| 35 | ||
| 36 | typedef struct _GtkCellView GtkCellView; | |
| 37 | typedef struct _GtkCellViewClass GtkCellViewClass; | |
| 38 | typedef struct _GtkCellViewPrivate GtkCellViewPrivate; | |
| 39 | ||
| 40 | struct _GtkCellView | |
| 41 | { | |
| 42 | GtkWidget parent_instance; | |
| 43 | ||
| 44 | /*< private >*/ | |
| 45 | GtkCellViewPrivate *priv; | |
| 46 | }; | |
| 47 | ||
| 48 | struct _GtkCellViewClass | |
| 49 | { | |
| 50 | GtkWidgetClass parent_class; | |
| 51 | }; | |
| 52 | ||
| 53 | GType gtk_cell_view_get_type (void); | |
| 54 | GtkWidget *gtk_cell_view_new (void); | |
| 55 | GtkWidget *gtk_cell_view_new_with_text (const gchar *text); | |
| 56 | GtkWidget *gtk_cell_view_new_with_markup (const gchar *markup); | |
| 57 | GtkWidget *gtk_cell_view_new_with_pixbuf (GdkPixbuf *pixbuf); | |
| 58 | ||
| 59 | ||
| 60 | void gtk_cell_view_set_value (GtkCellView *cell_view, | |
| 61 | GtkCellRenderer *renderer, | |
| 62 | gchar *property, | |
| 63 | GValue *value); | |
| 64 | void gtk_cell_view_set_values (GtkCellView *cell_view, | |
| 65 | GtkCellRenderer *renderer, | |
| 66 | ...); | |
| 67 | ||
| 68 | void gtk_cell_view_set_model (GtkCellView *cell_view, | |
| 69 | GtkTreeModel *model); | |
| 70 | void gtk_cell_view_set_displayed_row (GtkCellView *cell_view, | |
| 71 | GtkTreePath *path); | |
| 72 | GtkTreePath *gtk_cell_view_get_displayed_row (GtkCellView *cell_view); | |
| 73 | gboolean gtk_cell_view_get_size_of_row (GtkCellView *cell_view, | |
| 74 | GtkTreePath *path, | |
| 75 | GtkRequisition *requisition); | |
| 76 | ||
| 77 | void gtk_cell_view_set_background_color (GtkCellView *cell_view, | |
| 78 | const GdkColor *color); | |
| 79 | ||
| 80 | G_END_DECLS | |
| 81 | ||
| 82 | #endif /* __GTK_CELL_VIEW_H__ */ |