IAnjutaEditorGoto

IAnjutaEditorGoto — Text editor navigation interface

Stability Level

Unstable, unless otherwise indicated

Synopsis

#include <libanjuta/interfaces/ianjuta-editor-goto.h>

#define             IANJUTA_EDITOR_GOTO_ERROR
struct              IAnjutaEditorGotoIface;
void                ianjuta_editor_goto_end_block       (IAnjutaEditorGoto *obj,
                                                         GError **err);
GQuark              ianjuta_editor_goto_error_quark     (void);
void                ianjuta_editor_goto_matching_brace  (IAnjutaEditorGoto *obj,
                                                         GError **err);
void                ianjuta_editor_goto_start_block     (IAnjutaEditorGoto *obj,
                                                         GError **err);

Description

Details

IANJUTA_EDITOR_GOTO_ERROR

#define IANJUTA_EDITOR_GOTO_ERROR ianjuta_editor_goto_error_quark()


struct IAnjutaEditorGotoIface

struct IAnjutaEditorGotoIface {
	IAnjutaEditorIface g_iface;
	

	void (*end_block) (IAnjutaEditorGoto *obj, GError **err);
	void (*matching_brace) (IAnjutaEditorGoto *obj, GError **err);
	void (*start_block) (IAnjutaEditorGoto *obj, GError **err);
};


ianjuta_editor_goto_end_block ()

void                ianjuta_editor_goto_end_block       (IAnjutaEditorGoto *obj,
                                                         GError **err);

Moves cursor to the end of the current block

obj :

Self

err :

Error propagation and reporting

ianjuta_editor_goto_error_quark ()

GQuark              ianjuta_editor_goto_error_quark     (void);


ianjuta_editor_goto_matching_brace ()

void                ianjuta_editor_goto_matching_brace  (IAnjutaEditorGoto *obj,
                                                         GError **err);

Moves cursor to matching brace

obj :

Self

err :

Error propagation and reporting

ianjuta_editor_goto_start_block ()

void                ianjuta_editor_goto_start_block     (IAnjutaEditorGoto *obj,
                                                         GError **err);

Moves cursor to the start of the current block

obj :

Self

err :

Error propagation and reporting