-
Notifications
You must be signed in to change notification settings - Fork 237
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
Padding for whole text area or line number area #507
Comments
It seems there are multiple issues that you're asking for help on:
Are there any others I'm missing? |
Yeah, the second issue probably should have been created as a separate issue. |
Please do so next time. .virtualized-scroll-pane .styled-text-area .paragraph-box {
-fx-padding: 15px 0 0 0;
} Shouldn't it be |
Created separate issue about that with more information. |
About border issue, I am not sure if everything is ok with my CSS, but I think it would work fine if it was possible to add padding for Wiki says that
Scenic View shows padding values, but nothing is affected. |
See Tomas' comment's |
Yeah, looks like this works. :)
|
btw why the virtual-flow fix mentioned in that comment was not applied? |
Great!
I'm not sure. Perhaps we forgot to do so? Maybe @TomasMikula could explain. |
#510 may have revealed a bug in Flowless where import javafx.geometry.Bounds;
import javafx.geometry.Insets;
import javafx.scene.input.MouseEvent;
import javafx.stage.Stage;
import org.junit.Test;
import java.util.function.Consumer;
import static javafx.scene.input.MouseButton.PRIMARY;
import static org.junit.Assert.assertEquals;
public class TestGUI extends InlineCssTextAreaAppTest {
@Override
public void start(Stage stage) throws Exception {
super.start(stage);
stage.show();
String text = "abcdefghijklmnopqrstuvwxyz";
String fullText;
StringBuilder sb = new StringBuilder();
for (int i = 0; i < 19; i++) {
sb.append(text).append("\n");
}
sb.append(text);
fullText = sb.toString();
area.replaceText(fullText);
area.setPadding(new Insets(20));
area.setStyle("-fx-font-family: monospace; -fx-font-size: 12pt;");
}
@Test
public void test() {
interact(() -> {
int start = area.getAbsolutePosition(3, 8);
area.selectRange(start, start + 1);
Bounds b = area.getCharacterBoundsOnScreen(start, start + 1).get();
StringBuilder sb = new StringBuilder();
sb.append("Bounds: ").append(b).append("\n");
Consumer<MouseEvent> press = area.getOnOutsideSelectionMousePress();
area.setOnOutsideSelectionMousePress(e -> {
sb.append("Mouse screen x/y: ").append(e.getScreenX()).append(" / ").append(e.getScreenY());
press.accept(e);
});
moveTo(b).clickOn(PRIMARY);
sleep(2000); // Here, one sees that the caret is moved a few chars to the right and one line under the mouse
System.out.println(sb.toString());
assertEquals(start, area.getCaretPosition());
});
}
} |
I tried to add border via CSS, based on this https://stackoverflow.com/questions/37808715/how-to-make-look-and-feel-of-richtextfx-similar-to-textarea and issue #394.
It works, but line numbers cover part of the border, which doesn't look very nice.
I tried to add padding for
.virtualized-scroll-pane
,.styled-text-area
,.virtual-flow
and.virtualized-scroll-pane .styled-text-area .paragraph-box
but it didn't work.With the last one there is also a strange issue, see #508
CSS:
The text was updated successfully, but these errors were encountered: