[gtk] Annotate values of PRIORITY constants
- From: Christoph Reiter <creiter src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk] Annotate values of PRIORITY constants
- Date: Sat, 22 Dec 2018 17:53:11 +0000 (UTC)
commit c665a1d5a5b5700cfbaec36832607a5d965f15de
Author: Tomasz Miąsko <tomasz miasko gmail com>
Date: Sat Dec 22 00:00:00 2018 +0000
Annotate values of PRIORITY constants
g-ir-scanner incorrectly evaluates macro definition that include
references to other macro definitions. Provide a correct value as an
annotation.
Differences in generated gir files:
```diff
@@ -19017 +19017 @@
- <constant name="PRIORITY_REDRAW" value="20" c:type="GDK_PRIORITY_REDRAW">
+ <constant name="PRIORITY_REDRAW" value="120" c:type="GDK_PRIORITY_REDRAW">
@@ -74229,3 +74229,3 @@
</constant>
- <constant name="PRIORITY_RESIZE" value="10" c:type="GTK_PRIORITY_RESIZE">
+ <constant name="PRIORITY_RESIZE" value="110" c:type="GTK_PRIORITY_RESIZE">
<doc xml:space="preserve">Use this priority for functionality related to size allocation.
@@ -106786,3 +106786,3 @@
<constant name="TEXT_VIEW_PRIORITY_VALIDATE"
- value="5"
+ value="125"
c:type="GTK_TEXT_VIEW_PRIORITY_VALIDATE">
```
See !472
gdk/gdkevents.h | 2 +-
gtk/gtkmain.h | 2 +-
gtk/gtktextview.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h
index 8ec949c606..5aa74b94ee 100644
--- a/gdk/gdkevents.h
+++ b/gdk/gdkevents.h
@@ -54,7 +54,7 @@ G_BEGIN_DECLS
#define GDK_PRIORITY_EVENTS (G_PRIORITY_DEFAULT)
/**
- * GDK_PRIORITY_REDRAW:
+ * GDK_PRIORITY_REDRAW: (value 120)
*
* This is the priority that the idle handler processing surface updates
* is given in the
diff --git a/gtk/gtkmain.h b/gtk/gtkmain.h
index b80da107d5..81c1e574ad 100644
--- a/gtk/gtkmain.h
+++ b/gtk/gtkmain.h
@@ -40,7 +40,7 @@
G_BEGIN_DECLS
/**
- * GTK_PRIORITY_RESIZE:
+ * GTK_PRIORITY_RESIZE: (value 110)
*
* Use this priority for functionality related to size allocation.
*
diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h
index 09840f29e8..74256b4877 100644
--- a/gtk/gtktextview.h
+++ b/gtk/gtktextview.h
@@ -97,7 +97,7 @@ typedef enum
} GtkTextExtendSelection;
/**
- * GTK_TEXT_VIEW_PRIORITY_VALIDATE:
+ * GTK_TEXT_VIEW_PRIORITY_VALIDATE: (value 125)
*
* The priority at which the text view validates onscreen lines
* in an idle job in the background.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]