Autor Beitrag
DeCodeGuru
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 1333
Erhaltene Danke: 1

Arch Linux
Eclipse
BeitragVerfasst: Fr 26.07.02 13:01 
Hi leute,

ich habe da mal wieder eine kleine Fräge:

Also, die Funktion SetWindowPos ist nach der Hilfe so definiert:
Zitat:
BOOL SetWindowPos(

HWND hWnd, // handle of window
HWND hWndInsertAfter, // placement-order handle
int X, // horizontal position
int Y, // vertical position
int cx, // width
int cy, // height
UINT uFlags // window-positioning flags
);


So, was mach ich denn jetzt mit dem 2. und letzten Paremeter. Da blick ich nicht so ganz durch, was ich denen übergeben soll.

Kann mir da einer ein kleines Beispiel für geben?

_________________
Viele Grüße
Jakob
MathiasSimmack
Ehemaliges Mitglied
Erhaltene Danke: 1



BeitragVerfasst: Fr 26.07.02 13:26 
Ja. Hier mal ein kleines Fragment aus Luckies Tooltipp-Tutorial
ausblenden Quelltext
1:
2:
SetWindowPos(hToolTip, HWND_TOPMOST, 0, 0, 0, 0,
  SWP_NOMOVE or SWP_NOSIZE or SWP_NOACTIVATE);

Damit wird das Tooltipp-Fenster als oberstes Fenster festgelegt, so dass es nicht verdeckt werden kann und die Tipps immer zu sehen sind.

Und hier der Auszug aus dem PSK für den 2. und letzten Parameter:
PSDK hat folgendes geschrieben:
hWndInsertAfter
[in] Handle to the window to precede the positioned window in the Z order. This parameter must be a window handle or one of the following values.

HWND_BOTTOM
Places the window at the bottom of the Z order. If the hWnd parameter identifies a topmost window, the window loses its topmost status and is placed at the bottom of all other windows.
HWND_NOTOPMOST
Places the window above all non-topmost windows (that is, behind all topmost windows). This flag has no effect if the window is already a non-topmost window.
HWND_TOP
Places the window at the top of the Z order.
HWND_TOPMOST
Places the window above all non-topmost windows. The window maintains its topmost position even when it is deactivated.
For more information about how this parameter is used, see the following Remarks section.

uFlags
[in] Specifies the window sizing and positioning flags. This parameter can be a combination of the following values.

SWP_ASYNCWINDOWPOS
If the calling thread and the thread that owns the window are attached to different input queues, the system posts the request to the thread that owns the window. This prevents the calling thread from blocking its execution while other threads process the request.
SWP_DEFERERASE
Prevents generation of the WM_SYNCPAINT message.
SWP_DRAWFRAME
Draws a frame (defined in the window's class description) around the window.
SWP_FRAMECHANGED
Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE is sent only when the window's size is being changed.
SWP_HIDEWINDOW
Hides the window.
SWP_NOACTIVATE
Does not activate the window. If this flag is not set, the window is activated and moved to the top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter parameter).
SWP_NOCOPYBITS
Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window is sized or repositioned.
SWP_NOMOVE
Retains the current position (ignores X and Y parameters).
SWP_NOOWNERZORDER
Does not change the owner window's position in the Z order.
SWP_NOREDRAW
Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of the window being moved. When this flag is set, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing.
SWP_NOREPOSITION
Same as the SWP_NOOWNERZORDER flag.
SWP_NOSENDCHANGING
Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
SWP_NOSIZE
Retains the current size (ignores the cx and cy parameters).
SWP_NOZORDER
Retains the current Z order (ignores the hWndInsertAfter parameter).
SWP_SHOWWINDOW
Displays the window.

Aber schau trotzdem mal in das PSDK. Ist ganz nützlich.
DeCodeGuru Threadstarter
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 1333
Erhaltene Danke: 1

Arch Linux
Eclipse
BeitragVerfasst: Fr 26.07.02 13:30 
Danke, esrtmal für deine Antwort.

Zitat:
Ähem, ich schlage mal vor, du wirfst einen Blick in das PSDK oder das MSDN. Das waren zuviele "uFlags" zum Auflisten.


Du wirst es nicht glaube, aber ich lade im Moment die PSDK runter. Naja, der Download dauert halt noch so ne Stunde.

Wenn ich nochmal Probs mit der Funktion bekomme, melde ich mich nochmal. Ich hoffe, dass es dazu nicht kommen wird. :?

_________________
Viele Grüße
Jakob
MathiasSimmack
Ehemaliges Mitglied
Erhaltene Danke: 1



BeitragVerfasst: Fr 26.07.02 13:33 
DeCodeGuru hat folgendes geschrieben:
Du wirst es nicht glaube, aber ich lade im Moment die PSDK runter.

Warum sollte ich das nicht glauben?
DeCodeGuru Threadstarter
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 1333
Erhaltene Danke: 1

Arch Linux
Eclipse
BeitragVerfasst: Fr 26.07.02 13:40 
Wer glaub denn, das du sowas glaubst :mrgreen:

_________________
Viele Grüße
Jakob