Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- From: Joseph M. Newcomer <newcomer@xxxxxxxxxxxx>
- Date: Tue, 28 Aug 2007 13:04:22 -0400
You have not specified if you are talking about "screen" or "window". If you want it to
fill the entire physical screen, you want to maximize the app, so that's automatic, and
that's what you've done. But maximizing the app only maximizes the main window. It does
not maximize the view. It maximizes the view frame, but not the view.
joe
On Tue, 28 Aug 2007 09:22:12 -0700, RAN <nijenhuis@xxxxxxx> wrote:
On Aug 28, 6:07 pm, Joseph M. Newcomer <newco...@xxxxxxxxxxxx> wrote:Joseph M. Newcomer [MVP]
See below...
On Tue, 28 Aug 2007 07:24:32 -0700, RAN <nijenh...@xxxxxxx> wrote:
Hi,
I have a SDI app.
1) In CWinApp::InitInstance() i do:
m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
2) In CFormView::OnInitialUpdate() i do:
CRect o_Rect;
GetClientRect(o_Rect);
****
This gets the client rectangle of the dialog.
****> o_BookList.MoveWindow (o_Rect,TRUE);
****
This should fill the client area, but not the entire screen. And this should not compile
at all, since it should have been
o_BookList.MoveWindow(&o_Rect);
note that the default for the second argument is TRUE so you don't have to supply it.
And I presume you really mean the class is CMyFormView::OnInitialUpdate, not
CFormView::OnInitialUpdate
****
o_BookList is a CListCtrl.
The listctrl is not the size of the entire screen which is what i was
trying to do. How do i get the listctrl to be displayed over the full
size of the screen ?
****
Note that the window is set to the size of the client area *at the time OnInitialUpdate is
called*. So what you would want to do here is set a breakpoint and see how big the area
is when you call that.
The correct place to do this is in an OnSIze handler:
void CMyFormView::OnSize(UINT type, int cx, int cy)
{
CFormView::OnSize(type, cx, cy);
if(o_BookList.GetSafeHwnd() != NULL)
{
o_BookList.SetWindowPos(NULL, 0, 0, cx, cy,
SWP_NOZORDER);
}
}
This is more likely to do what you want. Note that this will also follow the resizing of
the dialog, whereas your approach only sets it once.
Oh yes, this deals with the size of your dialog, not the actual size of the view. If you
need to resize the dialog to track the size of the view frame, you will need to add an
OnSize handler to your frame and resize the dialog as well, then the code above will only
resize the list control to the size of the dialog, but not resize the dialog to fill the
view frame.
joe
Joseph M. Newcomer [MVP]
email: newco...@xxxxxxxxxxxx
Web:http://www.flounder.com
MVP Tips:http://www.flounder.com/mvp_tips.htm
Ok thanks, but how do i get the absolute dimensions of every display
setting ?
Im mean how many pixels (units??) for x and y direction of the
screen ?
email: newcomer@xxxxxxxxxxxx
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm
.
- References:
- GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- From: RAN
- Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- From: RAN
- Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- From: Joseph M . Newcomer
- Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- From: RAN
- GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- Prev by Date: Re: EndDialog hangs on Core2Duo system
- Next by Date: Re: Is __int64 dead?
- Previous by thread: Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- Next by thread: Re: GetClientRect() AND ShowWindow(SW_SHOWMAXIMIZED) in SDI app.
- Index(es):
Relevant Pages
|