summaryrefslogtreecommitdiff
path: root/gtk/gtktooltipprivate.h
Commit message (Collapse)AuthorAgeFilesLines
* Convert headers to #pragma onceMatthias Clasen2023-03-311-3/+1
| | | | The conversion was done by guard2one.
* Replace "gint" with "int"Benjamin Otte2020-07-251-4/+4
|
* Unset tooltip window earlierMatthias Clasen2020-05-111-0/+1
| | | | | This avoids a crash when the tooltip window tries to update its action muxers.
* tooltip: Add private api to allocate the windowMatthias Clasen2020-05-061-0/+3
| | | | | | | | | | Add private gtk_tooltip_maybe_allocate() function and use it from GtkWindow and GtkPopover. This will let us stop using the ::size-allocate signal, without having to redo all the tooltip management first. That will happen later.
* Make crossing events handled the same wayMatthias Clasen2020-02-211-1/+2
|
* tooltip: Remove gtk_tooltip_trigger_tooltip_queryTimm Bäder2019-01-181-0/+1
| | | | | | As stated by the documentation, this should be called when a widget gets updated, but in that case, one can equally use gtk_widget_trigger_tooltip_query.
* tooltips: Remove keyboard mode tooltipsTimm Bäder2019-01-181-3/+0
| | | | | Keyboard mode was only used in gtk_widget_real_show_help before, but now that's gone and so is any usage of keyboard mode tooltips.
* Continue renaming window to surfaceAlexander Larsson2018-03-211-3/+3
| | | | This renames a lot of arguments, local variables and functions.
* GdkWindow -> GdkSurface initial type renameAlexander Larsson2018-03-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* GtkTooltip: Move nonexported API to a private headerMatthias Clasen2014-10-191-0/+49
This is our standard practice nowadays.