mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 22:41:43 +00:00
62176a3bd0
This comes in handy for testing, among other things. For now, this supports decomposing, reversing, rendering, info and preview.
14 lines
482 B
C
14 lines
482 B
C
#pragma once
|
|
|
|
void do_info (int *argc, const char ***argv);
|
|
void do_decompose (int *argc, const char ***argv);
|
|
void do_render (int *argc, const char ***argv);
|
|
void do_show (int *argc, const char ***argv);
|
|
|
|
GskPath *get_path (const char *arg);
|
|
int get_enum_value (GType type,
|
|
const char *type_nick,
|
|
const char *str);
|
|
void get_color (GdkRGBA *rgba,
|
|
const char *str);
|