Home
last modified time | relevance | path

Searched refs:fonts (Results 1 – 25 of 45) sorted by relevance

12

/GUIX-v6.2.1/guix_studio/
Drich_text_view_sercive_provider.cpp131 GX_RICH_TEXT_FONTS fonts; in CreateNewInstance() local
133 fonts.gx_rich_text_fonts_normal_id = GX_FONT_ID_DEFAULT; in CreateNewInstance()
134 fonts.gx_rich_text_fonts_bold_id = GX_FONT_ID_DEFAULT; in CreateNewInstance()
135 fonts.gx_rich_text_fonts_italic_id = GX_FONT_ID_DEFAULT; in CreateNewInstance()
136 fonts.gx_rich_text_fonts_bold_italic_id = GX_FONT_ID_DEFAULT; in CreateNewInstance()
138 gx_rich_text_view_create(view, "rich_text_view", parent, string_id, &fonts, in CreateNewInstance()
147 info->font_id[RICH_TEXT_FONT_NORMAL] = fonts.gx_rich_text_fonts_normal_id; in CreateNewInstance()
148 info->font_id[RICH_TEXT_FONT_BOLD] = fonts.gx_rich_text_fonts_bold_id; in CreateNewInstance()
149 info->font_id[RICH_TEXT_FONT_ITALIC] = fonts.gx_rich_text_fonts_italic_id; in CreateNewInstance()
150 info->font_id[RICH_TEXT_FONT_BOLD_ITALIC] = fonts.gx_rich_text_fonts_bold_italic_id; in CreateNewInstance()
[all …]
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_rich_text_view_no_output.c64 GX_RICH_TEXT_FONTS fonts; in control_thread_entry() local
71 memset(&fonts, 0, sizeof(GX_RICH_TEXT_FONTS)); in control_thread_entry()
75 status = gx_rich_text_view_create(GX_NULL, "", GX_NULL, 0, &fonts, 0, 0, &size); in control_thread_entry()
78 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, GX_NULL); in control_thread_entry()
84 status = _gxe_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, &size, 0); in control_thread_entry()
87 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, &size); in control_thread_entry()
90 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, &size); in control_thread_entry()
100 status = gx_rich_text_view_fonts_set(&rich_view, &fonts); in control_thread_entry()
Dvalidation_guix_rich_text_view.c121 GX_RICH_TEXT_FONTS fonts; in control_thread_entry() local
131 fonts.gx_rich_text_fonts_normal_id = GX_FONT_ID_CJK; in control_thread_entry()
132 fonts.gx_rich_text_fonts_bold_id = GX_FONT_ID_CJK_BOLD; in control_thread_entry()
133 fonts.gx_rich_text_fonts_italic_id = GX_FONT_ID_CJK_ITALIC; in control_thread_entry()
134 fonts.gx_rich_text_fonts_bold_italic_id = GX_FONT_ID_CJK_BOLD_ITALIC; in control_thread_entry()
135 gx_rich_text_view_fonts_set(rich_view, &fonts); in control_thread_entry()
Dvalidation_guix_rich_text_view_font.c81 GX_RICH_TEXT_FONTS fonts; in control_thread_entry() local
96 memset(&fonts, 0, sizeof(GX_RICH_TEXT_FONTS)); in control_thread_entry()
98 gx_rich_text_view_fonts_set(rich_view, &fonts); in control_thread_entry()
104 fonts.gx_rich_text_fonts_normal_id = 1000; in control_thread_entry()
105 gx_rich_text_view_fonts_set(rich_view, &fonts); in control_thread_entry()
Dvalidation_guix_rich_text_view_scroll.c69 GX_RICH_TEXT_FONTS fonts; in control_thread_entry() local
113 memset(&fonts, 0, sizeof(GX_RICH_TEXT_FONTS)); in control_thread_entry()
114 fonts.gx_rich_text_fonts_normal_id = 1000; in control_thread_entry()
115 gx_rich_text_view_fonts_set(rich_view, &fonts); in control_thread_entry()
/GUIX-v6.2.1/common/inc/
Dgx_rich_text_view.h71 GX_RICH_TEXT_FONTS *fonts,
77 UINT _gx_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *view, GX_RICH_TEXT_FONTS *fonts);
88 GX_RICH_TEXT_FONTS *fonts,
93 UINT _gxe_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *view, GX_RICH_TEXT_FONTS *fonts);
Dgx_multi_line_text_view.h106 GX_RICH_TEXT_FONTS *fonts,
111 UINT _gxe_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *rich_view, GX_RICH_TEXT_FONTS *fonts);
/GUIX-v6.2.1/common/src/
Dgxe_rich_text_view_fonts_set.c73 UINT _gxe_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *rich_view, GX_RICH_TEXT_FONTS *fonts) in _gxe_rich_text_view_fonts_set() argument
81 if ((rich_view == GX_NULL) || (fonts == GX_NULL)) in _gxe_rich_text_view_fonts_set()
86 status = _gx_rich_text_view_fonts_set(rich_view, fonts); in _gxe_rich_text_view_fonts_set()
Dgxe_rich_text_view_create.c85 GX_RICH_TEXT_FONTS *fonts, in _gxe_rich_text_view_create() argument
97 if ((rich_view == GX_NULL) || (size == GX_NULL) || (fonts == GX_NULL)) in _gxe_rich_text_view_create()
115 status = _gx_rich_text_view_create(rich_view, name, parent, text_id, fonts, style, id, size); in _gxe_rich_text_view_create()
Dgx_rich_text_view_fonts_set.c69 UINT _gx_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *text_view, GX_RICH_TEXT_FONTS *fonts) in _gx_rich_text_view_fonts_set() argument
72 text_view -> gx_rich_text_view_fonts = *fonts; in _gx_rich_text_view_fonts_set()
Dgx_rich_text_view_create.c82 GX_RICH_TEXT_FONTS *fonts, in _gx_rich_text_view_create() argument
94 text_view -> gx_rich_text_view_fonts = *fonts; in _gx_rich_text_view_create()
/GUIX-v6.2.1/test/guix_studio_test/fonts/
DVarelaRound-Regular-readme.txt3 https://www.fontsquirrel.com/fonts/varela-round
19 …linguistic communities, and to provide a free and open framework in which fonts may be shared and …
21fonts to be used, studied, modified and redistributed freely as long as they are not sold by thems…
45 … and must not be distributed under any other license. The requirement for fonts to remain under th…
DItalica Vetus 1-201-readme.txt17 open framework in which fonts may be shared and improved in partnership
20 The OFL allows the licensed fonts to be used, studied, modified and
22 fonts, including any derivative works, can be bundled, embedded,
24 names are not used by derivative works. The fonts and derivatives,
26 requirement for fonts to remain under this license does not apply
27 to any document created using the fonts or their derivatives.
77 distributed under any other license. The requirement for fonts to
DThabit-readme.txt38 open framework in which fonts may be shared and improved in partnership
41 The OFL allows the licensed fonts to be used, studied, modified and
43 fonts, including any derivative works, can be bundled, embedded,
45 names are not used by derivative works. The fonts and derivatives,
47 requirement for fonts to remain under this license does not apply
48 to any document created using the fonts or their derivatives.
98 distributed under any other license. The requirement for fonts to
Dvera_license.txt5 a copy of the fonts accompanying this license (�Fonts�) and associated
19 Fonts, only if the fonts are renamed to names not containing either
45 fonts at gnome dot org.
/GUIX-v6.2.1/test/example_internal/common_resources/fonts/
DVarelaRound-Regular-readme.txt3 https://www.fontsquirrel.com/fonts/varela-round
19 …linguistic communities, and to provide a free and open framework in which fonts may be shared and …
21fonts to be used, studied, modified and redistributed freely as long as they are not sold by thems…
45 … and must not be distributed under any other license. The requirement for fonts to remain under th…
DItalica Vetus 1-201-readme.txt17 open framework in which fonts may be shared and improved in partnership
20 The OFL allows the licensed fonts to be used, studied, modified and
22 fonts, including any derivative works, can be bundled, embedded,
24 names are not used by derivative works. The fonts and derivatives,
26 requirement for fonts to remain under this license does not apply
27 to any document created using the fonts or their derivatives.
77 distributed under any other license. The requirement for fonts to
DThabit-readme.txt38 open framework in which fonts may be shared and improved in partnership
41 The OFL allows the licensed fonts to be used, studied, modified and
43 fonts, including any derivative works, can be bundled, embedded,
45 names are not used by derivative works. The fonts and derivatives,
47 requirement for fonts to remain under this license does not apply
48 to any document created using the fonts or their derivatives.
98 distributed under any other license. The requirement for fonts to
DEuropeanTypewriter-readme.txt8 To our knowledge, all fonts available on this site are free for distribution. Should you encounter …
DTH-Fahkwang-Regular-readme.txt3 https://github.com/lannainnovation/thai-font-collection/tree/master/downloadable-free-thai-fonts
/GUIX-v6.2.1/fonts/
DNotoSansCJKsc-Regular_license.txt19 provide a free and open framework in which fonts may be shared and
22 The OFL allows the licensed fonts to be used, studied, modified and
24 fonts, including any derivative works, can be bundled, embedded,
26 names are not used by derivative works. The fonts and derivatives,
28 requirement for fonts to remain under this license does not apply to
29 any document created using the fonts or their derivatives.
79 distributed under any other license. The requirement for fonts to
/GUIX-v6.2.1/tutorials/demo_guix_runtime_bidi_text/fonts/
DThabit-readme.txt38 open framework in which fonts may be shared and improved in partnership
41 The OFL allows the licensed fonts to be used, studied, modified and
43 fonts, including any derivative works, can be bundled, embedded,
45 names are not used by derivative works. The fonts and derivatives,
47 requirement for fonts to remain under this license does not apply
48 to any document created using the fonts or their derivatives.
98 distributed under any other license. The requirement for fonts to
/GUIX-v6.2.1/fonts/verasans/
Dvera_license.txt5 a copy of the fonts accompanying this license ("Fonts") and associated
19 Fonts, only if the fonts are renamed to names not containing either
45 fonts at gnome dot org.
/GUIX-v6.2.1/fonts/veraserif/
Dvera_license.txt5 a copy of the fonts accompanying this license (�Fonts�) and associated
19 Fonts, only if the fonts are renamed to names not containing either
45 fonts at gnome dot org.
/GUIX-v6.2.1/test/example_internal/rich_text_view_16bpp/
Drich_text_view_16bpp_specifications.h135 GX_RICH_TEXT_FONTS *fonts; member

12