OSDN Git Service

fix: finder
[pettanr/pettanr.git] / app / assets / javascripts / models / speech.js.coffee
1 class Pettanr.Speech extends Peta.Element\r
2   \r
3   @singular: () ->\r
4     'Speech'\r
5   \r
6   @plural: () ->\r
7     'Speeches'\r
8   \r
9   defaults: {\r
10     id: null,\r
11     x: 0,\r
12     y: 0,\r
13     width: 100,\r
14     height: 100\r
15   } \r
16   \r
17   @trace_routes: () ->\r
18     {\r
19       speech_balloon: 'speech_balloon',\r
20       symbol: ['speech_balloon', 'speech_balloon_template', 'system_picture']\r
21     }\r
22   \r
23   pick: () ->\r
24     # \r
25     speech_balloon_template = @templates.speech_balloon_template\r
26     writing_format = @templates.writing_format\r
27     {\r
28       speech_balloon_template_id: speech_balloon_template.get('id'),\r
29       speech_balloon_template_module_name: speech_balloon_template.get('module_name'),\r
30       writing_format_id: writing_format.get('id'),\r
31       writing_format_module_name: writing_format.get('module_name'),\r
32     }\r
33   \r
34   @text_align_texts: () -> \r
35     ['left', 'left', 'right', 'center']\r
36   \r
37   text_align_text: () ->\r
38     Pettanr.Speech.text_align_texts()[@get('text_align')]\r
39   \r
40   scenario: () ->\r
41     @boosts('read')\r
42     @render(@escape('content'))\r
43   \r
44   plain_scenario: () ->\r
45     @escape('content')\r
46   \r
47   initialize: (attr, options) ->\r
48     super(attr, options)\r
49   \r