File: gcliplabel.h

package info (click to toggle)
mc 4.1.35-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,924 kB
  • ctags: 9,665
  • sloc: ansic: 84,273; tcl: 1,779; makefile: 1,266; sh: 864; perl: 262; awk: 148; sed: 93; csh: 1
file content (42 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
#ifndef __GTK_CLIP_LABEL_H__
#define __GTK_CLIP_LABEL_H__


#include <gdk/gdk.h>
#include <gtk/gtklabel.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */


#define GTK_CLIP_LABEL(obj)          GTK_CHECK_CAST (obj, gtk_clip_label_get_type (), GtkClipLabel)
#define GTK_CLIP_LABEL_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_clip_label_get_type (), GtkClipLabelClass)
#define GTK_IS_CLIP_LABEL(obj)       GTK_CHECK_TYPE (obj, gtk_clip_label_get_type ())


typedef struct _GtkClipLabel       GtkClipLabel;
typedef struct _GtkClipLabelClass  GtkClipLabelClass;

struct _GtkClipLabel
{
  GtkLabel misc;
};

struct _GtkClipLabelClass
{
  GtkLabelClass parent_class;
};


guint      gtk_clip_label_get_type    (void);
GtkWidget* gtk_clip_label_new         (const char        *str);
void       gtk_clip_label_set          (GtkLabel *label,
					const char *str);

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* __GTK_CLIP_LABEL_H__ */