ianjuta-editor-convert

ianjuta-editor-convert —

Synopsis




#define     IANJUTA_EDITOR_CONVERT_ERROR
struct      IAnjutaEditorConvert;
struct      IAnjutaEditorConvertIface;
GQuark      ianjuta_editor_convert_error_quark
                                            (void);
void        ianjuta_editor_convert_to_lower (IAnjutaEditorConvert *obj,
                                             gint start_position,
                                             gint end_position,
                                             GError **err);
void        ianjuta_editor_convert_to_upper (IAnjutaEditorConvert *obj,
                                             gint start_position,
                                             gint end_position,
                                             GError **err);

Object Hierarchy


  GInterface
   +----IAnjutaEditorConvert

Prerequisites

IAnjutaEditorConvert requires IAnjutaEditor and GObject.

Description

Details

IANJUTA_EDITOR_CONVERT_ERROR

#define IANJUTA_EDITOR_CONVERT_ERROR ianjuta_editor_convert_error_quark()


struct IAnjutaEditorConvert

struct IAnjutaEditorConvert;


struct IAnjutaEditorConvertIface

struct IAnjutaEditorConvertIface {

	IAnjutaEditorIface g_iface;
	

	void (*to_lower) (IAnjutaEditorConvert *obj, gint start_position, gint end_position, GError **err);
	void (*to_upper) (IAnjutaEditorConvert *obj, gint start_position, gint end_position, GError **err);

};


ianjuta_editor_convert_error_quark ()

GQuark      ianjuta_editor_convert_error_quark
                                            (void);

Returns :

ianjuta_editor_convert_to_lower ()

void        ianjuta_editor_convert_to_lower (IAnjutaEditorConvert *obj,
                                             gint start_position,
                                             gint end_position,
                                             GError **err);

change characters from start position to end position to lowercase

obj : Self
start_position : Start position.
end_position : End position.
err : Error propagation and reporting

ianjuta_editor_convert_to_upper ()

void        ianjuta_editor_convert_to_upper (IAnjutaEditorConvert *obj,
                                             gint start_position,
                                             gint end_position,
                                             GError **err);

change characters from start position to end position to uppercase.

obj : Self
start_position : Start position.
end_position : End position.
err : Error propagation and reporting