for example: newWindow, exit, close, printPreview git-svn-id: svn://10.0.0.236/trunk@20970 18797224-902f-48f8-a5cc-f745e15eee43
27 lines
513 B
Plaintext
27 lines
513 B
Plaintext
interface BrowserAppCore : BaseAppCore
|
|
{
|
|
/* IID: { 0xb0ffb697, 0xbab4, 0x11d2, \
|
|
{0x96, 0xc4, 0x0, 0x60, 0xb0, 0xfb, 0x99, 0x56}} */
|
|
|
|
void BrowserAppCore();
|
|
|
|
void back();
|
|
void forward();
|
|
void loadUrl(in wstring url);
|
|
|
|
void setToolbarWindow(in Window win);
|
|
void setContentWindow(in Window win);
|
|
void setWebShellWindow(in Window win);
|
|
|
|
void newWindow();
|
|
void printPreview();
|
|
void close();
|
|
void exit();
|
|
|
|
|
|
void setDisableCallback(in wstring script);
|
|
void setEnableCallback(in wstring script);
|
|
|
|
};
|
|
|