slight change in doc comments... get rid of htmlisms...

SVN revision: 9037
This commit is contained in:
Carsten Haitzler 2004-02-20 07:06:29 +00:00
parent 160e4083c1
commit 75047789ad
25 changed files with 7 additions and 236 deletions

View File

@ -25,7 +25,6 @@ static int _ecore_init_count = 0;
* ecore_shutdown();
* }
* @endcode
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_init(void)
@ -45,8 +44,7 @@ ecore_init(void)
*
* Do not call this function from any callback that may be called from the main
* loop, as the main loop will then fall over and not function properly.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
*/
int
ecore_shutdown(void)
{

View File

@ -35,7 +35,6 @@ static char **app_argv = NULL;
* ecore_shutdown();
* }
* @endcode
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_app_args_set(int argc, const char **argv)
@ -56,7 +55,6 @@ ecore_app_args_set(int argc, const char **argv)
* the pointer is not NULL, and the string array pointer @p argv will be filled
* also if the pointer is not NULL. The values they are filled with will be the
* same set by ecore_app_args_set().
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_app_args_get(int *argc, char ***argv)
@ -74,7 +72,6 @@ ecore_app_args_get(int *argc, char ***argv)
* configuration reasons or in the event of a crash.
*
* FIXME: Currently not implimented.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_app_restart(void)

View File

@ -76,7 +76,6 @@ static void *ecore_raw_event_event = NULL;
* ecore_shutdown();
* }
* @endcode
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Event_Handler *
ecore_event_handler_add(int type, int (*func) (void *data, int type, void *event), const void *data)
@ -104,7 +103,6 @@ ecore_event_handler_add(int type, int (*func) (void *data, int type, void *event
* delete the event handler and return the pointer passed as @p data when the
* handler was added by ecore_event_handler_add(). On failure NULL will be
* returned. Once a handler is deleted it will no longer be called.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_event_handler_del(Ecore_Event_Handler *event_handler)
@ -136,7 +134,6 @@ ecore_event_handler_del(Ecore_Event_Handler *event_handler)
* longer needed, @p func_free will be called and passed the private sructure
* pointer for cleaning up. If @p func_free is NULL, nothnig will be called.
* This function is passed @p data as its data parameter.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Event *
ecore_event_add(int type, void *ev, void (*func_free) (void *data, void *ev), void *data)
@ -158,7 +155,6 @@ ecore_event_add(int type, void *ev, void (*func_free) (void *data, void *ev), vo
* does not immediately call the free function, and it may be called later on
* cleanup, and so if the free function depends on the data pointer to work,
* you should defer cleaning of this till the free function is called later.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_event_del(Ecore_Event *event)
@ -182,7 +178,6 @@ ecore_event_del(Ecore_Event *event)
* the program. There is no guarantee of the contents of this event ID, or how
* it is calculated, except that the ID will be unique to the current instance
* of the process.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_event_type_new(void)
@ -210,7 +205,6 @@ ecore_event_type_new(void)
* event is removed from the queue. If it returns 1, the event is kept. When
* processing is finished @p func_end is called and is passed the loop_data
* and @p data pointer to clean up.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Event_Filter *
ecore_event_filter_add(void * (*func_start) (void *data), int (*func_filter) (void *data, void *loop_data, int type, void *event), void (*func_end) (void *data, void *loop_data), const void *data)
@ -237,7 +231,6 @@ ecore_event_filter_add(void * (*func_start) (void *data), int (*func_filter) (vo
* Delete a filter that has been added by its @p ef handle. On success this
* will return the data pointer set when this filter was added. On failure
* NULL is returned.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_event_filter_del(Ecore_Event_Filter *ef)
@ -266,7 +259,6 @@ ecore_event_filter_del(Ecore_Event_Filter *ef)
* this extra information may be useful or needed and using this call can let
* the program know if the event type being handled is one it wants to get more
* information about.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_event_current_type_get(void)
@ -287,7 +279,6 @@ ecore_event_current_type_get(void)
* this extra information may be useful or needed and using this call can let
* the program access the event data if the type of the event is handled by
* the program.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_event_current_event_get(void)

View File

@ -21,7 +21,6 @@ static Ecore_Exe *exes = NULL;
* event is recieved. After all handlers for this child process terminated
* event have been called, this process handle will be freed and cleaned up
* by Ecore, and so any references to it will become invalid.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Exe *
ecore_exe_run(const char *exe_cmd, const void *data)
@ -60,7 +59,6 @@ ecore_exe_run(const char *exe_cmd, const void *data)
* that this handle was a result of) and returns the data pointer set on
* executable start. This does mean there is no handle for the spawned
* process anymore.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_exe_free(Ecore_Exe *exe)
@ -80,7 +78,6 @@ ecore_exe_free(Ecore_Exe *exe)
* @return A system process ID of the process handle
*
* This function returns the system process ID of a spawned off child process.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
pid_t
ecore_exe_pid_get(Ecore_Exe *exe)
@ -101,7 +98,6 @@ ecore_exe_pid_get(Ecore_Exe *exe)
*
* This function returns the data pointer attached to the spawned off process
* whose handle is @p exe.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_exe_data_get(Ecore_Exe *exe)
@ -120,7 +116,6 @@ ecore_exe_data_get(Ecore_Exe *exe)
* @param exe The process handle to control
*
* This function pauses a process that was spawned.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_pause(Ecore_Exe *exe)
@ -140,7 +135,6 @@ ecore_exe_pause(Ecore_Exe *exe)
*
* This Continues a process. This is only useful if the process has already
* been paused by something like ecore_exe_pause().
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_continue(Ecore_Exe *exe)
@ -159,7 +153,6 @@ ecore_exe_continue(Ecore_Exe *exe)
* @param exe The process handle to control
*
* This function asks a process to terminate.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_terminate(Ecore_Exe *exe)
@ -180,7 +173,6 @@ ecore_exe_terminate(Ecore_Exe *exe)
* This function ills off a process, and that process has no choice and will
* exit as a result of this function, without having a chance to clean up,
* save data, or safely shut down.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_kill(Ecore_Exe *exe)
@ -202,7 +194,6 @@ ecore_exe_kill(Ecore_Exe *exe)
* This function sends a user signal (SIGUSR) to a process. @p num determines
* what numbered user signal to send. This may be either 1 or 2. Other values
* are illegal and will be ignored, with this function doing nothing.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_signal(Ecore_Exe *exe, int num)
@ -224,7 +215,6 @@ ecore_exe_signal(Ecore_Exe *exe, int num)
* @param exe The process handle to control
*
* This function sends a HUP signal to the specified process.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_exe_hup(Ecore_Exe *exe)

View File

@ -18,7 +18,6 @@ static int idle_enterers_delete_me = 0;
* use to update your program's state if it has a state engine. Do all your
* heavy processing here to update state (like drawing etc.). When @p func
* is called, it will be passed the pointer @p data.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Idle_Enterer *
ecore_idle_enterer_add(int (*func) (void *data), const void *data)
@ -43,7 +42,6 @@ ecore_idle_enterer_add(int (*func) (void *data), const void *data)
* executed during main loop execution. On success the data pointer that was
* being passed to the idle handler function, set by ecore_idle_enterer_add()
* will be returned.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_idle_enterer_del(Ecore_Idle_Enterer *idle_enterer)

View File

@ -19,7 +19,6 @@ static int idlers_delete_me = 0;
* get to do so. This is useful for when there are interfaces that require
* polling and timers will mean too slow a response from the process if polling
* is done by timers.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Idler *
ecore_idler_add(int (*func) (void *data), const void *data)
@ -44,7 +43,6 @@ ecore_idler_add(int (*func) (void *data), const void *data)
* during main loop execution. On success the data pointer set by
* ecore_idler_add() and passed to the idler function is returned, or NULL
* on failure.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_idler_del(Ecore_Idler *idler)

View File

@ -22,7 +22,6 @@ static int fd_handlers_delete_me = 0;
*
* This function Processes 1 iteration of the main loop, handling anything on
* the queue. See ecore_main_loop_begin() for more information.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_main_loop_iterate(void)
@ -37,7 +36,6 @@ ecore_main_loop_iterate(void)
* will keep looping internally and call all callbacks set up to handle timers,
* idle state and events Ecore recieves from X, fd's, IPC, signals etc. and
* anything else that has registered a handler with ecore itself.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_main_loop_begin(void)
@ -54,7 +52,6 @@ ecore_main_loop_begin(void)
* This function will flag a quit of the main loop once the current loop has
* finished processing all events. It will not quit instantly, so expect more
* callbacks to be called after this command has been issued.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_main_loop_quit(void)
@ -91,7 +88,6 @@ ecore_main_loop_quit(void)
* fd = open("/tmp/fifo", O_RDONLY);
* fdh = ecore_main_fd_handler_add(fd, ECORE_FD_READ, func_read_fifo, NULL);
* @endcode
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Fd_Handler *
ecore_main_fd_handler_add(int fd, Ecore_Fd_Handler_Flags flags, int (*func) (void *data, Ecore_Fd_Handler *fd_handler), const void *data, int (*buf_func) (void *buf_data, Ecore_Fd_Handler *fd_handler), const void *buf_data)

View File

@ -10,7 +10,6 @@
* This function returns the current system time in seconds from 12:00am
* 1st Janruary 1970. The time is returned as a double precision floating point
* value to allow for fractions of a second to be determined.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_time_get(void)

View File

@ -64,7 +64,6 @@ static Ecore_Timer *timers = NULL;
* ecore_shutdown();
* }
* @endcode
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Timer *
ecore_timer_add(double in, int (*func) (void *data), const void *data)
@ -92,7 +91,6 @@ ecore_timer_add(double in, int (*func) (void *data), const void *data)
* was being passed to the callback on success, or NULL on failure. After this
* call returns the specified timer object @p timer is invalid and should not
* be used again. It will not get called again after deletion.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_timer_del(Ecore_Timer *timer)

View File

@ -45,7 +45,6 @@ static int init_count = 0;
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_con_init(void)
@ -67,7 +66,6 @@ ecore_con_init(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_con_shutdown(void)
@ -85,7 +83,6 @@ ecore_con_shutdown(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Con_Server *
ecore_con_server_add(Ecore_Con_Type type,
@ -255,7 +252,6 @@ ecore_con_server_add(Ecore_Con_Type type,
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Con_Server *
ecore_con_server_connect(Ecore_Con_Type type,
@ -375,7 +371,6 @@ ecore_con_server_connect(Ecore_Con_Type type,
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_con_server_del(Ecore_Con_Server *svr)
@ -397,7 +392,6 @@ ecore_con_server_del(Ecore_Con_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_con_server_data_get(Ecore_Con_Server *svr)
@ -415,7 +409,6 @@ ecore_con_server_data_get(Ecore_Con_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_con_server_connected_get(Ecore_Con_Server *svr)
@ -434,7 +427,6 @@ ecore_con_server_connected_get(Ecore_Con_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_con_server_send(Ecore_Con_Server *svr, void *data, int size)
@ -474,7 +466,6 @@ ecore_con_server_send(Ecore_Con_Server *svr, void *data, int size)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_con_client_send(Ecore_Con_Client *cl, void *data, int size)
@ -514,7 +505,6 @@ ecore_con_client_send(Ecore_Con_Client *cl, void *data, int size)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Con_Server *
ecore_con_client_server_get(Ecore_Con_Client *cl)
@ -532,7 +522,6 @@ ecore_con_client_server_get(Ecore_Con_Client *cl)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_con_client_del(Ecore_Con_Client *cl)
@ -554,7 +543,6 @@ ecore_con_client_del(Ecore_Con_Client *cl)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_con_client_data_set(Ecore_Con_Client *cl, const void *data)
@ -572,7 +560,6 @@ ecore_con_client_data_set(Ecore_Con_Client *cl, const void *data)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_con_client_data_get(Ecore_Con_Client *cl)

View File

@ -10,8 +10,7 @@ static int _ecore_evas_init_count = 0;
* Init the Evas system.
* @return greater than 0 on success, 0 on failure
*
* Set up the Evas wrapper system
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
* Set up the Evas wrapper system.
*/
int
ecore_evas_init(void)
@ -26,7 +25,6 @@ ecore_evas_init(void)
* @return 0 if ecore evas is fully shut down, or 1 if it still needs to be shut down
*
* This closes the Evas system down.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_shutdown(void)
@ -52,7 +50,6 @@ ecore_evas_shutdown(void)
* @param ee The Ecore_Evas to free
*
* This frees up any memory used by the Ecore_Evas.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_free(Ecore_Evas *ee)
@ -89,7 +86,6 @@ ecore_evas_free(Ecore_Evas *ee)
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee is resized.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_resize_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -112,7 +108,6 @@ ecore_evas_callback_resize_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee is moved.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_move_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -135,7 +130,6 @@ ecore_evas_callback_move_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee is shown.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_show_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -158,7 +152,6 @@ ecore_evas_callback_show_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee is hidden.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_hide_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -181,7 +174,6 @@ ecore_evas_callback_hide_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee gets a delete request.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_delete_request_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -204,7 +196,6 @@ ecore_evas_callback_delete_request_set(Ecore_Evas *ee, void (*func) (Ecore_Evas
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee is destroyed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_destroy_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -227,7 +218,6 @@ ecore_evas_callback_destroy_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee gets focus.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_focus_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -250,7 +240,6 @@ ecore_evas_callback_focus_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever @p ee loses focus.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_focus_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -273,7 +262,6 @@ ecore_evas_callback_focus_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever the mouse enters @p ee.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_mouse_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -296,7 +284,6 @@ ecore_evas_callback_mouse_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called whenever the mouse leaves @p ee.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_mouse_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -319,7 +306,6 @@ ecore_evas_callback_mouse_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called just before the evas in @p ee is rendered.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_pre_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -342,7 +328,6 @@ ecore_evas_callback_pre_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee)
* A call to this function will set a callback on an Ecore_Evas, causing
* @p func to be called just after the evas in @p ee is rendered.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_callback_post_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
@ -364,7 +349,6 @@ ecore_evas_callback_post_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee
* @return The Evas wrapped by @p ee
*
* This function returns the Evas contained within @p ee.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Evas *
ecore_evas_get(Ecore_Evas *ee)
@ -385,7 +369,6 @@ ecore_evas_get(Ecore_Evas *ee)
* @param y The y coordinate to move to
*
* This moves @p ee to the screen coordinates (@p x, @p y)
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_move(Ecore_Evas *ee, int x, int y)
@ -407,7 +390,6 @@ ecore_evas_move(Ecore_Evas *ee, int x, int y)
* @param h The h coordinate to resize to
*
* This resizes @p ee to @p w x @p h
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_resize(Ecore_Evas *ee, int w, int h)
@ -443,7 +425,6 @@ ecore_evas_resize(Ecore_Evas *ee, int w, int h)
* This moves @p ee to the screen coordinates (@p x, @p y) and resizes
* it to @p w x @p h.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_move_resize(Ecore_Evas *ee, int x, int y, int w, int h)
@ -484,7 +465,6 @@ ecore_evas_move_resize(Ecore_Evas *ee, int x, int y, int w, int h)
* ecore_evas_geometry_get(ee, &x, &y, &w, &h);
* @endcode
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_geometry_get(Ecore_Evas *ee, int *x, int *y, int *w, int *h)
@ -519,7 +499,6 @@ ecore_evas_geometry_get(Ecore_Evas *ee, int *x, int *y, int *w, int *h)
*
* The allowed values of @p rot depend on the engine being used. Most only
* allow multiples of 90.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_rotation_set(Ecore_Evas *ee, int rot)
@ -543,7 +522,6 @@ ecore_evas_rotation_set(Ecore_Evas *ee, int rot)
* @param ee The Ecore_Evas
* @return the angle (in degrees) of rotation.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_rotation_get(Ecore_Evas *ee)
@ -568,7 +546,6 @@ ecore_evas_rotation_get(Ecore_Evas *ee)
* and parts with no data will show random framebuffer artifacting. For
* non-shaped Ecore_Evases, it is recommend to cover the entire evas with a
* background object.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_shaped_set(Ecore_Evas *ee, int shaped)
@ -589,7 +566,6 @@ ecore_evas_shaped_set(Ecore_Evas *ee, int shaped)
* @return 1 if shaped, 0 if not.
*
* This function returns 1 if @p ee is shaped, and 0 if not.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_shaped_get(Ecore_Evas *ee)
@ -608,7 +584,6 @@ ecore_evas_shaped_get(Ecore_Evas *ee)
* @param ee The Ecore_Evas to show.
*
* This function makes @p ee visible.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_show(Ecore_Evas *ee)
@ -628,7 +603,6 @@ ecore_evas_show(Ecore_Evas *ee)
* @param ee The Ecore_Evas to show.
*
* This function makes @p ee hidden.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_hide(Ecore_Evas *ee)
@ -649,7 +623,6 @@ ecore_evas_hide(Ecore_Evas *ee)
* @return 1 if visible, 0 if not.
*
* This function queries @p ee and returns 1 if it is visible, and 0 if not.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_visibility_get(Ecore_Evas *ee)
@ -668,7 +641,6 @@ ecore_evas_visibility_get(Ecore_Evas *ee)
* @param ee The Ecore_Evas to raise.
*
* This functions raises the Ecore_Evas to the front.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_raise(Ecore_Evas *ee)
@ -688,7 +660,6 @@ ecore_evas_raise(Ecore_Evas *ee)
* @param ee The Ecore_Evas to raise.
*
* This functions lowers the Ecore_Evas to the back.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_lower(Ecore_Evas *ee)
@ -709,7 +680,6 @@ ecore_evas_lower(Ecore_Evas *ee)
* @param t The title
*
* This function sets the title of @p ee to @p t.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_title_set(Ecore_Evas *ee, const char *t)
@ -730,7 +700,6 @@ ecore_evas_title_set(Ecore_Evas *ee, const char *t)
* @return The title of @p ee.
*
* This function returns the title of @p ee.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
const char *
ecore_evas_title_get(Ecore_Evas *ee)
@ -751,7 +720,6 @@ ecore_evas_title_get(Ecore_Evas *ee)
* @param c the class
*
* This function sets the name of @p ee to @p n, and its class to @p c.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_name_class_set(Ecore_Evas *ee, const char *n, const char *c)
@ -774,7 +742,6 @@ ecore_evas_name_class_set(Ecore_Evas *ee, const char *n, const char *c)
*
* This function gets puts the name of @p ee into @p n, and its class into
* @p c.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_name_class_get(Ecore_Evas *ee, const char **n, const char **c)
@ -796,7 +763,6 @@ ecore_evas_name_class_get(Ecore_Evas *ee, const char **n, const char **c)
* @param h The minimum height
*
* This function sets the minimum size of @p ee to @p w x @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_min_set(Ecore_Evas *ee, int w, int h)
@ -828,7 +794,6 @@ ecore_evas_size_min_set(Ecore_Evas *ee, int w, int h)
* @param h A pointer to an int to place the min height in.
*
* This function puts the minimum size of @p ee into @p w and @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_min_get(Ecore_Evas *ee, int *w, int *h)
@ -858,7 +823,6 @@ ecore_evas_size_min_get(Ecore_Evas *ee, int *w, int *h)
* @param h The maximum height
*
* This function sets the maximum size of @p ee to @p w x @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_max_set(Ecore_Evas *ee, int w, int h)
@ -890,7 +854,6 @@ ecore_evas_size_max_set(Ecore_Evas *ee, int w, int h)
* @param h A pointer to an int to place the max height in.
*
* This function puts the maximum size of @p ee into @p w and @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_max_get(Ecore_Evas *ee, int *w, int *h)
@ -920,7 +883,6 @@ ecore_evas_size_max_get(Ecore_Evas *ee, int *w, int *h)
* @param h The base height
*
* This function sets the base size of @p ee to @p w x @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_base_set(Ecore_Evas *ee, int w, int h)
@ -952,7 +914,6 @@ ecore_evas_size_base_set(Ecore_Evas *ee, int w, int h)
* @param h A pointer to an int to place the base height in.
*
* This function puts the base size of @p ee into @p w and @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_base_get(Ecore_Evas *ee, int *w, int *h)
@ -983,7 +944,6 @@ ecore_evas_size_base_get(Ecore_Evas *ee, int *w, int *h)
*
* This function sets the step size of @p ee to @p w x @p h. This limits the
* size of an Ecore_Evas to always being an integer multiple of the step size.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_step_set(Ecore_Evas *ee, int w, int h)
@ -1015,7 +975,6 @@ ecore_evas_size_step_set(Ecore_Evas *ee, int w, int h)
* @param h A pointer to an int to place the step height in.
*
* This function puts the step size of @p ee into @p w and @p h.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_size_step_get(Ecore_Evas *ee, int *w, int *h)
@ -1049,7 +1008,6 @@ ecore_evas_size_step_get(Ecore_Evas *ee, int *w, int *h)
* @p file. The actual point within the image that the mouse is at is specified
* by @p hot_x and @p hot_y, which are coordinates with respect to the top left
* corner of the cursor image.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_cursor_set(Ecore_Evas *ee, const char *file, int layer, int hot_x, int hot_y)
@ -1073,7 +1031,6 @@ ecore_evas_cursor_set(Ecore_Evas *ee, const char *file, int layer, int hot_x, in
* @param hot_y A pointer to an int to place the cursor's hot_y coordinate in.
*
* This function queries information about an Ecore_Evas' cursor.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_cursor_get(Ecore_Evas *ee, char **file, int *layer, int *hot_x, int *hot_y)
@ -1096,7 +1053,6 @@ ecore_evas_cursor_get(Ecore_Evas *ee, char **file, int *layer, int *hot_x, int *
* @param layer The layer to put @p ee on.
*
* This function moves @p ee to the layer @p layer.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_layer_set(Ecore_Evas *ee, int layer)
@ -1116,7 +1072,6 @@ ecore_evas_layer_set(Ecore_Evas *ee, int layer)
* @param ee The Ecore_Evas to set
* @return the layer @p ee's window is on.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_layer_get(Ecore_Evas *ee)
@ -1136,7 +1091,6 @@ ecore_evas_layer_get(Ecore_Evas *ee)
* @param on 1 for focus, 0 to defocus.
*
* This function focuses @p ee if @p on is 1, or defocuses @p ee if @p on is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_focus_set(Ecore_Evas *ee, int on)
@ -1156,7 +1110,6 @@ ecore_evas_focus_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee if focused, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_focus_get(Ecore_Evas *ee)
@ -1177,7 +1130,6 @@ ecore_evas_focus_get(Ecore_Evas *ee)
*
* This function iconifies @p ee if @p on is 1, or uniconifies @p ee if @p on
* is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_iconified_set(Ecore_Evas *ee, int on)
@ -1197,7 +1149,6 @@ ecore_evas_iconified_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee is iconified, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_iconified_get(Ecore_Evas *ee)
@ -1218,7 +1169,6 @@ ecore_evas_iconified_get(Ecore_Evas *ee)
*
* This function makes @p ee borderless if @p on is 1, or bordered if @p on
* is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_borderless_set(Ecore_Evas *ee, int on)
@ -1238,7 +1188,6 @@ ecore_evas_borderless_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee is borderless, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_borderless_get(Ecore_Evas *ee)
@ -1259,7 +1208,6 @@ ecore_evas_borderless_get(Ecore_Evas *ee)
*
* This function causes the window manager to ignore @p ee if @p on is 1,
* or not ignore @p ee if @p on is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_override_set(Ecore_Evas *ee, int on)
@ -1279,7 +1227,6 @@ ecore_evas_override_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee is overridden, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_override_get(Ecore_Evas *ee)
@ -1300,7 +1247,6 @@ ecore_evas_override_get(Ecore_Evas *ee)
*
* This function maximizes @p ee if @p on is 1, or unmaximizes @p ee
* if @p on is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_maximized_set(Ecore_Evas *ee, int on)
@ -1320,7 +1266,6 @@ ecore_evas_maximized_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee is maximized, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_maximized_get(Ecore_Evas *ee)
@ -1341,7 +1286,6 @@ ecore_evas_maximized_get(Ecore_Evas *ee)
*
* This function causes @p ee to be fullscreen if @p on is 1,
* or not if @p on is 0.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_fullscreen_set(Ecore_Evas *ee, int on)
@ -1361,7 +1305,6 @@ ecore_evas_fullscreen_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee is fullscreen, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_fullscreen_get(Ecore_Evas *ee)
@ -1383,7 +1326,6 @@ ecore_evas_fullscreen_get(Ecore_Evas *ee)
*
* This function causes @p ee to be drawn to a pixmap to avoid recalculations.
* On expose events it will copy from the pixmap to the window.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_avoid_damage_set(Ecore_Evas *ee, int on)
@ -1403,7 +1345,6 @@ ecore_evas_avoid_damage_set(Ecore_Evas *ee, int on)
* @param ee The Ecore_Evas to set
* @return 1 if @p ee avoids damage, 0 if not.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_avoid_damage_get(Ecore_Evas *ee)
@ -1422,7 +1363,6 @@ ecore_evas_avoid_damage_get(Ecore_Evas *ee)
* @param ee The Ecore_Evas whose window's withdrawn state is set.
* @param withdrawn The Ecore_Evas window's new withdrawn state.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_withdrawn_set(Ecore_Evas *ee, int withdrawn)
@ -1443,7 +1383,6 @@ ecore_evas_withdrawn_set(Ecore_Evas *ee, int withdrawn)
* @param ee The Ecore_Evas whose window's withdrawn state is returned.
* @return The Ecore_Evas window's withdrawn state.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_withdrawn_get(Ecore_Evas *ee)
@ -1463,7 +1402,6 @@ ecore_evas_withdrawn_get(Ecore_Evas *ee)
* @param ee The Ecore_Evas whose window's sticky state is set.
* @param sticky The Ecore_Evas window's new sticky state.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_evas_sticky_set(Ecore_Evas *ee, int sticky)
@ -1485,7 +1423,6 @@ ecore_evas_sticky_set(Ecore_Evas *ee, int sticky)
* @param ee The Ecore_Evas whose window's sticky state is returned.
* @return The Ecore_Evas window's sticky state.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_evas_sticky_get(Ecore_Evas *ee)

View File

@ -429,7 +429,6 @@ static const Ecore_Evas_Engine_Func _ecore_fb_engine_func =
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Evas *
ecore_evas_fb_new(char *disp_name, int rotation, int w, int h)

View File

@ -1093,7 +1093,6 @@ static const Ecore_Evas_Engine_Func _ecore_x_engine_func =
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Evas *
ecore_evas_software_x11_new(const char *disp_name, Ecore_X_Window parent,
@ -1264,7 +1263,6 @@ ecore_evas_gl_x11_new(const char *disp_name, Ecore_X_Window parent,
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Window
ecore_evas_software_x11_window_get(Ecore_Evas *ee)

View File

@ -381,7 +381,6 @@ static char *_ecore_fb_btn_syms[128] =
* @return 0 on failure, or greter than 0 on success.
*
* This starts up the ecore fb system
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_fb_init(const char *name)
@ -517,7 +516,6 @@ ecore_fb_init(const char *name)
* @return 0 if the system was shut down, or 1 if it still needs to be shut down
*
* This shuts down the ecore fb system.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_fb_shutdown(void)
@ -568,7 +566,6 @@ ecore_fb_shutdown(void)
* This sets the time between clicks before the double_click flag is set in a
* button down event. If 3 clicks occur within double this time then the
* triple_click flag is also set.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_double_click_time_set(double t)
@ -582,7 +579,6 @@ ecore_fb_double_click_time_set(double t)
* @return The timeout for double clicks in seconds
*
* This returns the tiemout that can be set by ecore_fb_double_click_time_set()
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_fb_double_click_time_get(void)
@ -596,7 +592,6 @@ ecore_fb_double_click_time_get(void)
* @param h Height in pixels
*
* Get the current fb width and height in pixels
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_size_get(int *w, int *h)
@ -614,7 +609,6 @@ ecore_fb_size_get(int *w, int *h)
* @param xyswap Swap X & Y flag
*
* Calibrate the touchscreen using the above params
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_touch_screen_calibrate_set(int xscale, int xtrans, int yscale, int ytrans, int xyswap)
@ -639,7 +633,6 @@ ecore_fb_touch_screen_calibrate_set(int xscale, int xtrans, int yscale, int ytra
* @param xyswap Swap X & Y flag
*
* Get calibration of the touchscreen
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_touch_screen_calibrate_get(int *xscale, int *xtrans, int *yscale, int *ytrans, int *xyswap)
@ -660,7 +653,6 @@ ecore_fb_touch_screen_calibrate_get(int *xscale, int *xtrans, int *yscale, int *
* @param on 1 or 0 corresponding to on or off
*
* Set the backlight to the @p on state
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_backlight_set(int on)
@ -678,7 +670,6 @@ ecore_fb_backlight_set(int on)
* @return The current backlight state
*
* Get the current backlight state
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_fb_backlight_get(void)
@ -696,7 +687,6 @@ ecore_fb_backlight_get(void)
*
* Set the backglith brightness to @p br, where 0 is darkest and 1.0 is
* the brightest.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_backlight_brightness_set(double br)
@ -718,7 +708,6 @@ ecore_fb_backlight_brightness_set(double br)
*
* Get the current backlight brightness as per
* ecore_fb_backlight_brightness_set().
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_fb_backlight_brightness_get(void)
@ -734,7 +723,6 @@ ecore_fb_backlight_brightness_get(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_led_set(int on)
@ -751,7 +739,6 @@ ecore_fb_led_set(int on)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_led_blink_set(double speed)
@ -770,7 +757,6 @@ ecore_fb_led_blink_set(double speed)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_contrast_set(double cr)
@ -789,7 +775,6 @@ ecore_fb_contrast_set(double cr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_fb_contrast_get(void)
@ -805,7 +790,6 @@ ecore_fb_contrast_get(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_fb_light_sensor_get(void)
@ -823,7 +807,6 @@ ecore_fb_light_sensor_get(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_callback_gain_set(void (*func) (void *data), void *data)
@ -836,7 +819,6 @@ ecore_fb_callback_gain_set(void (*func) (void *data), void *data)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_fb_callback_lose_set(void (*func) (void *data), void *data)

View File

@ -44,7 +44,6 @@ static Ecore_Ipc_Server *servers = NULL;
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_ipc_init(void)
@ -74,7 +73,6 @@ ecore_ipc_init(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_ipc_shutdown(void)
@ -93,7 +91,6 @@ ecore_ipc_shutdown(void)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Ipc_Server *
ecore_ipc_server_add(Ecore_Ipc_Type type, char *name, int port, const void *data)
@ -132,7 +129,6 @@ ecore_ipc_server_add(Ecore_Ipc_Type type, char *name, int port, const void *data
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Ipc_Server *
ecore_ipc_server_connect(Ecore_Ipc_Type type, char *name, int port, const void *data)
@ -171,7 +167,6 @@ ecore_ipc_server_connect(Ecore_Ipc_Type type, char *name, int port, const void *
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_ipc_server_del(Ecore_Ipc_Server *svr)
@ -198,7 +193,6 @@ ecore_ipc_server_del(Ecore_Ipc_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_ipc_server_data_get(Ecore_Ipc_Server *svr)
@ -216,7 +210,6 @@ ecore_ipc_server_data_get(Ecore_Ipc_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_ipc_server_connected_get(Ecore_Ipc_Server *svr)
@ -234,7 +227,6 @@ ecore_ipc_server_connected_get(Ecore_Ipc_Server *svr)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_ipc_server_send(Ecore_Ipc_Server *svr, int major, int minor, int ref, int ref_to, int response, void *data, int size)
@ -264,7 +256,6 @@ ecore_ipc_server_send(Ecore_Ipc_Server *svr, int major, int minor, int ref, int
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_ipc_client_send(Ecore_Ipc_Client *cl, int major, int minor, int ref, int ref_to, int response, void *data, int size)
@ -294,7 +285,6 @@ ecore_ipc_client_send(Ecore_Ipc_Client *cl, int major, int minor, int ref, int r
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Ipc_Server *
ecore_ipc_client_server_get(Ecore_Ipc_Client *cl)
@ -312,7 +302,6 @@ ecore_ipc_client_server_get(Ecore_Ipc_Client *cl)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_ipc_client_del(Ecore_Ipc_Client *cl)
@ -340,7 +329,6 @@ ecore_ipc_client_del(Ecore_Ipc_Client *cl)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_ipc_client_data_set(Ecore_Ipc_Client *cl, const void *data)
@ -358,7 +346,6 @@ ecore_ipc_client_data_set(Ecore_Ipc_Client *cl, const void *data)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_ipc_client_data_get(Ecore_Ipc_Client *cl)

View File

@ -18,7 +18,6 @@ static int ecore_event_job_type = 0;
* return a pointer to the job handle. When the job is to be executed, the
* function @p func is called and passed the pointer @p data. once the job has
* been executed the job handle is no longer valid.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_Job *
ecore_job_add(void (*func) (void *data), const void *data)
@ -52,7 +51,6 @@ ecore_job_add(void (*func) (void *data), const void *data)
*
* This removed a job from the queue (if it hasn't been executed yet) and
* returns the data pointer that was to be passed to it.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void *
ecore_job_del(Ecore_Job *job)

View File

@ -8,6 +8,11 @@
#include <unistd.h>
#include <string.h>
/**
* To be documented.
*
* FIXME: Finish this.
*/
char *
ecore_txt_convert(char *enc_from, char *enc_to, char *text)
{

View File

@ -210,7 +210,6 @@ int ECORE_X_LOCK_CAPS = 0;
* @return greater than 1 on success, 0 on failure
*
* Set up an X display connection and event handlers for event processing
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_init(const char *name)
@ -471,7 +470,6 @@ ecore_x_init(const char *name)
* @return The number of times ecore X has left to be shut down
*
* This closes the X display connection and removes the handlers for it.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_shutdown(void)
@ -497,7 +495,6 @@ ecore_x_shutdown(void)
* @return The X Display handle
*
* This returns the X Display handle used for the X connection.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Display *
ecore_x_display_get(void)
@ -510,7 +507,6 @@ ecore_x_display_get(void)
* @return The X Display fd
*
* This returns the X Display file descriptor.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_fd_get(void)
@ -525,7 +521,6 @@ ecore_x_fd_get(void)
* This sets the time between clicks before the double_click flag is set in a
* button down event. If 3 clicks occur within double this time then the
* triple_click flag is also set.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_double_click_time_set(double t)
@ -539,7 +534,6 @@ ecore_x_double_click_time_set(double t)
* @return The timeout for double clicks in seconds
*
* This returns the tiemout that can be set by ecore_x_double_click_time_set()
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
double
ecore_x_double_click_time_get(void)
@ -551,7 +545,6 @@ ecore_x_double_click_time_get(void)
* Flush the command buffer.
*
* This flushes the x command buffer
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_flush(void)
@ -563,7 +556,6 @@ ecore_x_flush(void)
* Sync with the server.
*
* This flushes the command buffer and waits for a round trip from the server
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_sync(void)
@ -579,7 +571,6 @@ ecore_x_sync(void)
* every child window under it. To kill all clients connected to an X server,
* use the ecore_x_window_root_list() function to obtain an array of root
* windows, and then pass each window to this function.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_killall(Ecore_X_Window root)

View File

@ -18,7 +18,6 @@ static int _error_code = 0;
* @param data The data to be passed to the handler function
*
* Set the X error handler function
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_error_handler_set(void (*func) (void *data), const void *data)
@ -33,7 +32,6 @@ ecore_x_error_handler_set(void (*func) (void *data), const void *data)
* @param data The data to be passed to the handler function
*
* Set the X I/O error handler function
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_io_error_handler_set(void (*func) (void *data), const void *data)
@ -47,7 +45,6 @@ ecore_x_io_error_handler_set(void (*func) (void *data), const void *data)
* @return The request code causing the X error
*
* Return the X request code that caused the last X error
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_error_request_get(void)
@ -60,7 +57,6 @@ ecore_x_error_request_get(void)
* @return The error code from the X error
*
* Return the error code from the last X error
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_error_code_get(void)

View File

@ -6,7 +6,6 @@
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_GC
ecore_x_gc_new(Ecore_X_Drawable draw)
@ -21,7 +20,6 @@ ecore_x_gc_new(Ecore_X_Drawable draw)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_gc_del(Ecore_X_GC gc)

View File

@ -6,7 +6,6 @@
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Pixmap
ecore_x_pixmap_new(Ecore_X_Window win, int w, int h, int dep)
@ -20,7 +19,6 @@ ecore_x_pixmap_new(Ecore_X_Window win, int w, int h, int dep)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_pixmap_del(Ecore_X_Pixmap pmap)
@ -32,7 +30,6 @@ ecore_x_pixmap_del(Ecore_X_Pixmap pmap)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_pixmap_paste(Ecore_X_Pixmap pmap, Ecore_X_Drawable dest,

View File

@ -78,7 +78,6 @@ _ecore_x_selection_request_data_get(Ecore_X_Atom selection, void **buf, int *len
*
* Get the converted data from a previous PRIMARY selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_selection_primary_request_data_get(void **buf, int *len)
@ -94,7 +93,6 @@ ecore_x_selection_primary_request_data_get(void **buf, int *len)
*
* Get the converted data from a previous SECONDARY selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_selection_secondary_request_data_get(void **buf, int *len)
@ -110,7 +108,6 @@ ecore_x_selection_secondary_request_data_get(void **buf, int *len)
*
* Get the converted data from a previous CLIPBOARD selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_selection_clipboard_request_data_get(void **buf, int *len)
@ -198,7 +195,6 @@ _ecore_x_selection_set(Window w, unsigned char *data, int size, Atom selection)
*
* Get the converted data from a previous PRIMARY selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_primary_set(Ecore_X_Window w, unsigned char *data, int size)
@ -211,7 +207,6 @@ ecore_x_selection_primary_set(Ecore_X_Window w, unsigned char *data, int size)
* @return Returns 1 if the selection was successfully cleared,
* or 0 if unsuccessful.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_primary_clear(void)
@ -229,7 +224,6 @@ ecore_x_selection_primary_clear(void)
*
* Get the converted data from a previous SECONDARY selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_secondary_set(Ecore_X_Window w, unsigned char *data, int size)
@ -242,7 +236,6 @@ ecore_x_selection_secondary_set(Ecore_X_Window w, unsigned char *data, int size)
* @return Returns 1 if the selection was successfully cleared,
* or 0 if unsuccessful.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_secondary_clear(void)
@ -260,7 +253,6 @@ ecore_x_selection_secondary_clear(void)
*
* Get the converted data from a previous CLIPBOARD selection
* request. The buffer must be freed when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_clipboard_set(Ecore_X_Window w, unsigned char *data, int size)
@ -273,7 +265,6 @@ ecore_x_selection_clipboard_set(Ecore_X_Window w, unsigned char *data, int size)
* @return Returns 1 if the selection was successfully cleared,
* or 0 if unsuccessful.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_selection_clipboard_clear(void)

View File

@ -12,7 +12,6 @@
* @return The new window handle
*
* Create a new window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Window
ecore_x_window_new(Ecore_X_Window parent, int x, int y, int w, int h)
@ -70,7 +69,6 @@ ecore_x_window_new(Ecore_X_Window parent, int x, int y, int w, int h)
* @return The new window handle
*
* Create a new window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Window
ecore_x_window_override_new(Ecore_X_Window parent, int x, int y, int w, int h)
@ -128,7 +126,6 @@ ecore_x_window_override_new(Ecore_X_Window parent, int x, int y, int w, int h)
* @return The new window handle
*
* Create a new window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
Ecore_X_Window
ecore_x_window_input_new(Ecore_X_Window parent, int x, int y, int w, int h)
@ -173,7 +170,6 @@ ecore_x_window_input_new(Ecore_X_Window parent, int x, int y, int w, int h)
* @param win The window to set defaults
*
* Set defaults for a window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_defaults_set(Ecore_X_Window win)
@ -216,7 +212,6 @@ ecore_x_window_defaults_set(Ecore_X_Window win)
* @param win The window to delete
*
* Delete a window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_del(Ecore_X_Window win)
@ -229,7 +224,6 @@ ecore_x_window_del(Ecore_X_Window win)
* @param win The window to show
*
* Show a window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_show(Ecore_X_Window win)
@ -242,7 +236,6 @@ ecore_x_window_show(Ecore_X_Window win)
* @param win The window to hide
*
* Hide a window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_hide(Ecore_X_Window win)
@ -257,7 +250,6 @@ ecore_x_window_hide(Ecore_X_Window win)
* @param y Y
*
* Move a window to @p x, @p y
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_move(Ecore_X_Window win, int x, int y)
@ -272,7 +264,6 @@ ecore_x_window_move(Ecore_X_Window win, int x, int y)
* @param h Height
*
* Resize a window to @p w x @p h
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_resize(Ecore_X_Window win, int w, int h)
@ -291,7 +282,6 @@ ecore_x_window_resize(Ecore_X_Window win, int w, int h)
* @param h Height
*
* Move a window to @p x, @p y and resize it to @p w x @p h
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_move_resize(Ecore_X_Window win, int x, int y, int w, int h)
@ -306,7 +296,6 @@ ecore_x_window_move_resize(Ecore_X_Window win, int x, int y, int w, int h)
* @param win The window to focus
*
* Set the focus to the window @p win
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_focus(Ecore_X_Window win)
@ -321,7 +310,6 @@ ecore_x_window_focus(Ecore_X_Window win)
* @param t When
*
* Set the focus to the window @p win at time @p t
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_focus_at_time(Ecore_X_Window win, Ecore_X_Time t)
@ -335,7 +323,6 @@ ecore_x_window_focus_at_time(Ecore_X_Window win, Ecore_X_Time t)
* @param win The window to raise
*
* Raise window @p win
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_raise(Ecore_X_Window win)
@ -348,7 +335,6 @@ ecore_x_window_raise(Ecore_X_Window win)
* @param win The window to lower
*
* Lower window @p win
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_lower(Ecore_X_Window win)
@ -364,7 +350,6 @@ ecore_x_window_lower(Ecore_X_Window win)
* @param y Y
*
* Reparent @p win to the parent @p new_parent at @p x, @p y
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_reparent(Ecore_X_Window win, Ecore_X_Window new_parent, int x, int y)
@ -377,7 +362,6 @@ ecore_x_window_reparent(Ecore_X_Window win, Ecore_X_Window new_parent, int x, in
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_size_get(Ecore_X_Window win, int *w, int *h)
@ -403,7 +387,6 @@ ecore_x_window_size_get(Ecore_X_Window win, int *w, int *h)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_cursor_show(Ecore_X_Window win, int show)

View File

@ -10,7 +10,6 @@ static Ecore_X_Atom _ecore_x_window_prop_state_atom_get(Ecore_X_Window_State s);
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_property_set(Ecore_X_Window win, Ecore_X_Atom property, Ecore_X_Atom type, int size, void *data, int number)
@ -39,7 +38,6 @@ ecore_x_window_prop_property_set(Ecore_X_Window win, Ecore_X_Atom property, Ecor
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_window_prop_property_get(Ecore_X_Window win, Ecore_X_Atom property, Ecore_X_Atom type, int size, unsigned char **data, int *num)
@ -104,7 +102,6 @@ ecore_x_window_prop_property_del(Ecore_X_Window win, Ecore_X_Atom property)
* @param data The data
*
* Send a property notify to a window.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_property_notify(Ecore_X_Window win, const char *type, long *data)
@ -137,7 +134,6 @@ ecore_x_window_prop_property_notify(Ecore_X_Window win, const char *type, long *
* @param str The string
*
* Set a window string property
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_string_set(Ecore_X_Window win, Ecore_X_Atom type, char *str)
@ -158,7 +154,6 @@ ecore_x_window_prop_string_set(Ecore_X_Window win, Ecore_X_Atom type, char *str)
* @param type The property
*
* Return window string property of a window. String must be free'd when done.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_string_get(Ecore_X_Window win, Ecore_X_Atom type)
@ -197,7 +192,6 @@ ecore_x_window_prop_string_get(Ecore_X_Window win, Ecore_X_Atom type)
* @param t The title string
*
* Set a window title
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_title_set(Ecore_X_Window win, const char *t)
@ -221,7 +215,6 @@ ecore_x_window_prop_title_set(Ecore_X_Window win, const char *t)
* @return The windows title string
*
* Return the title of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_title_get(Ecore_X_Window win)
@ -239,7 +232,6 @@ ecore_x_window_prop_title_get(Ecore_X_Window win)
* @param t The command string
*
* Set a window command
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_command_set(Ecore_X_Window win, int argc, char **argv)
@ -253,7 +245,6 @@ ecore_x_window_prop_command_set(Ecore_X_Window win, int argc, char **argv)
* @return The windows command string
*
* Return the command of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_command_get(Ecore_X_Window win, int *argc, char ***argv)
@ -269,7 +260,6 @@ ecore_x_window_prop_command_get(Ecore_X_Window win, int *argc, char ***argv)
* @param t The visible title string
*
* Set a window visible title
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_visible_title_set(Ecore_X_Window win, const char *t)
@ -284,7 +274,6 @@ ecore_x_window_prop_visible_title_set(Ecore_X_Window win, const char *t)
* @return The windows visible title string
*
* Return the visible title of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_visible_title_get(Ecore_X_Window win)
@ -301,7 +290,6 @@ ecore_x_window_prop_visible_title_get(Ecore_X_Window win)
* @param t The icon name string
*
* Set a window icon name
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_icon_name_set(Ecore_X_Window win, const char *t)
@ -317,7 +305,6 @@ ecore_x_window_prop_icon_name_set(Ecore_X_Window win, const char *t)
* @return The windows icon name string
*
* Return the icon name of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_icon_name_get(Ecore_X_Window win)
@ -335,7 +322,6 @@ ecore_x_window_prop_icon_name_get(Ecore_X_Window win)
* @param t The visible icon name string
*
* Set a window visible icon name
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_visible_icon_name_set(Ecore_X_Window win, const char *t)
@ -350,7 +336,6 @@ ecore_x_window_prop_visible_icon_name_set(Ecore_X_Window win, const char *t)
* @return The windows visible icon name string
*
* Return the visible icon name of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_visible_icon_name_get(Ecore_X_Window win)
@ -367,7 +352,6 @@ ecore_x_window_prop_visible_icon_name_get(Ecore_X_Window win)
* @return The windows client machine string
*
* Return the client machine of a window. String must be free'd when done with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
char *
ecore_x_window_prop_client_machine_get(Ecore_X_Window win)
@ -384,7 +368,6 @@ ecore_x_window_prop_client_machine_get(Ecore_X_Window win)
* @return The windows process id
*
* Return the process id of a window.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
pid_t
ecore_x_window_prop_pid_get(Ecore_X_Window win)
@ -410,7 +393,6 @@ ecore_x_window_prop_pid_get(Ecore_X_Window win)
* @param c The class string
*
* Set a window name * class
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_name_class_set(Ecore_X_Window win, const char *n, const char *c)
@ -433,7 +415,6 @@ ecore_x_window_prop_name_class_set(Ecore_X_Window win, const char *n, const char
*
* Get a windows name and class property. strings must be free'd when done
* with.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_name_class_get(Ecore_X_Window win, char **n, char **c)
@ -463,7 +444,6 @@ ecore_x_window_prop_name_class_get(Ecore_X_Window win, char **n, char **c)
* @param protocol The protocol to enable/disable
* @param on On/Off
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_protocol_set(Ecore_X_Window win,
@ -532,7 +512,6 @@ ecore_x_window_prop_protocol_set(Ecore_X_Window win,
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_min_size_set(Ecore_X_Window win, int w, int h)
@ -552,7 +531,6 @@ ecore_x_window_prop_min_size_set(Ecore_X_Window win, int w, int h)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_max_size_set(Ecore_X_Window win, int w, int h)
@ -572,7 +550,6 @@ ecore_x_window_prop_max_size_set(Ecore_X_Window win, int w, int h)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_base_size_set(Ecore_X_Window win, int w, int h)
@ -592,7 +569,6 @@ ecore_x_window_prop_base_size_set(Ecore_X_Window win, int w, int h)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_step_size_set(Ecore_X_Window win, int x, int y)
@ -612,7 +588,6 @@ ecore_x_window_prop_step_size_set(Ecore_X_Window win, int x, int y)
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_xy_set(Ecore_X_Window win, int x, int y)
@ -696,7 +671,6 @@ ecore_x_window_prop_input_mode_set(Ecore_X_Window win, Ecore_X_Window_Input_Mode
*
* @return 1 if the input mode could be set, else 0
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_window_prop_initial_state_set(Ecore_X_Window win, Ecore_X_Window_State_Hint state)
@ -735,7 +709,6 @@ ecore_x_window_prop_initial_state_set(Ecore_X_Window win, Ecore_X_Window_State_H
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_borderless_set(Ecore_X_Window win, int borderless)
@ -768,7 +741,6 @@ ecore_x_window_prop_borderless_set(Ecore_X_Window win, int borderless)
* ECORE_X_WINDOW_LAYER_BELOW - for windows to be stacked below
* ECORE_X_WINDOW_LAYER_ABOVE - for windows to be stacked on top
* ECORE_X_WINDOW_LAYER_NORMAL - for windows to be put in the default layer
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_window_prop_layer_set(Ecore_X_Window win, int layer)
@ -798,7 +770,6 @@ ecore_x_window_prop_layer_set(Ecore_X_Window win, int layer)
* @param win The window whose withdrawn state is set.
* @param withdrawn The window's new withdrawn state.
*
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_withdrawn_set(Ecore_X_Window win, int withdrawn)
@ -832,7 +803,6 @@ ecore_x_window_prop_withdrawn_set(Ecore_X_Window win, int withdrawn)
* @param desktop The desktop number.
*
* Request the window manager to change this windows desktop.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_desktop_request(Ecore_X_Window win, long desktop)
@ -886,7 +856,6 @@ ecore_x_window_prop_state_request(Ecore_X_Window win, Ecore_X_Window_State state
* @param desktop The desktop number.
*
* Used by the window manager, or client prior mapping, to set window desktop.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_desktop_set(Ecore_X_Window win, long desktop)
@ -900,7 +869,6 @@ ecore_x_window_prop_desktop_set(Ecore_X_Window win, long desktop)
* @param win The Window
*
* Get the current desktop of a window
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
long
ecore_x_window_prop_desktop_get(Ecore_X_Window win)
@ -953,7 +921,6 @@ _ecore_x_window_prop_type_atom_get(Ecore_X_Window_Type type)
* @param type The Type
*
* Set a windows type.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_window_type_set(Ecore_X_Window win, Ecore_X_Window_Type type)
@ -974,7 +941,6 @@ ecore_x_window_prop_window_type_set(Ecore_X_Window win, Ecore_X_Window_Type type
* @param type The Type
*
* Change a windows type.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_window_type_set(Ecore_X_Window win, Ecore_X_Atom type)
@ -1037,7 +1003,6 @@ _ecore_x_window_prop_state_atom_get(Ecore_X_Window_State s)
* @param s The state to be set for this window
*
* Adds the state to the window's properties if not already included.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_state_set(Ecore_X_Window win, Ecore_X_Window_State s)
@ -1086,7 +1051,6 @@ ecore_x_window_prop_state_set(Ecore_X_Window win, Ecore_X_Window_State s)
*
* This function will look up the window's properties to determine
* if a particular state is set for that window.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int
ecore_x_window_prop_state_isset(Ecore_X_Window win, Ecore_X_Window_State s)
@ -1125,7 +1089,6 @@ ecore_x_window_prop_state_isset(Ecore_X_Window win, Ecore_X_Window_State s)
*
* Checks if the specified state is set for the window, and if so, deletes
* that state from the window's properties.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_state_unset(Ecore_X_Window win, Ecore_X_Window_State s)
@ -1170,7 +1133,6 @@ ecore_x_window_prop_window_type_utility_set(Ecore_X_Window win)
* @param win The Window
*
* Set a window as a splash type.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_window_type_splash_set(Ecore_X_Window win)
@ -1183,7 +1145,6 @@ ecore_x_window_prop_window_type_splash_set(Ecore_X_Window win)
* @param win The Window
*
* Set a window as a dialog type.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_window_type_dialog_set(Ecore_X_Window win)
@ -1196,7 +1157,6 @@ ecore_x_window_prop_window_type_dialog_set(Ecore_X_Window win)
* @param win The Window
*
* Set a window as a normal type.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_prop_window_type_normal_set(Ecore_X_Window win)
@ -1215,7 +1175,6 @@ ecore_x_window_prop_window_type_normal_set(Ecore_X_Window win)
* a compositing manager is running. This hint is still pending approval
* as part of the EWMH specification. The value supplied should be an
* integer between 0 and 255, with 255 representing full opacity.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void ecore_x_window_prop_window_opacity_set(Ecore_X_Window win, int opacity)
{
@ -1238,7 +1197,6 @@ void ecore_x_window_prop_window_opacity_set(Ecore_X_Window win, int opacity)
* @param win The window whose opacity is being requested
* @return An int between 0 and 255 representing the window's opacity value,
* or -1 if the property is not found.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
int ecore_x_window_prop_window_opacity_get(Ecore_X_Window win)
{

View File

@ -6,7 +6,6 @@
* To be documented.
*
* FIXME: To be fixed.
* <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
*/
void
ecore_x_window_shape_mask_set(Ecore_X_Window win, Ecore_X_Pixmap mask)