/* * @OPENGROUP_COPYRIGHT@ * COPYRIGHT NOTICE * Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc. * Copyright (c) 1996, 1997, 1998, 1999, 2000 The Open Group * ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for * the full copyright text. * * This software is subject to an open license. It may only be * used on, with or for operating systems which are themselves open * source systems. You must contact The Open Group for a license * allowing distribution and sublicensing of this software on, with, * or for operating systems which are not Open Source programs. * * See http://www.opengroup.org/openmotif/license for full * details of the license agreement. Any use, reproduction, or * distribution of the program constitutes recipient's acceptance of * this agreement. * * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS * PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY * WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY * OR FITNESS FOR A PARTICULAR PURPOSE * * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT * NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE * EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. */ /* * HISTORY */ #ifdef REV_INFO #ifndef lint static char rcsid[] = "$XConsortium: DNDLabel1.c /main/9 1995/07/14 11:53:50 drk $" #endif #endif /* * File: DNDLabel1.c * * A program to be run as one of the clients to test Drag and Drop * */ #include /* Global Variables */ Widget RowColumn1; Widget Label1; Boolean use_instruction_box; static char dragTranslations[] = "#override \ Ctrld: ProcessDrag()"; void main (argc, argv) int argc; char **argv; { register int n; Arg args[MAX_ARGS]; XmString tcs; XtTranslations parsed_xlations; use_instruction_box = True; CommonTestInit(argc, argv); if (UserData != NULL) ProcessCommandArgs(); n = 0; XtSetArg(args[n], XmNwidth, 400); n++; XtSetArg(args[n], XmNheight, 300); n++; XtSetValues(Shell1, args, n); XtRealizeWidget(Shell1); /* create and realize a rowcolumn container widget */ n = 0; XtSetArg(args[n], XmNisAligned, FALSE); n++; RowColumn1 = XmCreateRowColumn(Shell1, "RowColumn1", args, n); XtManageChild(RowColumn1); /* make a string label widget */ n = 0; tcs = XmStringLtoRCreate("Two-Line\nLabel String", XmSTRING_DEFAULT_CHARSET); XtSetArg(args[n], XmNlabelString, tcs); n++; XtSetArg(args[n], XmNalignment, XmALIGNMENT_CENTER); n++; XtSetArg(args[n], XmNrecomputeSize, TRUE); n++; Label1 = XmCreateLabel(RowColumn1, "Label1", args, n); XtManageChild(Label1); XmStringFree(tcs); if (use_instruction_box == True) { CommonPause(); CommonPause(); parsed_xlations = XtParseTranslationTable(dragTranslations); n=0; XtSetArg (args[n], XmNtranslations, parsed_xlations); n++; XtSetValues (Label1, args, n); CommonPause(); CommonPause(); } XtAppMainLoop(app_context); } #define WORD_LEN 32 ProcessCommandArgs() { char *user_data; char next_word[WORD_LEN + 1]; int num_spaces; user_data = UserData; while (*user_data != '\0') { get_next_word(user_data, next_word, &num_spaces); user_data += (strlen(next_word) + num_spaces); if (strcmp(next_word, "-noinstruct") == 0) { use_instruction_box = False; continue; } } free(UserData); } get_next_word(source, dest, spaces) char *source; char *dest; int *spaces; { int n; int space_count; space_count = 0; while (isspace(*source)) { source++; space_count++; } n = 0; while (!isspace(*source) && *source != '\0' && n < WORD_LEN) { *dest++ = *source++; n++; } *dest = '\0'; *spaces = space_count; }