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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/* $XConsortium: man.h,v 1.31 94/12/16 21:36:53 gildea Exp $ */
/*
Copyright (c) 1987, 1988 X Consortium
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from the X Consortium.
*/
/* $XFree86: xc/programs/xman/man.h,v 1.4 2001/07/25 15:05:27 dawes Exp $ */
/* X toolkit header files */
#include <X11/Intrinsic.h>
#include <X11/StringDefs.h>
#include <X11/Shell.h>
#include <X11/Xaw/Cardinals.h>
/* Std system and C header files */
#include <stdio.h>
#include <X11/Xfuncs.h>
#include <X11/Xos.h>
/* X include files */
#include <X11/Xatom.h>
/* Widget header files. */
#include <X11/Xaw/AsciiText.h>
#include <X11/Xaw/SmeBSB.h>
#include <X11/Xaw/Box.h>
#include <X11/Xaw/Command.h>
#include <X11/Xaw/Dialog.h>
#include <X11/Xaw/Label.h>
#include <X11/Xaw/List.h>
#include <X11/Xaw/MenuButton.h>
#include <X11/Xaw/SimpleMenu.h>
#include <X11/Xaw/Paned.h>
#include <X11/Xaw/Viewport.h>
/* program specific header files. */
#include "ScrollByL.h"
#include "version.h"
#include "defs.h"
/*
* Assigning values here allows the user of Bitwise Or.
*/
typedef struct _XmanFonts {
XFontStruct * directory; /* The font for the directory. */
} XmanFonts;
typedef struct _XmanCursors {
Cursor top, /* The top Cursor, default for xman. */
help, /* The top cursor for the help menu. */
manpage, /* The cursor for the Manpage. */
search_entry; /* The cursor for the text widget in the
search box.*/
Pixel fg_color; /* foreground color of cursors. */
Pixel bg_color; /* background color of cursors. */
} XmanCursors;
typedef struct _ManPageWidgets {
Widget manpage, /* The manual page window (scrolled) */
directory, /* The widget in which all directories will
appear. */
*box; /* The boxes containing the sections. */
} ManPageWidgets;
typedef struct _MenuStruct {
caddr_t data;
int number;
XrmQuark quark;
} MenuStruct;
/*
* The manual sections and entries
*/
typedef struct tManual {
char * blabel; /* The button label. */
char ** entries; /* The individual man page file names. */
char ** entries_less_paths; /* Entry names only */
int nentries; /* how many (TOTAL)*/
int nalloc; /* how much space allocated */
int flags; /* suffix, fold */
} Manual;
/* psuedo Globals that are specific to each manpage created. */
typedef struct _ManpageGlobals{
int current_directory; /* The directory currently being shown
on this manpage. */
Boolean dir_shown, /* True if the directory is then current
visable screen */
both_shown; /* If true then both the manpage and
the directory are to be shown.*/
Widget label, /* The label widget at the top of the page. */
standby, /* The please standby widget. */
save, /* The "would you like to save?" widget. */
search_widget, /* The search widget popup. */
help_button, /* The help button. */
option_menu, /* The option menu. */
text_widget; /* text widget containing search string. */
/* Widgets (Objects really) for the command menu entries. */
Widget dir_entry, manpage_entry, help_entry,
search_entry, both_screens_entry, remove_entry, open_entry,
version_entry, quit_entry;
char manpage_title[80]; /* The label to use for the current manpage. */
char save_file[80]; /* the name of the file to save fomatted
page into. */
char tempfile[80]; /* the name of the file to copy the formatted
page from. */
Boolean compress; /* Compress file on save? */
Boolean gzip; /* Gzip file on save? */
char ** section_name; /* The name of each of the sections */
ManPageWidgets manpagewidgets; /* The manpage widgets. */
/* Things to remember when cleaning up whne killing manpage. */
Widget This_Manpage; /* a pointer to the root of
this manpage. */
} ManpageGlobals;
/* Resource manager sets these. */
typedef struct _Xman_Resources {
XmanFonts fonts; /* The fonts used for the man pages. */
XmanCursors cursors; /* The cursors for xman. */
Boolean show_help_syntax; /* True of syntax message should be dumped to
stdout. */
Boolean both_shown_initial; /* The initial state of the manual pages
show two screens or only one. */
Boolean top_box_active; /* Put up the Top Box. */
Boolean clear_search_string; /* clear the search string each time it
is popped down? */
int directory_height; /* The default height of directory in
both_shown mode. */
char * help_file; /* The name of the help file. */
char * title; /* The title for topBox */
Boolean iconic; /* Should topBox come up in an iconic state */
} Xman_Resources;
/************************************************************
*
* Function Defintions
*
************************************************************/
/*
* This is easier than trying to find all calls to StrAlloc().
*/
#define StrAlloc(ptr) XtNewString(ptr)
/* Standard library function definitions. */
#include <stdlib.h>
/* buttons.c */
ManpageGlobals * InitPsuedoGlobals(void);
Widget CreateManpage(FILE * file);
void CreateManpageWidget(ManpageGlobals * man_globals, char * name, Boolean full_instance);
void FormUpWidgets(Widget parent, char ** full_size, char ** half_size);
void MakeDirectoryBox(ManpageGlobals *man_globals, Widget parent, Widget *dir_disp, int section);
void MakeSaveWidgets(ManpageGlobals *man_globals, Widget parent);
void MakeTopBox(void);
/* handler.c */
void DirPopupCallback(Widget w, XtPointer pointer, XtPointer junk);
void DirectoryHandler(Widget w, XtPointer global_pointer, XtPointer ret_val);
void OptionCallback(Widget w, XtPointer pointer, XtPointer junk);
void Popup(Widget w, XtGrabKind grab_kind);
/* Action Routines. */
void CreateNewManpage(Widget w, XEvent * event, String * params, Cardinal * num_params);
void GotoPage(Widget w, XEvent * event, String * params, Cardinal * num_params);
void PopupHelp(Widget w, XEvent * event, String * params, Cardinal * num_params);
void PopupSearch(Widget w, XEvent * event, String * params, Cardinal * num_params);
void Quit(Widget w, XEvent * event, String * params, Cardinal * num_params);
void RemoveThisManpage(Widget w, XEvent * event, String * params, Cardinal * num_params);
void SaveFormattedPage(Widget w, XEvent * event, String * params, Cardinal * num_params);
void Search(Widget w, XEvent * event, String * params, Cardinal * num_params);
void ShowVersion(Widget w, XEvent * event, String * params, Cardinal * num_params);
/* help.c */
Boolean MakeHelpWidget(void);
Boolean OpenHelpfile(ManpageGlobals * man_globals);
/* man.c */
Bool ReadManConfig(char manpath[]);
int Man(void);
/* misc.c */
FILE * DoSearch(ManpageGlobals * man_globals, int type);
FILE * FindManualFile(ManpageGlobals * man_globals, int section_num, int entry_num);
ManpageGlobals * GetGlobals(Widget w);
void AddCursor(Widget w, Cursor cursor);
void ChangeLabel(Widget w, char * str);
void OpenFile(ManpageGlobals * man_globals, FILE * file);
void PopupWarning(ManpageGlobals * man_globals, char * string);
void PositionCenter(Widget widget, int x, int y, int above, int left, int v_space, int h_space);
void PrintError(char * string);
void RemoveGlobals(Widget w);
void SaveGlobals(Widget w, ManpageGlobals * globals);
void ParseEntry(char *entry, char *path, char *sect, char *page);
FILE * Format(ManpageGlobals * man_globals, char * entry);
/* search */
void MakeSearchWidget(ManpageGlobals * man_globals, Widget parent);
/* tkfunctions.c */
int Width(Widget);
int Height(Widget);
int BorderWidth(Widget);
char * Name(Widget);
|