gtk4/auto/functions.rs
1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5#[cfg(target_os = "linux")]
6#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
7use crate::Printer;
8use crate::{
9 ffi, Accessible, AccessibleProperty, AccessibleRelation, AccessibleRole, AccessibleState,
10 DebugFlags, PageSetup, PrintSettings, StyleContext, TextDirection, TreeModel, TreePath, Widget,
11 Window,
12};
13use glib::{prelude::*, translate::*};
14use std::boxed::Box as Box_;
15
16/// Gets the modifier mask.
17///
18/// The modifier mask determines which modifiers are considered significant
19/// for keyboard accelerators. This includes all keyboard modifiers except
20/// for `GDK_LOCK_MASK`.
21///
22/// # Returns
23///
24/// the modifier mask for accelerators
25#[doc(alias = "gtk_accelerator_get_default_mod_mask")]
26pub fn accelerator_get_default_mod_mask() -> gdk::ModifierType {
27 assert_initialized_main_thread!();
28 unsafe { from_glib(ffi::gtk_accelerator_get_default_mod_mask()) }
29}
30
31/// Checks that the GTK library in use is compatible with the
32/// given version.
33///
34/// Generally you would pass in the constants `GTK_MAJOR_VERSION`,
35/// `GTK_MINOR_VERSION`, `GTK_MICRO_VERSION` as the three arguments
36/// to this function; that produces a check that the library in
37/// use is compatible with the version of GTK the application or
38/// module was compiled against.
39///
40/// Compatibility is defined by two things: first the version
41/// of the running library is newer than the version
42/// @required_major.required_minor.@required_micro. Second
43/// the running library must be binary compatible with the
44/// version @required_major.required_minor.@required_micro
45/// (same major version.)
46///
47/// This function is primarily for GTK modules; the module
48/// can call this function to check that it wasn’t loaded
49/// into an incompatible version of GTK. However, such a
50/// check isn’t completely reliable, since the module may be
51/// linked against an old version of GTK and calling the
52/// old version of gtk_check_version(), but still get loaded
53/// into an application using a newer version of GTK.
54/// ## `required_major`
55/// the required major version
56/// ## `required_minor`
57/// the required minor version
58/// ## `required_micro`
59/// the required micro version
60///
61/// # Returns
62///
63/// [`None`] if the GTK library is compatible with the
64/// given version, or a string describing the version mismatch.
65/// The returned string is owned by GTK and should not be modified
66/// or freed.
67#[doc(alias = "gtk_check_version")]
68pub fn check_version(
69 required_major: u32,
70 required_minor: u32,
71 required_micro: u32,
72) -> Option<glib::GString> {
73 skip_assert_initialized!();
74 unsafe {
75 from_glib_none(ffi::gtk_check_version(
76 required_major,
77 required_minor,
78 required_micro,
79 ))
80 }
81}
82
83/// Prevents GTK from using portals.
84///
85/// This is equivalent to setting `GDK_DEBUG=no-portals` in the environment.
86///
87/// This should only be used in portal implementations, apps must not call it.
88#[cfg(feature = "v4_18")]
89#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
90#[doc(alias = "gtk_disable_portals")]
91pub fn disable_portals() {
92 assert_initialized_main_thread!();
93 unsafe {
94 ffi::gtk_disable_portals();
95 }
96}
97
98/// Prevents [`init()`][crate::init()] and `init_check()` from calling `setlocale()`.
99///
100/// You would want to use this function if you wanted to set the locale for
101/// your program to something other than the user’s locale, or if you wanted
102/// to set different values for different locale categories.
103///
104/// Most programs should not need to call this function.
105#[doc(alias = "gtk_disable_setlocale")]
106pub fn disable_setlocale() {
107 assert_not_initialized!();
108 unsafe {
109 ffi::gtk_disable_setlocale();
110 }
111}
112
113//#[doc(alias = "gtk_distribute_natural_allocation")]
114//pub fn distribute_natural_allocation(extra_space: i32, sizes: /*Ignored*/&[RequestedSize]) -> i32 {
115// unsafe { TODO: call ffi:gtk_distribute_natural_allocation() }
116//}
117
118/// Calls a function for all printers that are known to GTK.
119///
120/// If @func returns true, the enumeration is stopped.
121/// ## `func`
122/// a function to call for each printer
123/// ## `wait`
124/// if true, wait in a recursive mainloop until
125/// all printers are enumerated; otherwise return early
126#[cfg(target_os = "linux")]
127#[cfg_attr(docsrs, doc(cfg(target_os = "linux")))]
128#[doc(alias = "gtk_enumerate_printers")]
129pub fn enumerate_printers<P: Fn(&Printer) -> bool + Send + Sync + 'static>(func: P, wait: bool) {
130 assert_initialized_main_thread!();
131 let func_data: Box_<P> = Box_::new(func);
132 unsafe extern "C" fn func_func<P: Fn(&Printer) -> bool + Send + Sync + 'static>(
133 printer: *mut ffi::GtkPrinter,
134 data: glib::ffi::gpointer,
135 ) -> glib::ffi::gboolean {
136 let printer = from_glib_borrow(printer);
137 let callback = &*(data as *mut P);
138 (*callback)(&printer).into_glib()
139 }
140 let func = Some(func_func::<P> as _);
141 unsafe extern "C" fn destroy_func<P: Fn(&Printer) -> bool + Send + Sync + 'static>(
142 data: glib::ffi::gpointer,
143 ) {
144 let _callback = Box_::from_raw(data as *mut P);
145 }
146 let destroy_call2 = Some(destroy_func::<P> as _);
147 let super_callback0: Box_<P> = func_data;
148 unsafe {
149 ffi::gtk_enumerate_printers(
150 func,
151 Box_::into_raw(super_callback0) as *mut _,
152 destroy_call2,
153 wait.into_glib(),
154 );
155 }
156}
157
158/// Returns the binary age as passed to `libtool`.
159///
160/// If `libtool` means nothing to you, don't worry about it.
161///
162/// # Returns
163///
164/// the binary age of the GTK library
165#[doc(alias = "gtk_get_binary_age")]
166#[doc(alias = "get_binary_age")]
167pub fn binary_age() -> u32 {
168 skip_assert_initialized!();
169 unsafe { ffi::gtk_get_binary_age() }
170}
171
172/// Returns the GTK debug flags that are currently active.
173///
174/// This function is intended for GTK modules that want
175/// to adjust their debug output based on GTK debug flags.
176///
177/// # Returns
178///
179/// the GTK debug flags.
180#[doc(alias = "gtk_get_debug_flags")]
181#[doc(alias = "get_debug_flags")]
182pub fn debug_flags() -> DebugFlags {
183 assert_initialized_main_thread!();
184 unsafe { from_glib(ffi::gtk_get_debug_flags()) }
185}
186
187/// Returns the [`pango::Language`][crate::pango::Language] for the default language
188/// currently in effect.
189///
190/// Note that this can change over the life of an
191/// application.
192///
193/// The default language is derived from the current
194/// locale. It determines, for example, whether GTK uses
195/// the right-to-left or left-to-right text direction.
196///
197/// This function is equivalent to [`pango::Language::default()`][crate::pango::Language::default()].
198/// See that function for details.
199///
200/// # Returns
201///
202/// the default language
203#[doc(alias = "gtk_get_default_language")]
204#[doc(alias = "get_default_language")]
205pub fn default_language() -> pango::Language {
206 assert_initialized_main_thread!();
207 unsafe { from_glib_none(ffi::gtk_get_default_language()) }
208}
209
210/// Returns the interface age as passed to `libtool`.
211///
212/// If `libtool` means nothing to you, don't worry about it.
213///
214/// # Returns
215///
216/// the interface age of the GTK library
217#[doc(alias = "gtk_get_interface_age")]
218#[doc(alias = "get_interface_age")]
219pub fn interface_age() -> u32 {
220 skip_assert_initialized!();
221 unsafe { ffi::gtk_get_interface_age() }
222}
223
224/// Gets the direction of the current locale.
225///
226/// This is the expected reading direction for text and UI.
227///
228/// This function depends on the current locale being set with
229/// `setlocale()` and will default to setting the `GTK_TEXT_DIR_LTR`
230/// direction otherwise. `GTK_TEXT_DIR_NONE` will never be returned.
231///
232/// GTK sets the default text direction according to the locale during
233/// [`init()`][crate::init()], and you should normally use [`WidgetExt::direction()`][crate::prelude::WidgetExt::direction()]
234/// or [`Widget::default_direction()`][crate::Widget::default_direction()] to obtain the current direction.
235///
236/// This function is only needed rare cases when the locale is
237/// changed after GTK has already been initialized. In this case,
238/// you can use it to update the default text direction as follows:
239///
240/// **⚠️ The following code is in c ⚠️**
241///
242/// ```c
243/// #include <locale.h>
244///
245/// static void
246/// update_locale (const char *new_locale)
247/// {
248/// setlocale (LC_ALL, new_locale);
249/// gtk_widget_set_default_direction (gtk_get_locale_direction ());
250/// }
251/// ```
252///
253/// # Returns
254///
255/// the direction of the current locale
256#[doc(alias = "gtk_get_locale_direction")]
257#[doc(alias = "get_locale_direction")]
258pub fn locale_direction() -> TextDirection {
259 assert_initialized_main_thread!();
260 unsafe { from_glib(ffi::gtk_get_locale_direction()) }
261}
262
263/// Returns the major version number of the GTK library.
264///
265/// For example, in GTK version 3.1.5 this is 3.
266///
267/// This function is in the library, so it represents the GTK library
268/// your code is running against. Contrast with the `GTK_MAJOR_VERSION`
269/// macro, which represents the major version of the GTK headers you
270/// have included when compiling your code.
271///
272/// # Returns
273///
274/// the major version number of the GTK library
275#[doc(alias = "gtk_get_major_version")]
276#[doc(alias = "get_major_version")]
277pub fn major_version() -> u32 {
278 skip_assert_initialized!();
279 unsafe { ffi::gtk_get_major_version() }
280}
281
282/// Returns the micro version number of the GTK library.
283///
284/// For example, in GTK version 3.1.5 this is 5.
285///
286/// This function is in the library, so it represents the GTK library
287/// your code is are running against. Contrast with the
288/// `GTK_MICRO_VERSION` macro, which represents the micro version of the
289/// GTK headers you have included when compiling your code.
290///
291/// # Returns
292///
293/// the micro version number of the GTK library
294#[doc(alias = "gtk_get_micro_version")]
295#[doc(alias = "get_micro_version")]
296pub fn micro_version() -> u32 {
297 skip_assert_initialized!();
298 unsafe { ffi::gtk_get_micro_version() }
299}
300
301/// Returns the minor version number of the GTK library.
302///
303/// For example, in GTK version 3.1.5 this is 1.
304///
305/// This function is in the library, so it represents the GTK library
306/// your code is are running against. Contrast with the
307/// `GTK_MINOR_VERSION` macro, which represents the minor version of the
308/// GTK headers you have included when compiling your code.
309///
310/// # Returns
311///
312/// the minor version number of the GTK library
313#[doc(alias = "gtk_get_minor_version")]
314#[doc(alias = "get_minor_version")]
315pub fn minor_version() -> u32 {
316 skip_assert_initialized!();
317 unsafe { ffi::gtk_get_minor_version() }
318}
319
320/// Converts a color from HSV space to RGB.
321///
322/// Input values must be in the [0.0, 1.0] range;
323/// output values will be in the same range.
324/// ## `h`
325/// Hue
326/// ## `s`
327/// Saturation
328/// ## `v`
329/// Value
330///
331/// # Returns
332///
333///
334/// ## `r`
335/// Return value for the red component
336///
337/// ## `g`
338/// Return value for the green component
339///
340/// ## `b`
341/// Return value for the blue component
342#[doc(alias = "gtk_hsv_to_rgb")]
343pub fn hsv_to_rgb(h: f32, s: f32, v: f32) -> (f32, f32, f32) {
344 assert_initialized_main_thread!();
345 unsafe {
346 let mut r = std::mem::MaybeUninit::uninit();
347 let mut g = std::mem::MaybeUninit::uninit();
348 let mut b = std::mem::MaybeUninit::uninit();
349 ffi::gtk_hsv_to_rgb(h, s, v, r.as_mut_ptr(), g.as_mut_ptr(), b.as_mut_ptr());
350 (r.assume_init(), g.assume_init(), b.assume_init())
351 }
352}
353
354/// Runs a page setup dialog, letting the user modify the values from @page_setup.
355///
356/// If the user cancels the dialog, the returned [`PageSetup`][crate::PageSetup] is identical
357/// to the passed in @page_setup, otherwise it contains the modifications
358/// done in the dialog.
359///
360/// Note that this function may use a recursive mainloop to show the page
361/// setup dialog. See [`print_run_page_setup_dialog_async()`][crate::print_run_page_setup_dialog_async()] if this is
362/// a problem.
363/// ## `parent`
364/// transient parent
365/// ## `page_setup`
366/// an existing [`PageSetup`][crate::PageSetup]
367/// ## `settings`
368/// a [`PrintSettings`][crate::PrintSettings]
369///
370/// # Returns
371///
372/// a new [`PageSetup`][crate::PageSetup]
373#[doc(alias = "gtk_print_run_page_setup_dialog")]
374pub fn print_run_page_setup_dialog(
375 parent: Option<&impl IsA<Window>>,
376 page_setup: Option<&PageSetup>,
377 settings: &PrintSettings,
378) -> PageSetup {
379 skip_assert_initialized!();
380 unsafe {
381 from_glib_full(ffi::gtk_print_run_page_setup_dialog(
382 parent.map(|p| p.as_ref()).to_glib_none().0,
383 page_setup.to_glib_none().0,
384 settings.to_glib_none().0,
385 ))
386 }
387}
388
389/// Runs a page setup dialog, letting the user modify the values from @page_setup.
390///
391/// In contrast to [`print_run_page_setup_dialog()`][crate::print_run_page_setup_dialog()], this function returns
392/// after showing the page setup dialog on platforms that support this, and calls
393/// @done_cb from a signal handler for the ::response signal of the dialog.
394/// ## `parent`
395/// transient parent
396/// ## `page_setup`
397/// an existing [`PageSetup`][crate::PageSetup]
398/// ## `settings`
399/// a [`PrintSettings`][crate::PrintSettings]
400/// ## `done_cb`
401/// a function to call when the user saves
402/// the modified page setup
403#[doc(alias = "gtk_print_run_page_setup_dialog_async")]
404pub fn print_run_page_setup_dialog_async<P: FnOnce(&PageSetup) + Send + Sync + 'static>(
405 parent: Option<&impl IsA<Window>>,
406 page_setup: Option<&PageSetup>,
407 settings: &PrintSettings,
408 done_cb: P,
409) {
410 skip_assert_initialized!();
411 let done_cb_data: Box_<P> = Box_::new(done_cb);
412 unsafe extern "C" fn done_cb_func<P: FnOnce(&PageSetup) + Send + Sync + 'static>(
413 page_setup: *mut ffi::GtkPageSetup,
414 data: glib::ffi::gpointer,
415 ) {
416 let page_setup = from_glib_borrow(page_setup);
417 let callback = Box_::from_raw(data as *mut P);
418 (*callback)(&page_setup)
419 }
420 let done_cb = Some(done_cb_func::<P> as _);
421 let super_callback0: Box_<P> = done_cb_data;
422 unsafe {
423 ffi::gtk_print_run_page_setup_dialog_async(
424 parent.map(|p| p.as_ref()).to_glib_none().0,
425 page_setup.to_glib_none().0,
426 settings.to_glib_none().0,
427 done_cb,
428 Box_::into_raw(super_callback0) as *mut _,
429 );
430 }
431}
432
433/// Renders an activity indicator (such as in [`Spinner`][crate::Spinner]).
434/// The state [`StateFlags::CHECKED`][crate::StateFlags::CHECKED] determines whether there is
435/// activity going on.
436///
437/// # Deprecated since 4.10
438///
439/// ## `context`
440/// a [`StyleContext`][crate::StyleContext]
441/// ## `cr`
442/// a [`cairo::Context`][crate::cairo::Context]
443/// ## `x`
444/// X origin of the rectangle
445/// ## `y`
446/// Y origin of the rectangle
447/// ## `width`
448/// rectangle width
449/// ## `height`
450/// rectangle height
451#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
452#[allow(deprecated)]
453#[doc(alias = "gtk_render_activity")]
454pub fn render_activity(
455 context: &impl IsA<StyleContext>,
456 cr: &cairo::Context,
457 x: f64,
458 y: f64,
459 width: f64,
460 height: f64,
461) {
462 skip_assert_initialized!();
463 unsafe {
464 ffi::gtk_render_activity(
465 context.as_ref().to_glib_none().0,
466 mut_override(cr.to_glib_none().0),
467 x,
468 y,
469 width,
470 height,
471 );
472 }
473}
474
475/// Renders an arrow pointing to @angle.
476///
477/// Typical arrow rendering at 0, 1⁄2 π;, π; and 3⁄2 π:
478///
479/// 
480///
481/// # Deprecated since 4.10
482///
483/// ## `context`
484/// a [`StyleContext`][crate::StyleContext]
485/// ## `cr`
486/// a [`cairo::Context`][crate::cairo::Context]
487/// ## `angle`
488/// arrow angle from 0 to 2 * `G_PI`, being 0 the arrow pointing to the north
489/// ## `x`
490/// X origin of the render area
491/// ## `y`
492/// Y origin of the render area
493/// ## `size`
494/// square side for render area
495#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
496#[allow(deprecated)]
497#[doc(alias = "gtk_render_arrow")]
498pub fn render_arrow(
499 context: &impl IsA<StyleContext>,
500 cr: &cairo::Context,
501 angle: f64,
502 x: f64,
503 y: f64,
504 size: f64,
505) {
506 skip_assert_initialized!();
507 unsafe {
508 ffi::gtk_render_arrow(
509 context.as_ref().to_glib_none().0,
510 mut_override(cr.to_glib_none().0),
511 angle,
512 x,
513 y,
514 size,
515 );
516 }
517}
518
519/// Renders the background of an element.
520///
521/// Typical background rendering, showing the effect of
522/// `background-image`, `border-width` and `border-radius`:
523///
524/// 
525///
526/// # Deprecated since 4.10
527///
528/// ## `context`
529/// a [`StyleContext`][crate::StyleContext]
530/// ## `cr`
531/// a [`cairo::Context`][crate::cairo::Context]
532/// ## `x`
533/// X origin of the rectangle
534/// ## `y`
535/// Y origin of the rectangle
536/// ## `width`
537/// rectangle width
538/// ## `height`
539/// rectangle height
540#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
541#[allow(deprecated)]
542#[doc(alias = "gtk_render_background")]
543pub fn render_background(
544 context: &impl IsA<StyleContext>,
545 cr: &cairo::Context,
546 x: f64,
547 y: f64,
548 width: f64,
549 height: f64,
550) {
551 skip_assert_initialized!();
552 unsafe {
553 ffi::gtk_render_background(
554 context.as_ref().to_glib_none().0,
555 mut_override(cr.to_glib_none().0),
556 x,
557 y,
558 width,
559 height,
560 );
561 }
562}
563
564/// Renders a checkmark (as in a [`CheckButton`][crate::CheckButton]).
565///
566/// The [`StateFlags::CHECKED`][crate::StateFlags::CHECKED] state determines whether the check is
567/// on or off, and [`StateFlags::INCONSISTENT`][crate::StateFlags::INCONSISTENT] determines whether it
568/// should be marked as undefined.
569///
570/// Typical checkmark rendering:
571///
572/// 
573///
574/// # Deprecated since 4.10
575///
576/// ## `context`
577/// a [`StyleContext`][crate::StyleContext]
578/// ## `cr`
579/// a [`cairo::Context`][crate::cairo::Context]
580/// ## `x`
581/// X origin of the rectangle
582/// ## `y`
583/// Y origin of the rectangle
584/// ## `width`
585/// rectangle width
586/// ## `height`
587/// rectangle height
588#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
589#[allow(deprecated)]
590#[doc(alias = "gtk_render_check")]
591pub fn render_check(
592 context: &impl IsA<StyleContext>,
593 cr: &cairo::Context,
594 x: f64,
595 y: f64,
596 width: f64,
597 height: f64,
598) {
599 skip_assert_initialized!();
600 unsafe {
601 ffi::gtk_render_check(
602 context.as_ref().to_glib_none().0,
603 mut_override(cr.to_glib_none().0),
604 x,
605 y,
606 width,
607 height,
608 );
609 }
610}
611
612/// Renders an expander (as used in [`TreeView`][crate::TreeView] and [`Expander`][crate::Expander]) in the area
613/// defined by @x, @y, @width, @height. The state [`StateFlags::CHECKED`][crate::StateFlags::CHECKED]
614/// determines whether the expander is collapsed or expanded.
615///
616/// Typical expander rendering:
617///
618/// 
619///
620/// # Deprecated since 4.10
621///
622/// ## `context`
623/// a [`StyleContext`][crate::StyleContext]
624/// ## `cr`
625/// a [`cairo::Context`][crate::cairo::Context]
626/// ## `x`
627/// X origin of the rectangle
628/// ## `y`
629/// Y origin of the rectangle
630/// ## `width`
631/// rectangle width
632/// ## `height`
633/// rectangle height
634#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
635#[allow(deprecated)]
636#[doc(alias = "gtk_render_expander")]
637pub fn render_expander(
638 context: &impl IsA<StyleContext>,
639 cr: &cairo::Context,
640 x: f64,
641 y: f64,
642 width: f64,
643 height: f64,
644) {
645 skip_assert_initialized!();
646 unsafe {
647 ffi::gtk_render_expander(
648 context.as_ref().to_glib_none().0,
649 mut_override(cr.to_glib_none().0),
650 x,
651 y,
652 width,
653 height,
654 );
655 }
656}
657
658/// Renders a focus indicator on the rectangle determined by @x, @y, @width, @height.
659///
660/// Typical focus rendering:
661///
662/// 
663///
664/// # Deprecated since 4.10
665///
666/// ## `context`
667/// a [`StyleContext`][crate::StyleContext]
668/// ## `cr`
669/// a [`cairo::Context`][crate::cairo::Context]
670/// ## `x`
671/// X origin of the rectangle
672/// ## `y`
673/// Y origin of the rectangle
674/// ## `width`
675/// rectangle width
676/// ## `height`
677/// rectangle height
678#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
679#[allow(deprecated)]
680#[doc(alias = "gtk_render_focus")]
681pub fn render_focus(
682 context: &impl IsA<StyleContext>,
683 cr: &cairo::Context,
684 x: f64,
685 y: f64,
686 width: f64,
687 height: f64,
688) {
689 skip_assert_initialized!();
690 unsafe {
691 ffi::gtk_render_focus(
692 context.as_ref().to_glib_none().0,
693 mut_override(cr.to_glib_none().0),
694 x,
695 y,
696 width,
697 height,
698 );
699 }
700}
701
702/// Renders a frame around the rectangle defined by @x, @y, @width, @height.
703///
704/// Examples of frame rendering, showing the effect of `border-image`,
705/// `border-color`, `border-width`, `border-radius` and junctions:
706///
707/// 
708///
709/// # Deprecated since 4.10
710///
711/// ## `context`
712/// a [`StyleContext`][crate::StyleContext]
713/// ## `cr`
714/// a [`cairo::Context`][crate::cairo::Context]
715/// ## `x`
716/// X origin of the rectangle
717/// ## `y`
718/// Y origin of the rectangle
719/// ## `width`
720/// rectangle width
721/// ## `height`
722/// rectangle height
723#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
724#[allow(deprecated)]
725#[doc(alias = "gtk_render_frame")]
726pub fn render_frame(
727 context: &impl IsA<StyleContext>,
728 cr: &cairo::Context,
729 x: f64,
730 y: f64,
731 width: f64,
732 height: f64,
733) {
734 skip_assert_initialized!();
735 unsafe {
736 ffi::gtk_render_frame(
737 context.as_ref().to_glib_none().0,
738 mut_override(cr.to_glib_none().0),
739 x,
740 y,
741 width,
742 height,
743 );
744 }
745}
746
747/// Renders a handle (as in [`Paned`][crate::Paned] and [`Window`][crate::Window]’s resize grip),
748/// in the rectangle determined by @x, @y, @width, @height.
749///
750/// Handles rendered for the paned and grip classes:
751///
752/// 
753///
754/// # Deprecated since 4.10
755///
756/// ## `context`
757/// a [`StyleContext`][crate::StyleContext]
758/// ## `cr`
759/// a [`cairo::Context`][crate::cairo::Context]
760/// ## `x`
761/// X origin of the rectangle
762/// ## `y`
763/// Y origin of the rectangle
764/// ## `width`
765/// rectangle width
766/// ## `height`
767/// rectangle height
768#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
769#[allow(deprecated)]
770#[doc(alias = "gtk_render_handle")]
771pub fn render_handle(
772 context: &impl IsA<StyleContext>,
773 cr: &cairo::Context,
774 x: f64,
775 y: f64,
776 width: f64,
777 height: f64,
778) {
779 skip_assert_initialized!();
780 unsafe {
781 ffi::gtk_render_handle(
782 context.as_ref().to_glib_none().0,
783 mut_override(cr.to_glib_none().0),
784 x,
785 y,
786 width,
787 height,
788 );
789 }
790}
791
792/// Renders the icon in @texture at the specified @x and @y coordinates.
793///
794/// This function will render the icon in @texture at exactly its size,
795/// regardless of scaling factors, which may not be appropriate when
796/// drawing on displays with high pixel densities.
797///
798/// # Deprecated since 4.10
799///
800/// ## `context`
801/// a [`StyleContext`][crate::StyleContext]
802/// ## `cr`
803/// a [`cairo::Context`][crate::cairo::Context]
804/// ## `texture`
805/// a [`gdk::Texture`][crate::gdk::Texture] containing the icon to draw
806/// ## `x`
807/// X position for the @texture
808/// ## `y`
809/// Y position for the @texture
810#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
811#[allow(deprecated)]
812#[doc(alias = "gtk_render_icon")]
813pub fn render_icon(
814 context: &impl IsA<StyleContext>,
815 cr: &cairo::Context,
816 texture: &impl IsA<gdk::Texture>,
817 x: f64,
818 y: f64,
819) {
820 skip_assert_initialized!();
821 unsafe {
822 ffi::gtk_render_icon(
823 context.as_ref().to_glib_none().0,
824 mut_override(cr.to_glib_none().0),
825 texture.as_ref().to_glib_none().0,
826 x,
827 y,
828 );
829 }
830}
831
832/// Renders @layout on the coordinates @x, @y
833///
834/// # Deprecated since 4.10
835///
836/// ## `context`
837/// a [`StyleContext`][crate::StyleContext]
838/// ## `cr`
839/// a [`cairo::Context`][crate::cairo::Context]
840/// ## `x`
841/// X origin
842/// ## `y`
843/// Y origin
844/// ## `layout`
845/// the [`pango::Layout`][crate::pango::Layout] to render
846#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
847#[allow(deprecated)]
848#[doc(alias = "gtk_render_layout")]
849pub fn render_layout(
850 context: &impl IsA<StyleContext>,
851 cr: &cairo::Context,
852 x: f64,
853 y: f64,
854 layout: &pango::Layout,
855) {
856 skip_assert_initialized!();
857 unsafe {
858 ffi::gtk_render_layout(
859 context.as_ref().to_glib_none().0,
860 mut_override(cr.to_glib_none().0),
861 x,
862 y,
863 layout.to_glib_none().0,
864 );
865 }
866}
867
868/// Renders a line from (x0, y0) to (x1, y1).
869///
870/// # Deprecated since 4.10
871///
872/// ## `context`
873/// a [`StyleContext`][crate::StyleContext]
874/// ## `cr`
875/// a [`cairo::Context`][crate::cairo::Context]
876/// ## `x0`
877/// X coordinate for the origin of the line
878/// ## `y0`
879/// Y coordinate for the origin of the line
880/// ## `x1`
881/// X coordinate for the end of the line
882/// ## `y1`
883/// Y coordinate for the end of the line
884#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
885#[allow(deprecated)]
886#[doc(alias = "gtk_render_line")]
887pub fn render_line(
888 context: &impl IsA<StyleContext>,
889 cr: &cairo::Context,
890 x0: f64,
891 y0: f64,
892 x1: f64,
893 y1: f64,
894) {
895 skip_assert_initialized!();
896 unsafe {
897 ffi::gtk_render_line(
898 context.as_ref().to_glib_none().0,
899 mut_override(cr.to_glib_none().0),
900 x0,
901 y0,
902 x1,
903 y1,
904 );
905 }
906}
907
908/// Renders an option mark (as in a radio button), the [`StateFlags::CHECKED`][crate::StateFlags::CHECKED]
909/// state will determine whether the option is on or off, and
910/// [`StateFlags::INCONSISTENT`][crate::StateFlags::INCONSISTENT] whether it should be marked as undefined.
911///
912/// Typical option mark rendering:
913///
914/// 
915///
916/// # Deprecated since 4.10
917///
918/// ## `context`
919/// a [`StyleContext`][crate::StyleContext]
920/// ## `cr`
921/// a [`cairo::Context`][crate::cairo::Context]
922/// ## `x`
923/// X origin of the rectangle
924/// ## `y`
925/// Y origin of the rectangle
926/// ## `width`
927/// rectangle width
928/// ## `height`
929/// rectangle height
930#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
931#[allow(deprecated)]
932#[doc(alias = "gtk_render_option")]
933pub fn render_option(
934 context: &impl IsA<StyleContext>,
935 cr: &cairo::Context,
936 x: f64,
937 y: f64,
938 width: f64,
939 height: f64,
940) {
941 skip_assert_initialized!();
942 unsafe {
943 ffi::gtk_render_option(
944 context.as_ref().to_glib_none().0,
945 mut_override(cr.to_glib_none().0),
946 x,
947 y,
948 width,
949 height,
950 );
951 }
952}
953
954/// Converts a color from RGB space to HSV.
955///
956/// Input values must be in the [0.0, 1.0] range;
957/// output values will be in the same range.
958/// ## `r`
959/// Red
960/// ## `g`
961/// Green
962/// ## `b`
963/// Blue
964///
965/// # Returns
966///
967///
968/// ## `h`
969/// Return value for the hue component
970///
971/// ## `s`
972/// Return value for the saturation component
973///
974/// ## `v`
975/// Return value for the value component
976#[doc(alias = "gtk_rgb_to_hsv")]
977pub fn rgb_to_hsv(r: f32, g: f32, b: f32) -> (f32, f32, f32) {
978 assert_initialized_main_thread!();
979 unsafe {
980 let mut h = std::mem::MaybeUninit::uninit();
981 let mut s = std::mem::MaybeUninit::uninit();
982 let mut v = std::mem::MaybeUninit::uninit();
983 ffi::gtk_rgb_to_hsv(r, g, b, h.as_mut_ptr(), s.as_mut_ptr(), v.as_mut_ptr());
984 (h.assume_init(), s.assume_init(), v.assume_init())
985 }
986}
987
988/// Sets the GTK debug flags.
989/// ## `flags`
990/// the debug flags to set
991#[doc(alias = "gtk_set_debug_flags")]
992pub fn set_debug_flags(flags: DebugFlags) {
993 assert_initialized_main_thread!();
994 unsafe {
995 ffi::gtk_set_debug_flags(flags.into_glib());
996 }
997}
998
999/// This function launches the default application for showing
1000/// a given uri, or shows an error dialog if that fails.
1001///
1002/// # Deprecated since 4.10
1003///
1004/// Use [`FileLauncher::launch()`][crate::FileLauncher::launch()] or
1005/// [`UriLauncher::launch()`][crate::UriLauncher::launch()] instead
1006/// ## `parent`
1007/// parent window
1008/// ## `uri`
1009/// the uri to show
1010/// ## `timestamp`
1011/// timestamp from the event that triggered this call, or `GDK_CURRENT_TIME`
1012#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
1013#[allow(deprecated)]
1014#[doc(alias = "gtk_show_uri")]
1015pub fn show_uri(parent: Option<&impl IsA<Window>>, uri: &str, timestamp: u32) {
1016 assert_initialized_main_thread!();
1017 unsafe {
1018 ffi::gtk_show_uri(
1019 parent.map(|p| p.as_ref()).to_glib_none().0,
1020 uri.to_glib_none().0,
1021 timestamp,
1022 );
1023 }
1024}
1025
1026/// Prints an assertion message for gtk_test_accessible_assert_role().
1027/// ## `domain`
1028/// a domain
1029/// ## `file`
1030/// a file name
1031/// ## `line`
1032/// the line in @file
1033/// ## `func`
1034/// a function name in @file
1035/// ## `expr`
1036/// the expression being tested
1037/// ## `accessible`
1038/// a [`Accessible`][crate::Accessible]
1039/// ## `expected_role`
1040/// the expected [`AccessibleRole`][crate::AccessibleRole]
1041/// ## `actual_role`
1042/// the actual [`AccessibleRole`][crate::AccessibleRole]
1043#[doc(alias = "gtk_test_accessible_assertion_message_role")]
1044pub fn test_accessible_assertion_message_role(
1045 domain: &str,
1046 file: &str,
1047 line: i32,
1048 func: &str,
1049 expr: &str,
1050 accessible: &impl IsA<Accessible>,
1051 expected_role: AccessibleRole,
1052 actual_role: AccessibleRole,
1053) {
1054 skip_assert_initialized!();
1055 unsafe {
1056 ffi::gtk_test_accessible_assertion_message_role(
1057 domain.to_glib_none().0,
1058 file.to_glib_none().0,
1059 line,
1060 func.to_glib_none().0,
1061 expr.to_glib_none().0,
1062 accessible.as_ref().to_glib_none().0,
1063 expected_role.into_glib(),
1064 actual_role.into_glib(),
1065 );
1066 }
1067}
1068
1069/// Checks whether the [`Accessible`][crate::Accessible] has @property set.
1070/// ## `accessible`
1071/// a [`Accessible`][crate::Accessible]
1072/// ## `property`
1073/// a [`AccessibleProperty`][crate::AccessibleProperty]
1074///
1075/// # Returns
1076///
1077/// [`true`] if the @property is set in the @accessible
1078#[doc(alias = "gtk_test_accessible_has_property")]
1079pub fn test_accessible_has_property(
1080 accessible: &impl IsA<Accessible>,
1081 property: AccessibleProperty,
1082) -> bool {
1083 skip_assert_initialized!();
1084 unsafe {
1085 from_glib(ffi::gtk_test_accessible_has_property(
1086 accessible.as_ref().to_glib_none().0,
1087 property.into_glib(),
1088 ))
1089 }
1090}
1091
1092/// Checks whether the [`Accessible`][crate::Accessible] has @relation set.
1093/// ## `accessible`
1094/// a [`Accessible`][crate::Accessible]
1095/// ## `relation`
1096/// a [`AccessibleRelation`][crate::AccessibleRelation]
1097///
1098/// # Returns
1099///
1100/// [`true`] if the @relation is set in the @accessible
1101#[doc(alias = "gtk_test_accessible_has_relation")]
1102pub fn test_accessible_has_relation(
1103 accessible: &impl IsA<Accessible>,
1104 relation: AccessibleRelation,
1105) -> bool {
1106 skip_assert_initialized!();
1107 unsafe {
1108 from_glib(ffi::gtk_test_accessible_has_relation(
1109 accessible.as_ref().to_glib_none().0,
1110 relation.into_glib(),
1111 ))
1112 }
1113}
1114
1115/// Checks whether the `GtkAccessible:accessible-role` of the accessible
1116/// is @role.
1117/// ## `accessible`
1118/// a [`Accessible`][crate::Accessible]
1119/// ## `role`
1120/// a [`AccessibleRole`][crate::AccessibleRole]
1121///
1122/// # Returns
1123///
1124/// [`true`] if the role matches
1125#[doc(alias = "gtk_test_accessible_has_role")]
1126pub fn test_accessible_has_role(accessible: &impl IsA<Accessible>, role: AccessibleRole) -> bool {
1127 skip_assert_initialized!();
1128 unsafe {
1129 from_glib(ffi::gtk_test_accessible_has_role(
1130 accessible.as_ref().to_glib_none().0,
1131 role.into_glib(),
1132 ))
1133 }
1134}
1135
1136/// Checks whether the [`Accessible`][crate::Accessible] has @state set.
1137/// ## `accessible`
1138/// a [`Accessible`][crate::Accessible]
1139/// ## `state`
1140/// a [`AccessibleState`][crate::AccessibleState]
1141///
1142/// # Returns
1143///
1144/// [`true`] if the @state is set in the @accessible
1145#[doc(alias = "gtk_test_accessible_has_state")]
1146pub fn test_accessible_has_state(
1147 accessible: &impl IsA<Accessible>,
1148 state: AccessibleState,
1149) -> bool {
1150 skip_assert_initialized!();
1151 unsafe {
1152 from_glib(ffi::gtk_test_accessible_has_state(
1153 accessible.as_ref().to_glib_none().0,
1154 state.into_glib(),
1155 ))
1156 }
1157}
1158
1159//#[doc(alias = "gtk_test_init")]
1160//pub fn test_init(argvp: /*Unimplemented*/Vec<glib::GString>, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
1161// unsafe { TODO: call ffi:gtk_test_init() }
1162//}
1163
1164/// Force registration of all core GTK object types.
1165///
1166/// This allows to refer to any of those object types via
1167/// g_type_from_name() after calling this function.
1168#[doc(alias = "gtk_test_register_all_types")]
1169pub fn test_register_all_types() {
1170 assert_initialized_main_thread!();
1171 unsafe {
1172 ffi::gtk_test_register_all_types();
1173 }
1174}
1175
1176/// Enters the main loop and waits for @widget to be “drawn”.
1177///
1178/// In this context that means it waits for the frame clock of
1179/// @widget to have run a full styling, layout and drawing cycle.
1180///
1181/// This function is intended to be used for syncing with actions that
1182/// depend on @widget relayouting or on interaction with the display
1183/// server.
1184/// ## `widget`
1185/// the widget to wait for
1186#[doc(alias = "gtk_test_widget_wait_for_draw")]
1187pub fn test_widget_wait_for_draw(widget: &impl IsA<Widget>) {
1188 skip_assert_initialized!();
1189 unsafe {
1190 ffi::gtk_test_widget_wait_for_draw(widget.as_ref().to_glib_none().0);
1191 }
1192}
1193
1194/// Creates a content provider for dragging @path from @tree_model.
1195///
1196/// # Deprecated since 4.10
1197///
1198/// Use list models instead
1199/// ## `tree_model`
1200/// a [`TreeModel`][crate::TreeModel]
1201/// ## `path`
1202/// a row in @tree_model
1203///
1204/// # Returns
1205///
1206/// a new [`gdk::ContentProvider`][crate::gdk::ContentProvider]
1207#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
1208#[allow(deprecated)]
1209#[doc(alias = "gtk_tree_create_row_drag_content")]
1210pub fn tree_create_row_drag_content(
1211 tree_model: &impl IsA<TreeModel>,
1212 path: &TreePath,
1213) -> gdk::ContentProvider {
1214 skip_assert_initialized!();
1215 unsafe {
1216 from_glib_full(ffi::gtk_tree_create_row_drag_content(
1217 tree_model.as_ref().to_glib_none().0,
1218 mut_override(path.to_glib_none().0),
1219 ))
1220 }
1221}
1222
1223/// Obtains a @tree_model and @path from value of target type
1224/// `GTK_TYPE_TREE_ROW_DATA`.
1225///
1226/// The returned path must be freed with gtk_tree_path_free().
1227///
1228/// # Deprecated since 4.10
1229///
1230/// Use list models instead
1231/// ## `value`
1232/// a `GValue`
1233///
1234/// # Returns
1235///
1236/// [`true`] if @selection_data had target type `GTK_TYPE_TREE_ROW_DATA`
1237/// is otherwise valid
1238///
1239/// ## `tree_model`
1240/// a [`TreeModel`][crate::TreeModel]
1241///
1242/// ## `path`
1243/// row in @tree_model
1244#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
1245#[allow(deprecated)]
1246#[doc(alias = "gtk_tree_get_row_drag_data")]
1247pub fn tree_get_row_drag_data(
1248 value: &glib::Value,
1249) -> Option<(Option<TreeModel>, Option<TreePath>)> {
1250 assert_initialized_main_thread!();
1251 unsafe {
1252 let mut tree_model = std::ptr::null_mut();
1253 let mut path = std::ptr::null_mut();
1254 let ret = from_glib(ffi::gtk_tree_get_row_drag_data(
1255 value.to_glib_none().0,
1256 &mut tree_model,
1257 &mut path,
1258 ));
1259 if ret {
1260 Some((from_glib_none(tree_model), from_glib_full(path)))
1261 } else {
1262 None
1263 }
1264 }
1265}