2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla XUL Toolkit.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Mozilla Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Stan Shebs <shebs@mozilla.com>
|
2010-02-08 14:03:40 -08:00
|
|
|
* Thomas K. Dyas <tom.dyas@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
// NSApplication delegate for Mac OS X Cocoa API.
|
|
|
|
|
|
|
|
// As of 10.4 Tiger, the system can send six kinds of Apple Events to an application;
|
|
|
|
// a well-behaved XUL app should have some kind of handling for all of them.
|
|
|
|
//
|
|
|
|
// See http://developer.apple.com/documentation/Cocoa/Conceptual/ScriptableCocoaApplications/SApps_handle_AEs/chapter_11_section_3.html for details.
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-02 06:24:31 -08:00
|
|
|
#import <Carbon/Carbon.h>
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsINativeAppSupport.h"
|
|
|
|
#include "nsAppRunner.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
2009-03-02 06:24:31 -08:00
|
|
|
#include "nsIServiceManager.h"
|
2007-04-25 12:30:02 -07:00
|
|
|
#include "nsServiceManagerUtils.h"
|
2007-07-02 07:48:07 -07:00
|
|
|
#include "nsIAppStartup.h"
|
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
2008-02-20 09:34:21 -08:00
|
|
|
#include "nsObjCExceptions.h"
|
2009-03-02 06:24:31 -08:00
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsDirectoryServiceDefs.h"
|
|
|
|
#include "nsICommandLineRunner.h"
|
2010-02-08 14:03:40 -08:00
|
|
|
#include "nsIMacDockSupport.h"
|
|
|
|
#include "nsIStandaloneNativeMenu.h"
|
2010-06-08 15:26:12 -07:00
|
|
|
#include "nsILocalFileMac.h"
|
|
|
|
#include "nsString.h"
|
2011-01-03 08:08:36 -08:00
|
|
|
#include "nsCommandLineServiceMac.h"
|
|
|
|
|
|
|
|
class AutoAutoreleasePool {
|
|
|
|
public:
|
|
|
|
AutoAutoreleasePool()
|
|
|
|
{
|
|
|
|
mLocalPool = [[NSAutoreleasePool alloc] init];
|
|
|
|
}
|
|
|
|
~AutoAutoreleasePool()
|
|
|
|
{
|
|
|
|
[mLocalPool release];
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
NSAutoreleasePool *mLocalPool;
|
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
@interface MacApplicationDelegate : NSObject
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2011-01-03 08:08:36 -08:00
|
|
|
static PRBool sProcessedGetURLEvent = PR_FALSE;
|
|
|
|
|
|
|
|
// Methods that can be called from non-Objective-C code.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-05-16 19:10:19 -07:00
|
|
|
// This is needed, on relaunch, to force the OS to use the "Cocoa Dock API"
|
|
|
|
// instead of the "Carbon Dock API". For more info see bmo bug 377166.
|
|
|
|
void
|
|
|
|
EnsureUseCocoaDockAPI()
|
|
|
|
{
|
2008-02-20 09:34:21 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2007-05-16 19:10:19 -07:00
|
|
|
[NSApplication sharedApplication];
|
2008-02-20 09:34:21 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-05-16 19:10:19 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
|
|
|
SetupMacApplicationDelegate()
|
|
|
|
{
|
2008-02-20 09:34:21 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2010-04-13 13:37:07 -07:00
|
|
|
// this is called during startup, outside an event loop, and therefore
|
|
|
|
// needs an autorelease pool to avoid cocoa object leakage (bug 559075)
|
2011-01-03 08:08:36 -08:00
|
|
|
AutoAutoreleasePool pool;
|
|
|
|
|
|
|
|
// Ensure that ProcessPendingGetURLAppleEvents() doesn't regress bug 377166.
|
|
|
|
[NSApplication sharedApplication];
|
2010-04-13 13:37:07 -07:00
|
|
|
|
2007-09-17 10:10:52 -07:00
|
|
|
// This call makes it so that application:openFile: doesn't get bogus calls
|
|
|
|
// from Cocoa doing its own parsing of the argument string. And yes, we need
|
|
|
|
// to use a string with a boolean value in it. That's just how it works.
|
|
|
|
[[NSUserDefaults standardUserDefaults] setObject:@"NO"
|
|
|
|
forKey:@"NSTreatUnknownArgumentsAsOpen"];
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Create the delegate. This should be around for the lifetime of the app.
|
|
|
|
MacApplicationDelegate *delegate = [[MacApplicationDelegate alloc] init];
|
2010-05-01 03:42:47 -07:00
|
|
|
[NSApp setDelegate:delegate];
|
2008-02-20 09:34:21 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-01-03 08:08:36 -08:00
|
|
|
// Indirectly make the OS process any pending GetURL Apple events. This is
|
|
|
|
// done via _DPSNextEvent() (an undocumented AppKit function called from
|
|
|
|
// [NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]). Apple
|
|
|
|
// events are only processed if 'dequeue' is 'YES' -- so we need to call
|
|
|
|
// [NSApplication sendEvent:] on any event that gets returned. 'event' will
|
|
|
|
// never itself be an Apple event, and it may be 'nil' even when Apple events
|
|
|
|
// are processed.
|
|
|
|
void
|
|
|
|
ProcessPendingGetURLAppleEvents()
|
|
|
|
{
|
|
|
|
AutoAutoreleasePool pool;
|
|
|
|
PRBool keepSpinning = PR_TRUE;
|
|
|
|
while (keepSpinning) {
|
|
|
|
sProcessedGetURLEvent = PR_FALSE;
|
|
|
|
NSEvent *event = [NSApp nextEventMatchingMask:NSAnyEventMask
|
|
|
|
untilDate:nil
|
|
|
|
inMode:NSDefaultRunLoopMode
|
|
|
|
dequeue:YES];
|
|
|
|
if (event)
|
|
|
|
[NSApp sendEvent:event];
|
|
|
|
keepSpinning = sProcessedGetURLEvent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
@implementation MacApplicationDelegate
|
|
|
|
|
2009-03-02 06:24:31 -08:00
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
|
|
|
if ((self = [super init])) {
|
2010-03-24 10:33:04 -07:00
|
|
|
NSAppleEventManager *aeMgr = [NSAppleEventManager sharedAppleEventManager];
|
|
|
|
|
|
|
|
[aeMgr setEventHandler:self
|
|
|
|
andSelector:@selector(handleAppleEvent:withReplyEvent:)
|
|
|
|
forEventClass:kInternetEventClass
|
|
|
|
andEventID:kAEGetURL];
|
|
|
|
|
|
|
|
[aeMgr setEventHandler:self
|
|
|
|
andSelector:@selector(handleAppleEvent:withReplyEvent:)
|
|
|
|
forEventClass:'WWW!'
|
|
|
|
andEventID:'OURL'];
|
2010-05-01 03:42:47 -07:00
|
|
|
|
|
|
|
if (![NSApp windowsMenu]) {
|
|
|
|
// If the application has a windows menu, it will keep it up to date and
|
|
|
|
// prepend the window list to the Dock menu automatically.
|
|
|
|
NSMenu* windowsMenu = [[NSMenu alloc] initWithTitle:@"Window"];
|
|
|
|
[NSApp setWindowsMenu:windowsMenu];
|
|
|
|
[windowsMenu release];
|
|
|
|
}
|
2009-03-02 06:24:31 -08:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(nil);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
|
|
|
|
2010-03-24 10:33:04 -07:00
|
|
|
NSAppleEventManager *aeMgr = [NSAppleEventManager sharedAppleEventManager];
|
|
|
|
[aeMgr removeEventHandlerForEventClass:kInternetEventClass andEventID:kAEGetURL];
|
|
|
|
[aeMgr removeEventHandlerForEventClass:'WWW!' andEventID:'OURL'];
|
2009-03-02 06:24:31 -08:00
|
|
|
[super dealloc];
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// The method that NSApplication calls upon a request to reopen, such as when
|
2010-06-08 15:26:12 -07:00
|
|
|
// the Dock icon is clicked and no windows are open. A "visible" window may be
|
|
|
|
// miniaturized, so we can't skip nsCocoaNativeReOpen() if 'flag' is 'true'.
|
2007-03-22 10:30:00 -07:00
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApp hasVisibleWindows:(BOOL)flag
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINativeAppSupport> nas = do_CreateInstance(NS_NATIVEAPPSUPPORT_CONTRACTID);
|
|
|
|
NS_ENSURE_TRUE(nas, NO);
|
|
|
|
|
|
|
|
// Go to the common Carbon/Cocoa reopen method.
|
|
|
|
nsresult rv = nas->ReOpen();
|
|
|
|
NS_ENSURE_SUCCESS(rv, NO);
|
|
|
|
|
|
|
|
// NO says we don't want NSApplication to do anything else for us.
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The method that NSApplication calls when documents are requested to be opened.
|
|
|
|
// It will be called once for each selected document.
|
|
|
|
- (BOOL)application:(NSApplication*)theApplication openFile:(NSString*)filename
|
|
|
|
{
|
2008-02-20 09:34:21 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_RETURN;
|
|
|
|
|
2011-01-03 08:08:36 -08:00
|
|
|
NSURL *url = [NSURL fileURLWithPath:filename];
|
|
|
|
if (!url)
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
NSString *urlString = [url absoluteString];
|
|
|
|
if (!urlString)
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
// Add the URL to any command line we're currently setting up.
|
|
|
|
if (CommandLineServiceMac::AddURLToCurrentCommandLine([urlString UTF8String]))
|
|
|
|
return YES;
|
2010-06-08 15:26:12 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFileMac> inFile;
|
2011-01-03 08:08:36 -08:00
|
|
|
nsresult rv = NS_NewLocalFileWithCFURL((CFURLRef)url, PR_TRUE, getter_AddRefs(inFile));
|
2010-06-08 15:26:12 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
nsCOMPtr<nsICommandLineRunner> cmdLine(do_CreateInstance("@mozilla.org/toolkit/command-line;1"));
|
|
|
|
if (!cmdLine) {
|
|
|
|
NS_ERROR("Couldn't create command line!");
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCString filePath;
|
|
|
|
rv = inFile->GetNativePath(filePath);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> workingDir;
|
|
|
|
rv = NS_GetSpecialDirectory(NS_OS_CURRENT_WORKING_DIR, getter_AddRefs(workingDir));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-08 15:26:12 -07:00
|
|
|
const char *argv[3] = {nsnull, "-file", filePath.get()};
|
|
|
|
rv = cmdLine->Init(3, const_cast<char**>(argv), workingDir, nsICommandLine::STATE_REMOTE_EXPLICIT);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NO;
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(cmdLine->Run()))
|
|
|
|
return YES;
|
|
|
|
|
|
|
|
return NO;
|
2008-02-20 09:34:21 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_RETURN(NO);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// The method that NSApplication calls when documents are requested to be printed
|
|
|
|
// from the Finder (under the "File" menu).
|
|
|
|
// It will be called once for each selected document.
|
|
|
|
- (BOOL)application:(NSApplication*)theApplication printFile:(NSString*)filename
|
|
|
|
{
|
2010-06-08 15:26:12 -07:00
|
|
|
return NO;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-04-25 12:30:02 -07:00
|
|
|
// Create the menu that shows up in the Dock.
|
|
|
|
- (NSMenu*)applicationDockMenu:(NSApplication*)sender
|
|
|
|
{
|
2008-02-20 09:34:21 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NIL;
|
|
|
|
|
2010-02-08 14:03:40 -08:00
|
|
|
// Create the NSMenu that will contain the dock menu items.
|
2007-04-25 12:30:02 -07:00
|
|
|
NSMenu *menu = [[[NSMenu alloc] initWithTitle:@""] autorelease];
|
2010-02-08 14:03:40 -08:00
|
|
|
[menu setAutoenablesItems:NO];
|
|
|
|
|
|
|
|
// Add application-specific dock menu items. On error, do not insert the
|
|
|
|
// dock menu items.
|
2010-05-01 03:42:47 -07:00
|
|
|
nsresult rv;
|
2010-02-08 14:03:40 -08:00
|
|
|
nsCOMPtr<nsIMacDockSupport> dockSupport = do_GetService("@mozilla.org/widget/macdocksupport;1", &rv);
|
|
|
|
if (NS_FAILED(rv) || !dockSupport)
|
|
|
|
return menu;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIStandaloneNativeMenu> dockMenu;
|
|
|
|
rv = dockSupport->GetDockMenu(getter_AddRefs(dockMenu));
|
|
|
|
if (NS_FAILED(rv) || !dockMenu)
|
|
|
|
return menu;
|
|
|
|
|
|
|
|
// Determine if the dock menu items should be displayed. This also gives
|
|
|
|
// the menu the opportunity to update itself before display.
|
|
|
|
PRBool shouldShowItems;
|
|
|
|
rv = dockMenu->MenuWillOpen(&shouldShowItems);
|
|
|
|
if (NS_FAILED(rv) || !shouldShowItems)
|
|
|
|
return menu;
|
|
|
|
|
|
|
|
// Obtain a copy of the native menu.
|
|
|
|
NSMenu * nativeDockMenu;
|
|
|
|
rv = dockMenu->GetNativeMenu(reinterpret_cast<void **>(&nativeDockMenu));
|
|
|
|
if (NS_FAILED(rv) || !nativeDockMenu)
|
|
|
|
return menu;
|
|
|
|
|
|
|
|
// Loop through the application-specific dock menu and insert its
|
|
|
|
// contents into the dock menu that we are building for Cocoa.
|
|
|
|
int numDockMenuItems = [nativeDockMenu numberOfItems];
|
|
|
|
if (numDockMenuItems > 0) {
|
|
|
|
if ([menu numberOfItems] > 0)
|
|
|
|
[menu addItem:[NSMenuItem separatorItem]];
|
|
|
|
|
|
|
|
for (int i = 0; i < numDockMenuItems; i++) {
|
|
|
|
NSMenuItem * itemCopy = [[nativeDockMenu itemAtIndex:i] copy];
|
|
|
|
[menu addItem:itemCopy];
|
|
|
|
[itemCopy release];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-25 12:30:02 -07:00
|
|
|
return menu;
|
2008-02-20 09:34:21 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
2007-04-25 12:30:02 -07:00
|
|
|
}
|
|
|
|
|
2007-07-02 07:48:07 -07:00
|
|
|
// If we don't handle applicationShouldTerminate:, a call to [NSApp terminate:]
|
|
|
|
// (from the browser or from the OS) can result in an unclean shutdown.
|
|
|
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIObserverService> obsServ =
|
|
|
|
do_GetService("@mozilla.org/observer-service;1");
|
|
|
|
if (!obsServ)
|
|
|
|
return NSTerminateNow;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsPRBool> cancelQuit =
|
|
|
|
do_CreateInstance(NS_SUPPORTS_PRBOOL_CONTRACTID);
|
|
|
|
if (!cancelQuit)
|
|
|
|
return NSTerminateNow;
|
|
|
|
|
|
|
|
cancelQuit->SetData(PR_FALSE);
|
|
|
|
obsServ->NotifyObservers(cancelQuit, "quit-application-requested", nsnull);
|
|
|
|
|
|
|
|
PRBool abortQuit;
|
|
|
|
cancelQuit->GetData(&abortQuit);
|
|
|
|
if (abortQuit)
|
|
|
|
return NSTerminateCancel;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAppStartup> appService =
|
|
|
|
do_GetService("@mozilla.org/toolkit/app-startup;1");
|
|
|
|
if (appService)
|
|
|
|
appService->Quit(nsIAppStartup::eForceQuit);
|
|
|
|
|
|
|
|
return NSTerminateNow;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-03-02 06:24:31 -08:00
|
|
|
- (void)handleAppleEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAppleEventDescriptor*)replyEvent
|
|
|
|
{
|
|
|
|
if (!event)
|
|
|
|
return;
|
|
|
|
|
2011-01-03 08:08:36 -08:00
|
|
|
AutoAutoreleasePool pool;
|
|
|
|
|
|
|
|
PRBool isGetURLEvent =
|
|
|
|
([event eventClass] == kInternetEventClass && [event eventID] == kAEGetURL);
|
|
|
|
if (isGetURLEvent)
|
|
|
|
sProcessedGetURLEvent = PR_TRUE;
|
|
|
|
|
|
|
|
if (isGetURLEvent ||
|
2010-03-24 10:33:04 -07:00
|
|
|
([event eventClass] == 'WWW!' && [event eventID] == 'OURL')) {
|
2009-03-02 06:24:31 -08:00
|
|
|
NSString* urlString = [[event paramDescriptorForKeyword:keyDirectObject] stringValue];
|
|
|
|
|
|
|
|
// don't open chrome URLs
|
|
|
|
NSString* schemeString = [[NSURL URLWithString:urlString] scheme];
|
|
|
|
if (!schemeString ||
|
|
|
|
[schemeString compare:@"chrome"
|
|
|
|
options:NSCaseInsensitiveSearch
|
|
|
|
range:NSMakeRange(0, [schemeString length])] == NSOrderedSame) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-03 08:08:36 -08:00
|
|
|
// Add the URL to any command line we're currently setting up.
|
|
|
|
if (CommandLineServiceMac::AddURLToCurrentCommandLine([urlString UTF8String]))
|
|
|
|
return;
|
|
|
|
|
2009-03-02 06:24:31 -08:00
|
|
|
nsCOMPtr<nsICommandLineRunner> cmdLine(do_CreateInstance("@mozilla.org/toolkit/command-line;1"));
|
|
|
|
if (!cmdLine) {
|
|
|
|
NS_ERROR("Couldn't create command line!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIFile> workingDir;
|
|
|
|
nsresult rv = NS_GetSpecialDirectory(NS_OS_CURRENT_WORKING_DIR, getter_AddRefs(workingDir));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return;
|
|
|
|
const char *argv[3] = {nsnull, "-url", [urlString UTF8String]};
|
|
|
|
rv = cmdLine->Init(3, const_cast<char**>(argv), workingDir, nsICommandLine::STATE_REMOTE_EXPLICIT);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return;
|
|
|
|
rv = cmdLine->Run();
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-03-02 06:24:31 -08:00
|
|
|
@end
|