Name: QuickHTMLViewer
Description: A simple HTML viewer. If a link is in the same relative path, it will be opened here, otherwise will be opened in system browser.
Date: 30/gen/07 Time: 09:37:41
340341342343344345346347348349
container.add(newArea); } private void showDescrWin(URL url, String title) { if (url != null) { QuickHTMLViewer qhv = new QuickHTMLViewer(url, title); qhv.show(); qhv.setIconImage(getIconImage()); } }
371372373374375376377378379380381
* @param url url of html file to be shown inside window * @param title title of the window */ private void showDescrWin(URL url, String title) { if (url != null) { QuickHTMLViewer qhv = new QuickHTMLViewer(url, title); qhv.centerWindow(730, 480); qhv.setVisible(true); qhv.setIconImage(getIconImage()); } }
228229230231232233234235236237
}); } private void showDescrWin(URL url, String title) { if (url != null) { QuickHTMLViewer qhv = new QuickHTMLViewer(url, title); qhv.show(); qhv.setIconImage(getIconImage()); } }