summaryrefslogtreecommitdiff
path: root/gtk/gtkimcontextxim.c
Commit message (Collapse)AuthorAgeFilesLines
* GdkWindow -> GdkSurface initial type renameAlexander Larsson2018-03-201-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This renames the GdkWindow class and related classes (impl, backend subclasses) to surface. Additionally it renames related types: GdkWindowAttr, GdkWindowPaint, GdkWindowWindowClass, GdkWindowType, GdkWindowTypeHint, GdkWindowHints, GdkWindowState, GdkWindowEdge This is an automatic conversion using the below commands: git sed -f g GdkWindowWindowClass GdkSurfaceSurfaceClass git sed -f g GdkWindow GdkSurface git sed -f g "gdk_window\([ _\(\),;]\|$\)" "gdk_surface\1" # Avoid hitting gdk_windowing git sed -f g "GDK_WINDOW\([ _\(]\|$\)" "GDK_SURFACE\1" # Avoid hitting GDK_WINDOWING git sed "GDK_\([A-Z]*\)IS_WINDOW\([_ (]\|$\)" "GDK_\1IS_SURFACE\2" git sed GDK_TYPE_WINDOW GDK_TYPE_SURFACE git sed -f g GdkPointerWindowInfo GdkPointerSurfaceInfo git sed -f g "BROADWAY_WINDOW" "BROADWAY_SURFACE" git sed -f g "broadway_window" "broadway_surface" git sed -f g "BroadwayWindow" "BroadwaySurface" git sed -f g "WAYLAND_WINDOW" "WAYLAND_SURFACE" git sed -f g "wayland_window" "wayland_surface" git sed -f g "WaylandWindow" "WaylandSurface" git sed -f g "X11_WINDOW" "X11_SURFACE" git sed -f g "x11_window" "x11_surface" git sed -f g "X11Window" "X11Surface" git sed -f g "WIN32_WINDOW" "WIN32_SURFACE" git sed -f g "win32_window" "win32_surface" git sed -f g "Win32Window" "Win32Surface" git sed -f g "QUARTZ_WINDOW" "QUARTZ_SURFACE" git sed -f g "quartz_window" "quartz_surface" git sed -f g "QuartzWindow" "QuartzSurface" git checkout NEWS* po-properties
* Avoid warningsMatthias Clasen2018-03-091-1/+2
| | | | | | When generating introspection data, we instantiate types without calling gtk_init, so make sure that extension points are registered before the type is trying to implement them.
* imcontextxim: Move initialisation into _init functionTimm Bäder2018-03-041-18/+7
| | | | | | We are creating these using g_object_new, so the _new function is never called, resulting in a NULL mb_charset. Fix this by moving the initialisation into the _init function.
* gtkimcontextxim: fix gtk_im_context_xim_set_client_widget not handling ↵Christoph Reiter2018-03-041-2/+5
| | | | | | | | widget=NULL gtk_im_context_set_client_widget() allows passing NULL as widget to signal that the widget no longer exists. The xim implementation didn't handle that case which led to the test suite on gitlab-ci failing.
* xim: Use NULL-safe string comparisonEmmanuele Bassi2018-03-011-1/+1
| | | | The locale string may be NULL.
* Always include platform immodulesMatthias Clasen2018-02-241-0/+1771
No need to load these as gio modules, we just include them in libgtk.