/* * Copyright (C) 2012 Vinu K.N * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.domainmath.gui.octInfo; import java.awt.Image; import java.io.IOException; import java.io.Reader; import java.util.logging.Level; import java.util.logging.Logger; public class OctInfoFrame extends javax.swing.JFrame { public OctInfoFrame(Reader reader,Image image) { initComponents(); this.setIconImage(image); try { this.textArea.read(reader, null); this.textArea.setCaretPosition(0); } catch (IOException ex) { Logger.getLogger(OctInfoFrame.class.getName()).log(Level.SEVERE, null, ex); } } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); rTextScrollPane2 = new org.fife.ui.rtextarea.RTextScrollPane(); textArea = new org.fife.ui.rsyntaxtextarea.RSyntaxTextArea(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); java.util.ResourceBundle bundle = java.util.ResourceBundle.getBundle("org/domainmath/gui/octInfo/resources/octinfo_en"); // NOI18N setTitle(bundle.getString("Frame.title")); // NOI18N jLabel1.setText(bundle.getString("infoLabel.name")); // NOI18N textArea.setColumns(20); textArea.setRows(5); rTextScrollPane2.setViewportView(textArea); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jLabel1) .addGap(0, 0, Short.MAX_VALUE)) .addComponent(rTextScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 577, Short.MAX_VALUE)) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(rTextScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 394, Short.MAX_VALUE) .addGap(22, 22, 22)) ); pack(); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private org.fife.ui.rtextarea.RTextScrollPane rTextScrollPane2; private org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea; // End of variables declaration//GEN-END:variables }