Allen Dang

Results 166 comments of Allen Dang

@Naatan Current InputTextMultiline doesn't support to hightlight anything, and there is no easy way to implement it for now.

Sure, I'll add one later today.

Oh, I cannot add it into this repo cause using imgui.InputTextCallback will add reference of imgui into the go.mod. The usage should be very straight forward, define a callback function...

@gucio321 Can you explain more detail about the use case you are trying to archive?

@gucio321 Generally speaking, InputTextCallback is used to `filter` the input string. Here is the reference from C++. ```cpp // Return 0 (pass) if the character is 'i' or 'm' or...

@HACKERALERT Do you have time to take a look at this? I'm not familiar with windows's cpp compilers...

@AllenDang Use tableRow as the first line in table and freeze it, then you get a fully customizable column header cell.

@eelcovb Anything you need for the column, you could archive them by using context menu with selectable widget. And the sort order is just a string prefix the selectable content.

I'm thinking about to refine the whole concept of Popup. This is the most tricky part of imgui from my point of view. Mostly the rule 'popup could only be...

@gucio321 The popup should be defined at very certain position, rather than random layout in random widget hierarchy. I mean, for example, we have a method in window widget named...