summaryrefslogtreecommitdiff
path: root/vapi/gtksourceview-3.0.vapi
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2014-01-23 18:18:32 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2014-01-23 18:18:32 +0100
commite5ed90f6a5c9681cc6b6f4100a3858d2f5a8427b (patch)
tree920320e4514ecb2220c78cec8e55c9f30fa9d22c /vapi/gtksourceview-3.0.vapi
parent63db7051dde679abde21d1c7334bab996acc089c (diff)
downloadvala-e5ed90f6a5c9681cc6b6f4100a3858d2f5a8427b.tar.gz
gtksourceview-3.0: Update to 3.11.3
Diffstat (limited to 'vapi/gtksourceview-3.0.vapi')
-rw-r--r--vapi/gtksourceview-3.0.vapi20
1 files changed, 19 insertions, 1 deletions
diff --git a/vapi/gtksourceview-3.0.vapi b/vapi/gtksourceview-3.0.vapi
index 243f3c52a..d1f501bb6 100644
--- a/vapi/gtksourceview-3.0.vapi
+++ b/vapi/gtksourceview-3.0.vapi
@@ -15,6 +15,7 @@ namespace Gtk {
public SourceBuffer (Gtk.TextTagTable? table);
public bool backward_iter_to_source_mark (Gtk.TextIter iter, string? category);
public void begin_not_undoable_action ();
+ public void change_case (Gtk.SourceChangeCaseType case_type, Gtk.TextIter start, Gtk.TextIter end);
public unowned Gtk.SourceMark create_source_mark (string? name, string category, Gtk.TextIter where);
public void end_not_undoable_action ();
public void ensure_highlight (Gtk.TextIter start, Gtk.TextIter end);
@@ -52,7 +53,7 @@ namespace Gtk {
public Gtk.SourceStyleScheme style_scheme { get; set; }
public Gtk.SourceUndoManager undo_manager { get; set construct; }
public virtual signal void bracket_matched (Gtk.TextIter iter, Gtk.SourceBracketMatchType state);
- public signal void highlight_updated (Gtk.TextIter object, Gtk.TextIter p0);
+ public signal void highlight_updated (Gtk.TextIter start, Gtk.TextIter end);
[HasEmitter]
public virtual signal void redo ();
public signal void source_mark_updated (Gtk.TextMark mark);
@@ -182,20 +183,25 @@ namespace Gtk {
public class SourceGutter : GLib.Object {
[CCode (has_construct_function = false)]
protected SourceGutter ();
+ [Deprecated (since = "3.12")]
public void get_padding (int xpad, int ypad);
public unowned Gtk.SourceGutterRenderer get_renderer_at_pos (int x, int y);
+ [Deprecated (since = "3.12")]
public unowned Gdk.Window get_window ();
public bool insert (Gtk.SourceGutterRenderer renderer, int position);
public void queue_draw ();
public void remove (Gtk.SourceGutterRenderer renderer);
public void reorder (Gtk.SourceGutterRenderer renderer, int position);
+ [Deprecated (since = "3.12")]
public void set_padding (int xpad, int ypad);
[NoAccessorMethod]
public Gtk.SourceView view { owned get; construct; }
[NoAccessorMethod]
public Gtk.TextWindowType window_type { get; construct; }
+ [Deprecated (since = "3.12")]
[NoAccessorMethod]
public int xpad { get; set construct; }
+ [Deprecated (since = "3.12")]
[NoAccessorMethod]
public int ypad { get; set construct; }
}
@@ -497,6 +503,10 @@ namespace Gtk {
[NoAccessorMethod]
public bool line_background_set { get; construct; }
[NoAccessorMethod]
+ public string scale { owned get; construct; }
+ [NoAccessorMethod]
+ public bool scale_set { get; construct; }
+ [NoAccessorMethod]
public bool strikethrough { get; construct; }
[NoAccessorMethod]
public bool strikethrough_set { get; construct; }
@@ -648,6 +658,14 @@ namespace Gtk {
NOT_FOUND,
FOUND
}
+ [CCode (cheader_filename = "gtksourceview/gtksource.h", cprefix = "GTK_SOURCE_CHANGE_CASE_", type_id = "gtk_source_change_case_type_get_type ()")]
+ [GIR (name = "ChangeCaseType")]
+ public enum SourceChangeCaseType {
+ LOWER,
+ UPPER,
+ TOGGLE,
+ TITLE
+ }
[CCode (cheader_filename = "gtksourceview/gtksource.h", cprefix = "GTK_SOURCE_COMPLETION_ACTIVATION_", type_id = "gtk_source_completion_activation_get_type ()")]
[Flags]
[GIR (name = "CompletionActivation")]