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
|
#if 0
static char rcsid[] = "misc.c,v 2.0 1994/05/19 02:01:19 dan Exp";
#endif
/*
* Copyright (c) 1994 Daniel Williams
* Copyright (c) 2003 Erik de Castro Lopo
*
* The X Consortium, and any party obtaining a copy of these files from
* the X Consortium, directly or indirectly, is granted, free of charge,
* a full and unrestricted irrevocable, world-wide, paid up,
* royalty-free, nonexclusive right and license to deal in this software
* and documentation files (the "Software"), including without limitation
* the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to permit persons
* who receive copies from any such party to do so. This license
* includes without limitation a license to do the foregoing actions
* under any patents of the party supplying this software to the X
* Consortium. The following conditions apply:
*
* 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 DANIEL WILLIAMS OR SYSTEMS & SCIENTIFIC SOFTWARE 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.
*/
#include <X11/Xos.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <Xm/Xm.h>
#include <X11/cursorfont.h>
#include <X11/Shell.h>
#include <Xm/SashP.h>
#include "mgdiff.h"
#include "externs.h"
int max (int i, int j)
{
return ((i > j) ? i : j);
}
int min (int i, int j)
{
return ((i < j) ? i : j);
}
/*
* Create a temporary file and write all text from the input stream (up to
* the EOF) to the file.
* The name of the temp file is returned to the user in *name.
*/
int copy_to_tempfile (FILE *fin, char *name, size_t name_len)
{
FILE *fout ;
int fd ;
/*
** Seed the random() generator. This does not need to be super
** randomised as the while loop below will be run until a file
** is opened.
*/
srandom (getpid () + getppid () + time (NULL)) ;
while (1) {
snprintf (name, name_len, "/tmp/mgdiff-%#lx", random()) ;
if ((fd = open (name, O_CREAT | O_EXCL | O_RDWR, 0600)) < 0) {
if (errno == EEXIST)
continue ;
return 1 ;
}
if ((fout = fdopen (fd, "r+")) == NULL) {
close (fd) ;
return 1 ;
}
break ;
}
while (!feof (fin)) {
char buffer[BUFSIZ];
int nitems;
nitems = fread (buffer, 1, BUFSIZ, fin);
if (fwrite (buffer, 1, nitems, fout) != nitems)
break;
}
if (ferror (fin) || ferror (fout)) {
(void) fclose (fout);
return (1);
}
return ((fclose (fout) == 0));
}
void set_cursor (Widget w)
{
static Cursor watch = 0;
if (!watch)
watch = XCreateFontCursor (XtDisplay (w), XC_watch);
XDefineCursor (XtDisplay (w), XtWindow (w), watch);
XmUpdateDisplay (w);
}
void reset_cursor (Widget w)
{
XUndefineCursor (XtDisplay (w), XtWindow (w));
XmUpdateDisplay (w);
}
/*
* traverse up to the top shell
*/
Widget get_top_shell (Widget w)
{
while (w && !XtIsWMShell (w))
w = XtParent (w);
return (w);
}
#if sun
char *strerror (int errnum)
{
extern int sys_nerr;
extern char *sys_errlist[];
if ((0 < errnum) && (errnum < sys_nerr))
return (sys_errlist[errnum]);
else
return ("");
}
#endif
void add_editres (Widget shell)
{
#if EDITRES && X11R5
extern void _XEditResCheckMessages (Widget widget,
XtPointer closure,
XEvent *event,
Boolean *continue_to_dispatch);
XtAddEventHandler (shell, (EventMask) 0, True, _XEditResCheckMessages, NULL);
#endif
}
/*
* from Heller's Motif Programming Manual; eliminate the ability to
* traverse to a PanedWindow's sashes.
*/
void turn_off_sash_traversal (Widget pane)
{
WidgetList children;
int num_children;
XtVaGetValues (pane, XmNchildren, &children, XmNnumChildren, &num_children, NULL);
while (num_children-- > 0)
if (XmIsSash (children[num_children]))
XtVaSetValues (children[num_children], XmNtraversalOn, False, NULL);
}
|