]> Pileus Git - ~andy/gtk/commitdiff
Add a new debug flag, geometry, to debug size allocation.
authorMatthias Clasen <mclasen@redhat.com>
Fri, 8 Oct 2004 15:26:02 +0000 (15:26 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 8 Oct 2004 15:26:02 +0000 (15:26 +0000)
2004-10-08  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkdebug.h:
* gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
flag, geometry, to debug size allocation.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
docs/reference/ChangeLog
docs/reference/gtk/running.sgml
gtk/gtkdebug.h
gtk/gtkmain.c

index c0bdf56cb5745db5d257cda2df63ca520a51d026..4ffacbbcde0491f64c949a304a8a789d6947574f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkdebug.h: 
+       * gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
+       flag, geometry, to debug size allocation.
+
        * gtk/gtktreeview.c (gtk_tree_view_button_press): Set cell data
        unconditionally.  (#152562, Federico Mena Quintero)
 
index c0bdf56cb5745db5d257cda2df63ca520a51d026..4ffacbbcde0491f64c949a304a8a789d6947574f 100644 (file)
@@ -1,5 +1,9 @@
 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkdebug.h: 
+       * gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
+       flag, geometry, to debug size allocation.
+
        * gtk/gtktreeview.c (gtk_tree_view_button_press): Set cell data
        unconditionally.  (#152562, Federico Mena Quintero)
 
index c0bdf56cb5745db5d257cda2df63ca520a51d026..4ffacbbcde0491f64c949a304a8a789d6947574f 100644 (file)
@@ -1,5 +1,9 @@
 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkdebug.h: 
+       * gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
+       flag, geometry, to debug size allocation.
+
        * gtk/gtktreeview.c (gtk_tree_view_button_press): Set cell data
        unconditionally.  (#152562, Federico Mena Quintero)
 
index c0bdf56cb5745db5d257cda2df63ca520a51d026..4ffacbbcde0491f64c949a304a8a789d6947574f 100644 (file)
@@ -1,5 +1,9 @@
 2004-10-08  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkdebug.h: 
+       * gtk/gtkwidget.c (gtk_widget_size_allocate): Add a new debug
+       flag, geometry, to debug size allocation.
+
        * gtk/gtktreeview.c (gtk_tree_view_button_press): Set cell data
        unconditionally.  (#152562, Federico Mena Quintero)
 
index 78517ee8c0135ddbb314366bdd43460f75e8a73f..0e1fcb8463e866b6eab13427e506fc29691b4242 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-08  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/running.sgml: Update list of supported debug flags.
+
 2004-10-06  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/tmpl/gtkenums.sgml: Clarify documentation for selection
index f697d89369d6103072c814b515c4254ec76db658..751f4f57b027b22b4f3853815d842cfd3e5e93c4 100644 (file)
@@ -142,18 +142,39 @@ additional environment variables.
       <term>misc</term>
       <listitem><para>Miscellaneous information</para></listitem>
     </varlistentry>
+    <varlistentry>
+      <term>plugsocket</term>
+      <listitem><para>Cross-process embedding</para></listitem>
+    </varlistentry>
     <varlistentry>
       <term>text</term>
-      <listitem><para>Information about text widget internals</para></listitem>
+      <listitem><para>Text widget internals</para></listitem>
     </varlistentry>
     <varlistentry>
       <term>tree</term>
-      <listitem><para>Information about tree widget internals</para></listitem>
+      <listitem><para>Tree widget internals</para></listitem>
     </varlistentry>
     <varlistentry>
       <term>updates</term>
       <listitem><para>Visual feedback about window updates</para></listitem>
     </varlistentry>
+    <varlistentry>
+      <term>keybindings</term>
+      <listitem><para>Keybindings</para></listitem>
+    </varlistentry>
+    <varlistentry>
+      <term>multihead</term>
+      <listitem><para>Working on multiple displays</para></listitem>
+    </varlistentry>
+    <varlistentry>
+      <term>modules</term>
+      <listitem><para>Loading of modules</para></listitem>
+    </varlistentry>
+    <varlistentry>
+      <term>geometry</term>
+      <listitem><para>Size allocation</para></listitem>
+    </varlistentry>
+
   </variablelist>
   The special value <literal>all</literal> can be used to turn on all debug options.
   </para>
index 6febf849a921c9fb11ce01834e4b630d5c882f62..ff1c0e74a28211656d97282185e45d3dadadd703 100644 (file)
@@ -39,7 +39,8 @@ typedef enum {
   GTK_DEBUG_UPDATES     = 1 << 4,
   GTK_DEBUG_KEYBINDINGS = 1 << 5,
   GTK_DEBUG_MULTIHEAD   = 1 << 6,
-  GTK_DEBUG_MODULES     = 1 << 7
+  GTK_DEBUG_MODULES     = 1 << 7,
+  GTK_DEBUG_GEOMETRY    = 1 << 8
 } GtkDebugFlag;
 
 #ifdef G_ENABLE_DEBUG
index f9d15b1daef53a8a4c154232e5c4825827453f4c..a078645912506caeb4e74d793a477542c88d358c 100644 (file)
@@ -157,7 +157,8 @@ static const GDebugKey gtk_debug_keys[] = {
   {"updates", GTK_DEBUG_UPDATES},
   {"keybindings", GTK_DEBUG_KEYBINDINGS},
   {"multihead", GTK_DEBUG_MULTIHEAD},
-  {"modules", GTK_DEBUG_MODULES}
+  {"modules", GTK_DEBUG_MODULES},
+  {"geometry", GTK_DEBUG_GEOMETRY}
 };
 
 static const guint gtk_ndebug_keys = sizeof (gtk_debug_keys) / sizeof (GDebugKey);