void NRenderStatus::DrawStatus() { DWORD currentTime = ::GetTickCount(); Base::NString status; if(currentTime <= lastTime_) status.Format(_T("Index: %d\r\nFPS: MAX"), ++ index_); else status.Format(_T("Index: %d\r\nFPS: %.2f"), ++ index_, (double)1000 / (currentTime - lastTime_)); lastTime_ = currentTime; Base::NRect rcClient; ::GetClientRect(hWnd_, rcClient); HDC hDc = ::GetDC(hWnd_); Base::NRect rcText(rcClient); ::DrawText(hDc, status.GetData(), status.GetLength(), rcText, DT_EDITCONTROL | DT_CALCRECT); rcText.Offset(rcClient.Width() - rcText.Width() - 8, 8); CAlphaDC alphaDc; if(alphaDc.Init(hDc, rcText, rcClient.GetSize(), true)) { ::SetBkColor(alphaDc, RGB(255, 255, 0)); ::SetBkMode(alphaDc, OPAQUE); ::DrawText(alphaDc, status.GetData(), status.GetLength(), rcText, DT_EDITCONTROL); alphaDc.EndDraw(255); } ::ReleaseDC(hWnd_, hDc); }
void NWndUi::OnWindowChanged(NWindow* window) { __super::OnWindowChanged(window); if(window == NULL || realWindow_ != NULL) return; Base::NString wndClassName; DWORD style; DWORD exStyle; if(!GetWndData(wndClassName, style, exStyle)) return; Base::NRect rcWnd = GetRootRect(); HWND hWnd = ::CreateWindowEx(exStyle, wndClassName, GetText().GetData(), WS_TABSTOP | WS_CHILD | (IsVisible() ? WS_VISIBLE : 0) | style, rcWnd.Left, rcWnd.Top, rcWnd.Width(), rcWnd.Height(), window->GetNative(), NULL, ::GetModuleHandle(NULL), 0); AttachWnd(hWnd); ::SendMessage(hWnd, WM_SETFONT, ::SendMessage(window->GetNative(), WM_GETFONT, 0, 0), TRUE); }
bool NWndUi::SetSizeImpl(int width, int height, bool force) { if(!__super::SetSizeImpl(width, height, force) || realWindow_ == NULL) return false; Base::NRect rcWnd = GetRect(); ::SetWindowPos(realWindow_, NULL, 0, 0, rcWnd.Width(), rcWnd.Height(), SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE); return false; }
NRichFrame* NWindow::GetRootFrame() { if(rootFrame_ == NULL) { Base::NInstPtr<NRichFrame> rootFrame(MemToolParam); rootFrame_ = (NRichFrame*)rootFrame; rootFrame_->SetId(_T("rootFrame")); rootFrame_->window_ = this; rootFrame->SetLayout(NFrame::LayoutHFill | NFrame::LayoutVFill); Base::NRect rect; GetRect(rect); rootFrame_->SetSize(rect.Width(), rect.Height()); } return rootFrame_; }
void NFrameBase::ReLayout() { if(layout_ == LayoutNone) return; int width = 0; int height = 0; if(GetParent() != NULL) { Base::NRect rcParent = GetParent()->GetRect(); width = rcParent.Width(); height = rcParent.Height(); } else if(window_ != NULL) { Base::NRect rcWnd; window_->GetRect(rcWnd); width = rcWnd.Width(); height = rcWnd.Height(); } else { return; } Base::NSize size = GetAutoSize(); Base::NRect rcNew; if(layout_ & LayoutLeft) { rcNew.Left = margin_.Left; rcNew.Right = rcNew.Left + size.Width; } else if(layout_ & LayoutRight) { rcNew.Right = width - margin_.Right; rcNew.Left = rcNew.Right - size.Width; } else if(layout_ & LayoutHCenter) { rcNew.Left = (width - margin_.Width() - size.Width) / 2; rcNew.Right = rcNew.Left + size.Width; } else if(layout_ & LayoutHFill) { rcNew.Left = margin_.Left; rcNew.Right = width - margin_.Right; } if(layout_ & LayoutTop) { rcNew.Top = margin_.Top; rcNew.Bottom = rcNew.Top + size.Height; } else if(layout_ & LayoutBottom) { rcNew.Bottom = height - margin_.Bottom; rcNew.Top = rcNew.Bottom - size.Height; } else if(layout_ & LayoutVCenter) { rcNew.Top = (height - margin_.Height() - size.Height) / 2; rcNew.Bottom = rcNew.Top + size.Height; } else if(layout_ & LayoutVFill) { rcNew.Top = margin_.Top; rcNew.Bottom = height - margin_.Bottom; } SetPosImpl(rcNew.Left, rcNew.Top, true); SetSizeImpl(rcNew.Width(), rcNew.Height(), true); }
void NFrameBase::ReLayout() { if(layout_ == LayoutNone || !IsLayoutable()) return; int width = 0; int height = 0; if(GetParent() != NULL) { Base::NRect rcParent = GetParent()->GetRect(); width = rcParent.Width(); height = rcParent.Height(); } else if(window_ != NULL) { Base::NRect rcWnd; window_->GetRect(rcWnd); width = rcWnd.Width(); height = rcWnd.Height(); } else { return; } Base::NSize size = IsAutoSize() ? GetAutoSize() : frameRect_.GetSize(); Base::NRect rcNew(frameRect_.Left, frameRect_.Top, frameRect_.Left + size.Width, frameRect_.Top + size.Height); if(layout_ & LayoutHFill) { rcNew.Left = margin_.Left; rcNew.Right = width - margin_.Right; } else if(layout_ & LayoutHCenter) { size.Width = (minSize_.Width <= 0 || size.Width > minSize_.Width) ? size.Width : minSize_.Width; size.Width = (maxSize_.Width <= 0 || size.Width < maxSize_.Width) ? size.Width : maxSize_.Width; rcNew.Left = (width - margin_.Width() - size.Width) / 2; rcNew.Right = rcNew.Left + size.Width; } else if(layout_ & LayoutLeft) { rcNew.Left = margin_.Left; rcNew.Right = rcNew.Left + size.Width; } else if(layout_ & LayoutRight) { rcNew.Right = width - margin_.Right; rcNew.Left = rcNew.Right - size.Width; } if(layout_ & LayoutVFill) { rcNew.Top = margin_.Top; rcNew.Bottom = height - margin_.Bottom; } else if(layout_ & LayoutVCenter) { size.Height = (minSize_.Height <= 0 || size.Height > minSize_.Height) ? size.Height : minSize_.Height; size.Height = (maxSize_.Height <= 0 || size.Height < maxSize_.Height) ? size.Height : maxSize_.Height; rcNew.Top = (height - margin_.Height() - size.Height) / 2; rcNew.Bottom = rcNew.Top + size.Height; } else if(layout_ & LayoutTop) { rcNew.Top = margin_.Top; rcNew.Bottom = rcNew.Top + size.Height; } else if(layout_ & LayoutBottom) { rcNew.Bottom = height - margin_.Bottom; rcNew.Top = rcNew.Bottom - size.Height; } SetPosImpl(rcNew.Left, rcNew.Top, true); SetSizeImpl(rcNew.Width(), rcNew.Height(), true); }