Mercurial > emacs
annotate src/systime.h @ 3075:878381e48b0d
* xfns.c: Clear out the old face stuff.
(x_face_table, n_faces, x_set_face, x_set_glyph, Fx_set_face_font,
Fx_set_face, Fx_get_face): Removed.
(syms_of_xfns): Remove defsubr for Fx_set_face.
Arrange for font names to get fully resolved - no wildcards.
* xfns.c (x_set_frame_parameters): Store the value in the frame
parameter alist before we call the setter function, so the setter
function can touch up the value if it chooses.
(x_set_foreground_color, x_set_background_color): Call
recompute_basic_faces, so their GC's will reflect the changes.
(x_new_font): Add extern declaration - this returns a Lisp_Object
now, the fully resolved font name.
(x_set_font): Accept the fully resolved name from x_new_font, and
put it in the frame's parameter alist. Call recompute_basic_faces.
* xterm.c (x_new_font): Return the fully resolved font name, Qnil
(if no match), or Qt (match, but unacceptable metrics).
* xterm.c (x_new_font): Don't call init_frame_faces.
* xterm.h: New section for declarations for xfaces.c.
(init_frame_faces, free_frame_faces, intern_face,
face_name_id_number, same_size_fonts, recompute_basic_faces,
compute_char_face, compute_glyph_face): Declare these here.
* xfaces.c (same_size_fonts): We can now remove this extern
declaration.
* xfns.c (face_name_id_number): Likewise.
* xterm.c (intern_face): Likewise.
* xfns.c (Fx_list_fonts): Remember that FACE may not have a font
specified. Don't specify 30000 as the maximum limit on the number
of fontns returned - 2000 is more reasonable.
Treat faces as structures specifying modifications to the frame's
parameters, rather than things which need to specify a complete
set of parameters by themselves.
* xfaces.c (init_frame_faces): Don't set up the two frame display
faces by querying the GC - just leave all their fields blank, and
call recompute_basic_faces, letting build_face do the work of
consulting the frame when necessary.
(recompute_basic_faces): New function.
(compute_base_faces): New function for obtaining the "identity"
for compute_char_face and compute_glyph_face.
(compute_char_face, compute_glyph_face): Call it, instead of copying
FRAME_DEFAULT_FACE.
* xfns.c (x_make_gc): No need to call init_frame_faces here.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 25 May 1993 14:03:41 +0000 |
parents | e94a593c3952 |
children | a9967fc643c5 |
rev | line source |
---|---|
979 | 1 /* systime.h - System-dependent definitions for time manipulations. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
977 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
2803
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
20 #ifdef TIME_WITH_SYS_TIME |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
21 #include <sys/time.h> |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
22 #include <time.h> |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
23 #else |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
24 #ifdef HAVE_SYS_TIME_H |
1128 | 25 #include <sys/time.h> |
26 #else | |
977 | 27 #include <time.h> |
1928
699033d79ee6
* systime.h [_AIX]: Move test outside of previous #if.
Jim Blandy <jimb@redhat.com>
parents:
1571
diff
changeset
|
28 #endif |
1112 | 29 #endif |
1128 | 30 |
2123
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
31 /* SVr4 doesn't actually declare this in its #include files. */ |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
32 #ifdef USG5_4 |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
33 extern long timezone; |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
34 #endif |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
35 |
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
36 #ifdef VMS |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
37 #ifdef VAXC |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
38 #include "vmstime.h" |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
39 #endif |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
40 #endif |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
41 |
979 | 42 |
977 | 43 /* EMACS_TIME is the type to use to represent temporal intervals - |
44 struct timeval on some systems, int on others. It can be passed as | |
2550 | 45 the timeout argument to the select system call. |
977 | 46 |
47 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME. | |
48 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS. | |
49 | |
50 EMACS_HAS_USECS is defined iff EMACS_TIME has a usecs component. | |
2657 | 51 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME. |
52 This returns zero if EMACS_TIME doesn't have a microseconds component. | |
53 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS. | |
54 This does nothing if EMACS_TIME doesn't have a microseconds component. | |
977 | 55 |
56 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME. | |
57 | |
58 EMACS_GET_TIME (TIME) stores the current system time in TIME, which | |
59 should be an lvalue. | |
60 EMACS_SET_UTIMES (PATH, ATIME, MTIME) changes the last-access and | |
61 last-modification times of the file named PATH to ATIME and | |
62 MTIME, which are EMACS_TIMEs. | |
63 | |
64 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the | |
65 result in DEST. SRC should not be negative. | |
66 | |
67 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and | |
68 stores the result in DEST. SRC should not be negative. | |
69 EMACS_TIME_NEG_P (TIME) is true iff TIME is negative. | |
70 | |
71 */ | |
72 | |
73 #ifdef HAVE_TIMEVAL | |
74 | |
2289
8317265b21dc
* systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is
Jim Blandy <jimb@redhat.com>
parents:
2264
diff
changeset
|
75 #define EMACS_HAS_USECS |
8317265b21dc
* systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is
Jim Blandy <jimb@redhat.com>
parents:
2264
diff
changeset
|
76 |
977 | 77 #define EMACS_TIME struct timeval |
78 #define EMACS_SECS(time) ((time).tv_sec + 0) | |
79 #define EMACS_USECS(time) ((time).tv_usec + 0) | |
80 #define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds)) | |
2657 | 81 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds)) |
977 | 82 |
83 #define EMACS_GET_TIME(time) \ | |
84 { \ | |
978 | 85 struct timezone dummy; \ |
977 | 86 gettimeofday (&(time), &dummy); \ |
87 } | |
88 | |
89 #define EMACS_ADD_TIME(dest, src1, src2) \ | |
90 { \ | |
91 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \ | |
92 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \ | |
93 if ((dest).tv_usec > 1000000) \ | |
94 (dest).tv_usec -= 1000000, (dest).tv_sec++; \ | |
95 } | |
96 | |
97 #define EMACS_SUB_TIME(dest, src1, src2) \ | |
98 { \ | |
99 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \ | |
100 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \ | |
101 if ((dest).tv_usec < 0) \ | |
102 (dest).tv_usec += 1000000, (dest).tv_sec--; \ | |
103 } | |
104 | |
105 #define EMACS_TIME_NEG_P(time) \ | |
106 ((time).tv_sec < 0 \ | |
107 || ((time).tv_sec == 0 \ | |
108 && (time).tv_usec < 0)) | |
109 | |
979 | 110 #else /* ! defined (HAVE_TIMEVAL) */ |
977 | 111 |
112 #define EMACS_TIME int | |
113 #define EMACS_SECS(time) (time) | |
999 | 114 #define EMACS_USECS(time) 0 |
977 | 115 #define EMACS_SET_SECS(time, seconds) ((time) = (seconds)) |
999 | 116 #define EMACS_SET_USECS(time, usecs) 0 |
977 | 117 |
118 #define EMACS_GET_TIME(t) ((t) = time ((long *) 0)) | |
119 #define EMACS_ADD_TIME(dest, src1, src2) ((dest) = (src1) + (src2)) | |
120 #define EMACS_SUB_TIME(dest, src1, src2) ((dest) = (src1) - (src2)) | |
121 #define EMACS_TIME_NEG_P(t) ((t) < 0) | |
122 | |
979 | 123 #endif /* ! defined (HAVE_TIMEVAL) */ |
977 | 124 |
125 #define EMACS_SET_SECS_USECS(time, secs, usecs) \ | |
126 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) | |
127 | |
128 #ifdef USE_UTIME | |
129 | |
130 #define EMACS_SET_UTIMES(path, atime, mtime) \ | |
131 { \ | |
999 | 132 time_t tv[2]; \ |
977 | 133 tv[0] = EMACS_SECS (atime); \ |
134 tv[1] = EMACS_SECS (mtime); \ | |
135 utime ((path), tv); \ | |
136 } | |
137 | |
979 | 138 #else /* ! defined (USE_UTIME) */ |
977 | 139 |
140 #define EMACS_SET_UTIMES(path, atime, mtime) \ | |
141 { \ | |
142 EMACS_TIME tv[2]; \ | |
143 tv[0] = atime; \ | |
144 tv[1] = mtime; \ | |
145 utimes ((path), tv); \ | |
146 } | |
147 | |
979 | 148 #endif /* ! defined (USE_UTIME) */ |