Changeset 7c3fb9b in mainline for uspace/lib/gui/window.h


Ignore:
Timestamp:
2018-05-17T08:29:01Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ff23ff
Parents:
fac0ac7
git-author:
Jiri Svoboda <jiri@…> (2018-05-16 17:28:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-17 08:29:01)
Message:

Fix block comment formatting (ccheck).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gui/window.h

    rfac0ac7 r7c3fb9b  
    7373 * compositor and asks all widgets in the tree to calculate their new properties
    7474 * and to paint themselves on the new surface (top-bottom order). Should be
    75  * called also after opening new window to obtain surface. */
     75 * called also after opening new window to obtain surface.
     76 */
    7677extern void window_resize(window_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
    7778    window_placement_flags_t);
     
    8485 * are asked to repaint themselves in top-bottom order. Should be called by
    8586 * widget after such change of its internal state that does not need resizing
    86  * of neither parent nor children (). */
     87 * of neither parent nor children ().
     88 */
    8789extern void window_refresh(window_t *);
    8890
     
    9092 * Post damage event into event loop. Handler informs compositor to update the
    9193 * window surface on the screen. Should be called by widget after painting
    92  * itself or copying its buffer onto window surface. */
     94 * itself or copying its buffer onto window surface.
     95 */
    9396extern void window_damage(window_t *);
    9497
    9598/**
    9699 * Retrieve dummy root widget of the window widget tree. Intended to be called
    97  * by proper top-level widget to set his parent. */
     100 * by proper top-level widget to set his parent.
     101 */
    98102extern widget_t *window_root(window_t *);
    99103
    100104/**
    101105 * Prepare and enqueue window fibrils for event loop and input fetching. When
    102  * async_manager() function is called, event loop is executed. */
     106 * async_manager() function is called, event loop is executed.
     107 */
    103108extern void window_exec(window_t *);
    104109
    105110/**
    106111 * Claim protected window surface. Intended for widgets painting from their
    107  * internal fibrils (e.g. terminal, animation, video). */
     112 * internal fibrils (e.g. terminal, animation, video).
     113 */
    108114extern surface_t *window_claim(window_t *);
    109115
    110116/**
    111  * Yield protected window surface after painting. */
     117 * Yield protected window surface after painting.
     118 */
    112119extern void window_yield(window_t *);
    113120
     
    119126 * terminates. When event loop fibril handles closing event, all window
    120127 * resources are deallocated and fibril also terminates. Moreover, if the
    121  * window is main window of the application, whole task terminates. */
     128 * window is main window of the application, whole task terminates.
     129 */
    122130extern void window_close(window_t *);
    123131
Note: See TracChangeset for help on using the changeset viewer.