IAnjutaEditorComment

IAnjutaEditorComment — Text editor comment interface

Stability Level

Unstable, unless otherwise indicated

Synopsis


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


#define             IANJUTA_EDITOR_COMMENT_ERROR
                    IAnjutaEditorComment;
                    IAnjutaEditorCommentIface;
GQuark              ianjuta_editor_comment_error_quark  (void);
void                ianjuta_editor_comment_block        (IAnjutaEditorComment *obj,
                                                         GError **err);
void                ianjuta_editor_comment_box          (IAnjutaEditorComment *obj,
                                                         GError **err);
void                ianjuta_editor_comment_stream       (IAnjutaEditorComment *obj,
                                                         GError **err);

Object Hierarchy


  GInterface
   +----IAnjutaEditorComment

Prerequisites

IAnjutaEditorComment requires IAnjutaEditor and GObject.

Description

Details

IANJUTA_EDITOR_COMMENT_ERROR

#define IANJUTA_EDITOR_COMMENT_ERROR ianjuta_editor_comment_error_quark()


IAnjutaEditorComment

typedef struct _IAnjutaEditorComment IAnjutaEditorComment;


IAnjutaEditorCommentIface

typedef struct {
	IAnjutaEditorIface g_iface;
	

	void (*block) (IAnjutaEditorComment *obj, GError **err);
	void (*box) (IAnjutaEditorComment *obj, GError **err);
	void (*stream) (IAnjutaEditorComment *obj, GError **err);
} IAnjutaEditorCommentIface;


ianjuta_editor_comment_error_quark ()

GQuark              ianjuta_editor_comment_error_quark  (void);

Returns :

ianjuta_editor_comment_block ()

void                ianjuta_editor_comment_block        (IAnjutaEditorComment *obj,
                                                         GError **err);

Comment/Uncomment out selected block

obj : Self
err : Error propagation and reporting

ianjuta_editor_comment_box ()

void                ianjuta_editor_comment_box          (IAnjutaEditorComment *obj,
                                                         GError **err);

Comment/Uncomment out selected block

obj : Self
err : Error propagation and reporting

ianjuta_editor_comment_stream ()

void                ianjuta_editor_comment_stream       (IAnjutaEditorComment *obj,
                                                         GError **err);

Comment/Uncomment out selected block

obj : Self
err : Error propagation and reporting