API to Create panes from RDF_Resources as well.

This commit is contained in:
pinkerton%netscape.com 1998-08-11 19:15:59 +00:00
Родитель 956db7dc06
Коммит 49d487386c
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -42,10 +42,16 @@ CRDFNotificationHandler::CreateHTPane()
HT_Pane
CRDFNotificationHandler::CreateHTPane ( HT_Resource inResource )
{
return CreateHTPane ( HT_GetRDFResource(inResource) );
}
HT_Pane
CRDFNotificationHandler::CreateHTPane ( RDF_Resource inResource )
{
HT_Notification notifyStruct = CreateNotificationStruct();
if (notifyStruct)
return HT_PaneFromResource(HT_GetRDFResource(inResource), notifyStruct, false, false, false);
return HT_PaneFromResource(inResource, notifyStruct, false, true, true);
else
return NULL;
}

Просмотреть файл

@ -33,6 +33,7 @@ class CRDFNotificationHandler
protected:
virtual HT_Pane CreateHTPane ( HT_Resource inResource ) ;
virtual HT_Pane CreateHTPane ( RDF_Resource inResource ) ;
virtual HT_Pane CreateHTPane ( const char* inURL, unsigned int inCount,
char** inParamNames, char** inParamValues ) ;
virtual HT_Pane CreateHTPane();