Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve visibility of code, kbd and clickable references in editor help #62710

Conversation

Calinou
Copy link
Member

@Calinou Calinou commented Jul 4, 2022

This adds a background color for inline code, code blocks, keyboard shortcuts and clickable references (such as [member something]).

See godotengine/godot-proposals#4804.

Note: Not cherry-pickable to 3.x unless [bgcolor] is backported.

Preview

All descriptions are from the GraphNode class.

image

2022-07-04_17 13 49

2022-07-04_17 14 13

2022-07-04_17 14 26

@akien-mga
Copy link
Member

It would be great if the [codeblock] background could span the whole block and not be line by line. Otherwise it looks like inline code and is not as readable.

@Calinou
Copy link
Member Author

Calinou commented Jul 4, 2022

It would be great if the [codeblock] background could span the whole block and not be line by line. Otherwise it looks like inline code and is not as readable.

Unfortunately, this can't be done unless we add [fgcolorblock] and [bgcolorblock] tags that always span the entire line. While godotengine/godot-proposals#4808 could bridge the gaps between lines, individual lines would retain their own width for the background color.

@bruvzg Any ideas on how to tackle this (ideally without adding new tags)?

@akien-mga
Copy link
Member

Maybe we can use tables with a single cell for codeblocks? Table cells seem to support background colors.

This is some text.
Here's code:

[table=1]
[cell bg=#bbbbbb,]func _ready():
    pass[/cell]
[/table]

image

Not sure if we have documentation for the table/cell syntax, I read the RTL code to figure it out. Valid options for cell are bg=color1,color2 (I guess color1/2 used for alternating rows) and border=color.

@bruvzg
Copy link
Member

bruvzg commented Jul 4, 2022

It can be done without any RTL modification, by using table with single column:

	rt->push_table(1);
	rt->push_cell();
	rt->set_cell_row_background_color(bgcolor, bgcolor);
		// codeblock content
	rt->pop();
	rt->pop();

It's gonna cover it full background of the block if all code is added to a singe cell, or each line can be added as a cell and two colors used to get alternate odd/even row backgrounds.

This adds a background color for inline code, code blocks, keyboard
shortcuts and clickable references (such as `[member something]`).
@Calinou Calinou force-pushed the editor-help-improve-code-kbd-ref-highlight branch from e1ab54e to a347650 Compare July 5, 2022 17:36
@Calinou
Copy link
Member Author

Calinou commented Jul 5, 2022

It can be done without any RTL modification, by using table with single column:

Done. Thanks for the tip 🙂

image

Is there a way to add padding to the table cell on all sides? I'd like to add a few pixels of padding so the highlight doesn't "touch" the edges of the text.

@akien-mga
Copy link
Member

akien-mga commented Jul 5, 2022

@Calinou You could make it a 3x3 table with thin first and last rows and columns (9-patch style), though that feels a bit convoluted.

Could maybe be possible to add a padding option to [cell] too.

Alternatively / longer term, it would be nice to have a proper [codeblock] tag in RichTextLabel that could do nice code formatting (and possibly syntax highlighting for GDScript), but that sounds like something that could make RTL a bit bloated. Also to better handle wrapping long lines as shown in the screenshot.

@Calinou
Copy link
Member Author

Calinou commented Jul 13, 2022

Could this be merged as-is for now? I'm not sure about adding more rows and columns, as it may impact documentation page generation performance. I think it'd be better to add a padding option to [cell] instead.

@akien-mga akien-mga merged commit a0f0eb5 into godotengine:master Jul 13, 2022
@akien-mga
Copy link
Member

Thanks!

@Calinou Calinou deleted the editor-help-improve-code-kbd-ref-highlight branch July 14, 2022 00:24
@bruvzg
Copy link
Member

bruvzg commented Jul 16, 2022

Is there a way to add padding to the table cell on all sides? I'd like to add a few pixels of padding so the highlight doesn't "touch" the edges of the text.

Sorry, have not noticed it earlier, padding can be set with:

p_rt->set_cell_padding(Rect2(20,30,50,100)); // left, top, right, bottom

Screenshot 2022-07-17 at 00 27 31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants