Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / gtk / GRefPtr.h
blob071164c06f6b1d76aba9dbf3bcf6e351f9bab5a2
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef GRefPtr_h_
7 #define GRefPtr_h_
9 // Allows to use RefPtr<T> with various kinds of GObjects
11 #include <gdk/gdk.h>
12 #include <gio/gio.h>
13 #include <gtk/gtk.h>
14 #include "mozilla/RefPtr.h"
16 typedef struct _DbusmenuMenuitem DbusmenuMenuitem;
17 typedef struct _DbusmenuServer DbusmenuServer;
19 namespace mozilla {
21 template <typename T>
22 struct GObjectRefPtrTraits {
23 static void AddRef(T* aObject) { g_object_ref(aObject); }
24 static void Release(T* aObject) { g_object_unref(aObject); }
27 #define GOBJECT_TRAITS(type_) \
28 template <> \
29 struct RefPtrTraits<type_> : public GObjectRefPtrTraits<type_> {};
31 GOBJECT_TRAITS(DbusmenuMenuitem)
32 GOBJECT_TRAITS(DbusmenuServer)
33 GOBJECT_TRAITS(GtkWidget)
34 GOBJECT_TRAITS(GFile)
35 GOBJECT_TRAITS(GFileMonitor)
36 GOBJECT_TRAITS(GMenu)
37 GOBJECT_TRAITS(GMenuItem)
38 GOBJECT_TRAITS(GSimpleAction)
39 GOBJECT_TRAITS(GSimpleActionGroup)
40 GOBJECT_TRAITS(GDBusProxy)
41 GOBJECT_TRAITS(GAppInfo)
42 GOBJECT_TRAITS(GAppLaunchContext)
43 GOBJECT_TRAITS(GdkDragContext)
44 GOBJECT_TRAITS(GDBusMessage)
45 GOBJECT_TRAITS(GdkPixbuf)
46 GOBJECT_TRAITS(GCancellable)
47 GOBJECT_TRAITS(GtkIMContext)
48 GOBJECT_TRAITS(GUnixFDList)
49 GOBJECT_TRAITS(GtkCssProvider)
50 GOBJECT_TRAITS(GDBusMethodInvocation)
52 #undef GOBJECT_TRAITS
54 template <>
55 struct RefPtrTraits<GVariant> {
56 static void AddRef(GVariant* aVariant) { g_variant_ref(aVariant); }
57 static void Release(GVariant* aVariant) { g_variant_unref(aVariant); }
60 template <>
61 struct RefPtrTraits<GHashTable> {
62 static void AddRef(GHashTable* aObject) { g_hash_table_ref(aObject); }
63 static void Release(GHashTable* aObject) { g_hash_table_unref(aObject); }
66 template <>
67 struct RefPtrTraits<GDBusNodeInfo> {
68 static void AddRef(GDBusNodeInfo* aObject) { g_dbus_node_info_ref(aObject); }
69 static void Release(GDBusNodeInfo* aObject) {
70 g_dbus_node_info_unref(aObject);
74 } // namespace mozilla
76 #endif