1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "nsBaseClipboard.h"
40 #include "nsIClipboardOwner.h"
43 #include "nsISupportsPrimitives.h"
45 nsBaseClipboard::nsBaseClipboard()
47 mClipboardOwner
= nsnull
;
48 mTransferable
= nsnull
;
49 mIgnoreEmptyNotification
= PR_FALSE
;
53 nsBaseClipboard::~nsBaseClipboard()
55 EmptyClipboard(kSelectionClipboard
);
56 EmptyClipboard(kGlobalClipboard
);
59 NS_IMPL_ISUPPORTS1(nsBaseClipboard
, nsIClipboard
)
62 * Sets the transferable object
65 NS_IMETHODIMP
nsBaseClipboard::SetData(nsITransferable
* aTransferable
, nsIClipboardOwner
* anOwner
,
66 PRInt32 aWhichClipboard
)
68 NS_ASSERTION ( aTransferable
, "clipboard given a null transferable" );
70 if (aTransferable
== mTransferable
&& anOwner
== mClipboardOwner
)
72 PRBool selectClipPresent
;
73 SupportsSelectionClipboard(&selectClipPresent
);
74 if ( !selectClipPresent
&& aWhichClipboard
!= kGlobalClipboard
)
75 return NS_ERROR_FAILURE
;
77 EmptyClipboard(aWhichClipboard
);
79 mClipboardOwner
= anOwner
;
81 NS_ADDREF(mClipboardOwner
);
83 mTransferable
= aTransferable
;
85 nsresult rv
= NS_ERROR_FAILURE
;
87 if ( mTransferable
) {
88 NS_ADDREF(mTransferable
);
89 rv
= SetNativeClipboardData(aWhichClipboard
);
96 * Gets the transferable object
99 NS_IMETHODIMP
nsBaseClipboard::GetData(nsITransferable
* aTransferable
, PRInt32 aWhichClipboard
)
101 NS_ASSERTION ( aTransferable
, "clipboard given a null transferable" );
103 PRBool selectClipPresent
;
104 SupportsSelectionClipboard(&selectClipPresent
);
105 if ( !selectClipPresent
&& aWhichClipboard
!= kGlobalClipboard
)
106 return NS_ERROR_FAILURE
;
109 return GetNativeClipboardData(aTransferable
, aWhichClipboard
);
111 return NS_ERROR_FAILURE
;
114 NS_IMETHODIMP
nsBaseClipboard::EmptyClipboard(PRInt32 aWhichClipboard
)
116 PRBool selectClipPresent
;
117 SupportsSelectionClipboard(&selectClipPresent
);
118 if ( !selectClipPresent
&& aWhichClipboard
!= kGlobalClipboard
)
119 return NS_ERROR_FAILURE
;
121 if (mIgnoreEmptyNotification
)
124 if ( mClipboardOwner
) {
125 mClipboardOwner
->LosingOwnership(mTransferable
);
126 NS_RELEASE(mClipboardOwner
);
129 NS_IF_RELEASE(mTransferable
);
135 nsBaseClipboard::HasDataMatchingFlavors(const char** aFlavorList
,
137 PRInt32 aWhichClipboard
,
140 *outResult
= PR_TRUE
; // say we always do.
145 nsBaseClipboard::SupportsSelectionClipboard(PRBool
* _retval
)
147 *_retval
= PR_FALSE
; // we don't support the selection clipboard by default.