DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T w

⟦9c27b6b18⟧ TextFile

    Length: 3226 (0xc9a)
    Types: TextFile
    Names: »wdgtdefs.h«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/others/quipu/uips/widget2/wdgtdefs.h« 

TextFile

/* wdgtdefs.h - widget structures declarations for the functions */

/*    This file has been modified by Damanjit Mahl @ Brunel University
 *    on 31st October 1989.
 */

/* 
 * $Header: /f/osi/others/quipu/uips/widget2/RCS/wdgtdefs.h,v 7.1 89/12/06 08:22:13 mrose Exp $
 *
 *
 * $Log:	wdgtdefs.h,v $
 * Revision 7.1  89/12/06  08:22:13  mrose
 * sync
 * 
 * Revision 6.0  89/03/18  23:34:49  mrose
 * Release 5.0
 * 
 */

/*
 *				  NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


extern int	returnmain();

/* REMEMBER TO NULL-TERMINATE ALL OF THESE STRUCTURE ARRAYS     */
/*--------------------------------------------------------------*/

extern int	main_quit(), main_help();
extern int	main_read(), main_list();
extern int	main_search(), main_modify ();
extern int	list_start(), list_help(), back_start();
extern int	srch_start(), srch_type(), srch_help(), srch_item();
extern int	rd_start(), rd_type(), rd_help();
extern int	quit(), cache_quit();
extern int      get_listed_object(),goto_addr(),scrollbar();

WIDGET mainwdgts[] = {
{LABEL," QUIPU X.500 Directory Service. ",CENTRE,NULLFN,0,0,EXPAND ,0},
{COMMAND, "Q: QUIT ",	 	'q',quit,   0,CRNL,0,0},
{COMMAND, "?: help ",	 	'?',main_help,   0,0,0,0},
{COMMAND, "R: read ", 	'r',rd_start,   0,0,0,0},
{COMMAND, "L: list ", 	'l',list_start,   0,0,0,0},
{COMMAND, "S: search ", 	's',srch_start, 0,0,0,0},
{COMMAND, "B: back ", 	'b',back_start, 0,0,0,0},
{DIALOG,  "Number: ",	      	'*',get_listed_object,   	0,0,EXPAND,0},
{DIALOG , "A: Address: ", 		'a', goto_addr,     0,CRNL,EXPAND,0},
{TOGGLE,  "K: Match ",         	'k',TOGGLEFN, 	0,0,0,0},
{TOGGLE,  "T: Type ",     	't',TOGGLEFN, 	0,0,0,0},
{DIALOG,  "V: Value: ",	      	'v',NULLFN,   	0,0,EXPAND,0},
/* Scrollbar always last */
{SCROLLBAR, "",                 '%',scrollbar, 0,0,3,0},
{FINISH,  "", 0,NULLFN} } ;


/*--------------------------------------------------------------*/

extern int detquit(), help_read(), help_list(), help_srch(), help_back(), help_number(), help_addr(), help_down(), help_up();
 
WIDGET dethelpwdgts[] = {
{LABEL,"QUIPU X.500 Directory Service: Help",CENTRE,NULLFN,0,0,EXPAND,0},
{COMMAND, "Q: QUIT ",'q',returnmain,   0,CRNL,0,0},
{COMMAND, "R: Read ",'r',help_read,   0,0,0,0},
{COMMAND, "L: List ",'l',help_list,   0,0,0,0},
{COMMAND, "S: Search ",'s',help_srch, 0,0,0,0},
{COMMAND, "B: Back ",'b',help_back, 0,0,0,0},
{COMMAND,  "N: Number ",'n',help_number,0,0,0,0},
{COMMAND , "A: Address ",'a',help_addr,0,0,0,0},
{SCROLLBAR, "",                 '%',scrollbar, 0,0,3,0},
{FINISH,  "", 0,NULLFN} } ;

/*--------------------------------------------------------------*/

extern int	help_cncs(), help_dtld();

WIDGET helpwdgts[] = {
{LABEL,"QUIPU X.500 Directory Service: HELP SELECTION",CENTRE,NULLFN,0,0,EXPAND,0},
{COMMAND, "Q: Quit ",       	'q',returnmain, 0,0,0,0},
{COMMAND, "C: Concise help ", 	'c', help_cncs, 0,0,0,0},
{COMMAND, "D: Detailed help ", 	'd', help_dtld, 0,0,0,0},
{SCROLLBAR, "",                 '%',scrollbar, 0,0,3,0},
{FINISH,  "", 0,NULLFN} } ;