ga-record-browser.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * ga-record-browser.h - Header for GaRecordBrowser
  3. * Copyright (C) 2007 Collabora Ltd.
  4. * @author Sjoerd Simons <sjoerd@luon.net>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef __GA_RECORD_BROWSER_H__
  21. #define __GA_RECORD_BROWSER_H__
  22. #include <glib-object.h>
  23. #include <avahi-client/lookup.h>
  24. #include <avahi-common/defs.h>
  25. #include "ga-client.h"
  26. #include "ga-enums.h"
  27. G_BEGIN_DECLS
  28. typedef struct _GaRecordBrowser GaRecordBrowser;
  29. typedef struct _GaRecordBrowserClass GaRecordBrowserClass;
  30. struct _GaRecordBrowserClass {
  31. GObjectClass parent_class;
  32. };
  33. struct _GaRecordBrowser {
  34. GObject parent;
  35. };
  36. GType ga_record_browser_get_type(void);
  37. /* TYPE MACROS */
  38. #define GA_TYPE_RECORD_BROWSER \
  39. (ga_record_browser_get_type())
  40. #define GA_RECORD_BROWSER(obj) \
  41. (G_TYPE_CHECK_INSTANCE_CAST((obj), GA_TYPE_RECORD_BROWSER, GaRecordBrowser))
  42. #define GA_RECORD_BROWSER_CLASS(klass) \
  43. (G_TYPE_CHECK_CLASS_CAST((klass), GA_TYPE_RECORD_BROWSER, GaRecordBrowserClass))
  44. #define IS_GA_RECORD_BROWSER(obj) \
  45. (G_TYPE_CHECK_INSTANCE_TYPE((obj), GA_TYPE_RECORD_BROWSER))
  46. #define IS_GA_RECORD_BROWSER_CLASS(klass) \
  47. (G_TYPE_CHECK_CLASS_TYPE((klass), GA_TYPE_RECORD_BROWSER))
  48. #define GA_RECORD_BROWSER_GET_CLASS(obj) \
  49. (G_TYPE_INSTANCE_GET_CLASS ((obj), GA_TYPE_RECORD_BROWSER, GaRecordBrowserClass))
  50. GaRecordBrowser *ga_record_browser_new(const gchar * name, guint16 type);
  51. GaRecordBrowser *ga_record_browser_new_full(AvahiIfIndex interface,
  52. AvahiProtocol protocol,
  53. const gchar * name,
  54. guint16 clazz,
  55. guint16 type,
  56. GaLookupFlags flags);
  57. gboolean
  58. ga_record_browser_attach(GaRecordBrowser * browser,
  59. GaClient * client, GError ** error);
  60. G_END_DECLS
  61. #endif /* #ifndef __GA_RECORD_BROWSER_H__ */