Changeset 7e38970d in mainline for uspace/lib/gfxfont/include/types/gfx/glyph.h
- Timestamp:
- 2020-12-07T00:08:37Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfxfont/include/types/gfx/glyph.h
r7a873f0 r7e38970d 1 1 /* 2 * Copyright (c) 20 12 Petr Koupy2 * Copyright (c) 2020 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup gui29 /** @addtogroup libgfxfont 30 30 * @{ 31 31 */ 32 32 /** 33 * @file 33 * @file Glyph types 34 34 */ 35 35 36 #ifndef GUI_CONNECTION_H_37 #define GUI_CONNECTION_H_36 #ifndef _TYPES_GFX_GLYPH_H 37 #define _TYPES_GFX_GLYPH_H 38 38 39 #include <stddef.h> 40 #include "widget.h" 39 #include <types/gfx/coord.h> 41 40 42 typedef sysarg_t signal_t;43 typedef void (*slot_t)(widget_t *, void *);41 struct gfx_glyph; 42 typedef struct gfx_glyph gfx_glyph_t; 44 43 45 extern void sig_connect(signal_t *, widget_t *, slot_t);46 extern void sig_disconnect(signal_t *, widget_t *, slot_t);44 struct gfx_glyph_pattern; 45 typedef struct gfx_glyph_pattern gfx_glyph_pattern_t; 47 46 48 extern void sig_send(signal_t *, void *); 49 extern void sig_post(signal_t *, void *, size_t); 47 /** Glyph metrics */ 48 typedef struct { 49 /** Advance */ 50 gfx_coord_t advance; 51 } gfx_glyph_metrics_t; 50 52 51 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.