Ecore_Evas.h | Ecore_Evas.h | |||
---|---|---|---|---|
skipping to change at line 665 | skipping to change at line 665 | |||
/** | /** | |||
* @brief Query whether an Ecore_Evas' window is maximized or not. | * @brief Query whether an Ecore_Evas' window is maximized or not. | |||
* | * | |||
* @param ee The Ecore_Evas to set | * @param ee The Ecore_Evas to set | |||
* @return @c EINA_TRUE if @p ee is maximized, @c EINA_FALSE if not. | * @return @c EINA_TRUE if @p ee is maximized, @c EINA_FALSE if not. | |||
* | * | |||
* @see ecore_evas_maximized_set() | * @see ecore_evas_maximized_set() | |||
*/ | */ | |||
EAPI Eina_Bool ecore_evas_maximized_get(const Ecore_Evas *ee); | EAPI Eina_Bool ecore_evas_maximized_get(const Ecore_Evas *ee); | |||
/** | /** | |||
* @brief Set Ecore_Evas's window profile list. | ||||
* | ||||
* @param ee The Ecore_Evas | ||||
* @param profiles The profile name list | ||||
* @param num_profiles The number of profile names | ||||
* | ||||
* @warning Support for this depends on the underlying windowing system. | ||||
* @since 1.7.0 | ||||
*/ | ||||
EAPI void ecore_evas_profiles_set(Ecore_Evas *ee, const char **profi | ||||
les, unsigned int num_profiles); | ||||
/** | ||||
* @brief Get Ecore_Evas's window profile name. | ||||
* | ||||
* @param ee The Ecore_Evas | ||||
* @return The profile name | ||||
* | ||||
* @since 1.7.0 | ||||
*/ | ||||
EAPI const char *ecore_evas_profile_get(const Ecore_Evas *ee); | ||||
/** | ||||
* @brief Move an Ecore_Evas. | * @brief Move an Ecore_Evas. | |||
* | * | |||
* @param ee The Ecore_Evas to move | * @param ee The Ecore_Evas to move | |||
* @param x The x coordinate to move to | * @param x The x coordinate to move to | |||
* @param y The y coordinate to move to | * @param y The y coordinate to move to | |||
* | * | |||
* This moves @p ee to the screen coordinates (@p x, @p y) | * This moves @p ee to the screen coordinates (@p x, @p y) | |||
* | * | |||
* @warning Support for this depends on the underlying windowing system. | * @warning Support for this depends on the underlying windowing system. | |||
* | * | |||
End of changes. 1 change blocks. | ||||
21 lines changed or deleted | 0 lines changed or added | |||