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


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

Re: HTML Editor

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 <ekct4j$vkb$1@online.de> (permalink)
Newsgroups comp.lang.java.gui
References <0T3lc63qI3pp@uni.chka.de>
Date 2011-04-27 15:26 +0000
Organization TDS.net

Show all headers | View raw


  To: comp.lang.java.gui
Christian Kaufhold schrieb:
> I meant "No need to mention HTMLDocument.BlockElement at all." It will
> work with a plain Element.

Thank You again. Now, I understand. Here my new implementation:

void makeParagraph(HTML.Tag paragraphType)
{
   if( textEditor instanceof JEditorPane )
   {
       HTMLDocument  htmlDoc = (HTMLDocument) textEditor.getDocument();
       int           position = textEditor.getSelectionStart();
       Element       elem = htmlDoc.getParagraphElement(position);

       SimpleAttributeSet  newType = new SimpleAttributeSet(
         elem.getAttributes()
       );
       newType.addAttribute( AttributeSet.NameAttribute, paragraphType );
       htmlDoc.setParagraphAttributes(position, 0, newType, false );
   }
}

Now, it's a very simple implementation, I love it. 8-) Thank You again.

> Christian

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