diff options
Diffstat (limited to 'src/lib/ecore_cocoa/Ecore_Cocoa.h')
-rw-r--r-- | src/lib/ecore_cocoa/Ecore_Cocoa.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index 42bc61d88c..5b05129738 100644 --- a/src/lib/ecore_cocoa/Ecore_Cocoa.h +++ b/src/lib/ecore_cocoa/Ecore_Cocoa.h | |||
@@ -2,7 +2,7 @@ | |||
2 | * @file Ecore_Cocoa.h | 2 | * @file Ecore_Cocoa.h |
3 | * | 3 | * |
4 | * @brief Ecore_Cocoa Wrapper Library to interact with the Cocoa | 4 | * @brief Ecore_Cocoa Wrapper Library to interact with the Cocoa |
5 | * envirnement (Mac OS X) from the E environment | 5 | * environment (Mac OS X) from the E environment |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | #ifndef __ECORE_COCOA_H__ | 8 | #ifndef __ECORE_COCOA_H__ |
@@ -335,10 +335,21 @@ EAPI void ecore_cocoa_window_size_max_get(const Ecore_Cocoa_Window *window, | |||
335 | int *w, | 335 | int *w, |
336 | int *h); | 336 | int *h); |
337 | 337 | ||
338 | /** | ||
339 | * Set a Cocoa window's resize increment | ||
340 | * @param window The Cocoa window which resize increment is to be set | ||
341 | * @param w The width size increment | ||
342 | * @param h The height size increment | ||
343 | */ | ||
338 | EAPI void ecore_cocoa_window_size_step_set(Ecore_Cocoa_Window *window, | 344 | EAPI void ecore_cocoa_window_size_step_set(Ecore_Cocoa_Window *window, |
339 | int w, | 345 | int w, |
340 | int h); | 346 | int h); |
341 | 347 | /** | |
348 | * Get a Cocoa window's resize increment | ||
349 | * @param window The Cocoa window which resize increment queried | ||
350 | * @param w The width size increment | ||
351 | * @param h The height size increment | ||
352 | */ | ||
342 | EAPI void ecore_cocoa_window_size_step_get(const Ecore_Cocoa_Window *window, | 353 | EAPI void ecore_cocoa_window_size_step_get(const Ecore_Cocoa_Window *window, |
343 | int *w, | 354 | int *w, |
344 | int *h); | 355 | int *h); |