blob: 59886a554ac892616821d56cbb768e9cf74a345d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[CCode (cheader_filename = "gtkui.h")]
[CCode (cheader_filename = "drawing.h")]
[CCode (cprefix = "Gtkui", lower_case_cprefix = "gtkui_")]
namespace Gtkui {
public static unowned Gdk.Color get_bar_foreground_color ();
public static unowned Gdk.Color get_bar_background_color ();
public static unowned void init_theme_colors ();
}
public static unowned void seekbar_draw(Gtk.Widget *widget);
public static unowned bool on_seekbar_button_press_event(Gtk.Widget widget, Gdk.EventButton event);
public static unowned bool on_seekbar_button_release_event(Gtk.Widget widget, Gdk.EventButton event);
public static unowned bool on_seekbar_motion_notify_event(Gtk.Widget widget, Gdk.EventMotion event);
|