/usr/include/Xbae/Clip.h is in libxbae-dev 4.60.4-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 70 71 72 73 74 75 76 77 78 79 80 | /*
* Copyright(c) 1992 Bell Communications Research, Inc. (Bellcore)
* Copyright (c) 1999-2003 by the LessTif Developers.
*
* All rights reserved
* Permission to use, copy, modify and distribute this material for
* any purpose and without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies, and that the name of Bellcore not be used in advertising
* or publicity pertaining to this material without the specific,
* prior written permission of an authorized representative of
* Bellcore.
*
* BELLCORE MAKES NO REPRESENTATIONS AND EXTENDS NO WARRANTIES, EX-
* PRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR ANY PARTICULAR PURPOSE, AND THE WARRANTY AGAINST IN-
* FRINGEMENT OF PATENTS OR OTHER INTELLECTUAL PROPERTY RIGHTS. THE
* SOFTWARE IS PROVIDED "AS IS", AND IN NO EVENT SHALL BELLCORE OR
* ANY OF ITS AFFILIATES BE LIABLE FOR ANY DAMAGES, INCLUDING ANY
* LOST PROFITS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES RELAT-
* ING TO THE SOFTWARE.
*
* ClipWidget Author: Andrew Wason, Bellcore, aw@bae.bellcore.com
*
* $Id: Clip.h,v 1.10 2004/11/11 10:18:23 dannybackx Exp $
*/
/*
* Clip.h - Public definitions for Clip widget
*/
#ifndef _Xbae_Clip_h
#define _Xbae_Clip_h
#include <Xm/Xm.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Resources:
* Name Class RepType Default Value
* ---- ----- ------- -------------
* exposeProc Function Function NULL
* focusCallback Callback Callback NULL
*/
#define XmNexposeProc "exposeProc"
typedef void (*XbaeClipExposeProc)(Widget w, XRectangle *expose, XEvent *event, Region r);
#ifdef WIN32
#define INTERNALREF externalref __declspec(dllimport)
#else
#define INTERNALREF extern
#endif
/* Class record constants */
INTERNALREF WidgetClass xbaeClipWidgetClass;
#undef INTERNALREF
typedef struct _XbaeClipClassRec *XbaeClipWidgetClass;
typedef struct _XbaeClipRec *XbaeClipWidget;
/*
* External interfaces to class methods
*/
extern void XbaeClipRedraw(Widget);
extern void XbaeClipScrollVert(Widget w, GC gc, int delta);
extern void XbaeClipScrollHoriz(Widget w, GC gc, int delta);
#ifdef __cplusplus
}
#endif
#endif /* _Xbae_Clip_h */
|