diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-12-05 14:09:49 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-12-05 14:09:49 +0000 |
commit | bb0e4d65eda434c531b671a94e41c48916adaed4 (patch) | |
tree | 092c0fbc8fbd792b28166f5d8b4d14a4ee1d1a89 /src/lib/ecore_evas/ecore_evas_deprecated.c | |
parent | 1227340c122bb7c2d9de6314a81d10edbf35cb7c (diff) |
efl/ecore_evas: move more removed/deprecated stuff to own file and mark.
x11-16, x11-8, xrender were also removed but not marked as EINA_DEPRECATED.
move those to ecore_evas_deprecated.c file.
SVN revision: 80255
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_evas/ecore_evas_deprecated.c | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/src/lib/ecore_evas/ecore_evas_deprecated.c b/src/lib/ecore_evas/ecore_evas_deprecated.c index 6e0621fa11..20a57ebf80 100644 --- a/src/lib/ecore_evas/ecore_evas_deprecated.c +++ b/src/lib/ecore_evas/ecore_evas_deprecated.c | |||
@@ -86,3 +86,105 @@ ecore_evas_directfb_window_get(const Ecore_Evas *ee EINA_UNUSED) | |||
86 | { | 86 | { |
87 | return NULL; | 87 | return NULL; |
88 | } | 88 | } |
89 | |||
90 | /* Ecore_Evas X11 16 bits support was removed. However we keep the functions | ||
91 | * to not break ABI. | ||
92 | */ | ||
93 | EAPI Ecore_Evas * | ||
94 | ecore_evas_software_x11_16_new(const char *disp_name EINA_UNUSED, Ecore_X_Window parent EINA_UNUSED, | ||
95 | int x EINA_UNUSED, int y EINA_UNUSED, int w EINA_UNUSED, int h EINA_UNUSED) | ||
96 | { | ||
97 | return NULL; | ||
98 | } | ||
99 | |||
100 | EAPI Ecore_X_Window | ||
101 | ecore_evas_software_x11_16_window_get(const Ecore_Evas *ee EINA_UNUSED) | ||
102 | { | ||
103 | return 0; | ||
104 | } | ||
105 | |||
106 | EAPI void | ||
107 | ecore_evas_software_x11_16_direct_resize_set(Ecore_Evas *ee EINA_UNUSED, Eina_Bool on EINA_UNUSED) | ||
108 | { | ||
109 | } | ||
110 | |||
111 | EAPI Eina_Bool | ||
112 | ecore_evas_software_x11_16_direct_resize_get(const Ecore_Evas *ee EINA_UNUSED) | ||
113 | { | ||
114 | return EINA_FALSE; | ||
115 | } | ||
116 | |||
117 | EAPI void | ||
118 | ecore_evas_software_x11_16_extra_event_window_add(Ecore_Evas *ee EINA_UNUSED, Ecore_X_Window win EINA_UNUSED) | ||
119 | { | ||
120 | } | ||
121 | |||
122 | /* Ecore_Evas X11 8 bits support was removed. However we keep the functions | ||
123 | * to not break ABI. | ||
124 | */ | ||
125 | EAPI Ecore_Evas * | ||
126 | ecore_evas_software_x11_8_new(const char *disp_name EINA_UNUSED, Ecore_X_Window parent EINA_UNUSED, int x EINA_UNUSED, int y EINA_UNUSED, int w EINA_UNUSED, int h EINA_UNUSED) | ||
127 | { | ||
128 | return NULL; | ||
129 | } | ||
130 | |||
131 | EAPI Ecore_X_Window | ||
132 | ecore_evas_software_x11_8_window_get(const Ecore_Evas *ee EINA_UNUSED) | ||
133 | { | ||
134 | return 0; | ||
135 | } | ||
136 | |||
137 | EAPI Ecore_X_Window | ||
138 | ecore_evas_software_x11_8_subwindow_get(const Ecore_Evas *ee EINA_UNUSED) | ||
139 | { | ||
140 | return 0; | ||
141 | } | ||
142 | |||
143 | EAPI void | ||
144 | ecore_evas_software_x11_8_direct_resize_set(Ecore_Evas *ee EINA_UNUSED, Eina_Bool on EINA_UNUSED) | ||
145 | { | ||
146 | } | ||
147 | |||
148 | EAPI Eina_Bool | ||
149 | ecore_evas_software_x11_8_direct_resize_get(const Ecore_Evas *ee EINA_UNUSED) | ||
150 | { | ||
151 | return EINA_FALSE; | ||
152 | } | ||
153 | |||
154 | EAPI void | ||
155 | ecore_evas_software_x11_8_extra_event_window_add(Ecore_Evas *ee EINA_UNUSED, Ecore_X_Window win EINA_UNUSED) | ||
156 | { | ||
157 | return; | ||
158 | } | ||
159 | |||
160 | /* Ecore_Evas XRender support was removed. However we keep the functions | ||
161 | * to not break ABI. | ||
162 | */ | ||
163 | EAPI Ecore_Evas * | ||
164 | ecore_evas_xrender_x11_new(const char *disp_name EINA_UNUSED, Ecore_X_Window parent EINA_UNUSED, | ||
165 | int x EINA_UNUSED, int y EINA_UNUSED, int w EINA_UNUSED, int h EINA_UNUSED) | ||
166 | { | ||
167 | return NULL; | ||
168 | } | ||
169 | |||
170 | EAPI Ecore_X_Window | ||
171 | ecore_evas_xrender_x11_window_get(const Ecore_Evas *ee EINA_UNUSED) | ||
172 | { | ||
173 | return 0; | ||
174 | } | ||
175 | |||
176 | EAPI void | ||
177 | ecore_evas_xrender_x11_direct_resize_set(Ecore_Evas *ee EINA_UNUSED, Eina_Bool on EINA_UNUSED) | ||
178 | { | ||
179 | } | ||
180 | |||
181 | EAPI Eina_Bool | ||
182 | ecore_evas_xrender_x11_direct_resize_get(const Ecore_Evas *ee EINA_UNUSED) | ||
183 | { | ||
184 | return 0; | ||
185 | } | ||
186 | |||
187 | EAPI void | ||
188 | ecore_evas_xrender_x11_extra_event_window_add(Ecore_Evas *ee EINA_UNUSED, Ecore_X_Window win EINA_UNUSED) | ||
189 | { | ||
190 | } | ||