summaryrefslogtreecommitdiff
path: root/src/lib/ecore_wayland/ivi-application-client-protocol.h
diff options
context:
space:
mode:
authorBryce Harrington <bryce@osg.samsung.com>2015-03-13 21:40:59 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2015-03-13 21:43:08 -0400
commitdb91d16f780989e580f2a0edfe94fce65bb2f5c4 (patch)
tree0f0204eae5e0e246ca35d4998566c1fab57cf218 /src/lib/ecore_wayland/ivi-application-client-protocol.h
parent426382bc8bf94f322a8cf89bf371666ba268cd40 (diff)
downloadefl-db91d16f780989e580f2a0edfe94fce65bb2f5c4.tar.gz
ecore-wayland: Whitespace cleanup
Summary: Remove trailing whitespace, convert tabs to spaces as per style guide. Reviewers: zmike Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2157
Diffstat (limited to 'src/lib/ecore_wayland/ivi-application-client-protocol.h')
-rw-r--r--src/lib/ecore_wayland/ivi-application-client-protocol.h122
1 files changed, 61 insertions, 61 deletions
diff --git a/src/lib/ecore_wayland/ivi-application-client-protocol.h b/src/lib/ecore_wayland/ivi-application-client-protocol.h
index 20c7d38ed2..84fecd84ef 100644
--- a/src/lib/ecore_wayland/ivi-application-client-protocol.h
+++ b/src/lib/ecore_wayland/ivi-application-client-protocol.h
@@ -1,17 +1,17 @@
-/*
+/*
* Copyright (C) 2013 DENSO CORPORATION
* Copyright (c) 2013 BMW Car IT GmbH
- *
+ *
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
- *
+ *
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
- *
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -45,10 +45,10 @@ extern const struct wl_interface ivi_application_interface;
#define IVI_SURFACE_WARNING_CODE_ENUM
/**
* ivi_surface_warning_code - possible warning codes returned by ivi
- * compositor
+ * compositor
* @IVI_SURFACE_WARNING_CODE_INVALID_WL_SURFACE: wl_surface is invalid
* @IVI_SURFACE_WARNING_CODE_IVI_ID_IN_USE: ivi_id is in use and can not
- * be shared
+ * be shared
*
* These define all possible warning codes returned by ivi compositor on
* server-side warnings. invalid_wl_surface: - wl_surface already has a
@@ -57,8 +57,8 @@ extern const struct wl_interface ivi_application_interface;
* application.
*/
enum ivi_surface_warning_code {
- IVI_SURFACE_WARNING_CODE_INVALID_WL_SURFACE = 1,
- IVI_SURFACE_WARNING_CODE_IVI_ID_IN_USE = 2,
+ IVI_SURFACE_WARNING_CODE_INVALID_WL_SURFACE = 1,
+ IVI_SURFACE_WARNING_CODE_IVI_ID_IN_USE = 2,
};
#endif /* IVI_SURFACE_WARNING_CODE_ENUM */
@@ -67,106 +67,106 @@ enum ivi_surface_warning_code {
* @visibility: visibility of surface in ivi compositor has changed
* @warning: server-side warning detected
*
- *
+ *
*/
struct ivi_surface_listener {
- /**
- * visibility - visibility of surface in ivi compositor has
- * changed
- * @visibility: (none)
- *
- * The new visibility state is provided in argument visibility.
- * If visibility is 0, the surface has become invisible. If
- * visibility is not 0, the surface has become visible.
- */
- void (*visibility)(void *data,
- struct ivi_surface *ivi_surface,
- int32_t visibility);
- /**
- * warning - server-side warning detected
- * @warning_code: (none)
- * @warning_text: (none)
- *
- * The ivi compositor encountered warning while processing a
- * request by this application. The warning is defined by argument
- * warning_code and optional warning_text. If the warning is
- * detected, client shall destroy the ivi_surface object.
- *
- * When a warning event is sent, the compositor turns the
- * ivi_surface object inert. The ivi_surface will not deliver
- * further events, all requests on it are ignored except 'destroy',
- * and the association to the ivi_id is removed. The client should
- * destroy the ivi_surface object. If an inert ivi_surface object
- * is used as an argument to any other object's request, that
- * request will [produce a fatal error / produce a warning / be
- * ignored].
- */
- void (*warning)(void *data,
- struct ivi_surface *ivi_surface,
- int32_t warning_code,
- const char *warning_text);
+ /**
+ * visibility - visibility of surface in ivi compositor has
+ * changed
+ * @visibility: (none)
+ *
+ * The new visibility state is provided in argument visibility.
+ * If visibility is 0, the surface has become invisible. If
+ * visibility is not 0, the surface has become visible.
+ */
+ void (*visibility)(void *data,
+ struct ivi_surface *ivi_surface,
+ int32_t visibility);
+ /**
+ * warning - server-side warning detected
+ * @warning_code: (none)
+ * @warning_text: (none)
+ *
+ * The ivi compositor encountered warning while processing a
+ * request by this application. The warning is defined by argument
+ * warning_code and optional warning_text. If the warning is
+ * detected, client shall destroy the ivi_surface object.
+ *
+ * When a warning event is sent, the compositor turns the
+ * ivi_surface object inert. The ivi_surface will not deliver
+ * further events, all requests on it are ignored except 'destroy',
+ * and the association to the ivi_id is removed. The client should
+ * destroy the ivi_surface object. If an inert ivi_surface object
+ * is used as an argument to any other object's request, that
+ * request will [produce a fatal error / produce a warning / be
+ * ignored].
+ */
+ void (*warning)(void *data,
+ struct ivi_surface *ivi_surface,
+ int32_t warning_code,
+ const char *warning_text);
};
static inline int
ivi_surface_add_listener(struct ivi_surface *ivi_surface,
- const struct ivi_surface_listener *listener, void *data)
+ const struct ivi_surface_listener *listener, void *data)
{
- return wl_proxy_add_listener((struct wl_proxy *) ivi_surface,
- (void (**)(void)) listener, data);
+ return wl_proxy_add_listener((struct wl_proxy *) ivi_surface,
+ (void (**)(void)) listener, data);
}
-#define IVI_SURFACE_DESTROY 0
+#define IVI_SURFACE_DESTROY 0
static inline void
ivi_surface_set_user_data(struct ivi_surface *ivi_surface, void *user_data)
{
- wl_proxy_set_user_data((struct wl_proxy *) ivi_surface, user_data);
+ wl_proxy_set_user_data((struct wl_proxy *) ivi_surface, user_data);
}
static inline void *
ivi_surface_get_user_data(struct ivi_surface *ivi_surface)
{
- return wl_proxy_get_user_data((struct wl_proxy *) ivi_surface);
+ return wl_proxy_get_user_data((struct wl_proxy *) ivi_surface);
}
static inline void
ivi_surface_destroy(struct ivi_surface *ivi_surface)
{
- wl_proxy_marshal((struct wl_proxy *) ivi_surface,
- IVI_SURFACE_DESTROY);
+ wl_proxy_marshal((struct wl_proxy *) ivi_surface,
+ IVI_SURFACE_DESTROY);
- wl_proxy_destroy((struct wl_proxy *) ivi_surface);
+ wl_proxy_destroy((struct wl_proxy *) ivi_surface);
}
-#define IVI_APPLICATION_SURFACE_CREATE 0
+#define IVI_APPLICATION_SURFACE_CREATE 0
static inline void
ivi_application_set_user_data(struct ivi_application *ivi_application, void *user_data)
{
- wl_proxy_set_user_data((struct wl_proxy *) ivi_application, user_data);
+ wl_proxy_set_user_data((struct wl_proxy *) ivi_application, user_data);
}
static inline void *
ivi_application_get_user_data(struct ivi_application *ivi_application)
{
- return wl_proxy_get_user_data((struct wl_proxy *) ivi_application);
+ return wl_proxy_get_user_data((struct wl_proxy *) ivi_application);
}
static inline void
ivi_application_destroy(struct ivi_application *ivi_application)
{
- wl_proxy_destroy((struct wl_proxy *) ivi_application);
+ wl_proxy_destroy((struct wl_proxy *) ivi_application);
}
static inline struct ivi_surface *
ivi_application_surface_create(struct ivi_application *ivi_application, uint32_t ivi_id, struct wl_surface *surface)
{
- struct wl_proxy *id;
+ struct wl_proxy *id;
- id = wl_proxy_marshal_constructor((struct wl_proxy *) ivi_application,
- IVI_APPLICATION_SURFACE_CREATE, &ivi_surface_interface, ivi_id, surface, NULL);
+ id = wl_proxy_marshal_constructor((struct wl_proxy *) ivi_application,
+ IVI_APPLICATION_SURFACE_CREATE, &ivi_surface_interface, ivi_id, surface, NULL);
- return (struct ivi_surface *) id;
+ return (struct ivi_surface *) id;
}
#ifdef __cplusplus