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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* Copyright(c) 1992 Bell Communications Research, Inc. (Bellcore)
* All rights reserved
*
* Copyright 2001 by the LessTif Developers
*
* 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.
*
* $Id: matrix.c,v 1.8 2006/05/15 15:57:04 tobiasoed Exp $
*/
#ifdef HAVE_CONFIG_H
#include <XbaeConfig.h>
#endif
#include <stdlib.h>
#ifdef USE_EDITRES
#include <X11/Intrinsic.h>
#include <X11/Xmu/Editres.h>
#endif
#include <Xbae/Matrix.h>
#include <stdio.h>
static String fallback[] = {
"Matrix*mw.rowLabels: 1, 2, 3, 4, 5, 6",
"Matrix*mw.columns: 5",
"Matrix*mw.rows: 6",
"Matrix*mw.columnWidths: 8, 3, 10, 10, 10",
"Matrix*mw.allowColumnResize: True",
"Matrix*mw.cells: Orange, 12, Rough, Inches, Large\\n"
" Blue, 323, Smooth, Feet, Medium\\n"
" Yellow, 456, Bristly, Meters, Large\\n"
" Green, 1, Knobby, Miles, Small\\n"
" Pink, 33, Hairy, Quarts, Small\\n"
" Black, 7, Silky, Gallons, Small",
"Matrix*mw.cellBackgrounds: white, antiquewhite, white, white, antiquewhite\\n"
" white, antiquewhite, white, white, antiquewhite\\n"
" white, antiquewhite, white, white, antiquewhite\\n"
" white, antiquewhite, white, white, antiquewhite\\n"
" white, antiquewhite, white, white, antiquewhite\\n"
" white, antiquewhite, white, white, antiquewhite",
"Matrix*mw.colors: blue, black, blue, blue, black\\n"
" blue, black, blue, blue, black\\n"
" blue, black, blue, blue, black\\n"
" blue, black, blue, blue, black\\n"
" blue, black, blue, blue, black\\n"
" blue, black, blue, blue, black",
"Matrix*mw.columnLabels: Color, #, Texture, Measure, Size",
"Matrix*mw.columnLabelAlignments:alignment_beginning, alignment_center,"
" alignment_beginning, alignment_beginning,"
" alignment_beginning",
"Matrix*mw.columnAlignments: alignment_beginning, alignment_end,"
" alignment_beginning, alignment_beginning,"
" alignment_beginning",
"Matrix*labelFont: -*-helvetica-bold-r-*-*-14-*-*-*-*-*-*-*",
"Matrix*fontList: -*-helvetica-medium-r-*-*-10-*-*-*-*-*-*-*",
"Matrix*cellHighlightThickness: 2",
"Matrix*cellShadowThickness: 2",
"Matrix*cellMarginWidth: 0",
"Matrix*cellMarginHeight: 3",
"Matrix*gridType: grid_cell_shadow",
"Matrix*cellShadowType: shadow_in",
"Matrix*rowLabelColor: Red",
"Matrix*columnLabelColor: Blue",
"Matrix*mw.buttonLabels: True",
"Matrix*mw.allowColumnResize: True",
NULL
};
void
labelCB(Widget mw, XtPointer cd, XtPointer cb)
{
XbaeMatrixLabelActivateCallbackStruct *cbs =
( XbaeMatrixLabelActivateCallbackStruct * )cb;
if( cbs->row_label )
if( XbaeMatrixIsRowSelected( mw, cbs->row ) )
XbaeMatrixDeselectRow( mw, cbs->row );
else
XbaeMatrixSelectRow( mw, cbs->row );
else
if( XbaeMatrixIsColumnSelected( mw, cbs->column ) )
XbaeMatrixDeselectColumn( mw, cbs->column );
else
XbaeMatrixSelectColumn( mw, cbs->column );
}
/*
* Simple example of loaded Matrix
*/
int
main(int argc, char *argv[])
{
Widget toplevel, mw;
XtAppContext app;
toplevel = XtVaAppInitialize(&app, "Matrix",
NULL, 0,
&argc, argv,
fallback,
NULL);
#ifdef USE_EDITRES
XtAddEventHandler( toplevel, (EventMask)0, True,
_XEditResCheckMessages, NULL);
#endif
XFontStruct *plain_font = XLoadQueryFont(
XtDisplay(toplevel),
"-*-helvetica-medium-o-*-*-10-*-*-*-*-*-*-*");
#if 1
XmFontListEntry font_list_entry = XmFontListEntryCreate(
XmFONTLIST_DEFAULT_TAG,
XmFONT_IS_FONT,
plain_font);
XmFontList plain_font_list = XmFontListAppendEntry(
NULL,
font_list_entry);
#else
XmFontList plain_font_list = XmFontListCreate(
plain_font,
XmSTRING_DEFAULT_CHARSET);
#endif
printf("plain font: %d plain font list %d\n",plain_font == NULL, plain_font_list == NULL);
mw = XtVaCreateManagedWidget("mw",
xbaeMatrixWidgetClass, toplevel,
XmNlabelFont, plain_font_list,
XmNfontList, plain_font_list,
NULL);
XmFontListEntryFree(&font_list_entry);
XmFontListFree(plain_font_list);
XtAddCallback(mw, XmNlabelActivateCallback, labelCB, NULL);
XtRealizeWidget(toplevel);
XtAppMainLoop(app);
/*NOTREACHED*/
return 0;
}
|