File: screem-ctags-view.h

package info (click to toggle)
screem 0.12.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 19,728 kB
  • ctags: 8,333
  • sloc: ansic: 98,234; sh: 8,278; xml: 2,278; makefile: 1,054
file content (35 lines) | stat: -rw-r--r-- 1,103 bytes parent folder | download | duplicates (3)
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
#ifndef SCREEM_CTAGS_VIEW_H
#define SCREEM_CTAGS_VIEW_H

#include <gtk/gtktreeview.h>

#define SCREEM_TYPE_CTAGS_VIEW  (screem_ctags_view_get_type())
#define SCREEM_CTAGS_VIEW(obj)  (G_TYPE_CHECK_INSTANCE_CAST( ( obj ), SCREEM_TYPE_CTAGS_VIEW, \
                                                ScreemCtagsView ) )
#define SCREEM_CTAGS_VIEW_CLASS(klass)  (G_TYPE_CHECK_CLASS_CAST( ( klass ), \
                                                             SCREEM_TYPE_CTAGS_VIEW, \
                                                             ScreemCtagsViewClass ) )
#define SCREEM_IS_CTAGS_VIEW(obj)  (G_TYPE_CHECK_INSTANCE_TYPE( ( obj ), SCREEM_TYPE_CTAGS_VIEW ) )

typedef struct ScreemCtagsViewPrivate ScreemCtagsViewPrivate;

typedef struct {
	GtkTreeView parent;
	
	ScreemCtagsViewPrivate *priv;
} ScreemCtagsView;

typedef struct {
	GtkTreeViewClass parent_class;

	void (*jumpto)( ScreemCtagsView *view,
			const gchar *filename,
			const gchar *pattern,
			guint line );

} ScreemCtagsViewClass;

GType screem_ctags_view_get_type( void );
ScreemCtagsView *screem_ctags_view_new( void );

#endif