File: MoveToplev.pod

package info (click to toggle)
perl-tk 1%3A804.036%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 35,284 kB
  • sloc: ansic: 349,560; perl: 52,292; sh: 12,678; makefile: 5,700; asm: 3,565; ada: 1,681; pascal: 1,082; cpp: 1,006; yacc: 883; cs: 879
file content (64 lines) | stat: -rw-r--r-- 2,057 bytes parent folder | download | duplicates (14)
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
#  Copyright (c) 1990-1993 The Regents of the University of California.
#  Copyright (c) 1994-1996 Sun Microsystems, Inc.
#  See the file "license.terms" for information on usage and redistribution
#  of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
#

=head1 NAME

Tk_MoveToplevelWindow - Adjust the position of a top-level window

=for category C Programming

=head1 SYNOPSIS

B<#include E<lt>tk.hE<gt>>

B<Tk_MoveToplevelWindow(>I<tkwin, x, y>B<)>

=head1 ARGUMENTS

=over 4

=item Tk_Window tkwin (in)

Token for top-level window to move.

=item int x (in)

New x-coordinate for the top-left pixel of I<tkwin>'s border, or the
top-left pixel of the decorative border supplied for I<tkwin> by the
window manager, if there is one.

=item int y (in)

New y-coordinate for the top-left pixel of I<tkwin>'s border, or the
top-left pixel of the decorative border supplied for I<tkwin> by the
window manager, if there is one.

=back

=head1 DESCRIPTION

In general, a window should never set its own position;  this should be
done only by the geometry manger that is responsible for the window.
For top-level windows the window manager is effectively the geometry
manager;  Tk provides interface code between the application and the
window manager to convey the application's desires to the geometry
manager.  The desired size for a top-level window is conveyed using
the usual B<Tk_GeometryRequest> mechanism.  The procedure
B<Tk_MoveToplevelWindow> may be used by an application to request
a particular position for a top-level window;  this procedure is
similar in function to the B<wm geometry> Tcl command except that
negative offsets cannot be specified.  It is invoked by widgets such as
menus that want to appear at a particular place on the screen.

When B<Tk_MoveToplevelWindow> is called it doesn't immediately
pass on the new desired location to the window manager;  it defers
this action until all other outstanding work has been completed,
using the B<Tk_DoWhenIdle> mechanism.

=head1 KEYWORDS

position, top-level window, window manager