[gimp/gtk3-port: 248/391] libgimpwidgets: add gimp_grid_attach_aligned()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 248/391] libgimpwidgets: add gimp_grid_attach_aligned()
- Date: Thu, 10 May 2018 16:11:29 +0000 (UTC)
commit 04720bc0e54f091af0507f4c02c9dcaa2aeefab8
Author: Michael Natterer <mitch gimp org>
Date: Sun Apr 29 02:15:48 2018 +0200
libgimpwidgets: add gimp_grid_attach_aligned()
libgimpwidgets/gimpwidgetsutils.c | 52 +++++++++++++++++++++++++++++++++++++
libgimpwidgets/gimpwidgetsutils.h | 8 +++++
2 files changed, 60 insertions(+), 0 deletions(-)
---
diff --git a/libgimpwidgets/gimpwidgetsutils.c b/libgimpwidgets/gimpwidgetsutils.c
index 1dee6b7..32688ef 100644
--- a/libgimpwidgets/gimpwidgetsutils.c
+++ b/libgimpwidgets/gimpwidgetsutils.c
@@ -175,6 +175,58 @@ gimp_table_attach_aligned (GtkTable *table,
}
/**
+ * gimp_grid_attach_aligned:
+ * @grid: The #GtkGrid the widgets will be attached to.
+ * @left: The column to start with.
+ * @top: The row to attach the widgets.
+ * @label_text: The text for the #GtkLabel which will be attached left of
+ * the widget.
+ * @xalign: The horizontal alignment of the #GtkLabel.
+ * @yalign: The vertical alignment of the #GtkLabel.
+ * @widget: The #GtkWidget to attach right of the label.
+ * @columns: The number of columns the widget will use.
+ *
+ * Note that the @label_text can be %NULL and that the widget will be
+ * attached starting at (@column + 1) in this case, too.
+ *
+ * Returns: The created #GtkLabel.
+ **/
+GtkWidget *
+gimp_grid_attach_aligned (GtkGrid *grid,
+ gint left,
+ gint top,
+ const gchar *label_text,
+ gfloat xalign,
+ gfloat yalign,
+ GtkWidget *widget,
+ gint columns)
+{
+ GtkWidget *label = NULL;
+
+ if (label_text)
+ {
+ GtkWidget *mnemonic_widget;
+
+ label = gtk_label_new_with_mnemonic (label_text);
+ gtk_label_set_xalign (GTK_LABEL (label), xalign);
+ gtk_label_set_yalign (GTK_LABEL (label), yalign);
+ gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
+ gtk_grid_attach (grid, label, left, top, 1, 1);
+ gtk_widget_show (label);
+
+ mnemonic_widget = find_mnemonic_widget (widget, 0);
+
+ if (mnemonic_widget)
+ gtk_label_set_mnemonic_widget (GTK_LABEL (label), mnemonic_widget);
+ }
+
+ gtk_grid_attach (grid, widget, left + 1, top, columns, 1);
+ gtk_widget_show (widget);
+
+ return label;
+}
+
+/**
* gimp_label_set_attributes:
* @label: a #GtkLabel
* @...: a list of PangoAttrType and value pairs terminated by -1.
diff --git a/libgimpwidgets/gimpwidgetsutils.h b/libgimpwidgets/gimpwidgetsutils.h
index 66c168f..231f8c6 100644
--- a/libgimpwidgets/gimpwidgetsutils.h
+++ b/libgimpwidgets/gimpwidgetsutils.h
@@ -39,6 +39,14 @@ GtkWidget * gimp_table_attach_aligned (GtkTable *table,
GtkWidget *widget,
gint colspan,
gboolean left_align);
+GtkWidget * gimp_grid_attach_aligned (GtkGrid *grid,
+ gint left,
+ gint top,
+ const gchar *label_text,
+ gfloat xalign,
+ gfloat yalign,
+ GtkWidget *widget,
+ gint columns);
void gimp_label_set_attributes (GtkLabel *label,
...);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]