Unix and Linux Discussions Tagged with top |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
2,678 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,857 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
11,872 |
What is on Your Mind? |
|
|
|
30 |
56,450 |
OS X (Apple) |
|
|
|
3 |
2,323 |
UNIX for Beginners Questions & Answers |
|
|
|
21 |
12,244 |
Shell Programming and Scripting |
|
|
|
0 |
3,414 |
Web Development |
|
|
|
0 |
1,590 |
Shell Programming and Scripting |
|
|
|
3 |
2,550 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
2,523 |
Red Hat |
|
|
|
2 |
1,997 |
Shell Programming and Scripting |
|
|
|
5 |
17,975 |
Emergency UNIX and Linux Support |
|
|
|
4 |
4,496 |
Shell Programming and Scripting |
|
|
|
2 |
51,238 |
Shell Programming and Scripting |
|
|
|
3 |
9,823 |
Solaris |
|
|
|
2 |
5,426 |
Solaris |
|
|
|
2 |
3,508 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
11,951 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
9,710 |
Shell Programming and Scripting |
|
|
|
2 |
7,228 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
4,400 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
3,542 |
Homework & Coursework Questions |
|
|
|
4 |
9,592 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
86,357 |
AIX |
|
|
|
4 |
10,465 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,760 |
OS X (Apple) |
|
|
|
3 |
5,389 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
24,050 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,529 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
11,950 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,390 |
Software Releases - RSS News |
|
|
|
0 |
2,005 |
IT Security RSS |
|
|
|
0 |
2,031 |
IT Security RSS |
|
|
|
0 |
5,120 |
Cybersecurity |
|
|
|
0 |
1,725 |
Complex Event Processing RSS News |
|
|
|
0 |
2,400 |
Complex Event Processing RSS News |
|
|
|
4 |
2,596 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,752 |
Software Releases - RSS News |
|
|
|
2 |
23,751 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
55,737 |
Linux |
Tk_MoveToplevelWindow(3) Tk Library Procedures Tk_MoveToplevelWindow(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tk_MoveToplevelWindow - Adjust the position of a top-level window
SYNOPSIS
#include <tk.h>
Tk_MoveToplevelWindow(tkwin, x, y)
ARGUMENTS
Tk_Window tkwin (in) Token for top-level window to move.
int x (in) New x-coordinate for the top-left pixel of tkwin's border, or the top-left pixel of the decorative border
supplied for tkwin by the window manager, if there is one.
int y (in) New y-coordinate for the top-left pixel of tkwin's border, or the top-left pixel of the decorative border
supplied for tkwin by the window manager, if there is one.
_________________________________________________________________
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 win-
dow. 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 Tk_GeometryRequest mechanism. The procedure 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 wm geometry Tcl command except that negative offsets cannot be speci-
fied. It is invoked by widgets such as menus that want to appear at a particular place on the screen.
When Tk_MoveToplevelWindow is called it does not 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 Tk_DoWhenIdle mechanism.
KEYWORDS
position, top-level window, window manager
Tk Tk_MoveToplevelWindow(3)