Implement some toplevel windowing functionality

git-svn-id: svn://10.0.0.236/trunk@1118 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
spider
1998-05-05 00:50:35 +00:00
parent 0862eba745
commit f8555ac899
6 changed files with 195 additions and 15 deletions

View File

@@ -50,6 +50,7 @@ public:
nsShellInstance::nsShellInstance()
{
mApplicationWindow = NULL;
}
nsShellInstance::~nsShellInstance()
@@ -163,6 +164,48 @@ nsresult nsShellInstance::RegisterFactories()
return NS_OK;
}
nsIWidget * nsShellInstance::CreateApplicationWindow(const nsRect &aRect,
EVENT_CALLBACK aHandleEventFunction)
{
static NS_DEFINE_IID(kIWidgetIID, NS_IWIDGET_IID);
static NS_DEFINE_IID(kCWindowCID, NS_WINDOW_CID);
NSRepository::CreateInstance(kCWindowCID,
nsnull,
kIWidgetIID,
(LPVOID*)&(mApplicationWindow));
mApplicationWindow->Create((nsIWidget*)NULL,
aRect,
aHandleEventFunction,
NULL);
return (mApplicationWindow);
}
nsresult nsShellInstance::ShowApplicationWindow(PRBool show)
{
mApplicationWindow->Show(show);
return NS_OK;
}
nsresult nsShellInstance::ExitApplication()
{
#ifdef NS_WIN32
PostQuitMessage(0);
#endif
return NS_OK;
}
void * nsShellInstance::GetApplicationWindowNativeInstance()
{
return (mApplicationWindow->GetNativeData(NS_NATIVE_WINDOW));
}
nsShellInstanceFactory::nsShellInstanceFactory()
{
}