/*
* MediathekView
* Copyright (C) 2008 W. Xaver
* W.Xaver[at]googlemail.com
* http://zdfmediathk.sourceforge.net/
*
* 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
* 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 mediathek.gui.dialog;
import mediathek.config.Daten;
import mediathek.config.Icons;
import mediathek.daten.ListePsetVorlagen;
import mediathek.tool.EscBeenden;
import mediathek.tool.GuiFunktionenProgramme;
import javax.swing.*;
import java.awt.event.ActionEvent;
@SuppressWarnings("serial")
public class DialogAboNoSet extends JDialog {
public DialogAboNoSet(JFrame parent, Daten daten) {
super(parent, false);
initComponents();
setFocusableWindowState(false);
setFocusable(false);
setTitle("Kein Set zum Aufzeichnen!");
if (parent != null) {
setLocationRelativeTo(parent);
}
new EscBeenden(this) {
@Override
public void beenden_() {
beenden();
}
};
jTextArea1.setText("Ein Set von Programmen zum Aufzeichnen\n"
+ "wurde nicht angelegt.\n\n"
+ "Im Menü unter:\n"
+ "\"Datei->Einstellungen->Aufzeichnen und Abspielen\"\n"
+ "ein Programm zum Aufzeichnen für Abos festlegen.\n\n"
+ "(Oder die Standardsets importieren)");
jButtonImport.addActionListener(l
-> GuiFunktionenProgramme.addSetVorlagen(parent, daten,
ListePsetVorlagen.getStandarset(parent, daten, true /*replaceMuster*/), false /*auto*/, true /*setVersion*/));
jButtonOk.addActionListener((ActionEvent e) -> beenden());
jLabelIcon.setText("");
jLabelIcon.setIcon(Icons.ICON_ACHTUNG_32);
pack();
}
private void beenden() {
this.dispose();
}
/** 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.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jButtonOk = new javax.swing.JButton();
javax.swing.JScrollPane jScrollPane1 = new javax.swing.JScrollPane();
jTextArea1 = new javax.swing.JTextArea();
jLabelIcon = new javax.swing.JLabel();
javax.swing.JSeparator jSeparator1 = new javax.swing.JSeparator();
jButtonImport = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
jButtonOk.setText("Ok");
jTextArea1.setEditable(false);
jTextArea1.setColumns(20);
jTextArea1.setLineWrap(true);
jTextArea1.setRows(4);
jScrollPane1.setViewportView(jTextArea1);
jLabelIcon.setText("Achtung");
jSeparator1.setOrientation(javax.swing.SwingConstants.VERTICAL);
jButtonImport.setText("Standardsets importieren");
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()
.addComponent(jLabelIcon)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(0, 0, Short.MAX_VALUE)
.addComponent(jButtonImport)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jButtonOk))
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 523, Short.MAX_VALUE))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jSeparator1)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 192, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButtonOk)
.addComponent(jButtonImport)))
.addComponent(jLabelIcon))
.addGap(0, 0, Short.MAX_VALUE)))
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButtonImport;
private javax.swing.JButton jButtonOk;
private javax.swing.JLabel jLabelIcon;
private javax.swing.JTextArea jTextArea1;
// End of variables declaration//GEN-END:variables
}