sbPrompter.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set sw=2 :miv */
3 /*
4  *=BEGIN SONGBIRD GPL
5  *
6  * This file is part of the Songbird web player.
7  *
8  * Copyright(c) 2005-2010 POTI, Inc.
9  * http://www.songbirdnest.com
10  *
11  * This file may be licensed under the terms of of the
12  * GNU General Public License Version 2 (the ``GPL'').
13  *
14  * Software distributed under the License is distributed
15  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
16  * express or implied. See the GPL for the specific language
17  * governing rights and limitations.
18  *
19  * You should have received a copy of the GPL along with this
20  * program. If not, go to http://www.gnu.org/licenses/gpl.html
21  * or write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23  *
24  *=END SONGBIRD GPL
25  */
26 
27 #ifndef __SB_PROMPTER_H__
28 #define __SB_PROMPTER_H__
29 
30 //------------------------------------------------------------------------------
31 //------------------------------------------------------------------------------
32 //
33 // Songbird prompter.
34 //
35 //------------------------------------------------------------------------------
36 //------------------------------------------------------------------------------
37 
43 // Songbird imports.
44 #include <sbIPrompter.h>
45 #include <sbIWindowWatcher.h>
46 
47 // Mozilla imports.
48 #include <nsCOMPtr.h>
49 #include <nsIDialogParamBlock.h>
50 #include <nsIObserver.h>
51 #include <nsIWindowWatcher.h>
52 #include <nsStringAPI.h>
53 
54 
59 class sbPrompter : public sbIPrompter,
60  public nsIObserver
61 {
62  //----------------------------------------------------------------------------
63  //
64  // Public interface.
65  //
66  //----------------------------------------------------------------------------
67 
68 public:
69 
70  //
71  // Inherited interfaces.
72  //
73 
75  NS_DECL_SBIPROMPTER
76  NS_DECL_NSIPROMPTSERVICE
77  NS_DECL_NSIOBSERVER
78 
79 
80  //
81  // Songbird prompter services.
82  //
83 
84  sbPrompter();
85 
86  virtual ~sbPrompter();
87 
88  nsresult Init();
89 
90 
91  //----------------------------------------------------------------------------
92  //
93  // Private interface.
94  //
95  //----------------------------------------------------------------------------
96 
97 private:
98 
99  //
100  // mPrompterLock Prompter lock.
101  // mWindowWatcher Window watcher service.
102  // mSBWindowWatcher Songbird window watcher service.
103  // mPromptService Prompt service.
104  // mParentWindowType Parent window type.
105  // mWaitForWindow If true, wait for parent window type.
106  // mRenderHTML If true, render prompt text as HTML.
107  // mCurrentWindow Currently open prompter dialog window.
108  //
109  // The following fields must only be accessed under the prompter lock:
110  // mParentWindowType
111  // mWaitForWindow
112  // mRenderHTML
113  //
114 
115  PRLock* mPrompterLock;
116  nsCOMPtr<nsIWindowWatcher> mWindowWatcher;
117  nsCOMPtr<sbIWindowWatcher> mSBWindowWatcher;
118  nsCOMPtr<nsIPromptService> mPromptService;
119  nsString mParentWindowType;
120  PRBool mWaitForWindow;
121  PRBool mRenderHTML;
122  nsCOMPtr<nsIDOMWindow> mCurrentWindow;
123 
124 
125  //
126  // Internal Songbird prompter services.
127  //
128 
129  nsresult InitOnMainThread();
130 
131  nsresult GetParent(nsIDOMWindow** aParent);
132 
133  nsresult GetProxiedPrompter(sbIPrompter** aPrompter);
134 
135  nsresult PresentPrompterDialog(nsIDOMWindow* aParent,
136  nsIDialogParamBlock* aParamBlock);
137 };
138 
139 
140 //
141 // Songbird prompter component defs.
142 //
143 
144 // contract ID defined in sbIPrompter.idl
145 #define SONGBIRD_PROMPTER_CLASSNAME "Songbird Prompter"
146 #define SONGBIRD_PROMPTER_CID \
147  /* {fa7ec5bd-7cab-4a63-a970-7bc4e83ee891} */ \
148  { \
149  0xfa7ec5bd, \
150  0x7cab, \
151  0x4a63, \
152  { 0xa9, 0x70, 0x7b, 0xc4, 0xe8, 0x3e, 0xe8, 0x91 } \
153  }
154 
155 
156 #endif // __SB_PROMPTER_H__
157 
NS_DECL_ISUPPORTS NS_DECL_SBIPROMPTER NS_DECL_NSIPROMPTSERVICE NS_DECL_NSIOBSERVER sbPrompter()
const nsIDOMWindow
virtual ~sbPrompter()
nsresult Init()