2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-03-26 15:01:23 +00:00
|
|
|
|
|
|
|
#include "nsBaseClipboard.h"
|
|
|
|
|
|
|
|
#include "nsIClipboardOwner.h"
|
1999-08-25 08:35:06 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2002-09-03 23:36:13 +00:00
|
|
|
#include "nsXPCOM.h"
|
1999-08-25 08:35:06 +00:00
|
|
|
#include "nsISupportsPrimitives.h"
|
1999-03-26 15:01:23 +00:00
|
|
|
|
|
|
|
nsBaseClipboard::nsBaseClipboard()
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
mClipboardOwner = nullptr;
|
|
|
|
mTransferable = nullptr;
|
2011-10-17 14:59:28 +00:00
|
|
|
mIgnoreEmptyNotification = false;
|
2013-07-09 18:39:46 +00:00
|
|
|
mEmptyingForSetData = false;
|
1999-03-26 15:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsBaseClipboard::~nsBaseClipboard()
|
|
|
|
{
|
2000-04-14 02:52:38 +00:00
|
|
|
EmptyClipboard(kSelectionClipboard);
|
|
|
|
EmptyClipboard(kGlobalClipboard);
|
2014-02-28 15:07:30 +00:00
|
|
|
EmptyClipboard(kFindClipboard);
|
1999-03-26 15:01:23 +00:00
|
|
|
}
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsBaseClipboard, nsIClipboard)
|
1999-03-26 15:01:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the transferable object
|
|
|
|
*
|
|
|
|
*/
|
2000-04-14 02:52:38 +00:00
|
|
|
NS_IMETHODIMP nsBaseClipboard::SetData(nsITransferable * aTransferable, nsIClipboardOwner * anOwner,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aWhichClipboard)
|
1999-03-26 15:01:23 +00:00
|
|
|
{
|
2000-04-18 02:36:01 +00:00
|
|
|
NS_ASSERTION ( aTransferable, "clipboard given a null transferable" );
|
|
|
|
|
|
|
|
if (aTransferable == mTransferable && anOwner == mClipboardOwner)
|
1999-03-26 15:01:23 +00:00
|
|
|
return NS_OK;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool selectClipPresent;
|
2000-04-18 02:36:01 +00:00
|
|
|
SupportsSelectionClipboard(&selectClipPresent);
|
2014-02-28 15:07:30 +00:00
|
|
|
bool findClipPresent;
|
|
|
|
SupportsFindClipboard(&findClipPresent);
|
|
|
|
if ( !selectClipPresent && !findClipPresent && aWhichClipboard != kGlobalClipboard )
|
2000-04-18 02:36:01 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1999-03-26 15:01:23 +00:00
|
|
|
|
2013-07-09 18:39:46 +00:00
|
|
|
mEmptyingForSetData = true;
|
2000-04-14 02:52:38 +00:00
|
|
|
EmptyClipboard(aWhichClipboard);
|
2013-07-09 18:39:46 +00:00
|
|
|
mEmptyingForSetData = false;
|
1999-03-26 15:01:23 +00:00
|
|
|
|
|
|
|
mClipboardOwner = anOwner;
|
2000-04-18 02:36:01 +00:00
|
|
|
if ( anOwner )
|
1999-03-26 15:01:23 +00:00
|
|
|
NS_ADDREF(mClipboardOwner);
|
|
|
|
|
|
|
|
mTransferable = aTransferable;
|
1999-04-16 21:25:20 +00:00
|
|
|
|
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
|
2000-04-18 02:36:01 +00:00
|
|
|
if ( mTransferable ) {
|
1999-03-26 15:01:23 +00:00
|
|
|
NS_ADDREF(mTransferable);
|
2000-04-14 02:52:38 +00:00
|
|
|
rv = SetNativeClipboardData(aWhichClipboard);
|
1999-03-26 15:01:23 +00:00
|
|
|
}
|
2000-04-18 02:36:01 +00:00
|
|
|
|
1999-04-16 21:25:20 +00:00
|
|
|
return rv;
|
1999-03-26 15:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the transferable object
|
|
|
|
*
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHODIMP nsBaseClipboard::GetData(nsITransferable * aTransferable, int32_t aWhichClipboard)
|
1999-03-26 15:01:23 +00:00
|
|
|
{
|
2000-04-18 02:36:01 +00:00
|
|
|
NS_ASSERTION ( aTransferable, "clipboard given a null transferable" );
|
2014-02-28 15:07:30 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool selectClipPresent;
|
2000-04-18 02:36:01 +00:00
|
|
|
SupportsSelectionClipboard(&selectClipPresent);
|
2014-02-28 15:07:30 +00:00
|
|
|
bool findClipPresent;
|
|
|
|
SupportsFindClipboard(&findClipPresent);
|
|
|
|
if ( !selectClipPresent && !findClipPresent && aWhichClipboard != kGlobalClipboard )
|
2000-04-18 02:36:01 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if ( aTransferable )
|
2000-04-14 02:52:38 +00:00
|
|
|
return GetNativeClipboardData(aTransferable, aWhichClipboard);
|
1999-03-26 15:01:23 +00:00
|
|
|
|
1999-04-17 13:49:39 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1999-03-26 15:01:23 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHODIMP nsBaseClipboard::EmptyClipboard(int32_t aWhichClipboard)
|
1999-03-26 15:01:23 +00:00
|
|
|
{
|
2011-09-29 06:19:26 +00:00
|
|
|
bool selectClipPresent;
|
2000-04-18 02:36:01 +00:00
|
|
|
SupportsSelectionClipboard(&selectClipPresent);
|
2014-02-28 15:07:30 +00:00
|
|
|
bool findClipPresent;
|
|
|
|
SupportsFindClipboard(&findClipPresent);
|
|
|
|
if ( !selectClipPresent && !findClipPresent && aWhichClipboard != kGlobalClipboard )
|
2000-04-18 02:36:01 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (mIgnoreEmptyNotification)
|
1999-03-26 15:01:23 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
2000-04-18 02:36:01 +00:00
|
|
|
if ( mClipboardOwner ) {
|
1999-03-26 15:01:23 +00:00
|
|
|
mClipboardOwner->LosingOwnership(mTransferable);
|
|
|
|
NS_RELEASE(mClipboardOwner);
|
|
|
|
}
|
|
|
|
|
2000-04-18 02:36:01 +00:00
|
|
|
NS_IF_RELEASE(mTransferable);
|
1999-03-26 15:01:23 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-09-01 20:14:48 +00:00
|
|
|
NS_IMETHODIMP
|
2007-11-20 19:06:30 +00:00
|
|
|
nsBaseClipboard::HasDataMatchingFlavors(const char** aFlavorList,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLength,
|
|
|
|
int32_t aWhichClipboard,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* outResult)
|
1999-09-01 20:14:48 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*outResult = true; // say we always do.
|
1999-09-01 20:14:48 +00:00
|
|
|
return NS_OK;
|
1999-09-03 10:43:00 +00:00
|
|
|
}
|
2000-04-14 02:52:38 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsBaseClipboard::SupportsSelectionClipboard(bool* _retval)
|
2000-04-14 02:52:38 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*_retval = false; // we don't support the selection clipboard by default.
|
2000-04-14 02:52:38 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2014-02-28 15:07:30 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsBaseClipboard::SupportsFindClipboard(bool* _retval)
|
|
|
|
{
|
|
|
|
*_retval = false; // we don't support the find clipboard by default.
|
|
|
|
return NS_OK;
|
|
|
|
}
|