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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/***************************************************************************/
/* This code is part of X-toolkit widget library called Nws */
/* Copyright (c) 1997,1998,1999 Ondrejicka Stefan */
/* (ondrej@idata.sk) */
/* Distributed under GPL 2 or later */
/***************************************************************************/
#ifndef _MwLabelME_H_
#define _MwLabelME_H_
#include "MwBaseME.h"
#include "MwNws.h"
#ifndef XtNleft_icon
#define XtNleft_icon "left_icon"
#endif
#ifndef XtCLeft_icon
#define XtCLeft_icon "Left_icon"
#endif
#ifndef XtNright_icon
#define XtNright_icon "right_icon"
#endif
#ifndef XtCRight_icon
#define XtCRight_icon "Right_icon"
#endif
#ifndef XtNlabel
#define XtNlabel "label"
#endif
#ifndef XtCLabel
#define XtCLabel "Label"
#endif
#ifndef XtNlabel_justify
#define XtNlabel_justify "label_justify"
#endif
#ifndef XtCLabel_justify
#define XtCLabel_justify "Label_justify"
#endif
#ifndef XtNfont
#define XtNfont "font"
#endif
#ifndef XtCFont
#define XtCFont "Font"
#endif
#ifndef XtNspacing
#define XtNspacing "spacing"
#endif
#ifndef XtCSpacing
#define XtCSpacing "Spacing"
#endif
#ifndef XtNlabel_position
#define XtNlabel_position "label_position"
#endif
#ifndef XtCLabel_position
#define XtCLabel_position "Label_position"
#endif
typedef struct _MwLabelMEClassRec *MwLabelMEObjectClass;
typedef struct _MwLabelMERec *MwLabelMEObject;
extern WidgetClass mwLabelMEObjectClass;
#endif
|