| 38 | self.application_mode = application_mode |
| 39 | |
| 40 | def __rich_console__( |
| 41 | self, console: "Console", options: "ConsoleOptions" |
| 42 | ) -> "RenderResult": |
| 43 | width, height = options.size |
| 44 | style = console.get_style(self.style) if self.style else None |
| 45 | render_options = options.update(width=width, height=height) |
| 46 | lines = console.render_lines( |
| 47 | self.renderable or "", render_options, style=style, pad=True |
| 48 | ) |
| 49 | lines = Segment.set_shape(lines, width, height, style=style) |
| 50 | new_line = Segment("\n\r") if self.application_mode else Segment.line() |
| 51 | for last, line in loop_last(lines): |
| 52 | yield from line |
| 53 | if not last: |
| 54 | yield new_line |