ホーム › UI.WindowsAndMessaging › WINDOWINFO
WINDOWINFO
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| cbSize | DWORD | 4 | +0 | +0 | 構造体のサイズ (バイト単位)。呼び出し元はこのメンバーに sizeof(WINDOWINFO) を設定しなければなりません。 |
| rcWindow | RECT | 16 | +4 | +4 | ウィンドウの座標。 |
| rcClient | RECT | 16 | +20 | +20 | クライアント領域の座標。 |
| dwStyle | WINDOW_STYLE | 4 | +36 | +36 | ウィンドウ スタイル。ウィンドウ スタイルの一覧については、Window Styles を参照してください。 |
| dwExStyle | WINDOW_EX_STYLE | 4 | +40 | +40 | 拡張ウィンドウ スタイル。拡張ウィンドウ スタイルの一覧については、Extended Window Styles を参照してください。 |
| dwWindowStatus | DWORD | 4 | +44 | +44 | ウィンドウの状態。このメンバーが WS_ACTIVECAPTION (0x0001) の場合、ウィンドウはアクティブです。それ以外の場合、このメンバーは 0 です。 |
| cxWindowBorders | DWORD | 4 | +48 | +48 | ウィンドウの境界線の幅 (ピクセル単位)。 |
| cyWindowBorders | DWORD | 4 | +52 | +52 | ウィンドウの境界線の高さ (ピクセル単位)。 |
| atomWindowType | WORD | 2 | +56 | +56 | ウィンドウ クラスのアトム (RegisterClass を参照してください)。 |
| wCreatorVersion | WORD | 2 | +58 | +58 | ウィンドウを作成したアプリケーションの Windows バージョン。 |
公式ドキュメント
ウィンドウの情報を格納します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
#include <windows.h>
// RECT (x64 16 / x86 16 バイト)
typedef struct RECT {
INT left;
INT top;
INT right;
INT bottom;
} RECT;
// WINDOWINFO (x64 60 / x86 60 バイト)
typedef struct WINDOWINFO {
DWORD cbSize;
RECT rcWindow;
RECT rcClient;
WINDOW_STYLE dwStyle;
WINDOW_EX_STYLE dwExStyle;
DWORD dwWindowStatus;
DWORD cxWindowBorders;
DWORD cyWindowBorders;
WORD atomWindowType;
WORD wCreatorVersion;
} WINDOWINFO;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RECT
{
public int left;
public int top;
public int right;
public int bottom;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WINDOWINFO
{
public uint cbSize;
public RECT rcWindow;
public RECT rcClient;
public uint dwStyle;
public uint dwExStyle;
public uint dwWindowStatus;
public uint cxWindowBorders;
public uint cyWindowBorders;
public ushort atomWindowType;
public ushort wCreatorVersion;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RECT
Public left As Integer
Public top As Integer
Public right As Integer
Public bottom As Integer
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure WINDOWINFO
Public cbSize As UInteger
Public rcWindow As RECT
Public rcClient As RECT
Public dwStyle As UInteger
Public dwExStyle As UInteger
Public dwWindowStatus As UInteger
Public cxWindowBorders As UInteger
Public cyWindowBorders As UInteger
Public atomWindowType As UShort
Public wCreatorVersion As UShort
End Structureimport ctypes
from ctypes import wintypes
class RECT(ctypes.Structure):
_fields_ = [
("left", ctypes.c_int),
("top", ctypes.c_int),
("right", ctypes.c_int),
("bottom", ctypes.c_int),
]
class WINDOWINFO(ctypes.Structure):
_fields_ = [
("cbSize", wintypes.DWORD),
("rcWindow", RECT),
("rcClient", RECT),
("dwStyle", wintypes.DWORD),
("dwExStyle", wintypes.DWORD),
("dwWindowStatus", wintypes.DWORD),
("cxWindowBorders", wintypes.DWORD),
("cyWindowBorders", wintypes.DWORD),
("atomWindowType", ctypes.c_ushort),
("wCreatorVersion", ctypes.c_ushort),
]#[repr(C)]
pub struct RECT {
pub left: i32,
pub top: i32,
pub right: i32,
pub bottom: i32,
}
#[repr(C)]
pub struct WINDOWINFO {
pub cbSize: u32,
pub rcWindow: RECT,
pub rcClient: RECT,
pub dwStyle: u32,
pub dwExStyle: u32,
pub dwWindowStatus: u32,
pub cxWindowBorders: u32,
pub cyWindowBorders: u32,
pub atomWindowType: u16,
pub wCreatorVersion: u16,
}import "golang.org/x/sys/windows"
type RECT struct {
left int32
top int32
right int32
bottom int32
}
type WINDOWINFO struct {
cbSize uint32
rcWindow RECT
rcClient RECT
dwStyle uint32
dwExStyle uint32
dwWindowStatus uint32
cxWindowBorders uint32
cyWindowBorders uint32
atomWindowType uint16
wCreatorVersion uint16
}type
RECT = record
left: Integer;
top: Integer;
right: Integer;
bottom: Integer;
end;
WINDOWINFO = record
cbSize: DWORD;
rcWindow: RECT;
rcClient: RECT;
dwStyle: DWORD;
dwExStyle: DWORD;
dwWindowStatus: DWORD;
cxWindowBorders: DWORD;
cyWindowBorders: DWORD;
atomWindowType: Word;
wCreatorVersion: Word;
end;const RECT = extern struct {
left: i32,
top: i32,
right: i32,
bottom: i32,
};
const WINDOWINFO = extern struct {
cbSize: u32,
rcWindow: RECT,
rcClient: RECT,
dwStyle: u32,
dwExStyle: u32,
dwWindowStatus: u32,
cxWindowBorders: u32,
cyWindowBorders: u32,
atomWindowType: u16,
wCreatorVersion: u16,
};type
RECT {.bycopy.} = object
left: int32
top: int32
right: int32
bottom: int32
WINDOWINFO {.bycopy.} = object
cbSize: uint32
rcWindow: RECT
rcClient: RECT
dwStyle: uint32
dwExStyle: uint32
dwWindowStatus: uint32
cxWindowBorders: uint32
cyWindowBorders: uint32
atomWindowType: uint16
wCreatorVersion: uint16struct RECT
{
int left;
int top;
int right;
int bottom;
}
struct WINDOWINFO
{
uint cbSize;
RECT rcWindow;
RECT rcClient;
uint dwStyle;
uint dwExStyle;
uint dwWindowStatus;
uint cxWindowBorders;
uint cyWindowBorders;
ushort atomWindowType;
ushort wCreatorVersion;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; WINDOWINFO サイズ: 60 バイト(x64)
dim st, 15 ; 4byte整数×15(構造体サイズ 60 / 4 切り上げ)
; cbSize : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; rcWindow : RECT (+4, 16byte) varptr(st)+4 を基点に操作(16byte:入れ子/配列)
; rcClient : RECT (+20, 16byte) varptr(st)+20 を基点に操作(16byte:入れ子/配列)
; dwStyle : WINDOW_STYLE (+36, 4byte) st.9 = 値 / 値 = st.9 (lpoke/lpeek も可)
; dwExStyle : WINDOW_EX_STYLE (+40, 4byte) st.10 = 値 / 値 = st.10 (lpoke/lpeek も可)
; dwWindowStatus : DWORD (+44, 4byte) st.11 = 値 / 値 = st.11 (lpoke/lpeek も可)
; cxWindowBorders : DWORD (+48, 4byte) st.12 = 値 / 値 = st.12 (lpoke/lpeek も可)
; cyWindowBorders : DWORD (+52, 4byte) st.13 = 値 / 値 = st.13 (lpoke/lpeek も可)
; atomWindowType : WORD (+56, 2byte) wpoke st,56,値 / 値 = wpeek(st,56)
; wCreatorVersion : WORD (+58, 2byte) wpoke st,58,値 / 値 = wpeek(st,58)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
; ※GUID・入れ子構造体はデフォルト型でないため、依存する #defstruct を先に定義(下記に同梱)。
#defstruct global RECT
#field int left
#field int top
#field int right
#field int bottom
#endstruct
#defstruct global WINDOWINFO
#field int cbSize
#field RECT rcWindow
#field RECT rcClient
#field int dwStyle
#field int dwExStyle
#field int dwWindowStatus
#field int cxWindowBorders
#field int cyWindowBorders
#field short atomWindowType
#field short wCreatorVersion
#endstruct
stdim st, WINDOWINFO ; NSTRUCT 変数を確保
st->cbSize = 100
mes "cbSize=" + st->cbSize