Changeset 65850 in webkit


Ignore:
Timestamp:
Aug 23, 2010 6:23:51 PM (14 years ago)
Author:
Martin Robinson
Message:

2010-08-23 Martin Robinson <mrobinson@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GTK] The Mozilla theme drawing API should expose extra information about scrollbar geometry
https://bugs.webkit.org/show_bug.cgi?id=44385

Expose the trough_under_steppers property in MozGtkScrollbarMetrics.

No new tests as this does not change functionality.

  • platform/gtk/gtk2drawing.c: Set the trough_under_steppers member when accessing theme data.
  • platform/gtk/gtkdrawing.h: Add the trough_under_steppers member.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65849 r65850  
     12010-08-23  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GTK] The Mozilla theme drawing API should expose extra information about scrollbar geometry
     6        https://bugs.webkit.org/show_bug.cgi?id=44385
     7
     8        Expose the trough_under_steppers property in MozGtkScrollbarMetrics.
     9
     10        No new tests as this does not change functionality.
     11
     12        * platform/gtk/gtk2drawing.c: Set the trough_under_steppers member when accessing theme data.
     13        * platform/gtk/gtkdrawing.h: Add the trough_under_steppers member.
     14
    1152010-08-23  Darin Adler  <darin@apple.com>
    216
  • trunk/WebCore/platform/gtk/gtk2drawing.c

    r65649 r65850  
    30453045                          "stepper_size", &metrics->stepper_size,
    30463046                          "stepper_spacing", &metrics->stepper_spacing,
     3047                          "trough_under_steppers", &metrics->trough_under_steppers,
    30473048                          NULL);
    30483049
  • trunk/WebCore/platform/gtk/gtkdrawing.h

    r62034 r65850  
    7676  gint stepper_spacing;
    7777  gint min_slider_size;
     78  gboolean trough_under_steppers;
    7879} MozGtkScrollbarMetrics;
    7980
Note: See TracChangeset for help on using the changeset viewer.