summaryrefslogtreecommitdiff
path: root/eel/eel-editable-label.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-06-26 17:52:35 +0200
committerraveit65 <[email protected]>2016-07-08 15:24:08 +0200
commit62ae31a8874cea0d8e8a4ad9547a164fa22db681 (patch)
treeecfb9bf7cfd4ea91bffd243488205e97243aa804 /eel/eel-editable-label.c
parent7c7eb8def5a6436e4d5105a7e5c45ea8361935dc (diff)
downloadcaja-62ae31a8874cea0d8e8a4ad9547a164fa22db681.tar.bz2
caja-62ae31a8874cea0d8e8a4ad9547a164fa22db681.tar.xz
GTK+-3 eel-editable-label: drop usage of GtkMisc
and use halign and valign with help from Vlad Orlov
Diffstat (limited to 'eel/eel-editable-label.c')
-rw-r--r--eel/eel-editable-label.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/eel/eel-editable-label.c b/eel/eel-editable-label.c
index 03b59063..5c73d22b 100644
--- a/eel/eel-editable-label.c
+++ b/eel/eel-editable-label.c
@@ -210,7 +210,11 @@ static void editable_real_set_position (GtkEditable *editable,
gint position);
static gint editable_get_position (GtkEditable *editable);
+#if GTK_CHECK_VERSION (3, 0, 0)
+G_DEFINE_TYPE_WITH_CODE (EelEditableLabel, eel_editable_label, GTK_TYPE_WIDGET,
+#else
G_DEFINE_TYPE_WITH_CODE (EelEditableLabel, eel_editable_label, GTK_TYPE_MISC,
+#endif
G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE, eel_editable_label_editable_init));
static void
@@ -1324,12 +1328,32 @@ eel_editable_label_direction_changed (GtkWidget *widget,
GTK_WIDGET_CLASS (eel_editable_label_parent_class)->direction_changed (widget, previous_dir);
}
+#if GTK_CHECK_VERSION (3, 0, 0)
+static gfloat
+gtk_align_to_gfloat (GtkAlign align)
+{
+ switch (align) {
+ case GTK_ALIGN_START:
+ return 0.0;
+ case GTK_ALIGN_END:
+ return 1.0;
+ case GTK_ALIGN_CENTER:
+ case GTK_ALIGN_FILL:
+ return 0.5;
+ default:
+ return 0.0;
+ }
+}
+#endif
+
static void
get_layout_location (EelEditableLabel *label,
gint *xp,
gint *yp)
{
+#if !GTK_CHECK_VERSION (3, 0, 0)
GtkMisc *misc;
+#endif
GtkWidget *widget;
gfloat xalign, yalign;
GtkRequisition req;
@@ -1339,9 +1363,16 @@ get_layout_location (EelEditableLabel *label,
#endif
GtkAllocation allocation;
+#if !GTK_CHECK_VERSION (3, 0, 0)
misc = GTK_MISC (label);
+#endif
widget = GTK_WIDGET (label);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ xalign = gtk_align_to_gfloat (gtk_widget_get_halign (widget));
+ yalign = gtk_align_to_gfloat (gtk_widget_get_valign (widget));
+#else
gtk_misc_get_alignment (misc, &xalign, &yalign);
+#endif
if (gtk_widget_get_direction (widget) != GTK_TEXT_DIR_LTR)
xalign = 1.0 - xalign;
@@ -1360,6 +1391,15 @@ get_layout_location (EelEditableLabel *label,
#endif
gtk_widget_get_allocation (widget, &allocation);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ x = floor (0.5 + xpad
+ + ((allocation.width - req.width) * xalign)
+ + 0.5);
+
+ y = floor (0.5 + ypad
+ + ((allocation.height - req.height) * yalign)
+ + 0.5);
+#else
x = floor (xpad
+ ((allocation.width - req.width) * xalign)
+ 0.5);
@@ -1367,6 +1407,7 @@ get_layout_location (EelEditableLabel *label,
y = floor (ypad
+ ((allocation.height - req.height) * yalign)
+ 0.5);
+#endif
if (xp)
*xp = x;