aboutsummaryrefslogtreecommitdiff
path: root/helix-term/test.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-11 04:16:50 +0000
committerBlaž Hrastnik2021-03-16 14:03:29 +0000
commit857763c52e69de5c3b5a8ef62b78d5ca8cbe3727 (patch)
treed3def636f4153a3ff15dbd963eaa2b575b9e9fd9 /helix-term/test.rs
parentcf71625d4e879ef2e453a33b2eba41bc23174aa2 (diff)
term: Remove stray files.
Diffstat (limited to 'helix-term/test.rs')
-rw-r--r--helix-term/test.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/helix-term/test.rs b/helix-term/test.rs
deleted file mode 100644
index 713c23d0..00000000
--- a/helix-term/test.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-pub struct TextArea {
- properties: Properties,
- frame: Rect,
-}
-
-impl Component for TextArea {
- type Message = ();
- type Properties = Properties;
-
- fn create(properties: Self::Properties, frame: Rect, _link: ComponentLink<Self>) -> Self {
- TextArea { properties, frame }
- }
-
- fn change<'a>(&'a mut self, properties: Self::Properties) -> ShouldRender {
- let a: &'static str = "ase";
- let q = 2u8;
- let q = 2 as u16;
- Some(0);
- true;
- self.properties = properties;
- ShouldRender::Yes
- }
-
- fn resize(&mut self, frame: Rect) -> ShouldRender {
- println!("hello world! \" test");
- self.frame = frame;
- ShouldRender::Yes
- }
-
- fn view(&self) -> Layout {
- let mut canvas = Canvas::new(self.frame.size);
- canvas.clear(self.properties.theme.text);
- self.draw_text(&mut canvas);
- canvas.into()
- }
-}