Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #169

Re: HTML Editor

Path csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!news.alt.net!news-in-01.newsfeed.easynews.com!easynews.com!easynews!news-out.news.tds.net!newsreading01.news.tds.net!86597e80!not-for-mail
From "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this>
Subject Re: HTML Editor
Message-ID <ek6edg$3fl$1@online.de> (permalink)
X-Comment-To comp.lang.java.gui
Newsgroups comp.lang.java.gui
In-Reply-To <1T3l82hcIect@uni.chka.de>
References <1T3l82hcIect@uni.chka.de>
Content-Type text/plain; charset=IBM437
Content-Transfer-Encoding 8bit
X-Gateway time.synchro.net [Synchronet 3.15a-Win32 NewsLink 1.92]
Lines 68
Date Wed, 27 Apr 2011 15:25:59 GMT
NNTP-Posting-Host 96.60.20.240
X-Complaints-To news@tds.net
X-Trace newsreading01.news.tds.net 1303917959 96.60.20.240 (Wed, 27 Apr 2011 10:25:59 CDT)
NNTP-Posting-Date Wed, 27 Apr 2011 10:25:59 CDT
Organization TDS.net
Xref x330-a1.tempe.blueboxinc.net comp.lang.java.gui:169

Show key headers only | View raw


  To: comp.lang.java.gui
Christian Kaufhold schrieb:
> Martin Gaeckler <martin@gaeckler.de> wrote:
> 
>> i'm currently trying to develop a simple HTML-Editor with JTextPane and 
>> the HTMLEditorKit provided by Swing.
> 
>> Actually I want to transform a paragraph <p> to a Heading <h1>. This is 
>> my code:
> 
> Use setParagraphAttributes.
> 
> 
> 
> Christian

Thank You. This was my try:

HTMLDocument.BlockElement block = (HTMLDocument.BlockElement)elem;
int start, end;
String	text;

start = block.getStartOffset();
end = block.getEndOffset();

// thes what attributes are set
for(Enumeration e = block.getAttributeNames(); e.hasMoreElements(); )
   System.out.println(e.nextElement());

SimpleAttributeSet	newType = new SimpleAttributeSet();
newType.addAttribute( "name", "h1");
htmlDoc.setParagraphAttributes(start, end-start, newType, false );

This produces the following HTML-Code:

<p name="h1">
	hello world
</p>

And after a second call to my function. The Enumeration contained two 
attributes with the name "name".

Then I have replaced the boolean parameter of setParagraphAttributes. 
The produced HTML-Code was stupid:

<body name="h1">
	hello world
</body>

When I try to create an object of HTMLDocument.BlockElement instead of 
SimpleAttributeSet I get an compiler error "Enclosing class required".

Any ideas?

Martin

-- 
Firma/Company:                                              CRESD GmbH
Phone: +49-89-65 30 95 63                      Fax: +49-89-65 30 95 64
WWW:                                               http://www.cresd.de
S-Mail:                                Freibadstr. 14, D-81543 Mnnchen
PGP-Key:                            http://www.cresd.de/edv/pgpkey.txt
Open BC (Einladung)            http://www.openbc.com/go/invita/4561755

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

Back to comp.lang.java.gui | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

HTML Editor "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this> - 2011-04-27 15:25 +0000
  Re: HTML Editor "usenet" <usenet@THRWHITE.remove-dii-this> - 2011-04-27 15:25 +0000
    Re: HTML Editor "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this> - 2011-04-27 15:25 +0000
      Re: HTML Editor "usenet" <usenet@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000
        Re: HTML Editor "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000
          Re: HTML Editor "usenet" <usenet@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000
            Re: HTML Editor "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000
              Re: HTML Editor "usenet" <usenet@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000
                Re: HTML Editor "=?ISO-8859-1?Q?Martin_G=E" <=?iso-8859-1?q?martin_g=e@THRWHITE.remove-dii-this> - 2011-04-27 15:26 +0000

csiph-web