Markus Gans

Results 61 comments of Markus Gans

The library helps to create terminal applications. Here I have a small example of a shell integration: [cli/bash interface #90](https://github.com/gansm/finalcut/issues/90)

Hello Michael, I'm glad you like FINAL CUT 😊. First, a few remarks about your program: * `FScrollView` is a meta widget that has no predefined color. You have to...

I just noticed that you edited your post again. Nice that you found `FTextView` yourself, without a complete widget documentation.

Wow, I am very impressed with your screenshots. It looks very fancy. The problem with crashes could be caused by the fact that you did not restrict the shrinking of...

Hi Michael, I liked your idea with the colors in the text so much that I just implemented it in FTextView (dc1afbb + c5b75e5). Thank you for this great idea....

You are right. It doesn't work because the trailing whitespaces were not part of the FVTermBuffer object. I have changed this now (16b56a3) so that highlighting is also possible up...

Hi Michael, I just had the idea for `FTextView::FTextHighlight` to provide constructors without length specification in the interface. These constructors always highlight the whole text from the given position to...

I am back from my vacation and I hope my answer is not too late for you. Thank you for the screencast video. Your implementation looks very consistent and neat....

Hi Michael, I have now implemented your great hints in code (083ea79). `FLineEdit` now has the following new methods: ```cpp void inputText (const FString& input); void deletesCharacter(); void moveCursorToBegin(); void...

Hi Michael, thank you for the feedback. When I wrote the code, I had just worked with `scrollAreaForward()` and `scrollAreaReverse()`. So I probably confused the text move with the cursor...