added another size to the status bar display
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15067 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
08887820a9
commit
0545d965de
@ -184,10 +184,12 @@ private:
|
|||||||
if ( m_frameStatusBar )
|
if ( m_frameStatusBar )
|
||||||
{
|
{
|
||||||
wxString msg;
|
wxString msg;
|
||||||
wxSize sizeCl = GetClientSize();
|
wxSize sizeAll = GetSize(),
|
||||||
msg.Printf(_("pos=(%d, %d), size=%dx%d (client=%dx%d)"),
|
sizeCl = GetClientSize();
|
||||||
|
msg.Printf(_("pos=(%d, %d), size=%dx%d or %dx%d (client=%dx%d)"),
|
||||||
pos.x, pos.y,
|
pos.x, pos.y,
|
||||||
size.x, size.y,
|
size.x, size.y,
|
||||||
|
sizeAll.x, sizeAll.y,
|
||||||
sizeCl.x, sizeCl.y);
|
sizeCl.x, sizeCl.y);
|
||||||
SetStatusText(msg, 1);
|
SetStatusText(msg, 1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user