/* $XConsortium: SmeBSB.c,v 1.19 94/04/17 20:12:49 kaleb Exp $ */
/*
Copyright (c) 1989, 1994 X Consortium
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the X Consortium.
*/
/*
* SmeBSB.c - Source code file for BSB Menu Entry object.
*
* Date: September 26, 1989
*
* By: Chris D. Peterson
* MIT X Consortium
* kit@expo.lcs.mit.edu
*/
#include <X11/IntrinsicP.h>
#include <X11/StringDefs.h>
/* needed for abs() */
#ifdef _LP64
#include <stdlib.h>
#else /* _LP64 */
#ifdef X_NOT_STDC_ENV
extern int abs();
#else
#include <stdlib.h>
#endif
#endif /* _LP64 */
#include <stdio.h>
};
/*
* Semi Public function definitions.
*/
static void ClassInitialize();
static XtGeometryResult QueryGeometry();
/*
* Private Function Definitions.
*/
static void CreateGCs(), DestroyGCs();
{
/* class_name */ "SmeBSB",
/* size */ sizeof(SmeBSBRec),
/* class_initializer */ ClassInitialize,
/* class_part_initialize*/ NULL,
/* Class init'ed */ FALSE,
/* initialize */ Initialize,
/* initialize_hook */ NULL,
/* realize */ NULL,
/* actions */ NULL,
/* num_actions */ ZERO,
/* resources */ resources,
/* xrm_class */ NULLQUARK,
/* compress_motion */ FALSE,
/* compress_exposure */ FALSE,
/* compress_enterleave*/ FALSE,
/* visible_interest */ FALSE,
/* destroy */ Destroy,
/* resize */ NULL,
/* expose */ Redisplay,
/* set_values */ SetValues,
/* set_values_hook */ NULL,
/* set_values_almost */ XtInheritSetValuesAlmost,
/* get_values_hook */ NULL,
/* accept_focus */ NULL,
/* intrinsics version */ XtVersion,
/* callback offsets */ NULL,
/* tm_table */ NULL,
/* query_geometry */ QueryGeometry,
/* display_accelerator*/ NULL,
/* extension */ NULL
},{
/* SimpleMenuClass Fields */
/* highlight */ FlipColors,
/* unhighlight */ FlipColors,
/* notify */ XtInheritNotify,
/* extension */ NULL
}, {
/* BSBClass Fields */
/* extension */ NULL
}
};
/************************************************************
*
* Semi-Public Functions.
*
************************************************************/
/* Function Name: ClassInitialize
* Description: Initializes the SmeBSBObject.
* Arguments: none.
* Returns: none.
*/
static void
{
}
/* Function Name: Initialize
* Description: Initializes the simple menu widget
* Arguments: request - the widget requested by the argument list.
* new - the new widget with both resource and non
* resource values.
* Returns: none.
*/
/* ARGSUSED */
static void
{
else
}
/* Function Name: Destroy
* Description: Called at destroy time, cleans up.
* Arguments: w - the simple menu widget.
* Returns: none.
*/
static void
Destroy(w)
Widget w;
{
DestroyGCs(w);
}
/* Function Name: Redisplay
* Description: Redisplays the contents of the widget.
* Arguments: w - the simple menu widget.
* event - the X event that caused this redisplay.
* region - the region the needs to be repainted.
* Returns: none.
*/
/* ARGSUSED */
static void
Widget w;
{
}
else { /*else, compute size from font like R5*/
}
if ( w == XawSimpleMenuGetActiveEntry(XtParent(w)) ) {
}
else
}
else
case XtJustifyCenter:
}
else {
}
break;
case XtJustifyRight:
+ t_width );
}
else {
+ t_width );
}
break;
case XtJustifyLeft:
default:
break;
}
/* this will center the text in the gadget top-to-bottom */
}
else {
}
}
DrawBitmaps(w, gc);
}
/* Function Name: SetValues
* Description: Relayout the menu when one of the resources is changed.
* Arguments: current - current state of the widget.
* request - what was requested.
* new - what the widget will become.
* Returns: none
*/
/* ARGSUSED */
static Boolean
{
}
}
}
}
/* DONT changes the GCs, because the fontset is not in them. */
if (ret_val) {
}
return(ret_val);
}
/* Function Name: QueryGeometry.
* Description: Returns the preferred geometry for this widget.
* Arguments: w - the menu entry object.
* itended, return_val - the intended and return geometry info.
* Returns: A Geometry Result.
*
* See the Intrinsics manual for details on what this function is for.
*
* I just return the height and width of the label plus the margins.
*/
static XtGeometryResult
Widget w;
{
}
}
if (ret_val == XtGeometryAlmost) {
return(XtGeometryNo);
}
return(ret_val);
}
/* Function Name: FlipColors
* Description: Invert the colors of the current entry.
* Arguments: w - the bsb menu entry widget.
* Returns: none.
*/
static void
FlipColors(w)
Widget w;
{
return;
}
}
/************************************************************
*
* Private Functions.
*
************************************************************/
/* Function Name: GetDefaultSize
* Description: Calculates the Default (preferred) size of
* this menu entry.
* Arguments: w - the menu entry widget.
* width, height - default sizes (RETURNED).
* Returns: none.
*/
static void
Widget w;
{
*width = 0;
else
}
else {
*width = 0;
else
}
}
/* Function Name: DrawBitmaps
* Description: Draws left and right bitmaps.
* Arguments: w - the simple menu widget.
* gc - graphics context to use for drawing.
* Returns: none
*/
static void
Widget w;
{
/*
* Draw Left Bitmap.
*/
}
/*
* Draw Right Bitmap.
*/
}
}
/* Function Name: GetBitmapInfo
* Description: Gets the bitmap information from either of the bitmaps.
* Arguments: w - the bsb menu entry widget.
* is_left - TRUE if we are testing left bitmap,
* FALSE if we are testing the right bitmap.
* Returns: none
*/
static void
Widget w;
{
int x, y;
char* bufp;
int len;
if (is_left) {
if (!XGetGeometry(XtDisplayOfObject(w),
else
} else
}
if (depth != 1) {
else
} else
}
}
}
if (!XGetGeometry(XtDisplayOfObject(w),
else
} else
}
if (depth != 1) {
else
} else
}
}
}
/* Function Name: CreateGCs
* Description: Creates all gc's for the simple menu widget.
* Arguments: w - the simple menu widget.
* Returns: none.
*/
static void
CreateGCs(w)
Widget w;
{
else
else
else
values.background = 0;
}
/* Function Name: DestroyGCs
* Description: Removes all gc's for the simple menu widget.
* Arguments: w - the simple menu widget.
* Returns: none.
*/
static void
DestroyGCs(w)
Widget w;
{
}
#ifdef apollo
/*
* The apollo compiler that we have optomizes out my code for
* FlipColors() since it is static. and no one executes it in this
* file. I am setting the function pointer into the class structure so
* that it can be called by my parent who will tell me to when to
* highlight and unhighlight.
*/
void _XawSmeBSBApolloHack ()
{
FlipColors();
}
#endif /* apollo */