WebKit/chromium/public/WebNotification.h
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 /*
       
     2  * Copyright (C) 2009 Google Inc. All rights reserved.
       
     3  *
       
     4  * Redistribution and use in source and binary forms, with or without
       
     5  * modification, are permitted provided that the following conditions are
       
     6  * met:
       
     7  *
       
     8  *     * Redistributions of source code must retain the above copyright
       
     9  * notice, this list of conditions and the following disclaimer.
       
    10  *     * Redistributions in binary form must reproduce the above
       
    11  * copyright notice, this list of conditions and the following disclaimer
       
    12  * in the documentation and/or other materials provided with the
       
    13  * distribution.
       
    14  *     * Neither the name of Google Inc. nor the names of its
       
    15  * contributors may be used to endorse or promote products derived from
       
    16  * this software without specific prior written permission.
       
    17  *
       
    18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
       
    19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
       
    20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
       
    21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
       
    22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
       
    23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
       
    24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
       
    25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
       
    26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
       
    27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
       
    28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    29  */
       
    30 
       
    31 #ifndef WebNotification_h
       
    32 #define WebNotification_h
       
    33 
       
    34 #include "WebCommon.h"
       
    35 #include "WebTextDirection.h"
       
    36 
       
    37 #if WEBKIT_IMPLEMENTATION
       
    38 namespace WebCore { class Notification; }
       
    39 namespace WTF { template <typename T> class PassRefPtr; }
       
    40 #endif
       
    41 
       
    42 namespace WebKit {
       
    43 
       
    44 class WebNotificationPrivate;
       
    45 class WebURL;
       
    46 class WebString;
       
    47 
       
    48 // Represents access to a desktop notification.
       
    49 class WebNotification {
       
    50 public:
       
    51     WebNotification() : m_private(0) { }
       
    52     WebNotification(const WebNotification& other) : m_private(0) { assign(other); }
       
    53 
       
    54     ~WebNotification() { reset(); }
       
    55 
       
    56     WEBKIT_API void reset();
       
    57     WEBKIT_API void assign(const WebNotification&);
       
    58 
       
    59     WebNotification& operator=(const WebNotification& other)
       
    60     {
       
    61         assign(other);
       
    62         return *this;
       
    63     }
       
    64 
       
    65     // Operators required to put WebNotification in an ordered map.
       
    66     bool equals(const WebNotification& other) const { return m_private == other.m_private; }
       
    67     WEBKIT_API bool lessThan(const WebNotification& other) const;
       
    68 
       
    69     // Is the notification HTML vs. icon-title-text?
       
    70     WEBKIT_API bool isHTML() const;
       
    71 
       
    72     // If HTML, the URL which contains the contents of the notification.
       
    73     WEBKIT_API WebURL url() const;
       
    74 
       
    75     WEBKIT_API WebURL iconURL() const;
       
    76     WEBKIT_API WebString title() const;
       
    77     WEBKIT_API WebString body() const;
       
    78 
       
    79     // FIXME: Remove dir() when no longer referenced.
       
    80     // dir() is deprecated; use direction().
       
    81     WEBKIT_API WebString dir() const;
       
    82     WEBKIT_API WebTextDirection direction() const;
       
    83 
       
    84     WEBKIT_API WebString replaceId() const;
       
    85 
       
    86     // Called to indicate the notification has been displayed.
       
    87     WEBKIT_API void dispatchDisplayEvent();
       
    88 
       
    89     // Called to indicate an error has occurred with this notification.
       
    90     WEBKIT_API void dispatchErrorEvent(const WebString& errorMessage);
       
    91 
       
    92     // Called to indicate the notification has been closed.  If it was
       
    93     // closed by the user (as opposed to automatically by the system),
       
    94     // the byUser parameter will be true.
       
    95     WEBKIT_API void dispatchCloseEvent(bool byUser);
       
    96 
       
    97 #if WEBKIT_IMPLEMENTATION
       
    98     WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
       
    99     WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
       
   100     operator WTF::PassRefPtr<WebCore::Notification>() const;
       
   101 #endif
       
   102 
       
   103 private:
       
   104     void assign(WebNotificationPrivate*);
       
   105     WebNotificationPrivate* m_private;
       
   106 };
       
   107 
       
   108 inline bool operator==(const WebNotification& a, const WebNotification& b)
       
   109 {
       
   110     return a.equals(b);
       
   111 }
       
   112 
       
   113 inline bool operator!=(const WebNotification& a, const WebNotification& b)
       
   114 {
       
   115     return !a.equals(b);
       
   116 }
       
   117 
       
   118 inline bool operator<(const WebNotification& a, const WebNotification& b)
       
   119 {
       
   120     return a.lessThan(b);
       
   121 }
       
   122 
       
   123 } // namespace WebKit
       
   124 
       
   125 #endif