not part of the build, yet.

This commit is contained in:
sspitzer%netscape.com 2000-02-16 02:21:30 +00:00
parent 1b59c05e7b
commit 901a6ea5f1
5 changed files with 202 additions and 0 deletions

View File

@ -0,0 +1,41 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Seth Spitzer <sspitzer@netscape.com>
*/
#include "nsEditorService.h"
nsEditorService::nsEditorService()
{
NS_INIT_REFCNT();
}
nsEditorService::~nsEditorService()
{
}
NS_IMPL_ADDREF(nsEditorService);
NS_IMPL_RELEASE(nsEditorService);
NS_IMPL_QUERY_INTERFACE2(nsEditorService,
nsIEditorService,
nsICmdLineHandler)
CMDLINEHANDLER_IMPL(nsEditorService,"-edit","general.startup.editor","chrome://editor/content/","Start with editor","component://netscape/editor/editorservice","Editor Cmd Line Handler", PR_TRUE,"about:blank", PR_TRUE)

View File

@ -0,0 +1,45 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Seth Spitzer <sspitzer@netscape.com>
*/
#ifndef nsEditorService_h___
#define nsEditorService_h___
#include "nsIEditorService.h"
#include "nsICmdLineHandler.h"
class nsEditorService : public nsIEditorService,
public nsICmdLineHandler
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIEDITORSERVICE
NS_DECL_NSICMDLINEHANDLER
nsEditorService();
virtual ~nsEditorService();
CMDLINEHANDLER_REGISTERPROC_DECLS
};
#endif /* nsEditorService_h___ */

View File

@ -0,0 +1,30 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Seth Spitzer <sspitzer@netscape.com>
*/
#include "nsISupports.idl"
[scriptable, uuid(4c4a7a9a-1dd2-11b2-b8e1-e711f07b7f52)]
interface nsIEditorService: nsISupports
{
/* nothing yet, but this is the place to put editor service stuff */
};

View File

@ -0,0 +1,41 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Seth Spitzer <sspitzer@netscape.com>
*/
#include "nsEditorService.h"
nsEditorService::nsEditorService()
{
NS_INIT_REFCNT();
}
nsEditorService::~nsEditorService()
{
}
NS_IMPL_ADDREF(nsEditorService);
NS_IMPL_RELEASE(nsEditorService);
NS_IMPL_QUERY_INTERFACE2(nsEditorService,
nsIEditorService,
nsICmdLineHandler)
CMDLINEHANDLER_IMPL(nsEditorService,"-edit","general.startup.editor","chrome://editor/content/","Start with editor","component://netscape/editor/editorservice","Editor Cmd Line Handler", PR_TRUE,"about:blank", PR_TRUE)

View File

@ -0,0 +1,45 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Seth Spitzer <sspitzer@netscape.com>
*/
#ifndef nsEditorService_h___
#define nsEditorService_h___
#include "nsIEditorService.h"
#include "nsICmdLineHandler.h"
class nsEditorService : public nsIEditorService,
public nsICmdLineHandler
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIEDITORSERVICE
NS_DECL_NSICMDLINEHANDLER
nsEditorService();
virtual ~nsEditorService();
CMDLINEHANDLER_REGISTERPROC_DECLS
};
#endif /* nsEditorService_h___ */