summaryrefslogtreecommitdiff
path: root/eel
AgeCommit message (Collapse)AuthorFilesLines
2016-01-15GTK3 all: don't use deprecated GDK pointer methodsWolfgang Ulbrich2-0/+19
Use the new GdkDevice methods instead. taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-4&id=a816e00 https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-4&id=cdf858f
2016-01-15GTK3 general: don't use gdk_cursor_unref()Wolfgang Ulbrich1-2/+4
taken from: https://git.gnome.org/browse/nautilus/commit/?id=74a8f78
2016-01-15GTK3 eel-editable-label: don't use deprecated gtk_widget_get_requisition ()Wolfgang Ulbrich1-0/+4
gtk_widget_get_requisition () --> gtk_widget_get_preferred_size ()
2016-01-15GTK3: don't use deprecated gdk_threads_{enter/leave} ()Wolfgang Ulbrich1-0/+4
Since we don't ever call gdk_threads_init()
2016-01-15GTK3: don't use deprecated gtk_widget_size_requestWolfgang Ulbrich4-10/+22
gtk_widget_size_request --> gtk_widget_get_preferred_size
2016-01-13GTK3 editable-Label: render backgroundWolfgang Ulbrich1-4/+9
Without this the rename widget background is always transparent, which makes it very hard to read on e.g. the desktop with a background image. taken from: https://git.gnome.org/browse/nautilus/commit/?id=c3b2b0a
2016-01-13GTK3 editable-label: fix selection color in backdrop stateWolfgang Ulbrich1-3/+2
Don't set the ACTIVE flag if we don't have focus, it just doesn't make sense. taken from: https://git.gnome.org/browse/nautilus/commit/?id=845d3fc
2016-01-13GTK3 editable-label: use GTK_STYLE_CLASS_ENTRYWolfgang Ulbrich1-0/+4
Because that's what it is actually... taken from: https://git.gnome.org/browse/nautilus/commit/?id=e54ace0
2016-01-13GTK3 editable-label: use gtk_render_frame() instead of hardcoding a strokeWolfgang Ulbrich1-10/+8
This allows the stroke to use rounded corners and border images, among other things. taken from: https://git.gnome.org/browse/nautilus/commit/?id=b143b95
2016-01-13GTK3 editable-label: don't hardcode black for the insertion cursorWolfgang Ulbrich1-4/+10
Use the theme foreground/text color instead. taken from: https://git.gnome.org/browse/nautilus/commit/?id=f9383ac
2016-01-13GTK3 editable-label: make sure to size_request the padding set on the labelWolfgang Ulbrich1-0/+9
And not the alignment, which is an offset inside the allocated size. taken from: https://git.gnome.org/browse/nautilus/commit/?id=8b87a3e
2016-01-13GTK3 editable-label: chain up in style_updated()Wolfgang Ulbrich1-0/+4
taken from: https://git.gnome.org/browse/nautilus/commit/?id=fbabd8e
2016-01-13GTK3 editable-label: fix some drawing regressionsWolfgang Ulbrich1-219/+10
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=6d079cc
2016-01-13GTK3 editable-label: use gtk_style_context_get() to query standard propsWolfgang Ulbrich1-4/+7
Also, fix a leak. taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=ef8544b
2016-01-13GTK3 editable-label: copy-paste code from GTK+ to sync drawing with GtkLabelWolfgang Ulbrich1-3/+220
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=ca9f8d8 https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=e3feaf8 https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=caa55b7
2016-01-13Gtk3 eel-gtk-extensions: do not use gtk_widget_modify_fontWolfgang Ulbrich1-1/+5
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=b5302eb
2016-01-13GTK3 eel-gdk-extensions: port to GtkStyleContextWolfgang Ulbrich2-17/+42
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=1d3dd96
2016-01-13GTK3 eel-gdk-pixbuf: use GdkRGBA everywhereWolfgang Ulbrich4-0/+42
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=020adaf
2016-01-13GTK3 editable-label: port to GtkStyleContextWolfgang Ulbrich1-24/+152
There are still some rendering artifacts, but we will fix them later. (maybe) taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=d6e07c7
2016-01-13Gtk3 eel-canvas: port to GtkStyleContextWolfgang Ulbrich1-1/+5
2016-01-13GTK3 eel-canvas-rect: use RGBA colors onlyWolfgang Ulbrich2-0/+88
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=f0691e7
2016-01-13GTK3 eel-gdk-extensions: add eel_make_color_inactive() to public APIWolfgang Ulbrich2-0/+35
taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=42e7268
2015-12-24eel: remove unused functionMonsta2-43/+0
2015-12-21Typo fix in code and g_param_spec: homogenous -> homogeneous.Mike Gabriel2-4/+4
2015-10-19GTK3: do not use deprecated gtk_misc_set_alignmentraveit652-0/+14
2015-10-19GTK3: Replace gtk_{v,h}box new with gtk_box_newraveit651-0/+4
- gtk_{v,h}box usage is deprecated since gtk+-3.2.0
2015-07-09Use accessor functions instead of direct accessinfirit1-5/+0
2015-06-19[GTK+3] eel: fix bad positioning of rename window in certain casesMonsta1-4/+15
adapted from https://github.com/linuxmint/nemo/commit/d5377cfd53034b6ab5588376322126f48782ec59 (thanks to @mtwebster and nautilus developer who did the original commit) fixes https://github.com/mate-desktop/caja/issues/376
2015-06-18editable-label GTk3: only clear the selection if we change to insensitiveraveit651-1/+3
this fixes non selected text if renaming a file taken from: https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-0&id=d2c3410
2015-01-13drop support for GLib < 2.36Monsta2-6/+0
Closes https://github.com/mate-desktop/caja/pull/372
2015-01-12use mate_gdk_spawn_command_line_on_screen like other MATE apps doMonsta1-18/+2
Closes https://github.com/mate-desktop/caja/pull/370
2014-12-10zero-init all signals arraysMonsta2-3/+3
2014-12-10NULL-init a pointer for g_assert to work correctlymonsta1-1/+1
2014-12-10eel: fix logic a bitMonsta1-4/+6
2014-03-22fix missing guchar argument in eel-gdk-pixbuf-extensions.craveit651-2/+2
2014-03-22fix g_atomic_int_exchange_and_add deprecationsraveit651-0/+4
2014-03-22fix a wrong guint argumentraveit651-1/+1
2014-01-14Use memmove with latest glib (>= 2.39)Stefano Karapetsas1-0/+5
g_memmove is removed in https://git.gnome.org/browse/glib/commit/?id=6e4a7fca431f53fdfd89afbe956212229cf52200
2013-11-30Fix assertion failture on max_child_sizeBalló György1-0/+3
This fixes the crasher when opening properties.
2013-10-06Properly free GHashTable in properties windowStefano Karapetsas2-0/+34
Closes #178 https://github.com/mate-desktop/mate-file-manager/issues/178 I had to recover two functions previously removed in eel-glib-extensions.
2013-07-25eel: Add GDK3 supportStefano Karapetsas1-0/+17
2013-07-24eel: Add GTK3 supportStefano Karapetsas8-7/+185
2013-07-24eel: Disable unused function in GTK3Stefano Karapetsas2-0/+5
2013-07-24Update for mate-desktop changesStefano Karapetsas3-3/+3
2013-07-23eel: depth argument is removed from gdk_window_get_geometry in GTK3Stefano Karapetsas1-0/+4
2013-07-23Fix typoStefano Karapetsas1-1/+1
2013-07-18INCLUDES to AM_CPPFLAGSWolfgang Ulbrich1-1/+1
2013-06-29Fixes for make distStefano Karapetsas1-0/+1
2013-04-05Fix vpath buildYaakov Selkowitz1-0/+1
2013-02-24Dont corrupt the default background colorStefano Karapetsas1-30/+31