summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* GDK: Prefix key names with KEY_Colin Walters2010-09-0816-402/+402
| | | | | | | | | | | | | The keysyms create a lot of potential namespace conflicts for C, and are especially problematic for introspection, where we take constants into the namespace, so GDK_Display conflicts with GdkDisplay. For C application compatiblity, add gdkkeysyms-compat.h which uses the old names. Just one user in GTK+ continues to use gdkkeysyms-compat.h, which is the gtkimcontextsimple.c, since porting that requires porting more custom Perl code.
* Replace gtk_debug_flags with getter and setter functionsTor Lillqvist2010-09-081-1/+1
| | | | | | Preferrably should be made just into a local variable for libgtk like _gdk_debug_flags for libgdk. But for now used by gtk/tests/textbuffer.c and modules/printbackends/cups/gtkprintbackendcups.c.
* MS Windows engine: draw elements in the right place.Martin Schlemmer2010-09-032-49/+28
| | | | Work in progress, still remains to be solved the problem of clipping.
* Oops, make the MS Windows theme really compile.Fridrich Štrba2010-09-021-3/+2
|
* Make the MS Windows engine compile again.Fridrich Štrba2010-09-022-0/+38
| | | | | Nevertheless, it is not working and needs a lot of fixing before it can be useful.
* Avoid potential DLL hijacking in ms-windows theme engineTor Lillqvist2010-09-021-1/+27
| | | | | | Load uxtheme.dll from an absolute path. A proper uxtheme.dll, if present, will always be in the Windows system directory, so load it from there.
* Adapt to progressbar api changeFridrich Štrba2010-09-021-3/+2
|
* Porting MS Windows theme engine to cairo - Part 1: stipplingFridrich Štrba2010-08-311-72/+127
|
* Porting the MS Windows theme engine to cairo - Part 2 rectangle and line drawingFridrich Štrba2010-08-311-255/+168
|
* Gail: use accessor functions to access GtkScrolledWindowJavier Jardón2010-08-312-12/+12
|
* Fixed minimum increment calculation of GailScaleButton.Szilárd Pfeiffer2010-08-302-49/+106
| | | | | | | | Also implemented to use the adjustment to determine the current, minimum, maximum values and mimimum increment just as the other widgets which have adjustment. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=626710
* [win32] Properly draw the menu separator for Windows Vista/7.Martin Schlemmer2010-08-304-2/+91
| | | | Also adds the bits for transparency.
* [win32] Use pango_win32_font_description_from_logfontw() to getMartin Schlemmer2010-08-301-295/+40
| | | | the system font, instead of the code duplication.
* [win32] Fix some warnings related to type differences and unused variablesMartin Schlemmer2010-08-301-18/+15
|
* modules/other/gail/gailtogglebutton.c: Add/remove indeterminate stateSzilárd Pfeiffer2010-08-291-11/+14
| | | | | | | GailToggleButton does not set/unset ATK_STATE_INDETERMINATE according to the value of GtkToggleButton's inconsistent property. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=626537
* Use accessor functions to access GtkRangeJavier Jardón2010-08-231-6/+10
|
* gail: Use accessor functions to access GtkWindowJavier Jardón2010-08-235-18/+16
|
* modules/input/gtkimcontextxim.c: Use accessors to GtkWidgetJavier Jardón2010-08-221-9/+18
|
* Gail: use accessor functions to access GtkWidgetJavier Jardón2010-08-2210-49/+73
|
* Miscellaneous string fixesPhilip Withnall2010-08-221-1/+1
| | | | Mostly capitalisation fixes. Closes: bgo#528257
* Make print backends use standard icon names for printersMatthias Clasen2010-08-185-9/+9
| | | | | This is to make the print dialog work with the previous commit. See bug 626474.
* API: Remove GtkTextTag's stipple propertiesBenjamin Otte2010-08-101-32/+0
| | | | | They seem pretty much unused and the only reason why GtkTextView uses a GdkPangoRenderer and not a PangoCairoRenderer.
* image: remove GdkImage as a possible image typeBenjamin Otte2010-08-101-8/+0
| | | | GdkImage is about to be deprecated.
* Fix gail_notebook_get_selection_count()Matthias Clasen2010-08-091-1/+1
| | | | | This function should return 0 for empty notebooks. Based on a patch by Mike Gorse, bug 557263.
* Add missing accessors for notebook detailsSam Thursfield2010-08-091-6/+6
| | | | | The ms-windows theme engine needs to access the tab-{h,v}border, so add accessors. Bug 625655.
* Towards GSEAL-clean build on win32Sam Thursfield2010-08-091-1/+1
| | | | | Use accessors instead of direct member access in a few places. Bug 625655.
* Implement GailAdjustment::get_minimium_incrementSzilárd Pfeiffer2010-08-093-0/+84
| | | | ...and use it in GailRange and GailSpinButton. Bug 625953.
* Make Gail work with custom treemodelsSzilárd Pfeiffer2010-08-091-6/+6
| | | | | | Gail did set the role to ATK_ROLE_TABLE for anything that is not a GtkTreeStore. The propery way to do this is to look at the tree model flags for list-onlyness. Bug 580291.
* pixbuf-engine: Draw mask with CairoBenjamin Otte2010-07-261-6/+10
| | | | No more gdk_pixbuf_render_threshold_alpha()
* pixbuf-engine: replace call to gdk_draw_pixbuf() with Cairo equivalentBenjamin Otte2010-07-261-7/+12
|
* pixbuf-engine: Replace gdk_draw_pixbuf() with Cairo equivalentBenjamin Otte2010-07-261-26/+10
| | | | This replaces the tiled fill call only.
* imcontextxim: Draw with CairoBenjamin Otte2010-07-261-10/+15
|
* cups: Fix cast warningsBenjamin Otte2010-07-261-2/+2
|
* gail-util: Constify gchar argumentEmmanuele Bassi2010-07-162-2/+2
| | | | | | And avoid a compiler warning. https://bugzilla.gnome.org/show_bug.cgi?id=624349
* Use accessor functions to access GtkStatusbarJavier Jardón2010-07-131-1/+4
|
* Use accessor functions to access GtkSpinButtonJavier Jardón2010-07-131-5/+9
|
* Use accessor functions to access GtkScrolledWindowJavier Jardón2010-07-131-13/+21
|
* Use accessor functions to access GtkPanedJavier Jardón2010-07-131-2/+6
|
* Use accessor funtions to acces GtkImageJavier Jardón2010-07-131-3/+5
|
* Use accessor functions to access GtkDialogJavier Jardón2010-07-131-12/+11
|
* Use GtkBin accessorsJavier Jardón2010-07-135-8/+11
|
* Use accessor functions to access GtkCheckMenuItemJavier Jardón2010-07-133-9/+9
|
* gtkcellrendererpixbuf: Move public members to private structureJavier Jardón2010-07-131-1/+1
|
* Use accessor functions to access GtkCellRendererTextJavier Jardón2010-07-131-38/+98
|
* Use accessor functions to access GtkCellRendererJavier Jardón2010-07-131-5/+9
|
* Use accessor functions to access GtkAccesible variablesJavier Jardón2010-07-1346-352/+359
|
* gtkarrow: Move public members to private structureJavier Jardón2010-07-131-7/+14
|
* Use accessor functions to access GtkNotebookJavier Jardón2010-07-133-31/+18
|
* Deprecate GtkNotebookPage as used in switch-pageChristian Dywan2010-07-131-0/+4
| | | | Fixes: 618327
* Move sealed attributes to private struct.Ignacio Casal Quinteiro2010-07-121-22/+22
|