Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0abf3e71
Commit
0abf3e71
authored
Oct 16, 2005
by
YAMAMOTO Mitsuharu
Browse files
(Fx_create_frame): Add debugging code.
(Fx_show_tip): Set frame pixel width and height.
parent
5f8080a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
src/macfns.c
src/macfns.c
+14
-7
No files found.
src/macfns.c
View file @
0abf3e71
...
...
@@ -1745,8 +1745,7 @@ x_set_tool_bar_lines (f, value, oldval)
int
y
=
nlines
*
FRAME_LINE_HEIGHT
(
f
);
BLOCK_INPUT
;
XClearArea
(
FRAME_MAC_DISPLAY
(
f
),
FRAME_MAC_WINDOW
(
f
),
0
,
y
,
width
,
height
,
0
);
mac_clear_area
(
f
,
0
,
y
,
width
,
height
);
UNBLOCK_INPUT
;
if
(
WINDOWP
(
f
->
tool_bar_window
))
...
...
@@ -2480,7 +2479,11 @@ This function is an internal primitive--use `make-frame' instead. */)
if
(
!
STRINGP
(
f
->
icon_name
))
f
->
icon_name
=
Qnil
;
/* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
/* FRAME_MAC_DISPLAY_INFO (f) = dpyinfo; */
#if GLYPH_DEBUG
image_cache_refcount
=
FRAME_X_IMAGE_CACHE
(
f
)
->
refcount
;
dpyinfo_refcount
=
dpyinfo
->
reference_count
;
#endif
/* GLYPH_DEBUG */
#ifdef MULTI_KBOARD
FRAME_KBOARD
(
f
)
=
kb
;
#endif
...
...
@@ -2608,7 +2611,8 @@ This function is an internal primitive--use `make-frame' instead. */)
x_default_parameter
(
f
,
parms
,
Qtool_bar_lines
,
make_number
(
1
),
"toolBar"
,
"ToolBar"
,
RES_TYPE_NUMBER
);
x_default_parameter
(
f
,
parms
,
Qbuffer_predicate
,
Qnil
,
"bufferPredicate"
,
"BufferPredicate"
,
RES_TYPE_SYMBOL
);
"bufferPredicate"
,
"BufferPredicate"
,
RES_TYPE_SYMBOL
);
x_default_parameter
(
f
,
parms
,
Qtitle
,
Qnil
,
"title"
,
"Title"
,
RES_TYPE_STRING
);
x_default_parameter
(
f
,
parms
,
Qfullscreen
,
Qnil
,
...
...
@@ -3593,7 +3597,7 @@ x_create_tip_frame (dpyinfo, parms, text)
FRAME_FONTSET
(
f
)
=
-
1
;
f
->
icon_name
=
Qnil
;
/* FRAME_X_DISPLAY_INFO (f) = dpyinfo; */
#if GLYPH_DEBUG
image_cache_refcount
=
FRAME_X_IMAGE_CACHE
(
f
)
->
refcount
;
dpyinfo_refcount
=
dpyinfo
->
reference_count
;
...
...
@@ -4047,6 +4051,9 @@ Text larger than the specified size is clipped. */)
BringToFront
(
FRAME_MAC_WINDOW
(
f
));
UNBLOCK_INPUT
;
FRAME_PIXEL_WIDTH
(
f
)
=
width
;
FRAME_PIXEL_HEIGHT
(
f
)
=
height
;
/* Draw into the window. */
w
->
must_be_updated_p
=
1
;
update_single_window
(
w
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment