~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/content/base/src/nsContentAreaDragDrop.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ***** BEGIN LICENSE BLOCK *****
 
2
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is Mozilla Communicator.
 
15
 *
 
16
 * The Initial Developer of the Original Code is
 
17
 * Netscape Communications.
 
18
 * Portions created by the Initial Developer are Copyright (C) 2002
 
19
 * the Initial Developer. All Rights Reserved.
 
20
 *
 
21
 * Contributor(s):
 
22
 *  Mike Pinkerton <pinkerton@netscape.com>
 
23
 *
 
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.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
 
 
39
#ifndef nsContentAreaDragDrop_h__
 
40
#define nsContentAreaDragDrop_h__
 
41
 
 
42
 
 
43
#include "nsCOMPtr.h"
 
44
 
 
45
#include "nsIDragDropHandler.h"
 
46
#include "nsIDOMDragListener.h"
 
47
#include "nsIDOMEventReceiver.h"
 
48
#include "nsITransferable.h"
 
49
 
 
50
class nsIDOMNode;
 
51
class nsISelection;
 
52
class nsITransferable;
 
53
class nsIImage;
 
54
class nsIPresShell;
 
55
class nsIPresContext;
 
56
class nsIContent;
 
57
class nsIDocument;
 
58
class nsIURI;
 
59
class nsILocalFile;
 
60
class nsISimpleEnumerator;
 
61
 
 
62
// {1f34bc80-1bc7-11d6-a384-d705dd0746fc}
 
63
#define NS_CONTENTAREADRAGDROP_CID             \
 
64
{ 0x1f34bc80, 0x1bc7, 0x11d6, { 0xa3, 0x84, 0xd7, 0x05, 0xdd, 0x07, 0x46, 0xfc } }
 
65
 
 
66
#define NS_CONTENTAREADRAGDROP_CONTRACTID "@mozilla.org:/content/content-area-dragdrop;1"
 
67
 
 
68
 
 
69
//
 
70
// class nsContentAreaDragDrop
 
71
//
 
72
// The class that listens to the chrome events handles anything related
 
73
// to drag and drop. Registers itself with the DOM with AddChromeListeners()
 
74
// and removes itself with RemoveChromeListeners().
 
75
//
 
76
class nsContentAreaDragDrop : public nsIDOMDragListener,
 
77
                              public nsIDragDropHandler,
 
78
                              public nsIFlavorDataProvider
 
79
{
 
80
public:
 
81
  NS_DECL_ISUPPORTS
 
82
  NS_DECL_NSIDRAGDROPHANDLER
 
83
  NS_DECL_NSIFLAVORDATAPROVIDER
 
84
  
 
85
  nsContentAreaDragDrop ( ) ;
 
86
  virtual ~nsContentAreaDragDrop ( ) ;
 
87
 
 
88
    // nsIDOMDragListener
 
89
  NS_IMETHOD DragEnter(nsIDOMEvent* aMouseEvent) ;
 
90
  NS_IMETHOD DragOver(nsIDOMEvent* aMouseEvent) ;
 
91
  NS_IMETHOD DragExit(nsIDOMEvent* aMouseEvent) ;
 
92
  NS_IMETHOD DragDrop(nsIDOMEvent* aMouseEvent) ;
 
93
  NS_IMETHOD DragGesture(nsIDOMEvent* aMouseEvent) ;
 
94
  NS_IMETHOD HandleEvent(nsIDOMEvent *event) ;
 
95
 
 
96
private:
 
97
 
 
98
    // Add/remove the relevant listeners
 
99
  nsresult AddDragListener();
 
100
  nsresult RemoveDragListener();
 
101
 
 
102
    // utility routines
 
103
  static void NormalizeSelection(nsIDOMNode* inBaseNode, nsISelection* inSelection);
 
104
  static void GetEventDocument(nsIDOMEvent* inEvent, nsIDOMDocument** outDocument);
 
105
 
 
106
  static nsresult SaveURIToFileInDirectory(nsAString& inSourceURIString, nsILocalFile* inDestDirectory, nsILocalFile** outFile);
 
107
  
 
108
  nsresult CreateTransferable(nsIDOMEvent* inMouseEvent, nsITransferable** outTrans);
 
109
  void ExtractURLFromData(const nsACString & inFlavor, nsISupports* inDataWrapper, PRUint32 inDataLen,
 
110
                           nsAString & outURL);
 
111
  nsresult GetHookEnumeratorFromEvent(nsIDOMEvent* inEvent, nsISimpleEnumerator** outEnumerator);
 
112
 
 
113
  PRPackedBool mListenerInstalled;
 
114
 
 
115
  nsCOMPtr<nsIDOMEventReceiver> mEventReceiver;
 
116
  nsIWebNavigation* mNavigator;                     // weak ref, this is probably my owning webshell
 
117
 
 
118
}; // class nsContentAreaDragDrop
 
119
 
 
120
 
 
121
 
 
122
#endif /* nsContentAreaDragDrop_h__ */
 
123