| /GUIX-v6.2.1/guix_studio/ |
| D | rich_text_view_sercive_provider.cpp | 131 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/ |
| D | validation_guix_rich_text_view_no_output.c | 64 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()
|
| D | validation_guix_rich_text_view.c | 121 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()
|
| D | validation_guix_rich_text_view_font.c | 81 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()
|
| D | validation_guix_rich_text_view_scroll.c | 69 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/ |
| D | gx_rich_text_view.h | 71 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);
|
| D | gx_multi_line_text_view.h | 106 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/ |
| D | gxe_rich_text_view_fonts_set.c | 73 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()
|
| D | gxe_rich_text_view_create.c | 85 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()
|
| D | gx_rich_text_view_fonts_set.c | 69 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()
|
| D | gx_rich_text_view_create.c | 82 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/ |
| D | VarelaRound-Regular-readme.txt | 3 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 … 21 …fonts 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…
|
| D | Italica Vetus 1-201-readme.txt | 17 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
|
| D | Thabit-readme.txt | 38 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
|
| D | vera_license.txt | 5 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/ |
| D | VarelaRound-Regular-readme.txt | 3 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 … 21 …fonts 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…
|
| D | Italica Vetus 1-201-readme.txt | 17 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
|
| D | Thabit-readme.txt | 38 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
|
| D | EuropeanTypewriter-readme.txt | 8 To our knowledge, all fonts available on this site are free for distribution. Should you encounter …
|
| D | TH-Fahkwang-Regular-readme.txt | 3 https://github.com/lannainnovation/thai-font-collection/tree/master/downloadable-free-thai-fonts
|
| /GUIX-v6.2.1/fonts/ |
| D | NotoSansCJKsc-Regular_license.txt | 19 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/ |
| D | Thabit-readme.txt | 38 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/ |
| D | vera_license.txt | 5 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/ |
| D | vera_license.txt | 5 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/ |
| D | rich_text_view_16bpp_specifications.h | 135 GX_RICH_TEXT_FONTS *fonts; member
|