1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/* libsexy.vapi generated by lt-vapigen, do not modify. */
[CCode (cprefix = "Sexy", lower_case_cprefix = "sexy_")]
namespace Sexy {
[CCode (cprefix = "SEXY_ICON_ENTRY_", cheader_filename = "libsexy/sexy.h")]
public enum IconEntryPosition {
PRIMARY,
SECONDARY
}
[CCode (cprefix = "SEXY_SPELL_ERROR_", cheader_filename = "libsexy/sexy.h")]
public enum SpellError {
BACKEND
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public class IconEntry : Gtk.Entry, Atk.Implementor, Gtk.Buildable, Gtk.Editable, Gtk.CellEditable {
public void add_clear_button ();
public weak Gtk.Image get_icon (Sexy.IconEntryPosition position);
public bool get_icon_highlight (Sexy.IconEntryPosition position);
public IconEntry ();
public void set_icon (Sexy.IconEntryPosition position, Gtk.Image? icon);
public void set_icon_highlight (Sexy.IconEntryPosition position, bool highlight);
public virtual signal void icon_pressed (int icon_pos, int button);
public virtual signal void icon_released (int icon_pos, int button);
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public class SpellEntry : Gtk.Entry, Atk.Implementor, Gtk.Buildable, Gtk.Editable, Gtk.CellEditable {
public void activate_default_languages ();
public bool activate_language (string lang) throws GLib.Error;
public void deactivate_language (string lang);
public weak GLib.SList get_active_languages ();
public weak string get_language_name (string lang);
public weak GLib.SList get_languages ();
public bool is_checked ();
public bool language_is_active (string lang);
public SpellEntry ();
public bool set_active_languages (GLib.SList langs) throws GLib.Error;
public void set_checked (bool checked);
public virtual signal bool word_check (string word);
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public class Tooltip : Gtk.Window, Atk.Implementor, Gtk.Buildable {
public Tooltip ();
public Tooltip.with_label (string text);
public void position_to_rect (Gdk.Rectangle rect, Gdk.Screen screen);
public void position_to_widget (Gtk.Widget widget);
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public class TreeView : Gtk.TreeView, Atk.Implementor, Gtk.Buildable {
public TreeView ();
public void set_tooltip_label_column (uint column);
public virtual signal weak Gtk.Widget get_tooltip (Gtk.TreePath path, Gtk.TreeViewColumn column);
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public class UrlLabel : Gtk.Label, Atk.Implementor, Gtk.Buildable {
public UrlLabel ();
public void set_markup (string markup);
public virtual signal void url_activated (string url);
}
[CCode (cheader_filename = "libsexy/sexy.h")]
public static GLib.Quark spell_error_quark ();
}
|