/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * 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 Communicator client 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): * shaver@mozilla.org */ #include "nsCOMPtr.h" #include "nsIServiceManager.h" #include "nsIAutoCopy.h" #include "nsIDOMSelection.h" #include "nsIDOMSelectionListener.h" #include "nsWidgetsCID.h" #include "nsIClipboard.h" #include "nsIDOMDocument.h" #include "nsIDocument.h" #include "nsSupportsPrimitives.h" class nsAutoCopyService : public nsIAutoCopyService , public nsIDOMSelectionListener { public: NS_DECL_ISUPPORTS nsAutoCopyService(); virtual ~nsAutoCopyService(){}//someday maybe we have it able to shutdown during run //nsIAutoCopyService interfaces NS_IMETHOD Listen(nsIDOMSelection *aDomSelection); //end nsIAutoCopyService //nsIDOMSelectionListener interfaces NS_IMETHOD NotifySelectionChanged(nsIDOMDocument *aDoc, nsIDOMSelection *aSel, short aReason); //end nsIDOMSelectionListener protected: nsCOMPtr mClipboard; nsCOMPtr mXIF; nsCOMPtr mTransferable; nsCOMPtr mConverter; }; // Implement our nsISupports methods NS_IMPL_ISUPPORTS2(nsAutoCopyService, nsIAutoCopyService,nsIDOMSelectionListener) nsresult NS_NewAutoCopyService(nsIAutoCopyService** aResult) { *aResult = new nsAutoCopyService; if (!*aResult) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(*aResult); return NS_OK; } nsAutoCopyService::nsAutoCopyService() { NS_INIT_REFCNT(); } NS_IMETHODIMP nsAutoCopyService::Listen(nsIDOMSelection *aDomSelection) { return aDomSelection->AddSelectionListener(this); } /* * What we do now: * On every selection change, we copy to the clipboard anew, creating a * XIF buffer, a transferable, a XIFFormatConverter, an nsISupportsWString and * a huge mess every time. This is basically what nsPresShell::DoCopy does * to move the selection into the clipboard for Edit->Copy. * * What we should do, to make our end of the deal faster: * Create a singleton transferable with our own magic converter. When selection * changes (use a quick cache to detect ``real'' changes), we put the new * nsIDOMSelection in the transferable. Our magic converter will take care of * transferable->XIF->whatever-other-format when the time comes to actually * hand over the clipboard contents. * * Other issues: * - which X clipboard should we populate? * - should we use a different one than Edit->Copy, so that inadvertant * selections (or simple clicks, which currently cause a selection * notification, regardless of if they're in the document which currently has * selection!) don't lose the contents of the ``application''? Or should we * just put some intelligence in the ``is this a real selection?'' code to * protect our selection against clicks in other documents that don't create * selections? * - maybe we should just never clear the X clipboard? That would make this * problem just go away, which is very tempting. */ #define DRAGGING 1 NS_IMETHODIMP nsAutoCopyService::NotifySelectionChanged(nsIDOMDocument *aDoc, nsIDOMSelection *aSel, short aReason) { nsresult rv; if (!mClipboard) { static NS_DEFINE_CID(kCClipboardCID, NS_CLIPBOARD_CID); mClipboard = do_GetService(kCClipboardCID, &rv); if (NS_FAILED(rv)) return rv; } if (DRAGGING == aReason) return NS_OK;//dont care if we are still dragging. PRBool collapsed; if (!aDoc || !aSel || NS_FAILED(aSel->GetIsCollapsed(&collapsed)) || collapsed) { #ifdef DEBUG_CLIPBOARD fprintf(stderr, "CLIPBOARD: no selection/collapsed selection\n"); #endif /* clear X clipboard? */ return NS_OK; } nsCOMPtr doc; doc = do_QueryInterface(NS_REINTERPRET_CAST(nsISupports *,aDoc),&rv); nsAutoString xifBuffer; /* nsPresShell::DoCopy thinks that this is infalliable -- do you? */ if (NS_FAILED(doc->CreateXIF(xifBuffer, aSel))) return NS_ERROR_FAILURE; /* create a transferable */ static NS_DEFINE_CID(kCTransferableCID, NS_TRANSFERABLE_CID); nsCOMPtr trans; rv = nsComponentManager::CreateInstance(kCTransferableCID, nsnull, NS_GET_IID(nsITransferable), (void **)getter_AddRefs(trans)); if (NS_FAILED(rv)) return rv; if (!mXIF) { static NS_DEFINE_CID(kCXIFConverterCID, NS_XIFFORMATCONVERTER_CID); rv = nsComponentManager::CreateInstance(kCXIFConverterCID, nsnull, NS_GET_IID(nsIFormatConverter), (void **)getter_AddRefs(mXIF)); if (NS_FAILED(rv)) return rv; } trans->AddDataFlavor(kXIFMime); trans->SetConverter(mXIF); nsCOMPtr dataWrapper; rv = nsComponentManager::CreateInstance(NS_SUPPORTS_WSTRING_PROGID, nsnull, NS_GET_IID(nsISupportsWString), getter_AddRefs(dataWrapper)); if (NS_FAILED(rv)) return rv; dataWrapper->SetData( NS_CONST_CAST(PRUnichar*,xifBuffer.GetUnicode())); nsCOMPtr generic(do_QueryInterface(dataWrapper)); /* Length() is in characters, *2 gives bytes. */ trans->SetTransferData(kXIFMime, generic, xifBuffer.Length() * 2); mClipboard->SetData(trans, nsnull,nsIClipboard::kSelectionClipboard); #ifdef DEBUG_CLIPBOARD static char *reasons[] = { "UNKNOWN", "NEW", "REMOVED", "ALTERED", "BOGUS4", "BOGUS5", "BOGUS6", "BOGUS7", "BOGUS8" }; nsAutoString str; aSel->ToString(str); char *selStr = str.ToNewCString(); fprintf(stderr, "SELECTION: %s, %p, %p [%s]\n", reasons[reason], doc, aSel, selStr); nsMemory::Free(selStr); #endif return NS_OK; }