123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /******************************<+>*************************************
- **********************************************************************
- **
- ** File: WmParseP.c
- **
- ** Project: HP/Motif Workspace Manager (dtwm)
- **
- ** Description:
- ** -----------
- ** This file contains the common strings used in parsing the
- ** dtwmrc file
- **
- **
- *********************************************************************
- **
- ** (c) Copyright 1987, 1988, 1989, 1990, 1991 HEWLETT-PACKARD COMPANY
- ** ALL RIGHTS RESERVED
- **
- **********************************************************************
- **********************************************************************
- **
- **
- **********************************************************************
- ******************************<+>*************************************/
- /*
- * Included Files:
- */
- /*
- * Panel keywords (2.x compatibility)
- */
- char _dtwmFpPanelOld[] = "frontpanel";
- char _dtwmFpRowOld[] = "row";
- char _dtwmFpDropEffects[] = "dropeffects";
- /*
- * Panel keywords (3.0 syntax)
- */
- char _dtwmFpPanel[] = "panel";
- char _dtwmFpBox[] = "box";
- char _dtwmFpCommand[] = "command";
- char _dtwmFpControl[] = "control";
- char _dtwmFpSwitch[] = "switch";
- char _dtwmFpAnimation[] = "animation";
- char _dtwmFpInclude[] = "include";
- /*
- * Panel, Box, Control common attribute keywords
- */
- char _dtwmFpaColorSet[] = "color_set";
- char _dtwmFpaBackgroundTile[] = "background_tile";
- char _dtwmFpaLayoutPolicy[] = "layout_policy";
- char _dtwmFpaOrientation[] = "orientation";
- char _dtwmFpaSubpanelDirection[] = "subpanel_direction";
- char _dtwmFpaNumberOfRows[] = "number_of_rows";
- char _dtwmFpaNumberOfColumns[] = "number_of_columns";
- char _dtwmFpaTitle[] = "title";
- /*
- * Control old reserved names and control types
- */
- char _dtwmFpnDtwmblank[] = "dtwmblank";
- char _dtwmFpnDtwmbox[] = "dtwmbox";
- char _dtwmFpnDtwmbusy[] = "dtwmbusy";
- char _dtwmFpnDtwmclock[] = "dtwmclock";
- char _dtwmFpnDtwmdate[] = "dtwmdate";
- char _dtwmFpnDtwmload[] = "dtload";
- char _dtwmFpnDtwmname[] = "dtwmname";
- char _dtwmFpnDtwmrib[] = "dtwmrib";
- char _dtwmFpnDtwmswitch[] = "dtwmswtch";
- char _dtwmFptClock[] = "clock";
- char _dtwmFptDate[] = "date";
- char _dtwmFptBlank[] = "blank";
- char _dtwmFptBusy[] = "busy";
- char _dtwmFptButton[] = "button";
- char _dtwmFptClient[] = "client";
- char _dtwmFptIconbox[] = "iconbox";
- char _dtwmFptMail[] = "mail";
- char _dtwmFptMonitorFile[] = "monitor_file";
- /*
- * Panel type keywords
- */
- char _dtwmFptFrontPanel[] = "front_panel";
- /*
- * Box type keywords
- */
- char _dtwmFptPrimary[] = "primary";
- char _dtwmFptSecondary[] = "secondary";
- char _dtwmFptSubpanel[] = "subpanel";
- char _dtwmFptRowColumn[] = "row_column";
- /*
- * Layout types
- */
- char _dtwmFptStandard[] = "standard";
- char _dtwmFptAsNeeded[] = "as_needed";
- /*
- * Orientation keywords
- */
- char _dtwmFptHorizontal[] = "horizontal";
- char _dtwmFptVertical[] = "vertical";
- /*
- * Subpanel Direction keywords
- */
- char _dtwmFptNorth[] = "north";
- char _dtwmFptSouth[] = "south";
- char _dtwmFptEast[] = "east";
- char _dtwmFptWest[] = "west";
- /*
- * Control-specific attribute keywords
- */
- char _dtwmFpaClientGeometry[] = "client_geometry";
- char _dtwmFpaClientName[] = "client_name";
- char _dtwmFpaContextMenu[] = "context_menu";
- char _dtwmFpaDropAction[] = "drop_action";
- char _dtwmFpaDropAnimation[] = "drop_animation";
- char _dtwmFpaPushAnimation[] = "push_animation";
- char _dtwmFpaAlternateImage[] = "alternate_image";
- char _dtwmFpaHelpString[] = "help_string";
- char _dtwmFpaHelpTopic[] = "help_topic";
- char _dtwmFpaImage[] = "image";
- char _dtwmFpaLabel[] = "label";
- char _dtwmFpaPushAction[] = "push_action";
- char _dtwmFpaPushRecall[] = "push_recall";
- char _dtwmFpaTrue[] = "true";
- char _dtwmFpaType[] = "type";
- char _dtwmFpaSubPanel[] = "subpanel";
|