112 jButton2 =
new javax.swing.JButton();
114 setBackground(
new java.awt.Color(255, 255, 255));
116 logoLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
118 logoLabel.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
119 logoLabel.addMouseListener(
new java.awt.event.MouseAdapter() {
120 public void mouseClicked(java.awt.event.MouseEvent evt) {
121 logoLabelMouseClicked(evt);
125 jScrollPane3.setBorder(
null);
127 copyright.setEditable(
false);
128 copyright.setBorder(
null);
129 copyright.setContentType(
"text/html");
130 copyright.setText(org.openide.util.NbBundle.getBundle(
AboutWindowPanel.class).getString(
"LBL_Copyright"));
131 copyright.addMouseListener(
new java.awt.event.MouseAdapter() {
132 public void mouseClicked(java.awt.event.MouseEvent evt) {
133 copyrightMouseClicked(evt);
136 jScrollPane3.setViewportView(copyright);
138 description.setEditable(
false);
139 description.setContentType(
"text/html");
140 jScrollPane2.setViewportView(description);
142 verboseLoggingButton.setText(
"Activate verbose logging");
143 verboseLoggingButton.addActionListener(
new java.awt.event.ActionListener() {
144 public void actionPerformed(java.awt.event.ActionEvent evt) {
145 activateVerboseLogging(evt);
149 jButton2.setText(NbBundle.getMessage(AboutWindowPanel.class,
"LBL_Close"));
150 jButton2.addActionListener(
new java.awt.event.ActionListener() {
151 public void actionPerformed(java.awt.event.ActionEvent evt) {
152 jButton2ActionPerformed(evt);
156 javax.swing.GroupLayout layout =
new javax.swing.GroupLayout(
this);
157 this.setLayout(layout);
158 layout.setHorizontalGroup(
159 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
160 .addGroup(layout.createSequentialGroup()
162 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
163 .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 486, Short.MAX_VALUE)
164 .addComponent(jScrollPane3, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 486, Short.MAX_VALUE)
165 .addComponent(logoLabel, javax.swing.GroupLayout.DEFAULT_SIZE, 486, Short.MAX_VALUE)
166 .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
167 .addGap(0, 0, Short.MAX_VALUE)
168 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
169 .addComponent(verboseLoggingButton, javax.swing.GroupLayout.Alignment.TRAILING)
170 .addComponent(jButton2, javax.swing.GroupLayout.Alignment.TRAILING))))
173 layout.setVerticalGroup(
174 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
175 .addGroup(layout.createSequentialGroup()
177 .addComponent(logoLabel)
178 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
179 .addComponent(jScrollPane3, javax.swing.GroupLayout.DEFAULT_SIZE, 184, Short.MAX_VALUE)
180 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
181 .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 130, javax.swing.GroupLayout.PREFERRED_SIZE)
182 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
183 .addComponent(verboseLoggingButton)
185 .addComponent(jButton2)