home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************/
- /* Copyright 1988, 1989 by Chuck Musciano and Harris Corporation */
- /* */
- /* Permission to use, copy, modify, and distribute this software */
- /* and its documentation for any purpose and without fee is */
- /* hereby granted, provided that the above copyright notice */
- /* appear in all copies and that both that copyright notice and */
- /* this permission notice appear in supporting documentation, and */
- /* that the name of Chuck Musciano and Harris Corporation not be */
- /* used in advertising or publicity pertaining to distribution */
- /* of the software without specific, written prior permission. */
- /* Chuck Musciano and Harris Corporation make no representations */
- /* about the suitability of this software for any purpose. It is */
- /* provided "as is" without express or implied warranty. This */
- /* software may not be sold without the prior explicit permission */
- /* of Harris Corporation. */
- /************************************************************************/
-
- #define eliminate(x) panel_set(x, PANEL_SHOW_ITEM, FALSE, 0), panel_destroy_item(x)
-
- #define MAX_ENTRIES 128
-
- #define ROW_HEIGHT 16
- #define ROW_MARGIN 4
-
- #define ITEM_WIDTH 642
-
- #define SHORT_TEXT_LENGTH 25
- #define LONG_TEXT_LENGTH 54
-
- typedef struct e_data e_rec, *e_ptr;
-
- struct e_data {Panel_item handle;
- Panel_item save;
- Panel_item stamp;
- Panel_item open;
- Panel_item flash;
- Panel_item beep;
- Panel_item lines;
- Panel_item start;
- Panel_item end;
- boolean created;
- };
-
- PUBLIC e_rec entry[MAX_ENTRIES];
- PUBLIC int entries;
- PUBLIC f_ptr clipboard;
- PUBLIC int cb_size;
- PUBLIC Pixfont *bold, *regular;
-