@@ -12,26 +12,10 @@ auto make_bkd()
12
12
{
13
13
return port (image{ " dark-bkd.jpg" });
14
14
}
15
-
16
- std::string const text =
17
- " We are in the midst of an intergalatic condensing of beauty that will "
18
- " clear a path toward the planet itself. The quantum leap of rebirth is "
19
- " now happening worldwide. It is time to take healing to the next level. "
20
- " Soon there will be a deepening of chi the likes of which the infinite "
21
- " has never seen. The universe is approaching a tipping point. This "
22
- " vision quest never ends. Imagine a condensing of what could be. "
23
- " We can no longer afford to live with stagnation. Suffering is born "
24
- " in the gap where stardust has been excluded. You must take a stand "
25
- " against discontinuity.\n\n "
26
-
27
- " Without complexity, one cannot dream. Stagnation is the antithesis of "
28
- " life-force. Only a seeker of the galaxy may engender this wellspring of hope."
29
- " Yes, it is possible to eliminate the things that can destroy us, but not "
30
- " without wellbeing on our side. Where there is delusion, faith cannot thrive. "
31
- " You may be ruled by desire without realizing it. Do not let it eliminate "
32
- " the growth of your journey.\n\n "
33
-
34
- " --New-Age Bullshit Generator"
15
+ std::string const text1 =
16
+ " 一千条路…\n "
17
+ " 仁、义、礼、智、信…\n "
18
+ " 开放包容、视野宽广\n\n "
35
19
;
36
20
37
21
std::string const text2 =
@@ -60,13 +44,38 @@ std::string const text2 =
60
44
" reflect, you will enter into infinite freedom that transcends understanding.\n\n "
61
45
;
62
46
47
+ std::string const text3 =
48
+ " We are in the midst of an intergalatic condensing of beauty that will "
49
+ " clear a path toward the planet itself. The quantum leap of rebirth is "
50
+ " now happening worldwide. It is time to take healing to the next level. "
51
+ " Soon there will be a deepening of chi the likes of which the infinite "
52
+ " has never seen. The universe is approaching a tipping point. This "
53
+ " vision quest never ends. Imagine a condensing of what could be. "
54
+ " We can no longer afford to live with stagnation. Suffering is born "
55
+ " in the gap where stardust has been excluded. You must take a stand "
56
+ " against discontinuity.\n\n "
57
+
58
+ " Without complexity, one cannot dream. Stagnation is the antithesis of "
59
+ " life-force. Only a seeker of the galaxy may engender this wellspring of hope."
60
+ " Yes, it is possible to eliminate the things that can destroy us, but not "
61
+ " without wellbeing on our side. Where there is delusion, faith cannot thrive. "
62
+ " You may be ruled by desire without realizing it. Do not let it eliminate "
63
+ " the growth of your journey.\n\n "
64
+ ;
65
+
63
66
auto make_edit_box ()
64
67
{
68
+ // set the font of text box to 文泉驿 open source font: http://wenq.org/wqy2/index.cgi
69
+ char const * font_family = " 文泉驿微米黑, \" WenQuanYi Micro Hei\" " ;
70
+ auto text = text1+text2+text3;
71
+
65
72
return
66
73
scroller (
67
74
margin (
68
75
{ 20 , 20 , 20 , 20 },
69
- align_left_top (hsize (800 , basic_text_box (text2+text)))
76
+ align_left_top (hsize (800 ,
77
+ basic_text_box (text, font_descr{ font_family }
78
+ )))
70
79
)
71
80
);
72
81
}
0 commit comments