gecko-dev/widget/nsBaseClipboard.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 строки
3.4 KiB
C++
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04: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 18:01:23 +03:00
#include "nsBaseClipboard.h"
#include "nsIClipboardOwner.h"
#include "nsCOMPtr.h"
#include "nsXPCOM.h"
1999-03-26 18:01:23 +03:00
nsBaseClipboard::nsBaseClipboard()
: mEmptyingForSetData(false), mIgnoreEmptyNotification(false) {}
1999-03-26 18:01:23 +03:00
nsBaseClipboard::~nsBaseClipboard() {
EmptyClipboard(kSelectionClipboard);
EmptyClipboard(kGlobalClipboard);
EmptyClipboard(kFindClipboard);
1999-03-26 18:01:23 +03:00
}
NS_IMPL_ISUPPORTS(nsBaseClipboard, nsIClipboard)
1999-03-26 18:01:23 +03:00
/**
* Sets the transferable object
*
*/
NS_IMETHODIMP nsBaseClipboard::SetData(nsITransferable* aTransferable,
nsIClipboardOwner* anOwner,
int32_t aWhichClipboard) {
NS_ASSERTION(aTransferable, "clipboard given a null transferable");
if (aTransferable == mTransferable && anOwner == mClipboardOwner)
1999-03-26 18:01:23 +03:00
return NS_OK;
bool selectClipPresent;
SupportsSelectionClipboard(&selectClipPresent);
bool findClipPresent;
SupportsFindClipboard(&findClipPresent);
if (!selectClipPresent && !findClipPresent &&
aWhichClipboard != kGlobalClipboard)
return NS_ERROR_FAILURE;
1999-03-26 18:01:23 +03:00
mEmptyingForSetData = true;
EmptyClipboard(aWhichClipboard);
mEmptyingForSetData = false;
1999-03-26 18:01:23 +03:00
mClipboardOwner = anOwner;
mTransferable = aTransferable;
nsresult rv = NS_ERROR_FAILURE;
if (mTransferable) {
rv = SetNativeClipboardData(aWhichClipboard);
1999-03-26 18:01:23 +03:00
}
return rv;
1999-03-26 18:01:23 +03:00
}
/**
* Gets the transferable object
*
*/
NS_IMETHODIMP nsBaseClipboard::GetData(nsITransferable* aTransferable,
int32_t aWhichClipboard) {
NS_ASSERTION(aTransferable, "clipboard given a null transferable");
bool selectClipPresent;
SupportsSelectionClipboard(&selectClipPresent);
bool findClipPresent;
SupportsFindClipboard(&findClipPresent);
if (!selectClipPresent && !findClipPresent &&
aWhichClipboard != kGlobalClipboard)
return NS_ERROR_FAILURE;
if (aTransferable)
return GetNativeClipboardData(aTransferable, aWhichClipboard);
1999-03-26 18:01:23 +03:00
return NS_ERROR_FAILURE;
1999-03-26 18:01:23 +03:00
}
NS_IMETHODIMP nsBaseClipboard::EmptyClipboard(int32_t aWhichClipboard) {
bool selectClipPresent;
SupportsSelectionClipboard(&selectClipPresent);
bool findClipPresent;
SupportsFindClipboard(&findClipPresent);
if (!selectClipPresent && !findClipPresent &&
aWhichClipboard != kGlobalClipboard)
return NS_ERROR_FAILURE;
if (mIgnoreEmptyNotification) return NS_OK;
1999-03-26 18:01:23 +03:00
if (mClipboardOwner) {
1999-03-26 18:01:23 +03:00
mClipboardOwner->LosingOwnership(mTransferable);
mClipboardOwner = nullptr;
1999-03-26 18:01:23 +03:00
}
mTransferable = nullptr;
1999-03-26 18:01:23 +03:00
return NS_OK;
}
NS_IMETHODIMP
nsBaseClipboard::HasDataMatchingFlavors(const nsTArray<nsCString>& aFlavorList,
int32_t aWhichClipboard,
bool* outResult) {
*outResult = true; // say we always do.
return NS_OK;
}
NS_IMETHODIMP
nsBaseClipboard::SupportsSelectionClipboard(bool* _retval) {
*_retval = false; // we don't support the selection clipboard by default.
return NS_OK;
}
NS_IMETHODIMP
nsBaseClipboard::SupportsFindClipboard(bool* _retval) {
*_retval = false; // we don't support the find clipboard by default.
return NS_OK;
}