sbMacAppDelegate.h
Go to the documentation of this file.
1 /*
2 //
3 // BEGIN SONGBIRD GPL
4 //
5 // This file is part of the Songbird web player.
6 //
7 // Copyright(c) 2005-2008 POTI, Inc.
8 // http://songbirdnest.com
9 //
10 // This file may be licensed under the terms of of the
11 // GNU General Public License Version 2 (the "GPL").
12 //
13 // Software distributed under the License is distributed
14 // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15 // express or implied. See the GPL for the specific language
16 // governing rights and limitations.
17 //
18 // You should have received a copy of the GPL along with this
19 // program. If not, go to http://www.gnu.org/licenses/gpl.html
20 // or write to the Free Software Foundation, Inc.,
21 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 //
23 // END SONGBIRD GPL
24 //
25 */
26 
27 #ifndef sbMacAppDelegate_h_
28 #define sbMacAppDelegate_h_
29 
30 #include <nsIObserver.h>
31 #include <nsIComponentManager.h>
32 #include <nsIGenericFactory.h>
33 #include <nsIFile.h>
34 #include <nsCOMPtr.h>
35 
36 //
37 // \brief This class simply registers with the component manager
38 // for startup. Once the app has started up, it will override
39 // the XULRunner Mac application delegate so Songbird can
40 // handle Mac specific events like Dock creation.
41 //
42 @class SBMacAppDelegate;
43 
44 class sbMacAppDelegateManager : public nsIObserver
45 {
46 public:
47  sbMacAppDelegateManager();
48  virtual ~sbMacAppDelegateManager();
49 
51  NS_DECL_NSIOBSERVER
52 
53  NS_IMETHOD Init();
54 
55  static NS_METHOD RegisterSelf(nsIComponentManager* aCompMgr,
56  nsIFile* aPath,
57  const char* aLoaderStr,
58  const char* aType,
59  const nsModuleComponentInfo *aInfo);
60 private:
61  SBMacAppDelegate *mDelegate;
62 };
63 
64 
65 // Component Registration Stuff:
66 #define SONGBIRD_MACAPPDELEGATEMANAGER_CONTRACTID \
67  "@songbirdnest.com/integration/mac-app-delegate-mgr;1"
68 #define SONGBIRD_MACAPPDELEGATEMANAGER_CLASSNAME \
69  "Songbird Mac Application Delegate Manager"
70 #define SONGBIRD_MACAPPDELEGATEMANAGER_CID \
71 { /* CB64A891-2D63-4A71-850F-26201F7370D6 */ \
72  0xCB64A891, \
73  0x2D63, \
74  0x4A71, \
75  {0x85, 0x0F, 0x26, 0x20, 0x1F, 0x73, 0x70, 0xD6} \
76 }
77 
78 #endif // sbMacAppDelegate_h_
79 
_updateCookies aPath
function Init()