if (!::WinRegisterClass( vHab
,wxFrameClassName
- ,(PFNWP)wxWndProc
- ,CS_SIZEREDRAW | CS_MOVENOTIFY | CS_SYNCPAINT | CS_FRAME
+ ,NULL
+ ,CS_SIZEREDRAW | CS_MOVENOTIFY | CS_SYNCPAINT
,sizeof(ULONG)
))
{
if (!::WinRegisterClass( vHab
,wxFrameClassNameNoRedraw
- ,(PFNWP)wxWndProc
+ ,NULL
,0
,0
))
if (!::WinRegisterClass( vHab
,wxMDIFrameClassName
- ,(PFNWP)wxWndProc
+ ,NULL
,CS_SIZEREDRAW | CS_MOVENOTIFY | CS_SYNCPAINT
,0
))
if (!::WinRegisterClass( vHab
,wxMDIFrameClassNameNoRedraw
- ,(PFNWP)wxWndProc
+ ,NULL
,0
,0
))
if (!::WinRegisterClass( vHab
,wxMDIChildFrameClassName
- ,(PFNWP)wxWndProc
+ ,NULL
,CS_MOVENOTIFY | CS_SIZEREDRAW | CS_SYNCPAINT | CS_HITTEST
,0
))
if (!::WinRegisterClass( vHab
,wxMDIChildFrameClassNameNoRedraw
- ,(PFNWP)wxWndProc
+ ,NULL
,CS_HITTEST
,0
))
if (!::WinRegisterClass( vHab
,wxPanelClassName
- ,(PFNWP)wxWndProc
+ ,NULL
,CS_MOVENOTIFY | CS_SIZEREDRAW | CS_HITTEST | CS_SAVEBITS | CS_SYNCPAINT
,0
))
if (!::WinRegisterClass( vHab
,wxCanvasClassName
- ,(PFNWP)wxWndProc
- ,CS_MOVENOTIFY | CS_SIZEREDRAW | CS_HITTEST | CS_SAVEBITS | CS_SYNCPAINT
+ ,NULL
+ ,0 // CS_MOVENOTIFY | CS_SIZEREDRAW | CS_HITTEST | CS_SAVEBITS | CS_SYNCPAINT
,0
))
{
#if wxUSE_THREADS
wxMutexGuiLeaveOrEnter();
#endif // wxUSE_THREADS
- while (!Pending() && ProcessIdle())
- {
+ while (/*Pending() &&*/ ProcessIdle())
+ {
// wxUsleep(10000);
- }
- DoMessage();
+ }
+ DoMessage();
}
return (int)svCurrentMsg.mp1;
} // end of wxApp::MainLoop
if((CHARMSG(pChmsg)->fs & (KC_ALT | KC_CTRL)) && CHARMSG(pChmsg)->chr != 0)
CHARMSG(pChmsg)->chr = (USHORT)wxToupper((UCHAR)uSch);
- for(pWnd = pWndThis; pWnd; pWnd = pWnd->GetParent() )
- {
- if((bRc = pWnd->OS2TranslateMessage(pWxmsg)) == TRUE)
- break;
- }
+
+ for(pWnd = pWndThis; pWnd; pWnd = pWnd->GetParent() )
+ {
+ if((bRc = pWnd->OS2TranslateMessage(pWxmsg)) == TRUE)
+ break;
+ }
+
if(!bRc) // untranslated, should restore original value
CHARMSG(pChmsg)->chr = uSch;
}
//
// Avoid recursion (via ProcessEvent default case)
//
- if (sbInOnIdle )
+ if (sbInOnIdle)
return;
sbInOnIdle = TRUE;
::WinPostMsg(NULL, WM_QUIT, 0, 0);
}
}
+
wxModelessWindows.DeleteObject(this);
//
::WinQueryWindowPos(GetHWND(), &vSwp);
m_bIconized = vSwp.fl & SWP_MINIMIZE;
+ ::WinSendMsg(GetHWND(), WM_UPDATEFRAME, (MPARAM)~0, 0);
::WinEnableWindow(GetHWND(), TRUE);
vEvent.SetEventObject(this);
GetEventHandler()->ProcessEvent(vEvent);
SWP vSwp;
ERRORID vError;
wxString sError;
- HWND hWnd;
pStatusBar = wxFrameBase::OnCreateStatusBar( nNumber
,lulStyle
,vId
,rName
- );
- //
- // The default parent set for the Statusbar is m_hWnd which, of course,
- // is the handle to the client window of the frame. We don't want that,
- // so we have to set the parent to actually be the Frame.
- //
- hWnd = pStatusBar->GetHWND();
- if (!::WinSetParent(hWnd, GetHWND(), FALSE))
- {
- vError = ::WinGetLastError(vHabmain);
- sError = wxPMErrorToStr(vError);
- wxLogError("Error setting parent for statusbar. Error: %s\n", sError);
+ );
+
+ if( !pStatusBar )
return NULL;
- }
+ //
+ // to show statusbar
//
- // Also we need to reset it positioning to enable the SHOW attribute
- //
- if (!::WinQueryWindowPos((HWND)pStatusBar->GetHWND(), &vSwp))
- {
- vError = ::WinGetLastError(vHabmain);
- sError = wxPMErrorToStr(vError);
- wxLogError("Error querying frame for statusbar position. Error: %s\n", sError);
- return NULL;
- }
- if (!::WinSetWindowPos( (HWND)pStatusBar->GetHWND()
- ,HWND_TOP
- ,vSwp.cx
- ,vSwp.cy
- ,vSwp.x
- ,vSwp.y
- ,SWP_SIZE | SWP_MOVE | SWP_SHOW | SWP_ZORDER
- ))
- {
- vError = ::WinGetLastError(vHabmain);
- sError = wxPMErrorToStr(vError);
- wxLogError("Error setting statusbar position. Error: %s\n", sError);
- return NULL;
- }
+ if( ::WinIsWindowShowing(GetHWND()) )
+ ::WinSendMsg(GetHWND(), WM_UPDATEFRAME, (MPARAM)~0, 0);
+
return pStatusBar;
} // end of wxFrame::OnCreateStatusBar
}
if (!::WinSetWindowPos( m_frameStatusBar->GetHWND()
,HWND_TOP
- ,nStatbarWidth
- ,nStatbarHeight
,vSwp.x
,vSwp.y
+ ,nStatbarWidth
+ ,nStatbarHeight
,SWP_SIZE | SWP_MOVE | SWP_SHOW | SWP_ZORDER
))
{
if ((m_lFsStyle & wxFULLSCREEN_NOSTATUSBAR) && (m_nFsStatusBarFields > 0))
{
CreateStatusBar(m_nFsStatusBarFields);
- PositionStatusBar();
+// PositionStatusBar();
}
if ((m_lFsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0))
return FALSE;
}
+ //
+ // Now need to subclass window.
+ //
+
+ //SubclassWin(GetHWND());
+
+// ::WinCreateWindow(GetHWND(), WC_LISTBOX, "", WS_VISIBLE, 0, 0,
+// 0, 0, GetHWND(), HWND_TOP, FID_CLIENT, NULL, NULL);
//
// Now size everything. If adding a menu the client will need to be resized.
//
,SWP_SIZE | SWP_MOVE | SWP_ACTIVATE | SWP_ZORDER
))
return FALSE;
-
+/*
uCtlCount = SHORT1FROMMP(::WinSendMsg(GetHWND(), WM_FORMATFRAME, (MPARAM)vSwp, (MPARAM)vRect));
for (int i = 0; i < uCtlCount; i++)
{
memcpy(&m_vSwpVScroll, &vSwp[i], sizeof(SWP));
else if (vSwp[i].hwnd == m_hTitleBar)
memcpy(&m_vSwpTitleBar, &vSwp[i], sizeof(SWP));
- }
+ }*/
return TRUE;
} // end of wxFrame::OS2Create
}
#endif // wxUSE_NATIVE_STATUSBAR
- PositionStatusBar();
+// PositionStatusBar();
PositionToolBar();
wxSizeEvent vEvent( wxSize( nX
,nY
//
// Handle here commands from menus and accelerators
//
- if (nCmd == 0 || nCmd == 1)
+ if (nCmd == CMDSRC_MENU || nCmd == CMDSRC_ACCELERATOR)
{
if (wxCurrentPopupMenu)
{
WXHWND hWnd;
UnpackCommand( (WXWPARAM)wParam
- ,(WXLPARAM)lParam
- ,&wId
- ,&hWnd
- ,&wCmd
- );
+ ,(WXLPARAM)lParam
+ ,&wId
+ ,&hWnd
+ ,&wCmd
+ );
+
bProcessed = HandleCommand( wId
,wCmd
,(WXHWND)hWnd
case WM_SIZE:
bProcessed = HandleSize(LOWORD(lParam), HIWORD(lParam), (WXUINT)wParam);
break;
+
+ case WM_QUERYFRAMECTLCOUNT:
+ {
+ USHORT itemCount = SHORT1FROMMR(OS2GetOldWndProc()(GetHWND(), uMessage, wParam, lParam));
+ if(m_frameStatusBar)
+ ++itemCount;
+ bProcessed = TRUE;
+ mRc = MRFROMSHORT( itemCount );
+ }
+ break;
+
+ case WM_FORMATFRAME:
+ {
+ PSWP pSWP = 0;
+ USHORT usClient = 0;
+ SWP swp;
+ USHORT itemCount;
+ char s[128];
+
+ itemCount = SHORT1FROMMR(OS2GetOldWndProc()(GetHWND(), uMessage, wParam, lParam));
+ pSWP = (PSWP)PVOIDFROMMP( wParam );
+
+ while(pSWP[usClient].hwnd != WinWindowFromID(GetHWND(), FID_CLIENT)
+ && usClient < itemCount)
+ usClient++;
+
+ if(m_frameStatusBar)
+ {
+ int height;
+
+ m_frameStatusBar->GetSize(NULL, &height);
+
+ if(usClient == itemCount)
+ {
+ // frame has no client window
+ // using another method of calculation
+ RECTL wRectl;
+
+ ::WinQueryWindowRect(GetHWND(), &wRectl);
+ ::WinMapWindowPoints(GetHWND(), HWND_DESKTOP, (PPOINTL)&wRectl, 2);
+ ::WinCalcFrameRect(GetHWND(), &wRectl, TRUE);
+ ::WinMapWindowPoints(HWND_DESKTOP, GetHWND(), (PPOINTL)&wRectl, 2);
+
+ pSWP[itemCount].x = wRectl.xLeft;
+ pSWP[itemCount].y = wRectl.yBottom;
+ pSWP[itemCount].cx = wRectl.xRight - wRectl.xLeft - 1;
+ pSWP[itemCount].cy = height;
+ pSWP[itemCount].fl = SWP_SIZE |
+ SWP_MOVE |
+ SWP_SHOW;
+ pSWP[itemCount].hwnd = m_frameStatusBar->GetHWND();
+ pSWP[itemCount].hwndInsertBehind = HWND_TOP;
+ ++itemCount;
+ }
+ else
+ {
+ pSWP[itemCount].x = pSWP[usClient].x;
+ pSWP[itemCount].y = pSWP[usClient].y;
+ pSWP[itemCount].cx = pSWP[usClient].cx;
+ pSWP[itemCount].cy = height;
+ pSWP[itemCount].fl = SWP_SIZE |
+ SWP_MOVE |
+ SWP_SHOW;
+ pSWP[itemCount].hwnd = m_frameStatusBar->GetHWND();
+ pSWP[itemCount].hwndInsertBehind = HWND_TOP;
+ pSWP[usClient].cy -= height;
+ pSWP[usClient].y += height;
+
+ ++itemCount;
+ }
+ }
+ bProcessed = TRUE;
+ mRc = MRFROMSHORT(itemCount);
+ }
+ break;
}
if (!bProcessed )
return (MRESULT)mRc;
} // wxFrame::OS2WindowProc
+
+void wxFrame::SetClient(WXHWND c_Hwnd)
+{
+ // Are we really need to implement it?
+}
+
+void wxFrame::SetClient(wxWindow* c_Window)
+{
+ wxWindow *oldClient = this->GetClient();
+ bool clientHasFocus = oldClient && (oldClient == wxWindow::FindFocus());
+
+ if(oldClient == c_Window) // nothing to do
+ return;
+
+ if(c_Window == NULL) // just need to remove old client
+ {
+ if(oldClient == NULL) // nothing to do
+ return;
+
+ if( clientHasFocus )
+ this->SetFocus();
+
+ oldClient->Enable( FALSE );
+ oldClient->Show( FALSE );
+ ::WinSetWindowUShort(oldClient->GetHWND(), QWS_ID, (USHORT)oldClient->GetId());
+ // to avoid OS/2 bug need to update frame
+ ::WinSendMsg((HWND)this->GetHWND(), WM_UPDATEFRAME, (MPARAM)~0, 0);
+ return;
+ }
+
+ // else need to change client
+ if( clientHasFocus )
+ this->SetFocus();
+
+ ::WinEnableWindowUpdate((HWND)GetHWND(), FALSE);
+ if( oldClient )
+ {
+ oldClient->Enable( FALSE );
+ oldClient->Show( FALSE );
+ ::WinSetWindowUShort(oldClient->GetHWND(), QWS_ID, (USHORT)oldClient->GetId());
+ }
+
+ c_Window->Reparent( this );
+ ::WinSetWindowUShort(c_Window->GetHWND(), QWS_ID, FID_CLIENT);
+
+ ::WinEnableWindowUpdate((HWND)GetHWND(), TRUE);
+ c_Window->Enable();
+ c_Window->Show(); // ensure client is showing
+
+ if( this->IsShown() )
+ {
+ this->Show();
+ ::WinSendMsg(GetHWND(), WM_UPDATEFRAME, (MPARAM)~0, 0);
+ }
+}
+
+wxWindow *wxFrame::GetClient()
+{
+ return wxFindWinFromHandle((WXHWND)::WinWindowFromID(GetHWND(), FID_CLIENT));
+}
..\generic\$D\tbarsmpl.obj \
..\generic\$D\textdlgg.obj \
..\generic\$D\tipdlg.obj \
+ ..\generic\$D\tipwin.obj \
..\generic\$D\treectlg.obj \
..\generic\$D\treelay.obj \
..\generic\$D\wizard.obj
tbarsmpl.obj \
textdlgg.obj \
tipdlg.obj \
+ tipwin.obj \
treectlg.obj \
treelay.obj \
wizard.obj
..\common\$D\cmdline.obj \
..\common\$D\cmndata.obj \
..\common\$D\config.obj \
+ ..\common\$D\cshelp.obj \
..\common\$D\ctrlcmn.obj \
..\common\$D\ctrlsub.obj \
..\common\$D\datetime.obj \
cmdline.obj \
cmndata.obj \
config.obj \
+ cshelp.obj \
ctrlcmn.obj \
ctrlsub.obj \
datetime.obj \
helpbase.obj \
http.obj \
imagall.obj \
- imagbmp.obj \
- image.obj
+ imagbmp.obj
COMLIBOBJS2 = \
+ image.obj \
imaggif.obj \
imagjpeg.obj \
imagpcx.obj \
string.obj \
tbarbase.obj \
textcmn.obj \
- textfile.obj \
- timercmn.obj
+ textfile.obj
COMLIBOBJS3 = \
+ timercmn.obj \
tokenzr.obj \
treebase.obj \
txtstrm.obj \
copy ..\common\$D\cmdline.obj
copy ..\common\$D\cmndata.obj
copy ..\common\$D\config.obj
+ copy ..\common\$D\cshelp.obj
copy ..\common\$D\ctrlcmn.obj
copy ..\common\$D\ctrlsub.obj
copy ..\common\$D\datetime.obj
copy ..\common\$D\http.obj
copy ..\common\$D\imagall.obj
copy ..\common\$D\imagbmp.obj
- copy ..\common\$D\image.obj
$(COMLIBOBJS2):
+ copy ..\common\$D\image.obj
copy ..\common\$D\imaggif.obj
copy ..\common\$D\imagjpeg.obj
copy ..\common\$D\imagpcx.obj
copy ..\common\$D\tbarbase.obj
copy ..\common\$D\textcmn.obj
copy ..\common\$D\textfile.obj
- copy ..\common\$D\timercmn.obj
$(COMLIBOBJS3):
+ copy ..\common\$D\timercmn.obj
copy ..\common\$D\tokenzr.obj
copy ..\common\$D\treebase.obj
copy ..\common\$D\txtstrm.obj
copy ..\generic\$D\tbarsmpl.obj
copy ..\generic\$D\textdlgg.obj
copy ..\generic\$D\tipdlg.obj
+ copy ..\generic\$D\tipwin.obj
copy ..\generic\$D\treectlg.obj
copy ..\generic\$D\treelay.obj
copy ..\generic\$D\wizard.obj