[Java-gnome-developer] HTMLView() ?'s
Brought to you by:
afcowie
From: Skip C. <sco...@gm...> - 2004-10-31 14:21:10
|
Hey All, I have captured a string that is nothing more than HTML. What object(s) can I use to present that string as a web page ? This code: ScrolledWindow swr = (ScrolledWindow) this.getWidget("scrolledwindowRight"); HTMLView htmlview = new HTMLView(); swr.add(htmlview); Gives me this error: Exception in thread "main" java.lang.UnsatisfiedLinkError: html_view_new at org.gnu.gtkhtml.HTMLView.html_view_new(Native Method) at org.gnu.gtkhtml.HTMLView.<init>(HTMLView.java:17) at gentoo.GUI.showFeeds(GUI.java:57) at gentoo.GUI.<init>(GUI.java:44) at gentoo.Main.main(Main.java:28) The getWidget() is just a shortcut for getting widgets out of glade: public Widget getWidget(String widgetName) { return libglade.getWidget(widgetName); } Any suggestions. Thanks in advance. scoon |