pine-builtins 0.2.0

Built-in functions and namespaces for the Pine Script interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
use pine_builtin_macro::BuiltinFunction;
use pine_core::{BoxOutput, Color, PineBox, PineOutput};
use pine_interpreter::{Interpreter, RuntimeError, Value};
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;

/// box.new() - Creates a new box object
#[derive(BuiltinFunction)]
#[builtin(name = "box.new")]
struct BoxNew<O: PineOutput + BoxOutput> {
    left: Value<O>,
    top: Value<O>,
    right: Value<O>,
    bottom: Value<O>,
    #[arg(default = None)]
    border_color: Option<Color>,
    #[arg(default = 1.0)]
    border_width: f64,
    #[arg(default = "solid")]
    border_style: String,
    #[arg(default = "none")]
    extend: String,
    #[arg(default = "bar_index")]
    xloc: String,
    #[arg(default = None)]
    bgcolor: Option<Color>,
    #[arg(default = "")]
    text: String,
    #[arg(default = 0.0)]
    text_size: f64,
    #[arg(default = None)]
    text_color: Option<Color>,
    #[arg(default = "center")]
    text_halign: String,
    #[arg(default = "center")]
    text_valign: String,
    #[arg(default = "none")]
    text_wrap: String,
    #[arg(default = "default")]
    text_font_family: String,
}

impl<O: PineOutput + BoxOutput> BoxNew<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        // Create a box struct
        let box_obj = PineBox {
            left: self.left.as_number()?,
            top: self.top.as_number()?,
            right: self.right.as_number()?,
            bottom: self.bottom.as_number()?,
            border_color: self.border_color.clone(),
            border_width: self.border_width,
            border_style: self.border_style.clone(),
            extend: self.extend.clone(),
            xloc: self.xloc.clone(),
            bgcolor: self.bgcolor.clone(),
            text: self.text.clone(),
            text_size: self.text_size,
            text_color: self.text_color.clone(),
            text_halign: self.text_halign.clone(),
            text_valign: self.text_valign.clone(),
            text_wrap: self.text_wrap.clone(),
            text_font_family: self.text_font_family.clone(),
        };

        // Add to interpreter and get ID
        let id = ctx.output.add_box(box_obj);

        // Return the ID as a number
        Ok(Value::Number(id as f64))
    }
}

/// box.set_left() - Sets the left coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_left")]
struct BoxSetLeft<O: PineOutput + BoxOutput> {
    id: f64,
    left: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetLeft<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.left = self.left.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_top() - Sets the top coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_top")]
struct BoxSetTop<O: PineOutput + BoxOutput> {
    id: f64,
    top: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetTop<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.top = self.top.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_right() - Sets the right coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_right")]
struct BoxSetRight<O: PineOutput + BoxOutput> {
    id: f64,
    right: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetRight<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.right = self.right.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_bottom() - Sets the bottom coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_bottom")]
struct BoxSetBottom<O: PineOutput + BoxOutput> {
    id: f64,
    bottom: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetBottom<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.bottom = self.bottom.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_lefttop() - Sets the left and top coordinates
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_lefttop")]
struct BoxSetLefttop<O: PineOutput + BoxOutput> {
    id: f64,
    left: Value<O>,
    top: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetLefttop<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.left = self.left.as_number()?;
        box_obj.top = self.top.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_rightbottom() - Sets the right and bottom coordinates
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_rightbottom")]
struct BoxSetRightbottom<O: PineOutput + BoxOutput> {
    id: f64,
    right: Value<O>,
    bottom: Value<O>,
}

impl<O: PineOutput + BoxOutput> BoxSetRightbottom<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.right = self.right.as_number()?;
        box_obj.bottom = self.bottom.as_number()?;
        Ok(Value::Na)
    }
}

/// box.set_border_color() - Sets the border color
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_border_color", output = BoxOutput)]
struct BoxSetBorderColor {
    id: f64,
    color: Color,
}

impl BoxSetBorderColor {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.border_color = Some(self.color.clone());
        Ok(Value::Na)
    }
}

/// box.set_border_width() - Sets the border width
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_border_width", output = BoxOutput)]
struct BoxSetBorderWidth {
    id: f64,
    width: f64,
}

impl BoxSetBorderWidth {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.border_width = self.width;
        Ok(Value::Na)
    }
}

/// box.set_border_style() - Sets the border style
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_border_style", output = BoxOutput)]
struct BoxSetBorderStyle {
    id: f64,
    style: String,
}

impl BoxSetBorderStyle {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.border_style = self.style.clone();
        Ok(Value::Na)
    }
}

/// box.set_extend() - Sets the extend property
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_extend", output = BoxOutput)]
struct BoxSetExtend {
    id: f64,
    extend: String,
}

impl BoxSetExtend {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.extend = self.extend.clone();
        Ok(Value::Na)
    }
}

/// box.set_bgcolor() - Sets the background color
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_bgcolor", output = BoxOutput)]
struct BoxSetBgcolor {
    id: f64,
    color: Color,
}

impl BoxSetBgcolor {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.bgcolor = Some(self.color.clone());
        Ok(Value::Na)
    }
}

/// box.set_text() - Sets the text
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text", output = BoxOutput)]
struct BoxSetText {
    id: f64,
    text: String,
}

impl BoxSetText {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text = self.text.clone();
        Ok(Value::Na)
    }
}

/// box.set_text_color() - Sets the text color
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_color", output = BoxOutput)]
struct BoxSetTextColor {
    id: f64,
    color: Color,
}

impl BoxSetTextColor {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_color = Some(self.color.clone());
        Ok(Value::Na)
    }
}

/// box.set_text_size() - Sets the text size
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_size", output = BoxOutput)]
struct BoxSetTextSize {
    id: f64,
    size: f64,
}

impl BoxSetTextSize {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_size = self.size;
        Ok(Value::Na)
    }
}

/// box.set_text_halign() - Sets the text horizontal alignment
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_halign", output = BoxOutput)]
struct BoxSetTextHalign {
    id: f64,
    halign: String,
}

impl BoxSetTextHalign {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_halign = self.halign.clone();
        Ok(Value::Na)
    }
}

/// box.set_text_valign() - Sets the text vertical alignment
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_valign", output = BoxOutput)]
struct BoxSetTextValign {
    id: f64,
    valign: String,
}

impl BoxSetTextValign {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_valign = self.valign.clone();
        Ok(Value::Na)
    }
}

/// box.set_text_wrap() - Sets the text wrap mode
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_wrap", output = BoxOutput)]
struct BoxSetTextWrap {
    id: f64,
    wrap: String,
}

impl BoxSetTextWrap {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_wrap = self.wrap.clone();
        Ok(Value::Na)
    }
}

/// box.set_text_font_family() - Sets the text font family
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_text_font_family", output = BoxOutput)]
struct BoxSetTextFontFamily {
    id: f64,
    font_family: String,
}

impl BoxSetTextFontFamily {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.text_font_family = self.font_family.clone();
        Ok(Value::Na)
    }
}

/// box.set_xloc() - Sets the xloc mode
#[derive(BuiltinFunction)]
#[builtin(name = "box.set_xloc")]
struct BoxSetXloc<O: PineOutput + BoxOutput> {
    id: f64,
    left: Value<O>,
    right: Value<O>,
    xloc: String,
}

impl<O: PineOutput + BoxOutput> BoxSetXloc<O> {
    fn execute(&self, ctx: &mut Interpreter<O>) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        box_obj.left = self.left.as_number()?;
        box_obj.right = self.right.as_number()?;
        box_obj.xloc = self.xloc.clone();
        Ok(Value::Na)
    }
}

/// box.get_left() - Gets the left coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.get_left", output = BoxOutput)]
struct BoxGetLeft {
    id: f64,
}

impl BoxGetLeft {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        Ok(Value::Number(box_obj.left))
    }
}

/// box.get_top() - Gets the top coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.get_top", output = BoxOutput)]
struct BoxGetTop {
    id: f64,
}

impl BoxGetTop {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        Ok(Value::Number(box_obj.top))
    }
}

/// box.get_right() - Gets the right coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.get_right", output = BoxOutput)]
struct BoxGetRight {
    id: f64,
}

impl BoxGetRight {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        Ok(Value::Number(box_obj.right))
    }
}

/// box.get_bottom() - Gets the bottom coordinate
#[derive(BuiltinFunction)]
#[builtin(name = "box.get_bottom", output = BoxOutput)]
struct BoxGetBottom {
    id: f64,
}

impl BoxGetBottom {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        Ok(Value::Number(box_obj.bottom))
    }
}

/// box.delete() - Deletes a box
#[derive(BuiltinFunction)]
#[builtin(name = "box.delete", output = BoxOutput)]
struct BoxDelete {
    id: f64,
}

impl BoxDelete {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        ctx.output.delete_box(id);
        Ok(Value::Na)
    }
}

/// box.copy() - Copies a box
#[derive(BuiltinFunction)]
#[builtin(name = "box.copy", output = BoxOutput)]
struct BoxCopy {
    id: f64,
}

impl BoxCopy {
    fn execute<O: PineOutput + BoxOutput>(
        &self,
        ctx: &mut Interpreter<O>,
    ) -> Result<Value<O>, RuntimeError> {
        let id = self.id as usize;
        let box_obj = ctx
            .output
            .get_box_mut(id)
            .ok_or_else(|| RuntimeError::TypeError(format!("Box with id {} not found", id)))?;
        let copied_box = box_obj.clone();
        let new_id = ctx.output.add_box(copied_box);
        Ok(Value::Number(new_id as f64))
    }
}

/// Register the box namespace with all functions
pub fn register<O: PineOutput + BoxOutput>() -> Value<O> {
    let mut members: HashMap<String, Value<O>> = HashMap::new();

    members.insert("new".to_string(), BoxNew::<O>::builtin_value());
    members.insert("set_left".to_string(), BoxSetLeft::<O>::builtin_value());
    members.insert("set_top".to_string(), BoxSetTop::<O>::builtin_value());
    members.insert("set_right".to_string(), BoxSetRight::<O>::builtin_value());
    members.insert("set_bottom".to_string(), BoxSetBottom::<O>::builtin_value());
    members.insert(
        "set_lefttop".to_string(),
        BoxSetLefttop::<O>::builtin_value(),
    );
    members.insert(
        "set_rightbottom".to_string(),
        BoxSetRightbottom::<O>::builtin_value(),
    );
    members.insert(
        "set_border_color".to_string(),
        BoxSetBorderColor::builtin_value::<O>(),
    );
    members.insert(
        "set_border_width".to_string(),
        BoxSetBorderWidth::builtin_value::<O>(),
    );
    members.insert(
        "set_border_style".to_string(),
        BoxSetBorderStyle::builtin_value::<O>(),
    );
    members.insert("set_extend".to_string(), BoxSetExtend::builtin_value::<O>());
    members.insert(
        "set_bgcolor".to_string(),
        BoxSetBgcolor::builtin_value::<O>(),
    );
    members.insert("set_text".to_string(), BoxSetText::builtin_value::<O>());
    members.insert(
        "set_text_color".to_string(),
        BoxSetTextColor::builtin_value::<O>(),
    );
    members.insert(
        "set_text_size".to_string(),
        BoxSetTextSize::builtin_value::<O>(),
    );
    members.insert(
        "set_text_halign".to_string(),
        BoxSetTextHalign::builtin_value::<O>(),
    );
    members.insert(
        "set_text_valign".to_string(),
        BoxSetTextValign::builtin_value::<O>(),
    );
    members.insert(
        "set_text_wrap".to_string(),
        BoxSetTextWrap::builtin_value::<O>(),
    );
    members.insert(
        "set_text_font_family".to_string(),
        BoxSetTextFontFamily::builtin_value::<O>(),
    );
    members.insert("set_xloc".to_string(), BoxSetXloc::<O>::builtin_value());
    members.insert("get_left".to_string(), BoxGetLeft::builtin_value::<O>());
    members.insert("get_top".to_string(), BoxGetTop::builtin_value::<O>());
    members.insert("get_right".to_string(), BoxGetRight::builtin_value::<O>());
    members.insert("get_bottom".to_string(), BoxGetBottom::builtin_value::<O>());
    members.insert("delete".to_string(), BoxDelete::builtin_value::<O>());
    members.insert("copy".to_string(), BoxCopy::builtin_value::<O>());

    Value::Object {
        type_name: "box".to_string(),
        fields: Rc::new(RefCell::new(members)),
        call: None,
    }
}