Lines Matching refs:mParentWindow
495 mParentWindow(0), in Win32Window()
560 mParentWindow = CreateWindowExA(parentExtendedStyle, mParentClassName.c_str(), name.c_str(), in initializeImpl()
567 mParentWindow, nullptr, GetModuleHandle(nullptr), this); in initializeImpl()
599 if (mParentWindow) in destroy()
601 DestroyWindow(mParentWindow); in destroy()
602 mParentWindow = 0; in destroy()
763 if (!GetWindowRect(mParentWindow, &windowRect)) in setPosition()
768 if (!MoveWindow(mParentWindow, x, y, windowRect.right - windowRect.left, in setPosition()
785 if (!GetWindowRect(mParentWindow, &windowRect)) in resize()
791 if (!GetClientRect(mParentWindow, &clientRect)) in resize()
798 if (!MoveWindow(mParentWindow, windowRect.left, windowRect.top, width + diffX, height + diffY, in resize()
816 ShowWindow(mParentWindow, flag); in setVisible()