12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using Terminal.Gui;
- namespace UICatalog.Scenarios;
- [ScenarioMetadata ("Clipping", "Used to test that things clip correctly")]
- [ScenarioCategory ("Tests")]
- [ScenarioCategory ("Drawing")]
- [ScenarioCategory ("Scrolling")]
- public class Clipping : Scenario
- {
- public override void Main ()
- {
- Application.Init ();
- var win = new Window { Title = GetQuitKeyAndName () };
- var label = new Label
- {
- X = 0, Y = 0, Text = "ScrollView (new Rectangle (3, 3, 50, 20)) with a 200, 100 GetContentSize ()..."
- };
- win.Add (label);
- var scrollView = new ScrollView { X = 3, Y = 3, Width = 50, Height = 20 };
- scrollView.ColorScheme = Colors.ColorSchemes ["Menu"];
- // BUGBUG: set_ContentSize is supposed to be `protected`.
- scrollView.SetContentSize (new (200, 100));
- //ContentOffset = Point.Empty,
- scrollView.AutoHideScrollBars = true;
- scrollView.ShowVerticalScrollIndicator = true;
- scrollView.ShowHorizontalScrollIndicator = true;
- var embedded1 = new View
- {
- Title = "1",
- X = 3,
- Y = 3,
- Width = Dim.Fill (3),
- Height = Dim.Fill (3),
- ColorScheme = Colors.ColorSchemes ["Dialog"],
- Id = "1",
- BorderStyle = LineStyle.Rounded,
- Arrangement = ViewArrangement.Movable
- };
- var embedded2 = new View
- {
- Title = "2",
- X = 3,
- Y = 3,
- Width = Dim.Fill (3),
- Height = Dim.Fill (3),
- ColorScheme = Colors.ColorSchemes ["Error"],
- Id = "2",
- BorderStyle = LineStyle.Rounded,
- Arrangement = ViewArrangement.Movable
- };
- embedded1.Add (embedded2);
- var embedded3 = new View
- {
- Title = "3",
- X = 3,
- Y = 3,
- Width = Dim.Fill (3),
- Height = Dim.Fill (3),
- ColorScheme = Colors.ColorSchemes ["TopLevel"],
- Id = "3",
- BorderStyle = LineStyle.Rounded,
- Arrangement = ViewArrangement.Movable
- };
- var testButton = new Button { X = 2, Y = 2, Text = "click me" };
- testButton.Accept += (s, e) => { MessageBox.Query (10, 5, "Test", "test message", "Ok"); };
- embedded3.Add (testButton);
- embedded2.Add (embedded3);
- scrollView.Add (embedded1);
- win.Add (scrollView);
- Application.Run (win);
- win.Dispose ();
- Application.Shutdown ();
- }
- }
|