summaryrefslogtreecommitdiff
path: root/main.c
blob: fe61bd2638a5256e5451b711c07d2c13257d26e1 (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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*

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.

*/

/*
 * xman - X window system manual page display program.
 * Author:    Chris D. Peterson, MIT Project Athena
 * Created:   October 22, 1987
 */

#include "globals.h"
#ifndef ZERO
#include <X11/Xaw/Cardinals.h>
#endif /* ZERO */

static void ArgError(int argc, char **argv);
static void AdjustDefResources(void);

#define Offset(field) (XtOffsetOf(Xman_Resources , field))

static XtResource my_resources[] = {
    {"directoryFontNormal", XtCFont, XtRFontStruct, sizeof(XFontStruct *),
     Offset(fonts.directory), XtRString, DIRECTORY_NORMAL},
    {"bothShown", XtCBoolean, XtRBoolean, sizeof(Boolean),
     Offset(both_shown_initial), XtRString, "False"},
    {"directoryHeight", "DirectoryHeight", XtRInt, sizeof(int),
     Offset(directory_height), XtRString, "150"},
    {"topCursor", XtCCursor, XtRCursor, sizeof(Cursor),
     Offset(cursors.top), XtRString, XMAN_CURSOR},
    {"helpCursor", XtCCursor, XtRCursor, sizeof(Cursor),
     Offset(cursors.help), XtRString, HELP_CURSOR},
    {"manpageCursor", XtCCursor, XtRCursor, sizeof(Cursor),
     Offset(cursors.manpage), XtRString, MANPAGE_CURSOR},
    {"searchEntryCursor", XtCCursor, XtRCursor, sizeof(Cursor),
     Offset(cursors.search_entry), XtRString, SEARCH_ENTRY_CURSOR},
    {"pointerColor", XtCForeground, XtRPixel, sizeof(Pixel),
     Offset(cursors.fg_color), XtRString, "XtDefaultForeground"},
    {"pointerColorBackground", XtCBackground, XtRPixel, sizeof(Pixel),
     Offset(cursors.bg_color), XtRString, "XtDefaultBackground"},
    {"help", XtCBoolean, XtRBoolean, sizeof(Boolean),
     Offset(show_help_syntax), XtRImmediate, NULL},
    {"helpFile", XtCFile, XtRString, sizeof(char *),
     Offset(help_file), XtRString, HELPFILE},
    {"topBox", XtCBoolean, XtRBoolean, sizeof(Boolean),
     Offset(top_box_active), XtRString, "True"},
    {"clearSearchString", "ClearSearchString", XtRBoolean, sizeof(Boolean),
     Offset(clear_search_string), XtRImmediate, (caddr_t) TRUE},
    {"title", XtCString, XtRString, sizeof(char *),
     Offset(title), XtRString, "xman"},
    {"iconic", XtCBoolean, XtRBoolean, sizeof(Boolean),
     Offset(iconic), XtRString, "False"},
};

#undef Offset

/*
 * The resource that we absolutely need.
 */

static String fallback_resources[] = {
    "Xman*quitButton.translations:	#override \\n   <Btn1Up>: Quit() reset()",
    "Xman*helpButton.sensitive:                    FALSE",
    "Xman*manpageButton.sensitive:                 FALSE",
    "Xman*helpButton.Label:			Help",
    "Xman*quitButton.Label:			Quit",
    "Xman*manpageButton.Label:		        Manual Page",
    "Xman*topLabel.label:         		        No App-Defaults File",
    NULL,
};

/*
 * This is necessary to keep all TopLevel shells from becoming
 * the size that is specified on the command line.
 */

static XrmOptionDescRec xman_options[] = {
    {"-geometry", "*topBox.geometry", XrmoptionSepArg, (caddr_t) NULL},
    {"-help", "help", XrmoptionNoArg, (caddr_t) "True"},
    {"=", "*topBox.geometry", XrmoptionIsArg, (caddr_t) NULL},
    {"-pagesize", "*manualBrowser.geometry", XrmoptionSepArg, (caddr_t) NULL},
    {"-notopbox", "topBox", XrmoptionNoArg, (caddr_t) "False"},
    {"-helpfile", "helpFile", XrmoptionSepArg, (caddr_t) NULL},
    {"-bothshown", "bothShown", XrmoptionNoArg, (caddr_t) "True"},
    {"-title", "title", XrmoptionSepArg, (caddr_t) "xman"},
    {"-iconic", "iconic", XrmoptionNoArg, (caddr_t) "True"},
};

static XtActionsRec xman_actions[] = {
    {"GotoPage", GotoPage},
    {"Quit", Quit},
    {"Search", Search},
    {"PopupHelp", PopupHelp},
    {"PopupSearch", PopupSearch},
    {"RemoveSearch", RemoveSearch},
    {"CreateNewManpage", CreateNewManpage},
    {"RemoveThisManpage", RemoveThisManpage},
    {"SaveFormattedPage", SaveFormattedPage},
    {"ShowVersion", ShowVersion},
};

char **saved_argv;
int saved_argc;

/*
 * This atom is used to make the application ICCCM compliant.
 */
Atom wm_delete_window;

/*	Function Name: main
 *	Description: This is the main driver for Xman.
 *	Arguments: argc, argv - the command line arguments.
 *	Returns: return, what return.
 */

int
main(int argc, char **argv)
{
    XtAppContext app_con;

    saved_argc = argc;
    saved_argv = (char **) XtMalloc(argc * sizeof(char *));
    bcopy(argv, saved_argv, argc * sizeof(char *));

    XtSetLanguageProc(NULL, (XtLanguageProc) NULL, NULL);

    /* Handle args that don't require opening a display */
    for (int i = 1; i < argc; i++) {
        const char *arg = argv[i];
        /* accept single or double dash for -help & -version */
        if (arg[0] == '-' && arg[1] == '-') {
            arg++;
        }
        if (strcmp(arg, "-help") == 0) {
            ArgError(0, NULL);
            exit(0);
        }
        if (strcmp(arg, "-version") == 0) {
            puts(PACKAGE_STRING);
            exit(0);
        }
    }

    initial_widget = XtAppInitialize(&app_con, "Xman", xman_options,
                                     XtNumber(xman_options), &argc, argv,
                                     fallback_resources, NULL, ZERO);
    wm_delete_window =
        XInternAtom(XtDisplay(initial_widget), "WM_DELETE_WINDOW", False);

    manglobals_context = XStringToContext(MANNAME);

    AdjustDefResources();

    XtGetApplicationResources(initial_widget, (caddr_t) & resources,
                              my_resources, XtNumber(my_resources),
                              NULL, (Cardinal) 0);

    if ((argc != 1) || (resources.show_help_syntax)) {
        ArgError(argc, argv);
        return EXIT_FAILURE;
    }

    XtAppAddActions(app_con, xman_actions, XtNumber(xman_actions));

    if (!resources.fonts.directory)
        PrintError("Failed to get the directory font.");

#ifdef DEBUG
    printf("debugging mode\n");
#endif

/*
 * Set the default width and height.
 * I am not real happy with this method, but it will usually do something
 * reasonable, if not the "right" thing.  It is not a real big issue since
 * it is easy to change the values with resources or command line options.
 * NOTE: if you are in a 100 dpi display you will lose.
 */

    default_width = DEFAULT_WIDTH;
    default_height = DisplayHeight(XtDisplay(initial_widget),
                                   DefaultScreen(XtDisplay(initial_widget)));
    default_height *= 3;
    default_height /= 4;

    if ((sections = Man()) == 0)
        PrintError
            ("There are no manual sections to display, check your MANPATH.");

    if (resources.top_box_active)
        MakeTopBox();
    else
        (void) CreateManpage(NULL);

/*
 * We need to keep track of the number of manual pages that are shown on
 * the screen so that if this user does not have a top box then when they
 * remove all their manual pages we can kill off the xman process.
 * To make things easier we will consider the top box a shown manual page
 * here, but since you cannot remove it, man_page_shown only goes to zero when
 * no top box is present.
 */

    man_pages_shown = 1;

    XtAppMainLoop(app_con);

    return EXIT_SUCCESS;
}

/*	Function Name: ArgError
 *	Description:  Prints error message about unknown arguments.
 *	Arguments: argc, argv - args not understood.
 *	Returns: none.
 */

static void
ArgError(int argc, char **argv)
{
    int i;

    static const char **syntax, *syntax_def[] = {
        "-help", "Print this message",
        "-helpfile <filename>", "Specifies the helpfile to use.",
        "-bothshown", "Show both the directory and manpage at once.",
        "-notopbox", "Starts with manpage rather than topbox.",
        "-geometry <geom>", "Specifies the geometry of the top box.",
        "=<geom>", "Specifies the geometry of the top box.",
        "-pagesize <geom>", "Specifies the geometry of the manual page.",
        "-bw <pixels>", "Width of all window borders.",
        "-borderwidth <pixels>", "Width of all window borders.",
        "-bd <color>", "Color of all window borders.",
        "-bordercolor <color>", "Color of all window borders.",
        "-fg <color>", "Foreground color for the application.",
        "-foreground <color>", "Foreground color for the application.",
        "-bg <color>", "Background color for the application.",
        "-background <color>", "Background color for the application.",
        "-display <display name>", "Specify a display that is not the default",
        "-fn <font>", "Font to be used for button and label text.",
        "-font <font>", "Font to be used for button and label text.",
        "-name <name>", "Change the name used for retrieving resources.",
        "-title <name>", "Change the name without affecting resources.",
        "-xrm <resource>", "Specifies a resource on the command line.",
        NULL, NULL,
    };

    syntax = syntax_def;

    for (i = 1; i < argc; i++)
        (void) printf("This argument is unknown to Xman: %s\n", argv[i]);

    (void) printf("\nKnown arguments are:\n");

    while (*syntax != NULL) {
        printf("%-30s - %s\n", syntax[0], syntax[1]);
        syntax += 2;
    }
}

/*    Function Name: AdjustDefResources
 *    Description: Changes default resources which contain paths when
 *            XWINHOME is set
 *    Arguments: none
 *    Returns: nothing
 */

static void
AdjustDefResources(void)
{
    char *xwinhome = NULL;
    int i;

    if (!(xwinhome = getenv("XWINHOME")))
        return;

    for (i = 0; i < sizeof(my_resources) / sizeof(XtResource); i++) {
        if (!strcmp(my_resources[i].resource_name, "helpFile")) {
            char filename[PATH_MAX];

            snprintf(filename, sizeof(filename), "%s/lib/X11/xman.help",
                     xwinhome);
            if (!(my_resources[i].default_addr = strdup(filename))) {
                fprintf(stderr, "malloc failure\n");
                exit(EXIT_FAILURE);
            }
        }
    }
}