The linewrap tag has no wiki summary.
3
votes
2answers
58 views
How to wrap text in a JTextArea
I have a JTextArea in Java. When I place a large amount of text in it, the text area provides horizontal scrolling.
How can I make my text area wrap instead?
3
votes
3answers
486 views
Java code for wrapping text lines to a max line width
Before I re-invent the wheel (poorly), I'd like to know if there is a some existing Java code for wrapping text lines to a given maximum width. Ideally it would:
respect existing linebreaks
break up ...
2
votes
1answer
67 views
Bring element width in when line wraps?
This seems like it might be a dead-end question, but in the off-chance that there might be some way to do what I'm looking for, I thought I'd ask the geniuses at stackoverflow before giving up.
Any ...
2
votes
4answers
218 views
html (+css): denoting a preferred place for a line break
Let's say I have this text that I want to display in an HTML table cell:
Honey Nut Cheerios, Wheat Chex, Grape-Nuts, Rice Krispies, Some random cereal with a very long name, Honey Bunches of Oats, ...
2
votes
2answers
261 views
REXML is wrapping long lines. How do I switch that off?
I am creating an XML document using REXML
File.open(xmlFilename,'w') do |xmlFile|
xmlDoc = Document.new
# add stuff to the document...
xmlDoc.write(xmlFile,4)
end
Some of the elements ...
1
vote
0answers
24 views
Autoresizing JtextPane after Font Size Change
I load a text in a JTextPane and automatically every line takes the max number of words it can. When I decrease the Font size text just zoom out and all lines are half empty. How can I auto resize the ...
1
vote
1answer
212 views
Bad line breaking in Eclipse javadoc comments
There's a minor but annoying bug, I think, in the Eclipse built-in Java formatter. I have a Javadoc comment that looks like this:
/**
* - - - stuff - - - {@code mTasksBelow}.
*/
where period at ...
1
vote
3answers
1k views
Auto line-wrapping in SVG text
I would like to display a <text> in SVG what would auto-line-wrap to the container <rect> the same way as HTML text fills <div> elements. Is there a way to do it? I don't want to ...
0
votes
1answer
89 views
Eclipse 3.7 line wrap early on comments
I'm running the indigo release on Windows Vista.
I have set both the print margin in General -> Editors -> Text Editors and the maximum line width in Java -> Code Style -> Formatter to 100 characters, ...
0
votes
2answers
116 views
emacs auto-fill-mode doesn't initialise
I want to enable line-wrapping without having to type 'M-x auto-fill-mode' everytime I start emacs. I've tried putting (setq auto-fill-mode 1) and (auto-fill-mode 1) in the .emacs file, but neither ...
0
votes
1answer
49 views
Wordwrap in Jide's CodeEditor?
I searched for word wrap and line wrap in jide's CodeEditor and nothing found, is it possible to wrap contents around current viewport?
Thank you,
Mika
0
votes
3answers
197 views
How to print Java code on A3 page avoiding line-wrapping
I have to print Java code that some times reaches 300 columns (characters per line) in A3 paper and whatever editor I use (e.g. textmate) wraps the lines in order to fit in A4 paper.
Any ...