/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package club.tmworks.telopeditor;
/**
*
* @author MURAKAMI Takahiro <daianji@gmail.com>
*/
public class ImageView extends javax.swing.JPanel {
/**
* Creates new form ImageView
*/
public ImageView() {
initComponents();
}
public void setCaption(String caption) {
}
/**
* 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() {
jPanel1 = new javax.swing.JPanel();
lblCaption = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
setLayout(new java.awt.BorderLayout());
jPanel1.setBackground(java.awt.SystemColor.windowBorder);
lblCaption.setForeground(new java.awt.Color(255, 255, 255));
lblCaption.setText("イメージビュー");
jPanel1.add(lblCaption);
add(jPanel1, java.awt.BorderLayout.NORTH);
jPanel2.setPreferredSize(new java.awt.Dimension(300, 200));
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 277, Short.MAX_VALUE)
);
add(jPanel2, java.awt.BorderLayout.CENTER);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JLabel lblCaption;
// End of variables declaration//GEN-END:variables
}