summaryrefslogtreecommitdiff
path: root/man.h
blob: 2004dc2dd34a437cc47ae33c1d6b20862c603390 (plain)
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*

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.

*/

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

/* 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 <limits.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 "defs.h"

#define Error(x) { printf x ; exit(EXIT_FAILURE); }
#define Assertion(expr, msg) { if (!(expr)) { Error msg } }
#ifdef DEBUG
#  define Log(x)   { if(True)  printf x; }
#else
#  define Log(x)   { if(False) printf x; }
#endif /* DEBUG */

/*
 * 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;

/* pseudo 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
                                   visible 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, print_entry, version_entry, quit_entry;

#ifdef INCLUDE_XPRINT_SUPPORT
    /* Print objects and data */
    Widget printdialog_shell;   /* Shell for the print dialog */
    Widget printdialog;         /* Print dialog */
#endif                          /*INCLUDE_XPRINT_SUPPORT */
    /* Misc. */

    char manpage_title[80];     /* The label to use for the current manpage. */

    char save_file[80];         /* the name of the file to save formatted
                                   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? */
    Boolean bzip2;              /* Bzip2 file on save? */
    Boolean lzma;
    Boolean deletetempfile;     /* Need to delete tempfile when done? */
    char **section_name;        /* The name of each of the sections */

    ManPageWidgets manpagewidgets;      /* The manpage widgets. */

    /* Things to remember when cleaning up when killing manpage. */

    Widget This_Manpage;        /* a pointer to the root of
                                   this manpage. */

    FILE *curr_file;            /* Current file shown in manpage widget */
} 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 if 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 Definitions
 *
 ************************************************************/

/* Standard library function definitions. */
#include <stdlib.h>

/* buttons.c */

ManpageGlobals *InitPsuedoGlobals(void);
Widget CreateManpage(FILE * file);
void CreateManpageWidget(ManpageGlobals * man_globals, String name,
                         Boolean full_instance);
void FormUpWidgets(Widget parent,
                   const char **full_size, const 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);

#ifdef INCLUDE_XPRINT_SUPPORT
void PrintThisManpage(Widget w, XEvent * event, String * params,
                      Cardinal * num_params);
#endif /* INCLUDE_XPRINT_SUPPORT */
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 */
#ifndef HAVE_MKSTEMP
_X_HIDDEN int Xmkstemp (char *template);
# define mkstemp Xmkstemp
#endif

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, const char *str);
void OpenFile(ManpageGlobals * man_globals, FILE * file);
void PopupWarning(ManpageGlobals * man_globals, const char *string);
void PositionCenter(Widget widget, int x, int y, int above, int left,
                    int v_space, int h_space);
void PrintError(const char *string) _X_NORETURN;
void RemoveGlobals(Widget w);
void SaveGlobals(Widget w, ManpageGlobals * globals);
void ParseEntry(const char *entry, char *path, char *sect, char *page);
FILE *Format(ManpageGlobals * man_globals, const char *entry);

/* search */
FILE *DoSearch(ManpageGlobals * man_globals, int type);
void MakeSearchWidget(ManpageGlobals * man_globals, Widget parent);

/* tkfunctions.c */

int Width(Widget);
int Height(Widget);
int BorderWidth(Widget);