1
2
3
4
5
6
7
8
9 package tsukuba_bunko.peko.canvas;
10
11
12 /***
13 * キャンバスが使用するリソースのリソース ID 定義集です。
14 * @author $Author: ppoi $
15 * @version $Revision: 1.1 $
16 */
17 public class ResourceIDs {
18
19 /***
20 * キャンバスサイズ:"peko.canvas.canvas-size"
21 */
22 public static final String CANVAS_SIZE = "peko.canvas.canvas-size";
23
24 /***
25 * 読み返す最大のページ数:"peko.canvas.text-history"
26 */
27 public static final String CANVAS_PAGE_HISTORY = "peko.canvas.text-history";
28
29 /***
30 * SelectCanvas での、選択肢ボタンの基準位置:"peko.canvas.select.align"
31 */
32 public static final String SELECT_ALIGN = "peko.canvas.select.align";
33
34 /***
35 * SelectCanvas での、選択肢ボタンの垂直方向基準位置:"peko.canvas.select.vertical-align"
36 */
37 public static final String SELECT_VERTICAL_ALIGN = "peko.canvas.select.vertical-align";
38
39 /***
40 * SelectCanvas での、選択肢の列数:"peko.canvas.select.columns"
41 */
42 public static final String SELECT_COLUMNS = "peko.canvas.select.columns";
43
44 /***
45 * SelectCanvas での、列間:"peko.canvas.select.span.column"
46 */
47 public static final String SELECT_SPAN_COLUMN = "peko.canvas.select.span.column";
48
49 /***
50 * SelectCanvas での、列間:"peko.canvas.select.span.row"
51 */
52 public static final String SELECT_SPAN_ROW = "peko.canvas.select.span.row";
53
54 /***
55 * SelectCanvas での、選択肢領域の境界線とルートキャンバスの枠との間:"peko.canvas.title.span.bound"
56 */
57 public static final String SELECT_SPAN_BOUND = "peko.canvas.select.span.bound";
58
59 /***
60 * SelectCanvas での、SelectItemButton の幅:"peko.canvas.select.button.width"
61 */
62 public static final String SELECT_BUTTON_WIDTH = "peko.canvas.select.button.width";
63
64 /***
65 * SelectCanvas での、SelectItemButton 背景色:"peko.canvas.select.button.background.color"
66 */
67 public static final String SELECT_BUTTON_BACKGROUND_COLOR = "peko.canvas.select.button.background.color";
68
69 /***
70 * SelectCanvas での、SelectItemButton の背景透明度:"peko.canvas.select.button.background.transparency"
71 */
72 public static final String SELECT_BUTTON_BACKGROUND_TRANSPARENCY = "peko.canvas.select.button.background.transparency";
73
74 /***
75 * SelectCanvas での、SelectItemButton の前景色(選択時):"peko.canvas.select.button.foreground.selected"
76 */
77 public static final String SELECT_BUTTON_FOREGROUND_SELECTED = "peko.canvas.select.button.foreground.selected";
78
79 /***
80 * SelectCanvas での、SelectItemButton の前景色(非選択時):"peko.canvas.select.button.foreground.unselected"
81 */
82 public static final String SELECT_BUTTON_FOREGROUND_UNSELECTED = "peko.canvas.select.button.foreground.unselected";
83
84 /***
85 * SelectCanvas での、SelectItemButton の影の色:"peko.canvas.select.button.foreground.shadow"
86 */
87 public static final String SELECT_BUTTON_FOREGROUND_SHADOW = "peko.canvas.select.button.foreground.shadow";
88
89 /***
90 * SelectCanvas での、SelectItemButton のフォント:"peko.canvas.select.button.font"
91 */
92 public static final String SELECT_BUTTON_FONT = "peko.canvas.select.button.font";
93
94
95
96 /***
97 * タイトル画面での、選択肢ボタンの基準位置:"game-config.title.style.align"
98 */
99 public static final String TITLE_MENU_ALIGN = "peko.title.style.align";
100
101 /***
102 * タイトル画面での、選択肢ボタンの垂直方向基準位置:"peko.title.style.vertical-align"
103 */
104 public static final String TITLE_MENU_VERTICAL_ALIGN = "peko.title.style.vertical-align";
105
106 /***
107 * タイトル画面での、選択肢の列数:"peko.title.style.columns"
108 */
109 public static final String TITLE_MENU_COLUMNS = "peko.title.style.columns";
110
111 /***
112 * タイトル画面での、列間:"peko.title.style.span.column"
113 */
114 public static final String TITLE_MENU_SPAN_COLUMN = "peko.title.style.span.column";
115
116 /***
117 * タイトル画面での、列間:"peko.canvas.tile.span.row"
118 */
119 public static final String TITLE_MENU_SPAN_ROW = "peko.title.style.span.row";
120
121 /***
122 * タイトル画面での、選択肢領域の境界線とルートキャンバスの枠との間:"peko.title.style.span.bound"
123 */
124 public static final String TITLE_MENU_SPAN_BOUND = "peko.title.style.span.bound";
125
126 /***
127 * タイトル画面での、タイトルメニューボタンの幅:"peko.title.style.button.width"
128 */
129 public static final String TITLE_MENU_BUTTON_WIDTH = "peko.title.style.button.width";
130
131 /***
132 * タイトル画面での、タイトルメニューボタン背景色:"peko.title.style.button.background.color"
133 */
134 public static final String TITLE_MENU_BUTTON_BACKGROUND_COLOR = "peko.title.style.button.background.color";
135
136 /***
137 * タイトル画面での、タイトルメニューボタンの背景透明度:"peko.title.style.button.background.transparency"
138 */
139 public static final String TITLE_MENU_BUTTON_BACKGROUND_TRANSPARENCY = "peko.title.style.button.background.transparency";
140
141 /***
142 * タイトル画面での、タイトルメニューボタンの前景色(選択時):"peko.title.style.button.foreground.selected"
143 */
144 public static final String TITLE_MENU_BUTTON_FOREGROUND_SELECTED = "peko.title.style.button.foreground.selected";
145
146 /***
147 * タイトル画面での、タイトルメニューボタンの前景色(非選択時):"peko.title.style.button.foreground.unselected"
148 */
149 public static final String TITLE_MENU_BUTTON_FOREGROUND_UNSELECTED = "peko.title.style.button.foreground.unselected";
150
151 /***
152 * タイトル画面での、タイトルメニューボタンの影の色:"peko.title.style.button.foreground.shadow"
153 */
154 public static final String TITLE_MENU_BUTTON_FOREGROUND_SHADOW = "peko.title.style.button.foreground.shadow";
155
156 /***
157 * タイトル画面での、タイトルメニューボタンのフォント:"peko.title.style.button.font"
158 */
159 public static final String TITLE_MENU_BUTTON_FONT = "peko.title.style.button.font";
160
161 /***
162 * タイトル画面での、「最初からスタート」ボタンのキャプション:"peko.title.caption.start"
163 */
164 public static final String TITLE_MENU_BUTTON_CAPTION_START = "peko.title.caption.start";
165
166 /***
167 * タイトル画面での、「続きからスタート」ボタンのキャプション:"peko.title.caption.resume"
168 */
169 public static final String TITLE_MENU_BUTTON_CAPTION_RESUME = "peko.title.caption.resume";
170
171 /***
172 * タイトル画面での、「ゲームをやめる」ボタンのキャプション:"peko.title.caption.exit"
173 */
174 public static final String TITLE_MENU_BUTTON_CAPTION_EXIT = "peko.title.caption.exit";
175
176
177 /***
178 * タイトル画面での、タイトル画面画像
179 */
180 public static final String TITLE_IMAGE = "peko.title.image";
181
182 /***
183 * タイトル画面での、BGM
184 */
185 public static final String OPENING_BGM = "peko.title.bgm";
186 }