OSDN Git Service

fea068241d1ead259818f47999e2578f8682887b
[coroid/inqubus.git] / frontend / src / saccubus / MainFrame.java
1 package saccubus;
2
3 import java.io.IOException;
4 import saccubus.converter.Converter;
5 import java.awt.BorderLayout;
6 import java.awt.Dimension;
7 import java.awt.GridBagConstraints;
8 import java.awt.GridBagLayout;
9 import java.awt.GridLayout;
10 import java.awt.Image;
11 import java.awt.Insets;
12 import java.awt.Toolkit;
13 import java.awt.dnd.DnDConstants;
14 import java.awt.dnd.DropTarget;
15 import java.awt.event.ActionEvent;
16 import java.awt.event.ActionListener;
17 import java.awt.event.KeyEvent;
18 import java.awt.event.WindowAdapter;
19 import java.awt.event.WindowEvent;
20 import java.io.File;
21 import java.util.logging.Level;
22 import java.util.logging.Logger;
23 import javax.swing.BorderFactory;
24 import javax.swing.ButtonGroup;
25 import javax.swing.GroupLayout;
26 import javax.swing.JButton;
27 import javax.swing.JCheckBox;
28 import javax.swing.JComboBox;
29 import javax.swing.JFileChooser;
30 import javax.swing.JFrame;
31 import javax.swing.JLabel;
32 import javax.swing.JMenu;
33 import javax.swing.JMenuBar;
34 import javax.swing.JMenuItem;
35 import javax.swing.JOptionPane;
36 import javax.swing.JPanel;
37 import javax.swing.JPasswordField;
38 import javax.swing.JRadioButton;
39 import javax.swing.JTabbedPane;
40 import javax.swing.JTextField;
41 import javax.swing.LayoutStyle.ComponentPlacement;
42 import javax.swing.SwingUtilities;
43 import nicobrowser.entity.NicoContent;
44 import nicobrowser.main.Main;
45 import org.apache.commons.lang.StringUtils;
46 import saccubus.ConvertStopFlag.State;
47 import saccubus.converter.profile.FfmpegOption;
48 import saccubus.converter.profile.NgSetting;
49 import saccubus.net.TextProgressListener;
50 import saccubus.properties.BasicSetting;
51 import saccubus.properties.ConvertSetting;
52 import saccubus.properties.InputCommentSetting;
53 import saccubus.properties.InputVideoSetting;
54 import saccubus.properties.SProperties;
55 import saccubus.properties.InputTcommentSetting;
56 import saccubus.properties.MovieSetting;
57 import saccubus.properties.OutputVideoSetting;
58 import saccubus.util.FileDropTarget;
59 import saccubus.util.PopupRightClick;
60 import yukihane.nicovideo.NicoDBFinder;
61
62 /**
63  * <p>
64  * タイトル: さきゅばす
65  * </p>
66  *
67  * <p>
68  * 説明: ニコニコ動画の動画をコメントつきで保存
69  * </p>
70  *
71  * <p>
72  * 著作権: Copyright (c) 2007 PSI
73  * </p>
74  *
75  * <p>
76  * 会社名:
77  * </p>
78  *
79  * @author 未入力
80  * @version 1.0
81  */
82 public class MainFrame extends JFrame {
83
84     private static final long serialVersionUID = 2564486741331062989L;
85     public static final String PRODUCT_NAME = "いんきゅばす";
86     public static final String VERSION = "1.7.0 (NicoBrowser" + Main.VERSION + ")";
87     public static final Image WinIcon = Toolkit.getDefaultToolkit().createImage(saccubus.MainFrame.class.getResource(
88             "icon32.png"));
89     // TODO GUIが無いためフィールドに保持.
90     private File tempDir;
91     JPanel contentPane;
92     BorderLayout borderLayout1 = new BorderLayout();
93     JMenuBar jMenuBar1 = new JMenuBar();
94     JMenu jMenuFile = new JMenu();
95     JMenuItem jMenuFileExit = new JMenuItem();
96     JMenu jMenuHelp = new JMenu();
97     JMenuItem jMenuHelpAbout = new JMenuItem();
98     JLabel statusBar = new JLabel();
99     JTabbedPane mainTabbedPane = new JTabbedPane();
100     JPanel SavingInfoTabPanel = new JPanel();
101     JPanel FFMpegTabPanel = new JPanel();
102     JPanel VideoInfoPanel = new JPanel();
103     JTextField VideoID_TextField = new JTextField();
104     JButton DoButton = new JButton();
105     public static final String DoButtonDefString = "変換";
106     public static final String DoButtonStopString = "停止";
107     public static final String DoButtonWaitString = "待機";
108     JPanel UserInfoPanel = new JPanel();
109     GridBagLayout gridBagLayout3 = new GridBagLayout();
110     // ユーザ設定
111     JLabel mailAddressLabel = new JLabel();
112     JTextField mailAddressField = new JTextField();
113     JLabel passwordLabel = new JLabel();
114     JPasswordField passwordField = new JPasswordField();
115     GridBagLayout gridBagLayout4 = new GridBagLayout();
116     GridBagLayout gridBagLayout6 = new GridBagLayout();
117     ButtonGroup CommentSaveButtonGroup = new ButtonGroup();
118     ButtonGroup ConvSaveButtonGroup = new ButtonGroup();
119
120     private class FfmpegOptionCheckBoxListener implements ActionListener{
121
122         @Override
123         public void actionPerformed(ActionEvent e) {
124             setFFMpegOptionCheckbox();
125         }
126     }
127     private final FfmpegOptionCheckBoxListener ffmpegOptionCheckBoxListener = new FfmpegOptionCheckBoxListener();
128
129     private void setFFMpegOptionCheckbox() {
130         boolean resizable = (resizeCheckBox.isEnabled() && resizeCheckBox.isSelected());
131         resizeWidthField.setEnabled(resizable);
132         resizeHeigitField.setEnabled(resizable);
133         adjustRatioCheckBox.setEnabled(resizable);
134
135     }
136
137     private void setNames() {
138         mainTabbedPane.setName("mainTabbedPane");
139
140         mailAddressField.setName("mailAddressField");
141         passwordField.setName("passwordField");
142
143         ffmpegPathField.setName("ffmpegPathField");
144         vhookPathField.setName("vhookPathField");
145
146         mainOptionField.setName("mainOptionField");
147         inputOptionField.setName("inputOptionField");
148         outputOptionField.setName("outputOptionField");
149
150         fontPathField.setName("fontPathField");
151         fontIndexField.setName("fontIndexField");
152         showConvVideoCheckBox.setName("showConvVideoCheckBox");
153     }
154
155     public MainFrame() {
156         setNames();
157
158         videoSaveInfoPanel = savePanel.getVideoSaveInfoPanel();
159
160         try {
161             setDefaultCloseOperation(EXIT_ON_CLOSE);
162             jbInit();
163             setPopup();
164             setDropTarget();
165             SProperties setting = SProperties.loadSetting(null,
166                     null);
167             this.setSetting(setting);
168         } catch (Exception exception) {
169             exception.printStackTrace();
170         }
171     }
172
173     /**
174      * コンポーネントの初期化。
175      *
176      * @throws java.lang.Exception
177      */
178     private void jbInit() throws Exception {
179         GridBagConstraints gridBagConstraints74 = new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
180                 GridBagConstraints.BOTH, new Insets(0, 0, 0, 5), 0, 0);
181         gridBagConstraints74.gridwidth = 2;
182         GridBagConstraints gridBagConstraints73 = new GridBagConstraints();
183         gridBagConstraints73.fill = GridBagConstraints.HORIZONTAL;
184         gridBagConstraints73.gridy = 6;
185         gridBagConstraints73.weightx = 1.0;
186         gridBagConstraints73.gridwidth = 4;
187         gridBagConstraints73.insets = new Insets(0, 0, 0, 5);
188         gridBagConstraints73.gridx = 1;
189         GridBagConstraints gridBagConstraints72 = new GridBagConstraints();
190         gridBagConstraints72.gridx = 0;
191         gridBagConstraints72.anchor = GridBagConstraints.WEST;
192         gridBagConstraints72.insets = new Insets(0, 5, 0, 5);
193         gridBagConstraints72.fill = GridBagConstraints.NONE;
194         gridBagConstraints72.gridwidth = 1;
195         gridBagConstraints72.gridy = 6;
196         ShadowKindLabel = new JLabel();
197         ShadowKindLabel.setText("影の種類");
198         ShadowKindLabel.setDisplayedMnemonic(KeyEvent.VK_UNDEFINED);
199         GridBagConstraints gridBagConstraints71 = new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
200                 GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 6);
201         gridBagConstraints71.fill = GridBagConstraints.BOTH;
202         gridBagConstraints71.ipady = 0;
203         GridBagConstraints gridBagConstraints70 = new GridBagConstraints();
204         gridBagConstraints70.fill = GridBagConstraints.HORIZONTAL;
205         gridBagConstraints70.gridy = 1;
206         gridBagConstraints70.ipadx = 0;
207         gridBagConstraints70.ipady = 0;
208         gridBagConstraints70.weightx = 1.0;
209         gridBagConstraints70.insets = new Insets(0, 0, 0, 0);
210         gridBagConstraints70.gridx = 1;
211         GridBagConstraints gridBagConstraints69 = new GridBagConstraints();
212         gridBagConstraints69.gridx = 0;
213         gridBagConstraints69.ipadx = 0;
214         gridBagConstraints69.ipady = 0;
215         gridBagConstraints69.insets = new Insets(0, 5, 0, 5);
216         gridBagConstraints69.anchor = GridBagConstraints.WEST;
217         gridBagConstraints69.gridy = 1;
218         GridBagConstraints gridBagConstraints68 = new GridBagConstraints();
219         gridBagConstraints68.fill = GridBagConstraints.BOTH;
220         gridBagConstraints68.gridy = 0;
221         gridBagConstraints68.ipady = 0;
222         gridBagConstraints68.weightx = 1.0;
223         gridBagConstraints68.insets = new Insets(0, 0, 0, 0);
224         gridBagConstraints68.gridx = 1;
225         GridBagConstraints gridBagConstraints67 = new GridBagConstraints();
226         gridBagConstraints67.gridx = 0;
227         gridBagConstraints67.ipadx = 0;
228         gridBagConstraints67.ipady = 0;
229         gridBagConstraints67.insets = new Insets(0, 5, 0, 5);
230         gridBagConstraints67.anchor = GridBagConstraints.WEST;
231         gridBagConstraints67.gridy = 0;
232         GridBagConstraints gridBagConstraints66 = new GridBagConstraints();
233         gridBagConstraints66.gridx = 0;
234         gridBagConstraints66.insets = new Insets(0, 5, 5, 5);
235         gridBagConstraints66.anchor = GridBagConstraints.WEST;
236         gridBagConstraints66.gridwidth = 2;
237         gridBagConstraints66.gridy = 1;
238         ViewCommentLabel = new JLabel();
239         ViewCommentLabel.setText("表示コメント数");
240         GridBagConstraints gridBagConstraints65 = new GridBagConstraints();
241         gridBagConstraints65.fill = GridBagConstraints.HORIZONTAL;
242         gridBagConstraints65.gridy = 1;
243         gridBagConstraints65.weightx = 1.0;
244         gridBagConstraints65.gridwidth = 6;
245         gridBagConstraints65.insets = new Insets(0, 5, 5, 5);
246         gridBagConstraints65.gridx = 3;
247         GridBagConstraints gridBagConstraints64 = new GridBagConstraints(1, 1,
248                 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
249                 GridBagConstraints.BOTH, new Insets(0, 0, 0, 5), 0, 0);
250         gridBagConstraints64.gridy = 3;
251         gridBagConstraints64.fill = GridBagConstraints.HORIZONTAL;
252         gridBagConstraints64.gridx = 4;
253         GridBagConstraints gridBagConstraints63 = new GridBagConstraints(0, 4,
254                 2, 1, 1.0, 0.0, GridBagConstraints.CENTER,
255                 GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0);
256         gridBagConstraints63.gridy = 7;
257         gridBagConstraints63.gridx = 0;
258         gridBagConstraints63.gridwidth = 5;
259         GridBagConstraints gridBagConstraints62 = new GridBagConstraints(0, 3,
260                 2, 1, 1.0, 0.0, GridBagConstraints.CENTER,
261                 GridBagConstraints.BOTH, new Insets(0, 5, 5, 5), 0, 0);
262         gridBagConstraints62.gridy = 5;
263         gridBagConstraints62.gridx = 1;
264         gridBagConstraints62.fill = GridBagConstraints.HORIZONTAL;
265         gridBagConstraints62.insets = new Insets(0, 0, 5, 5);
266         gridBagConstraints62.gridwidth = 4;
267         GridBagConstraints gridBagConstraints61 = new GridBagConstraints(0, 2,
268                 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
269                 GridBagConstraints.BOTH, new Insets(5, 5, 5, 5), 0, 0);
270         gridBagConstraints61.gridy = 5;
271         gridBagConstraints61.gridx = 0;
272         gridBagConstraints61.fill = GridBagConstraints.VERTICAL;
273         gridBagConstraints61.anchor = GridBagConstraints.WEST;
274         gridBagConstraints61.gridwidth = 1;
275         GridBagConstraints gridBagConstraints60 = new GridBagConstraints(0, 1,
276                 1, 1, 1.0, 0.0, GridBagConstraints.CENTER,
277                 GridBagConstraints.BOTH, new Insets(0, 5, 0, 5), 0, 0);
278         gridBagConstraints60.gridy = 3;
279         gridBagConstraints60.gridx = 1;
280         gridBagConstraints60.fill = GridBagConstraints.HORIZONTAL;
281         gridBagConstraints60.insets = new Insets(0, 0, 0, 5);
282         gridBagConstraints60.gridwidth = 3;
283         GridBagConstraints gridBagConstraints59 = new GridBagConstraints(0, 0,
284                 2, 1, 1.0, 0.0, GridBagConstraints.CENTER,
285                 GridBagConstraints.HORIZONTAL, new Insets(0, 5, 5, 5), 0, 0);
286         gridBagConstraints59.gridy = 3;
287         gridBagConstraints59.insets = new Insets(5, 5, 5, 5);
288         gridBagConstraints59.gridx = 0;
289         gridBagConstraints59.fill = GridBagConstraints.NONE;
290         gridBagConstraints59.anchor = GridBagConstraints.WEST;
291         gridBagConstraints59.weightx = 0.0;
292         gridBagConstraints59.gridwidth = 1;
293         GridBagConstraints gridBagConstraints58 = new GridBagConstraints();
294         gridBagConstraints58.gridx = 0;
295         gridBagConstraints58.anchor = GridBagConstraints.WEST;
296         gridBagConstraints58.insets = new Insets(0, 5, 5, 5);
297         gridBagConstraints58.gridwidth = 5;
298         gridBagConstraints58.weightx = 1.0;
299         gridBagConstraints58.fill = GridBagConstraints.HORIZONTAL;
300         gridBagConstraints58.gridy = 0;
301
302         GridBagConstraints gridBagConstraints54 = new GridBagConstraints(0, 2, 2, 1, 1.0, 0.0, GridBagConstraints.CENTER,
303                 GridBagConstraints.BOTH, new Insets(5, 5, 5, 5), 0, 0);
304         gridBagConstraints54.gridwidth = 3;
305
306         GridBagConstraints gridBagConstraints33 = new GridBagConstraints();
307         gridBagConstraints33.gridx = 0;
308         gridBagConstraints33.fill = GridBagConstraints.HORIZONTAL;
309         gridBagConstraints33.weightx = 1.0;
310         gridBagConstraints33.insets = new Insets(0, 5, 5, 5);
311         gridBagConstraints33.gridwidth = 5;
312         gridBagConstraints33.gridy = 9;
313
314         GridBagConstraints gridBagConstraints14 = new GridBagConstraints();
315         gridBagConstraints14.gridx = 0;
316         gridBagConstraints14.anchor = GridBagConstraints.WEST;
317         gridBagConstraints14.fill = GridBagConstraints.HORIZONTAL;
318         gridBagConstraints14.weightx = 1.0;
319         gridBagConstraints14.gridwidth = 5;
320         gridBagConstraints14.insets = new Insets(0, 5, 0, 5);
321         gridBagConstraints14.gridy = 8;
322         GridBagConstraints gridBagConstraints7 = new GridBagConstraints(0, 0,
323                 1, 1, 1.0, 1.0, GridBagConstraints.NORTH,
324                 GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0);
325         gridBagConstraints7.weighty = 0.0;
326         GridBagConstraints gridBagConstraints6 = new GridBagConstraints();
327         gridBagConstraints6.gridx = 0;
328         gridBagConstraints6.weighty = 1.0;
329         gridBagConstraints6.weightx = 1.0;
330         gridBagConstraints6.insets = new Insets(0, 5, 0, 5);
331         gridBagConstraints6.fill = GridBagConstraints.HORIZONTAL;
332         gridBagConstraints6.anchor = GridBagConstraints.NORTH;
333         gridBagConstraints6.gridy = 1;
334         GridBagConstraints gridBagConstraints1 = new GridBagConstraints(0, 1,
335                 1, 1, 1.0, 0.0, GridBagConstraints.CENTER,
336                 GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0);
337         gridBagConstraints1.fill = GridBagConstraints.HORIZONTAL;
338         gridBagConstraints1.anchor = GridBagConstraints.NORTH;
339         gridBagConstraints1.weighty = 1.0;
340
341         this.setIconImage(WinIcon);
342         contentPane = (JPanel) this.getContentPane();
343         contentPane.setLayout(borderLayout1);
344         setSize(new Dimension(400, 450));
345         setTitle(PRODUCT_NAME + " " + VERSION);
346         this.addWindowListener(new MainFrame_this_windowAdapter(this));
347         statusBar.setText(" ");
348         jMenuFile.setText("ファイル");
349         jMenuFileExit.setText("終了");
350         jMenuFileExit.addActionListener(new MainFrame_jMenuFileExit_ActionAdapter(
351                 this));
352         jMenuHelp.setText("ヘルプ");
353         jMenuHelpAbout.setText("バージョン情報");
354         jMenuHelpAbout.addActionListener(new MainFrame_jMenuHelpAbout_ActionAdapter(
355                 this));
356         VideoInfoPanel.setLayout(gridBagLayout1);
357         VideoID_TextField.setText("http://www.nicovideo.jp/watch/");
358         DoButton.setText(DoButtonDefString);
359         DoButton.addActionListener(new MainFrame_DoButton_actionAdapter(this));
360         SavingInfoTabPanel.setLayout(new GridLayout());
361         UserInfoPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), "ユーザ設定"));
362         UserInfoPanel.setLayout(gridBagLayout3);
363         mailAddressLabel.setText("メールアドレス");
364         passwordLabel.setText("パスワード");
365
366         setListenerToSavePanelButton();
367
368         FFMpegTabPanel.setLayout(gridBagLayout6);
369         PathSettingPanel.setBorder(BorderFactory.createTitledBorder(
370                 BorderFactory.createEtchedBorder(), "プログラムの位置の設定"));
371         PathSettingPanel.setLayout(gridBagLayout7);
372         FFmpegPathLabel.setText("FFmpeg");
373         SettingFFmpegPathButton.setText("参照");
374         SettingFFmpegPathButton.addActionListener(new MainFrame_SettingFFmpegPathButton_actionAdapter(
375                 this));
376         VhookPathLabel.setText("拡張vhookライブラリ");
377         SettingVhookPathButton.setText("参照");
378         SettingVhookPathButton.addActionListener(new MainFrame_SettingVhookPathButton_actionAdapter(
379                 this));
380         VhookSettingPanel.setLayout(gridBagLayout8);
381         VhookSettingPanel.setBorder(BorderFactory.createTitledBorder(
382                 BorderFactory.createEtchedBorder(), "拡張vhookライブラリの設定"));
383         FFmpegSettingPanel.setBorder(BorderFactory.createTitledBorder(
384                 BorderFactory.createEtchedBorder(), "FFmpegの設定"));
385         FFmpegSettingPanel.setLayout(gblFFmpegSettingPanel);
386         FontPathLabel.setText("フォントパス");
387         SettingFontPathButton.setText("参照");
388         SettingFontPathButton.addActionListener(new MainFrame_SettingFontPathButton_actionAdapter(
389                 this));
390         showConvVideoCheckBox.setText("変換中の画像を表示する");
391
392         extOptionLabel.setText("出力動画の拡張子");
393         inputOptionLabel.setText("入力オプション");
394         outputOptionLabel.setText("出力オプション");
395         mainOptionLabel.setText("メインオプション");
396         avfilterOptionLabel.setText("avfilterオプション");
397
398         FontIndexLabel.setText("フォント番号");
399         VideoID_Label.setText("URL/ID");
400         WayBackLabel.setText("過去ログ");
401         OpPanel.setLayout(new GridBagLayout());
402
403         BasicInfoTabPanel.setLayout(gridBagLayout12);
404         jMenuBar1.add(jMenuFile);
405         jMenuFile.add(jMenuFileExit);
406         jMenuBar1.add(jMenuHelp);
407         jMenuHelp.add(jMenuHelpAbout);
408         setJMenuBar(jMenuBar1);
409
410         contentPane.add(statusBar, BorderLayout.SOUTH);
411         contentPane.add(mainTabbedPane, java.awt.BorderLayout.CENTER);
412         contentPane.add(VideoInfoPanel, java.awt.BorderLayout.NORTH);
413         UserInfoPanel.add(passwordField, new GridBagConstraints(1, 1, 1, 1,
414                 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
415                 new Insets(0, 5, 5, 5), 0, 0));
416         UserInfoPanel.add(mailAddressField, new GridBagConstraints(1, 0, 1, 1,
417                 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
418                 new Insets(0, 5, 5, 5), 0, 0));
419         UserInfoPanel.add(passwordLabel, new GridBagConstraints(0, 1, 1, 1,
420                 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE,
421                 new Insets(0, 5, 5, 0), 0, 0));
422         UserInfoPanel.add(mailAddressLabel, new GridBagConstraints(0, 0, 1, 1,
423                 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE,
424                 new Insets(0, 5, 5, 0), 0, 0));
425         PathSettingPanel.add(ffmpegPathField, new GridBagConstraints(0, 1, 1,
426                 1, 1.0, 0.0, GridBagConstraints.CENTER,
427                 GridBagConstraints.BOTH, new Insets(0, 5, 0, 5), 0, 0));
428         PathSettingPanel.add(SettingFFmpegPathButton, gridBagConstraints74);
429         PathSettingPanel.add(FFmpegPathLabel, new GridBagConstraints(0, 0, 2,
430                 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE,
431                 new Insets(0, 5, 5, 5), 0, 0));
432         PathSettingPanel.add(vhookPathField, new GridBagConstraints(0, 3, 1, 1,
433                 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
434                 new Insets(0, 5, 5, 5), 0, 0));
435         PathSettingPanel.add(SettingVhookPathButton, new GridBagConstraints(1,
436                 3, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
437                 GridBagConstraints.BOTH, new Insets(0, 0, 5, 5), 0, 0));
438         PathSettingPanel.add(VhookPathLabel, gridBagConstraints54);
439
440
441         final GroupLayout layout = new GroupLayout(FFmpegSettingPanel);
442         FFmpegSettingPanel.setLayout(layout);
443
444         layout.setHorizontalGroup(layout.createParallelGroup()
445                 .addComponent(getFFmpegOptionComboBoxPanel())
446                 .addGroup(layout.createSequentialGroup()
447                     .addGroup(layout.createParallelGroup()
448                         .addComponent(extOptionLabel)
449                         .addComponent(mainOptionLabel)
450                         .addComponent(inputOptionLabel)
451                         .addComponent(outputOptionLabel)
452                         .addComponent(avfilterOptionLabel)
453                     )
454                     .addPreferredGap(ComponentPlacement.RELATED)
455                     .addGroup(layout.createParallelGroup()
456                         .addComponent(extOptionField)
457                         .addComponent(mainOptionField)
458                         .addComponent(inputOptionField)
459                         .addComponent(outputOptionField)
460                         .addComponent(avfilterOptionField)
461                     )
462                 )
463                 .addGroup(layout.createParallelGroup()
464                     .addGroup(layout.createSequentialGroup()
465                         .addComponent(resizeCheckBox)
466                         .addPreferredGap(ComponentPlacement.UNRELATED)
467                         .addComponent(resizeWidthLabel)
468                         .addPreferredGap(ComponentPlacement.RELATED)
469                         .addComponent(resizeWidthField)
470                         .addPreferredGap(ComponentPlacement.UNRELATED)
471                         .addComponent(resizeHeightLabel)
472                         .addPreferredGap(ComponentPlacement.RELATED)
473                         .addComponent(resizeHeigitField)
474                     )
475                 )
476                 .addGroup(layout.createSequentialGroup()
477                     .addGap(10)
478                     .addComponent(adjustRatioCheckBox))
479                 .addGroup(layout.createSequentialGroup()
480                     .addGap(20)
481                 )
482             );
483
484         layout.setVerticalGroup(layout.createSequentialGroup()
485             .addComponent(getFFmpegOptionComboBoxPanel())
486             .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
487                 .addComponent(extOptionLabel)
488                 .addComponent(extOptionField))
489             .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
490                 .addComponent(mainOptionLabel)
491                 .addComponent(mainOptionField))
492             .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
493                 .addComponent(inputOptionLabel)
494                 .addComponent(inputOptionField))
495             .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
496                 .addComponent(outputOptionLabel)
497                 .addComponent(outputOptionField))
498             .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
499                 .addComponent(avfilterOptionLabel)
500                 .addComponent(avfilterOptionField))
501             .addGroup(layout.createSequentialGroup()
502                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
503                     .addComponent(resizeCheckBox)
504                     .addComponent(resizeWidthLabel)
505                     .addComponent(resizeWidthField)
506                     .addComponent(resizeHeightLabel)
507                     .addComponent(resizeHeigitField))
508                 .addComponent(adjustRatioCheckBox)
509                 )
510             );
511
512         resizeCheckBox.addActionListener(ffmpegOptionCheckBoxListener);
513         adjustRatioCheckBox.addActionListener(ffmpegOptionCheckBoxListener);
514         setFFMpegOptionCheckbox();
515
516
517         VideoInfoPanel.add(DoButton, gridBagConstraints71);
518         VideoInfoPanel.add(OpPanel, new GridBagConstraints(0, 0, 1, 1, 1.0,
519                 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
520                 new Insets(0, 0, 0, 0), 0, 0));
521         OpPanel.add(VideoID_Label, gridBagConstraints67);
522         OpPanel.add(VideoID_TextField, gridBagConstraints68);
523         OpPanel.add(WayBackLabel, gridBagConstraints69);
524         OpPanel.add(WayBackField, gridBagConstraints70);
525
526         mainTabbedPane.add(BasicInfoTabPanel, "基本設定");
527         mainTabbedPane.add(SavingInfoTabPanel, "保存設定");
528         mainTabbedPane.add(FFMpegTabPanel, "動画設定");
529         mainTabbedPane.addTab("変換設定", null, getConvertingSettingPanel(), null);
530         SavingInfoTabPanel.add(savePanel);
531         BasicInfoTabPanel.add(UserInfoPanel, gridBagConstraints7);
532         BasicInfoTabPanel.add(getProxyInfoPanel(), gridBagConstraints6);
533         VhookSettingPanel.add(FontPathLabel, gridBagConstraints59);
534         VhookSettingPanel.add(showConvVideoCheckBox, gridBagConstraints63);
535         VhookSettingPanel.add(fontPathField, gridBagConstraints60);
536         VhookSettingPanel.add(fontIndexField, gridBagConstraints62);
537         VhookSettingPanel.add(FontIndexLabel, gridBagConstraints61);
538         VhookSettingPanel.add(SettingFontPathButton, gridBagConstraints64);
539         VhookSettingPanel.add(getFixFontSizeCheckBox(), gridBagConstraints14);
540         VhookSettingPanel.add(getOpaqueCommentCheckBox(), gridBagConstraints33);
541         VhookSettingPanel.add(getNotUseVhookCheckBox(), gridBagConstraints58);
542         VhookSettingPanel.add(getViewCommentField(), gridBagConstraints65);
543         VhookSettingPanel.add(ViewCommentLabel, gridBagConstraints66);
544         VhookSettingPanel.add(ShadowKindLabel, gridBagConstraints72);
545         VhookSettingPanel.add(getShadowComboBox(), gridBagConstraints73);
546
547         FFMpegTabPanel.add(PathSettingPanel, new GridBagConstraints(0, 0, 1, 1,
548                 1.0, 0.0, GridBagConstraints.NORTHEAST,
549                 GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0));
550         FFMpegTabPanel.add(FFmpegSettingPanel, gridBagConstraints1);
551     }
552
553     /**
554      * 保存設定パネル内のボタンにアクションリスナを割り当てる.
555      */
556     private void setListenerToSavePanelButton() {
557         ActionListener al;
558         al = new InputVideoPanelButtonListener();
559         videoSaveInfoPanel.getShowSavingVideoFolderDialogButton().addActionListener(al);
560         videoSaveInfoPanel.getShowSavingVideoFileDialogButton().addActionListener(al);
561         videoSaveInfoPanel.getNibrFileChooserButton().addActionListener(al);
562
563         al = new VideoUseRadioButtonListener();
564         videoSaveInfoPanel.getVideoNoSaveButton().addActionListener(al);
565         videoSaveInfoPanel.getVideoSaveButton().addActionListener(al);
566         videoSaveInfoPanel.getVideoUseNiBrButton().addActionListener(al);
567
568         al = new InputCommentPanelButtonListener();
569         savePanel.getShowSavingCommentFolderDialogButton().addActionListener(al);
570         savePanel.getShowSavingCommentFileDialogButton().addActionListener(al);
571
572         al = new OutputVideoPanelButtonListener();
573         savePanel.getShowSavingConvertedVideoFolderDialogButton().addActionListener(al);
574         savePanel.getShowSavingConvertedVideoFileDialogButton().addActionListener(al);
575     }
576
577     private void setPopup() {
578         mainOptionField.addMouseListener(new PopupRightClick(
579                 this.mainOptionField));
580         inputOptionField.addMouseListener(new PopupRightClick(
581                 this.inputOptionField));
582         outputOptionField.addMouseListener(new PopupRightClick(
583                 this.outputOptionField));
584         savePanel.getCommentNumField().addMouseListener(new PopupRightClick(
585                 savePanel.getCommentNumField()));
586
587         savePanel.getCommentSavedFileField().addMouseListener(new PopupRightClick(
588                 savePanel.getCommentSavedFileField()));
589         savePanel.getCommentSavedFolderField().addMouseListener(new PopupRightClick(
590                 savePanel.getCommentSavedFolderField()));
591
592         savePanel.getConvertedVideoSavedFileField().addMouseListener(new PopupRightClick(
593                 savePanel.getConvertedVideoSavedFileField()));
594         savePanel.getConvertedVideoSavedFolderField().addMouseListener(new PopupRightClick(
595                 savePanel.getConvertedVideoSavedFolderField()));
596
597         videoSaveInfoPanel.getVideoSavedFileField().addMouseListener(new PopupRightClick(
598                 videoSaveInfoPanel.getVideoSavedFileField()));
599         videoSaveInfoPanel.getVideoSavedFolderField().addMouseListener(new PopupRightClick(
600                 videoSaveInfoPanel.getVideoSavedFolderField()));
601         videoSaveInfoPanel.getNibrFileField().addMouseListener(
602                 new PopupRightClick(videoSaveInfoPanel.getNibrFileField()));
603
604         ffmpegPathField.addMouseListener(new PopupRightClick(
605                 this.ffmpegPathField));
606         vhookPathField.addMouseListener(new PopupRightClick(this.vhookPathField));
607         VideoID_TextField.addMouseListener(new PopupRightClick(
608                 this.VideoID_TextField));
609         viewCommentField.addMouseListener(new PopupRightClick(
610                 this.viewCommentField));
611         fontPathField.addMouseListener(new PopupRightClick(this.fontPathField));
612         mailAddressField.addMouseListener(new PopupRightClick(this.mailAddressField));
613         passwordField.addMouseListener(new PopupRightClick(this.passwordField));
614         WayBackField.addMouseListener(new PopupRightClick(this.WayBackField));
615
616         proxyTextField.addMouseListener(new PopupRightClick(this.proxyTextField));
617         proxyPortTextField.addMouseListener(new PopupRightClick(
618                 this.proxyPortTextField));
619
620         fontIndexField.addMouseListener(new PopupRightClick(this.fontIndexField));
621
622         ngWordTextField.addMouseListener(new PopupRightClick(
623                 this.ngWordTextField));
624         ngIdTextField.addMouseListener(new PopupRightClick(this.ngIdTextField));
625     }
626
627     private void setDropTarget() {
628         addTarget(videoSaveInfoPanel.getVideoSavedFileField(), false);
629         addTarget(videoSaveInfoPanel.getVideoSavedFolderField(), true);
630         addTarget(videoSaveInfoPanel.getNibrFileField(), false);
631
632         addTarget(savePanel.getCommentSavedFileField(), false);
633         addTarget(savePanel.getCommentSavedFolderField(), true);
634
635         addTarget(savePanel.getConvertedVideoSavedFileField(), false);
636         addTarget(savePanel.getConvertedVideoSavedFolderField(), true);
637
638         addTarget(ffmpegPathField, false);
639         addTarget(vhookPathField, false);
640         addTarget(fontPathField, false);
641
642     }
643
644     /**
645      * テキストフィールドに対しドロップを行った場合にファイルもしくはディレクトリの文字列を設定できるようにする.
646      * @param c 設定対象のテキストフィールドオブジェクト.
647      * @param isDir ディレクトリを設定する場合はtrue, ファイルの場合はfalse.
648      * @return ドロップターゲット(用途無し).
649      */
650     private DropTarget addTarget(JTextField c, boolean isDir) {
651         return new DropTarget(c, DnDConstants.ACTION_COPY, new FileDropTarget(
652                 c, isDir), true);
653     }
654     private File CurrentDir = new File(".");
655     private JPanel PathSettingPanel = new JPanel();
656     private JLabel FFmpegPathLabel = new JLabel();
657     private GridBagLayout gridBagLayout7 = new GridBagLayout();
658     private JTextField ffmpegPathField = new JTextField();
659     private JButton SettingFFmpegPathButton = new JButton();
660     private JLabel VhookPathLabel = new JLabel();
661     private JTextField vhookPathField = new JTextField();
662     private JButton SettingVhookPathButton = new JButton();
663     private JPanel VhookSettingPanel = new JPanel();
664     private GridBagLayout gridBagLayout8 = new GridBagLayout();
665     private JPanel FFmpegSettingPanel = new JPanel();
666     private GridBagLayout gblFFmpegSettingPanel = new GridBagLayout();
667     private JLabel FontPathLabel = new JLabel();
668     private JTextField fontPathField = new JTextField();
669     private JButton SettingFontPathButton = new JButton();
670     private JCheckBox showConvVideoCheckBox = new JCheckBox();
671
672     private void showSaveDialog(String title, JTextField field, boolean isSave,
673             boolean isDir) {
674         JFileChooser chooser = new JFileChooser(CurrentDir);
675         chooser.setDialogTitle(title);
676         int code = 0;
677         if (isDir) {
678             chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
679         }
680         if (isSave) {
681             code = chooser.showSaveDialog(this);
682         } else {
683             code = chooser.showOpenDialog(this);
684         }
685         if (code == JFileChooser.APPROVE_OPTION) {
686             if (isDir) {
687                 CurrentDir = chooser.getSelectedFile();
688                 field.setText(CurrentDir.getAbsolutePath());
689             } else {
690                 File selected = chooser.getSelectedFile();
691                 CurrentDir = chooser.getCurrentDirectory();
692                 field.setText(selected.getAbsolutePath());
693             }
694         }
695     }
696
697     private SProperties getSetting() {
698         SProperties setting = new SProperties(
699                 getBasicSetting(),
700                 getInputVideoSetting(),
701                 getInputCommentSetting(),
702                 getTcommentSetting(),
703                 getOutputVideoSetting(),
704                 getMovieSetting(),
705                 getConvertSetting());
706         return setting;
707     }
708
709     /**
710      * 設定を画面に反映する.
711      * @param setting 反映する設定.
712      */
713     private void setSetting(SProperties setting) {
714         // 基本設定
715         final BasicSetting basic = setting.getBasicSetting();
716         tempDir = basic.getTempDir();
717         mailAddressField.setText(basic.getUser().getMail());
718         passwordField.setText(basic.getUser().getPassword());
719         // プロキシ関連
720         useProxyCheckBox.setSelected(basic.isProxyUse());
721         proxyTextField.setText(basic.getProxyHost());
722         int proxy_port = basic.getProxyPort();
723         if (proxy_port >= 0 && proxy_port <= 65535) {
724             proxyPortTextField.setText(Integer.toString(proxy_port));
725         } else {
726             proxyPortTextField.setText("");
727         }
728
729         // 保存設定 - 入力動画
730         final InputVideoSetting inVideo = setting.getInputVideoSetting();
731         JRadioButton activeButton;
732         switch (inVideo.getProcessKind()) {
733             case NO_SAVE:
734                 activeButton = videoSaveInfoPanel.getVideoNoSaveButton();
735                 break;
736             case NICOBROWSER:
737                 activeButton = videoSaveInfoPanel.getVideoUseNiBrButton();
738                 break;
739             case SAVE:
740             default:
741                 activeButton = videoSaveInfoPanel.getVideoSaveButton();
742                 break;
743         }
744         activeButton.doClick();
745
746         videoSaveInfoPanel.getVideoSavedFileField().setText(inVideo.getFile().getPath());
747         videoSaveInfoPanel.getVideoSavedFolderField().setText(inVideo.getFolder().getPath());
748         videoSaveInfoPanel.getDelVideoCheckBox().setSelected(inVideo.isDeleteAfterConvert());
749         final boolean videoFixName = inVideo.isAutoNaming();
750         videoSaveInfoPanel.getSaveFileRadioButton().setSelected(!videoFixName);
751         videoSaveInfoPanel.getSaveFolderRadioButton().setSelected(videoFixName);
752         videoSaveInfoPanel.getNibrFileField().setText(inVideo.getNicoBrowserFile().getPath());
753
754         // 保存設定 - 入力コメント
755         final InputCommentSetting inputComment = setting.getInputCommentSetting();
756         savePanel.getSavingCommentCheckBox().setSelected(inputComment.getProcessKind());
757         savePanel.getCommentSavedFileField().setText(inputComment.getFile().getPath());
758         savePanel.getDelCommentCheckBox().setSelected(inputComment.isDeleteAfterConvert());
759         savePanel.getCommentSavedFolderField().setText(inputComment.getFolder().getPath());
760         savePanel.getCommentNumField().setText(Integer.toString(inputComment.getNumOfComment()));
761         savePanel.getFixCommentNumCheckBox().setSelected(inputComment.isSelfAdjustNumOfComment());
762         boolean commentFixName = inputComment.isAutoNaming();
763         savePanel.getCommentSaveFileRadioButton().setSelected(!commentFixName);
764         savePanel.getCommentSaveFolderRadioButton().setSelected(commentFixName);
765
766         // 投稿者コメント
767         InputTcommentSetting tcom = setting.getInputTcommentSetting();
768         savePanel.setTcommentDownload(tcom.getProcessKind());
769         savePanel.setTcommentDelete(tcom.isDeleteAfterConvert());
770         savePanel.setTcommentAutoFileName(tcom.isAutoNaming());
771         savePanel.setTcommentDirectoryName(tcom.getFolder().getPath());
772         savePanel.setTcommentFileName(tcom.getFile().getPath());
773
774         // 保存設定 - 出力コメント付き動画
775         final OutputVideoSetting outputVideo = setting.getOutputVideoSetting();
776         savePanel.getSavingConvertedVideoCheckBox().setSelected(outputVideo.getProcessKind());
777         savePanel.getAddCommentCheckBox().setSelected(outputVideo.isAddComment());
778         savePanel.getAddTcommentCheckBox().setSelected(outputVideo.isAddTcomment());
779         savePanel.getConvertedVideoSavedFileField().setText(outputVideo.getFile().getPath());
780         savePanel.getConvertedVideoSavedFolderField().setText(outputVideo.getFolder().getPath());
781         savePanel.getNotAddVideoIdConvVideoCheckBox().setSelected(outputVideo.isCutIdName());
782         boolean convFixName = outputVideo.isAutoNaming();
783         savePanel.getConvSaveFileRadioButton().setSelected(!convFixName);
784         savePanel.getConvSaveFolderRadioButton().setSelected(convFixName);
785
786         // 動画設定
787         final MovieSetting movie = setting.getMovieSetting();
788         ffmpegPathField.setText(movie.getFfmpeg().toString());
789         vhookPathField.setText(movie.getVhook().toString());
790         extOptionField.setText(movie.getFfmpegOption().getExtOption());
791         mainOptionField.setText(movie.getFfmpegOption().getMainOption());
792         inputOptionField.setText(movie.getFfmpegOption().getInOption());
793         outputOptionField.setText(movie.getFfmpegOption().getOutOption());
794         avfilterOptionField.setText(movie.getFfmpegOption().getAvfilterOption());
795         resizeCheckBox.setSelected(movie.getFfmpegOption().isResize());
796         resizeWidthField.setText(Integer.toString(movie.getFfmpegOption().getResizeWidth()));
797         resizeHeigitField.setText(Integer.toString(movie.getFfmpegOption().getResizeHeight()));
798         adjustRatioCheckBox.setSelected(movie.getFfmpegOption().isAdjustRatio());
799         FFmpegOptionModel.reload(movie.getOptionFile());
800
801         // 変換設定
802         final ConvertSetting conv = setting.getConvertSetting();
803         disableVhookCheckBox.setSelected(conv.isVhookDisabled());
804         viewCommentField.setText(Integer.toString(conv.getMaxNumOfComment()));
805         fontPathField.setText(conv.getFont().toString());
806         fontIndexField.setText(Integer.toString(conv.getFontIndex()));
807         shadowComboBox.setSelectedIndex(conv.getShadowIndex());
808         showConvVideoCheckBox.setSelected(conv.isShowConverting());
809         fixFontSizeCheckBox.setSelected(conv.isSelfAdjustFontSize());
810         opaqueCommentCheckBox.setSelected(conv.isCommentOpaque());
811         ngWordTextField.setText(conv.getNgSetting().getWord());
812         ngIdTextField.setText(conv.getNgSetting().getId());
813     }
814
815     /**
816      * [ファイル|終了] アクションが実行されました。
817      *
818      * @param actionEvent
819      *            ActionEvent
820      */
821     void jMenuFileExit_actionPerformed(ActionEvent actionEvent) {
822         try {
823             SProperties setting = getSetting();
824             SProperties.saveSetting(setting);
825         } catch (Throwable t) {
826             Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, "設定保存に失敗", t);
827         }
828         System.exit(0);
829     }
830
831     /**
832      * [ヘルプ|バージョン情報] アクションが実行されました。
833      *
834      * @param actionEvent
835      *            ActionEvent
836      */
837     void jMenuHelpAbout_actionPerformed(ActionEvent actionEvent) {
838         MainFrame_AboutBox dlg = new MainFrame_AboutBox(this);
839         dlg.pack();
840         dlg.setLocationRelativeTo(this);
841         dlg.setVisible(true);
842     }
843
844     /* 変換・保存する */
845     private Converter Converter = null;
846     // FFmpegの設定 ここから
847     private final JLabel extOptionLabel = new JLabel();
848     private final JTextField extOptionField = new JTextField();
849     private JLabel mainOptionLabel = new JLabel();
850     private JTextField mainOptionField = new JTextField();
851     private JLabel inputOptionLabel = new JLabel();
852     private JTextField inputOptionField = new JTextField();
853     private JLabel outputOptionLabel = new JLabel();
854     private JTextField outputOptionField = new JTextField();
855     private final JLabel avfilterOptionLabel = new JLabel();
856     private final JTextField avfilterOptionField = new JTextField();
857     private final JCheckBox resizeCheckBox = new JCheckBox("次のサイズに収まるよう縮小(-s)");
858     private final JLabel resizeWidthLabel = new JLabel("横");
859     private final JTextField resizeWidthField = new NumberFormattedTextField();
860     private final JLabel resizeHeightLabel = new JLabel("縦");
861     private final JTextField resizeHeigitField = new NumberFormattedTextField();
862     private final JCheckBox adjustRatioCheckBox = new JCheckBox("アスペクト比を維持");
863     // FFmpegの設定 ここまで
864     private JLabel FontIndexLabel = new JLabel();
865     private JTextField fontIndexField = new JTextField();
866     private JLabel VideoID_Label = new JLabel();
867     private JLabel WayBackLabel = new JLabel();
868     private JTextField WayBackField = new JTextField();
869     private GridBagLayout gridBagLayout1 = new GridBagLayout();
870     private JPanel OpPanel = new JPanel();
871     private JPanel BasicInfoTabPanel = new JPanel();
872     private GridBagLayout gridBagLayout12 = new GridBagLayout();
873     private JPanel ConvertingSettingPanel = null;
874     private JPanel NGWordSettingPanel = null;
875     private JLabel NGWordLabel = null;
876     private JTextField ngWordTextField = null;
877     private JLabel NGIDLabel = null;
878     private JTextField ngIdTextField = null;
879     // プロキシ設定
880     private JPanel ProxyInfoPanel = null;
881     private JCheckBox useProxyCheckBox = null;
882     private JLabel proxyLabel = null;
883     private JTextField proxyTextField = null;
884     private JLabel proxyPortLabel = null;
885     private JTextField proxyPortTextField = null;
886     //
887     private JCheckBox fixFontSizeCheckBox = null;
888     private JCheckBox opaqueCommentCheckBox = null;
889     private final SavePanel savePanel = new SavePanel();
890     private final VideoSaveInfoPanel videoSaveInfoPanel;
891     private JComboBox FFmpegOptionComboBox = null;
892     private JButton FFmpegOptionReloadButton = null;
893     private JPanel FFmpegOptionComboBoxPanel = null;
894
895     public void DoButton_actionPerformed(ActionEvent e) {
896         if (Converter == null || Converter.isConverted()) {
897             try {
898                 executeConvert();
899             } catch (Exception ex) {
900                 String text = ex.getMessage();
901                 if (StringUtils.isEmpty(text)) {
902                     text = "予期しないエラーのため中断しました。";
903                 }
904                 ex.printStackTrace();
905                 statusBar.setText(text);
906             }
907         } else { /* 開始しているので、ストップする。 */
908             final ConvertStopFlag flag = Converter.getStopFlag();
909             if (!flag.needStop()) { /* まだストップしていない。 */
910                 flag.requestStop();
911             }
912         }
913     }
914
915     private void executeConvert() throws IOException {
916         String url;
917
918         // NicoBrowserファイルを利用する場合は、ファイル名からビデオIDを特定.
919         if (videoSaveInfoPanel.getVideoUseNiBrButton().isSelected()) {
920             try {
921                 String fileName = videoSaveInfoPanel.getNibrFileField().getText();
922                 NicoDBFinder finder = NicoDBFinder.getInstance();
923                 NicoContent info = finder.findNicoContent(fileName);
924                 if (info != null) {
925                     url = info.getNicoId();
926                 } else {
927                     url = "";
928                 }
929             } catch (Exception ex) {
930                 JOptionPane.showMessageDialog(this, ex.getMessage(), "エラー", JOptionPane.ERROR_MESSAGE);
931                 return;
932             }
933         } else {
934             url = VideoID_TextField.getText();
935         }
936
937         TextProgressListener sl = new TextProgressListener() {
938
939             public void setText(final String text) {
940                 SwingUtilities.invokeLater(new Runnable() {
941
942                     public void run() {
943                         statusBar.setText(text);
944                     }
945                 });
946             }
947         };
948
949         ConvertStopFlag.StateChangeListener scl = new ConvertStopFlag.StateChangeListener() {
950
951             public void changeState(final State s) {
952                 SwingUtilities.invokeLater(new Runnable() {
953
954                     public void run() {
955                         switch (s) {
956                             case STOPPING:
957                                 DoButton.setText(DoButtonWaitString);
958                                 break;
959                             case FINISHED:
960                                 DoButton.setText(DoButtonDefString);
961                         }
962                     }
963                 });
964             }
965         };
966
967         Converter = new Converter(url, WayBackField.getText(), getSetting().toProfile(), sl,
968                 new ConvertStopFlag(scl));
969         DoButton.setText(DoButtonStopString);
970         new Thread(Converter).start();
971
972     }
973
974     /* FFmpegへのパス */
975     public void SettingFFmpegPathButton_actionPerformed(ActionEvent e) {
976         showSaveDialog("FFmpegへのパス", ffmpegPathField, false, false);
977     }
978
979     public void SettingVhookPathButton_actionPerformed(ActionEvent e) {
980         showSaveDialog("拡張vhookライブラリへのパス", vhookPathField, false, false);
981     }
982
983     public void SettingFontPathButton_actionPerformed(ActionEvent e) {
984         showSaveDialog("フォントへのパス", fontPathField, false, false);
985     }
986
987     public void this_windowClosing(WindowEvent e) {
988         this.jMenuFileExit_actionPerformed(null);
989     }
990
991     /**
992      * This method initializes ConvertingSettingPanel
993      *
994      * @return javax.swing.JPanel
995      */
996     private JPanel getConvertingSettingPanel() {
997         if (ConvertingSettingPanel == null) {
998             GridBagConstraints gridBagConstraints11 = new GridBagConstraints();
999             gridBagConstraints11.weighty = 1.0;
1000             gridBagConstraints11.weightx = 1.0;
1001             gridBagConstraints11.insets = new Insets(0, 5, 0, 5);
1002             gridBagConstraints11.gridy = 1;
1003             gridBagConstraints11.gridx = 0;
1004             gridBagConstraints11.anchor = GridBagConstraints.NORTH;
1005             gridBagConstraints11.fill = GridBagConstraints.HORIZONTAL;
1006             GridBagConstraints gridBagConstraints = new GridBagConstraints(0,
1007                     2, 1, 1, 1.0, 1.0, GridBagConstraints.NORTH,
1008                     GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0);
1009             gridBagConstraints.gridx = 0;
1010             gridBagConstraints.anchor = GridBagConstraints.CENTER;
1011             gridBagConstraints.weighty = 0.0;
1012             gridBagConstraints.gridy = 0;
1013             ConvertingSettingPanel = new JPanel();
1014             ConvertingSettingPanel.setLayout(new GridBagLayout());
1015             ConvertingSettingPanel.add(getNGWordSettingPanel(),
1016                     gridBagConstraints11);
1017             ConvertingSettingPanel.add(VhookSettingPanel, gridBagConstraints);
1018         }
1019         return ConvertingSettingPanel;
1020     }
1021
1022     /**
1023      * This method initializes NGWordSettingPanel
1024      *
1025      * @return javax.swing.JPanel
1026      */
1027     private JPanel getNGWordSettingPanel() {
1028         if (NGWordSettingPanel == null) {
1029             GridBagConstraints gridBagConstraints5 = new GridBagConstraints();
1030             gridBagConstraints5.fill = GridBagConstraints.HORIZONTAL;
1031             gridBagConstraints5.gridy = 1;
1032             gridBagConstraints5.weightx = 1.0;
1033             gridBagConstraints5.insets = new Insets(0, 5, 5, 5);
1034             gridBagConstraints5.gridx = 1;
1035             GridBagConstraints gridBagConstraints4 = new GridBagConstraints();
1036             gridBagConstraints4.gridx = 0;
1037             gridBagConstraints4.anchor = GridBagConstraints.WEST;
1038             gridBagConstraints4.insets = new Insets(0, 5, 5, 0);
1039             gridBagConstraints4.gridy = 1;
1040             NGIDLabel = new JLabel();
1041             NGIDLabel.setText("NG ID");
1042             GridBagConstraints gridBagConstraints3 = new GridBagConstraints();
1043             gridBagConstraints3.fill = GridBagConstraints.HORIZONTAL;
1044             gridBagConstraints3.gridy = 0;
1045             gridBagConstraints3.weightx = 1.0;
1046             gridBagConstraints3.insets = new Insets(0, 5, 5, 5);
1047             gridBagConstraints3.gridx = 1;
1048             GridBagConstraints gridBagConstraints2 = new GridBagConstraints();
1049             gridBagConstraints2.gridx = 0;
1050             gridBagConstraints2.insets = new Insets(0, 5, 5, 0);
1051             gridBagConstraints2.gridy = 0;
1052             NGWordLabel = new JLabel();
1053             NGWordLabel.setText("NGワード");
1054             NGWordSettingPanel = new JPanel();
1055             NGWordSettingPanel.setLayout(new GridBagLayout());
1056             NGWordSettingPanel.setBorder(BorderFactory.createTitledBorder(null,
1057                     "NGワード・ID設定(半角スペース区切りで複数入力)"));
1058             NGWordSettingPanel.add(NGWordLabel, gridBagConstraints2);
1059             NGWordSettingPanel.add(getNGWordTextField(), gridBagConstraints3);
1060             NGWordSettingPanel.add(NGIDLabel, gridBagConstraints4);
1061             NGWordSettingPanel.add(getNGIDTextField(), gridBagConstraints5);
1062         }
1063         return NGWordSettingPanel;
1064     }
1065
1066     /**
1067      * This method initializes NGWordTextField
1068      *
1069      * @return javax.swing.JTextField
1070      */
1071     private JTextField getNGWordTextField() {
1072         if (ngWordTextField == null) {
1073             ngWordTextField = new JTextField();
1074             ngWordTextField.setName("ngWordTextField");
1075         }
1076         return ngWordTextField;
1077     }
1078
1079     /**
1080      * This method initializes NGIDTextField
1081      *
1082      * @return javax.swing.JTextField
1083      */
1084     private JTextField getNGIDTextField() {
1085         if (ngIdTextField == null) {
1086             ngIdTextField = new JTextField();
1087             ngIdTextField.setName("ngIdTextField");
1088         }
1089         return ngIdTextField;
1090     }
1091
1092     /**
1093      * This method initializes ProxyInfoPanel
1094      *
1095      * @return javax.swing.JPanel
1096      */
1097     private JPanel getProxyInfoPanel() {
1098         if (ProxyInfoPanel == null) {
1099             GridBagConstraints gridBagConstraints13 = new GridBagConstraints();
1100             gridBagConstraints13.gridx = 0;
1101             gridBagConstraints13.gridwidth = 2;
1102             gridBagConstraints13.weightx = 1.0;
1103             gridBagConstraints13.fill = GridBagConstraints.HORIZONTAL;
1104             gridBagConstraints13.insets = new Insets(0, 5, 0, 5);
1105             gridBagConstraints13.gridy = 0;
1106             GridBagConstraints gridBagConstraints12 = new GridBagConstraints();
1107             gridBagConstraints12.fill = GridBagConstraints.HORIZONTAL;
1108             gridBagConstraints12.gridy = 2;
1109             gridBagConstraints12.weightx = 1.0;
1110             gridBagConstraints12.insets = new Insets(5, 0, 5, 5);
1111             gridBagConstraints12.gridx = 1;
1112             GridBagConstraints gridBagConstraints10 = new GridBagConstraints();
1113             gridBagConstraints10.gridx = 0;
1114             gridBagConstraints10.insets = new Insets(5, 5, 5, 5);
1115             gridBagConstraints10.gridy = 2;
1116             proxyPortLabel = new JLabel();
1117             proxyPortLabel.setText("ポート番号");
1118             GridBagConstraints gridBagConstraints9 = new GridBagConstraints();
1119             gridBagConstraints9.fill = GridBagConstraints.BOTH;
1120             gridBagConstraints9.gridy = 1;
1121             gridBagConstraints9.weightx = 1.0;
1122             gridBagConstraints9.insets = new Insets(0, 0, 0, 5);
1123             gridBagConstraints9.gridx = 1;
1124             GridBagConstraints gridBagConstraints8 = new GridBagConstraints();
1125             gridBagConstraints8.gridx = 0;
1126             gridBagConstraints8.insets = new Insets(0, 5, 0, 5);
1127             gridBagConstraints8.fill = GridBagConstraints.NONE;
1128             gridBagConstraints8.anchor = GridBagConstraints.EAST;
1129             gridBagConstraints8.gridy = 1;
1130             proxyLabel = new JLabel();
1131             proxyLabel.setText("プロキシ");
1132             ProxyInfoPanel = new JPanel();
1133             ProxyInfoPanel.setLayout(new GridBagLayout());
1134             ProxyInfoPanel.setBorder(BorderFactory.createTitledBorder(null,
1135                     "プロキシ設定"));
1136             ProxyInfoPanel.add(proxyLabel, gridBagConstraints8);
1137             ProxyInfoPanel.add(getProxyTextField(), gridBagConstraints9);
1138             ProxyInfoPanel.add(proxyPortLabel, gridBagConstraints10);
1139             ProxyInfoPanel.add(getProxyPortTextField(), gridBagConstraints12);
1140             ProxyInfoPanel.add(getUseProxyCheckBox(), gridBagConstraints13);
1141         }
1142         return ProxyInfoPanel;
1143     }
1144
1145     /**
1146      * This method initializes ProxyTextField
1147      *
1148      * @return javax.swing.JTextField
1149      */
1150     private JTextField getProxyTextField() {
1151         if (proxyTextField == null) {
1152             proxyTextField = new JTextField();
1153             proxyTextField.setName("proxyTextField");
1154         }
1155         return proxyTextField;
1156     }
1157
1158     /**
1159      * This method initializes ProxyPortTextField
1160      *
1161      * @return javax.swing.JTextField
1162      */
1163     private JTextField getProxyPortTextField() {
1164         if (proxyPortTextField == null) {
1165             proxyPortTextField = new JTextField();
1166             proxyPortTextField.setName("proxyPortTextField");
1167         }
1168         return proxyPortTextField;
1169     }
1170
1171     /**
1172      * This method initializes UseProxyCheckBox
1173      *
1174      * @return javax.swing.JCheckBox
1175      */
1176     private JCheckBox getUseProxyCheckBox() {
1177         if (useProxyCheckBox == null) {
1178             useProxyCheckBox = new JCheckBox();
1179             useProxyCheckBox.setText("プロキシを使う");
1180             useProxyCheckBox.setName("useProxyCheckBox");
1181         }
1182         return useProxyCheckBox;
1183     }
1184
1185     /**
1186      * This method initializes FixFontSizeCheckBox
1187      *
1188      * @return javax.swing.JCheckBox
1189      */
1190     private JCheckBox getFixFontSizeCheckBox() {
1191         if (fixFontSizeCheckBox == null) {
1192             fixFontSizeCheckBox = new JCheckBox();
1193             fixFontSizeCheckBox.setText("フォントサイズを画面にあわせて自動調整する");
1194             fixFontSizeCheckBox.setName("fixFontSizeCheckBox");
1195         }
1196         return fixFontSizeCheckBox;
1197     }
1198
1199     /**
1200      * This method initializes OpaqueCommentCheckBox
1201      *
1202      * @return javax.swing.JCheckBox
1203      */
1204     private JCheckBox getOpaqueCommentCheckBox() {
1205         if (opaqueCommentCheckBox == null) {
1206             opaqueCommentCheckBox = new JCheckBox();
1207             opaqueCommentCheckBox.setText("全てのコメントを不透明にする");
1208             opaqueCommentCheckBox.setName("opaqueCommentCheckBox");
1209         }
1210         return opaqueCommentCheckBox;
1211     }
1212     /**
1213      * This method initializes FFmpegOptionComboBox
1214      *
1215      * @return javax.swing.JComboBox
1216      */
1217     private final OptionComboBoxModel FFmpegOptionModel = new OptionComboBoxModel();
1218     private JCheckBox disableVhookCheckBox = null;
1219     private JTextField viewCommentField = null;
1220     private JLabel ViewCommentLabel = null;
1221     private JLabel ShadowKindLabel = null;
1222     private JComboBox shadowComboBox = null;
1223
1224     private JComboBox getFFmpegOptionComboBox() {
1225         if (FFmpegOptionComboBox == null) {
1226             FFmpegOptionComboBox = new JComboBox(FFmpegOptionModel);
1227             FFmpegOptionComboBox.addActionListener(new java.awt.event.ActionListener() {
1228
1229                 public void actionPerformed(java.awt.event.ActionEvent e) {
1230                     if (FFmpegOptionModel.isFile()) {// ファイル
1231                         setFFMpegOptionEnabled(false);
1232                     } else {// ファイルでない
1233                         setFFMpegOptionEnabled(true);
1234                         setFFMpegOptionCheckbox();
1235                     }
1236                 }
1237
1238                 private void setFFMpegOptionEnabled(boolean enable) {
1239                     extOptionField.setEnabled(enable);
1240                     mainOptionField.setEnabled(enable);
1241                     inputOptionField.setEnabled(enable);
1242                     outputOptionField.setEnabled(enable);
1243                     avfilterOptionField.setEnabled(enable);
1244                     resizeCheckBox.setEnabled(enable);
1245                     resizeWidthField.setEnabled(enable);
1246                     resizeHeigitField.setEditable(enable);
1247                     adjustRatioCheckBox.setEnabled(enable);
1248                 }
1249             });
1250         }
1251         return FFmpegOptionComboBox;
1252     }
1253
1254     /**
1255      * This method initializes FFmpegOptionReloadButton
1256      *
1257      * @return javax.swing.JButton
1258      */
1259     private JButton getFFmpegOptionReloadButton() {
1260         if (FFmpegOptionReloadButton == null) {
1261             FFmpegOptionReloadButton = new JButton();
1262             FFmpegOptionReloadButton.setText("更新");
1263             FFmpegOptionReloadButton.addActionListener(new java.awt.event.ActionListener() {
1264
1265                 public void actionPerformed(java.awt.event.ActionEvent e) {
1266                     FFmpegOptionModel.reload();
1267                 }
1268             });
1269         }
1270         return FFmpegOptionReloadButton;
1271     }
1272
1273     /**
1274      * This method initializes FFmpegOptionComboBoxPanel
1275      *
1276      * @return javax.swing.JPanel
1277      */
1278     private JPanel getFFmpegOptionComboBoxPanel() {
1279         if (FFmpegOptionComboBoxPanel == null) {
1280             GridBagConstraints gridBagConstraints47 = new GridBagConstraints();
1281             gridBagConstraints47.fill = GridBagConstraints.BOTH;
1282             gridBagConstraints47.gridx = -1;
1283             gridBagConstraints47.gridy = -1;
1284             gridBagConstraints47.insets = new Insets(0, 0, 5, 5);
1285             GridBagConstraints gridBagConstraints46 = new GridBagConstraints();
1286             gridBagConstraints46.fill = GridBagConstraints.HORIZONTAL;
1287             gridBagConstraints46.gridwidth = 3;
1288             gridBagConstraints46.gridx = -1;
1289             gridBagConstraints46.gridy = -1;
1290             gridBagConstraints46.weightx = 1.0;
1291             gridBagConstraints46.insets = new Insets(0, 5, 5, 5);
1292             FFmpegOptionComboBoxPanel = new JPanel();
1293             FFmpegOptionComboBoxPanel.setLayout(new GridBagLayout());
1294             FFmpegOptionComboBoxPanel.add(getFFmpegOptionComboBox(),
1295                     gridBagConstraints46);
1296             FFmpegOptionComboBoxPanel.add(getFFmpegOptionReloadButton(),
1297                     gridBagConstraints47);
1298         }
1299         return FFmpegOptionComboBoxPanel;
1300     }
1301
1302     /**
1303      * This method initializes NotUseVhookCheckBox
1304      *
1305      * @return javax.swing.JCheckBox
1306      */
1307     private JCheckBox getNotUseVhookCheckBox() {
1308         if (disableVhookCheckBox == null) {
1309             disableVhookCheckBox = new JCheckBox();
1310             disableVhookCheckBox.setText("拡張vhookライブラリを無効にする(デバッグ用)");
1311             disableVhookCheckBox.setName("disableVhookCheckBox");
1312         }
1313         return disableVhookCheckBox;
1314     }
1315
1316     /**
1317      * This method initializes ViewCommentField
1318      *
1319      * @return javax.swing.JTextField
1320      */
1321     private JTextField getViewCommentField() {
1322         if (viewCommentField == null) {
1323             viewCommentField = new JTextField();
1324             viewCommentField.setName("viewCommentField");
1325         }
1326         return viewCommentField;
1327     }
1328
1329     /**
1330      * This method initializes ShadowComboBox
1331      *
1332      * @return javax.swing.JComboBox
1333      */
1334     private JComboBox getShadowComboBox() {
1335         if (shadowComboBox == null) {
1336             shadowComboBox = new JComboBox(SProperties.ShadowKindArray);
1337             shadowComboBox.setName("shadowComboBox");
1338         }
1339         return shadowComboBox;
1340     }
1341
1342     private BasicSetting getBasicSetting() {
1343         String mail = mailAddressField.getText();
1344         String pass = String.valueOf(passwordField.getPassword());
1345         boolean proxyUse = useProxyCheckBox.isSelected();
1346         String proxyHost = proxyTextField.getText();
1347         int proxyPort;
1348         try {
1349             proxyPort = Integer.parseInt(proxyPortTextField.getText());
1350         } catch (NumberFormatException e) {
1351             proxyPort = -1;
1352         }
1353         // TODO 作業用ディレクトリの設定GUI無し
1354         return new BasicSetting(tempDir, mail, pass, proxyUse, proxyHost, proxyPort);
1355     }
1356
1357     private InputVideoSetting getInputVideoSetting() {
1358         VideoSaveKind kind;
1359         if (videoSaveInfoPanel.getVideoNoSaveButton().isSelected() == true) {
1360             kind = VideoSaveKind.NO_SAVE;
1361         } else if (videoSaveInfoPanel.getVideoUseNiBrButton().isSelected() == true) {
1362             kind = VideoSaveKind.NICOBROWSER;
1363         } else {
1364             kind = VideoSaveKind.SAVE;
1365         }
1366         boolean autoNaming = videoSaveInfoPanel.getSaveFolderRadioButton().isSelected();
1367         String folder = videoSaveInfoPanel.getVideoSavedFolderField().getText();
1368         String file = videoSaveInfoPanel.getVideoSavedFileField().getText();
1369         boolean delete = videoSaveInfoPanel.getDelVideoCheckBox().isSelected();
1370         String nibrFile = videoSaveInfoPanel.getNibrFileField().getText();
1371
1372         return new InputVideoSetting(kind, autoNaming, new File(folder), new File(file), delete, new File(nibrFile));
1373     }
1374
1375     private InputCommentSetting getInputCommentSetting() {
1376         boolean download = savePanel.getSavingCommentCheckBox().isSelected();
1377         String file = savePanel.getCommentSavedFileField().getText();
1378         int back_comment;
1379         try {
1380             back_comment = Integer.parseInt(savePanel.getCommentNumField().getText());
1381         } catch (NumberFormatException ex) {
1382             back_comment = 500;
1383         }
1384         boolean delete = savePanel.getDelCommentCheckBox().isSelected();
1385         boolean autoNaming = savePanel.getCommentSaveFolderRadioButton().isSelected();
1386         String folder = savePanel.getCommentSavedFolderField().getText();
1387         boolean adjustNumOfCom = savePanel.getFixCommentNumCheckBox().isSelected();
1388
1389         return new InputCommentSetting(download, autoNaming, new File(folder), new File(file), delete, adjustNumOfCom,
1390                 back_comment);
1391     }
1392
1393     /**
1394      * 画面入力値から投稿者コメント設定を作成する.
1395      * @return 作成した投稿者コメント設定.
1396      */
1397     private InputTcommentSetting getTcommentSetting() {
1398         boolean down = savePanel.isTcommentDownload();
1399         boolean del = savePanel.isTcommentDelete();
1400         boolean naming = savePanel.isTcommentAutoFileName();
1401         String dir = savePanel.getTcommentDirectoryName();
1402         String f = savePanel.getTcommentFileName();
1403         return new InputTcommentSetting(down, naming, dir, f, del);
1404     }
1405
1406     private OutputVideoSetting getOutputVideoSetting() {
1407         boolean process = savePanel.getSavingConvertedVideoCheckBox().isSelected();
1408         boolean addComment = savePanel.getAddCommentCheckBox().isSelected();
1409         boolean addTcomment = savePanel.getAddTcommentCheckBox().isSelected();
1410         String file = savePanel.getConvertedVideoSavedFileField().getText();
1411         boolean cutId = savePanel.getNotAddVideoIdConvVideoCheckBox().isSelected();
1412         boolean autoNaming = savePanel.getConvSaveFolderRadioButton().isSelected();
1413         String folder = savePanel.getConvertedVideoSavedFolderField().getText();
1414
1415         return new OutputVideoSetting(process, autoNaming, new File(folder), new File(file), cutId, addComment,
1416                 addTcomment);
1417     }
1418
1419     private MovieSetting getMovieSetting() {
1420         String ffmpeg = ffmpegPathField.getText();
1421         String vhook = vhookPathField.getText();
1422         String ext = extOptionField.getText();
1423         String main = mainOptionField.getText();
1424         String in = inputOptionField.getText();
1425         String out = outputOptionField.getText();
1426         String avfilter = avfilterOptionField.getText();
1427         boolean resize = resizeCheckBox.isSelected();
1428         String width = resizeWidthField.getText();
1429         String height = resizeHeigitField.getText();
1430         boolean adjust = adjustRatioCheckBox.isSelected();
1431         File optionFile = FFmpegOptionModel.getSelectedFile();
1432
1433         FfmpegOption opt = new FfmpegOption(ext, main, in, out, avfilter, resize, width, height, adjust);
1434         return new MovieSetting(new File(ffmpeg), new File(vhook), optionFile, opt);
1435     }
1436
1437     private ConvertSetting getConvertSetting() {
1438         boolean vhookDisabled = disableVhookCheckBox.isSelected();
1439         int maxComment = 30;
1440         try {
1441             maxComment = Integer.parseInt(viewCommentField.getText());
1442         } catch (NumberFormatException ex) {
1443         }
1444         File font = new File(fontPathField.getText());
1445         int fontIndex = Integer.parseInt(fontIndexField.getText());
1446         int shadowIndex = shadowComboBox.getSelectedIndex();
1447         boolean showConv = showConvVideoCheckBox.isSelected();
1448         boolean adjustFont = fixFontSizeCheckBox.isSelected();
1449         boolean commentOpaque = opaqueCommentCheckBox.isSelected();
1450         NgSetting ngSetting = new NgSetting(ngWordTextField.getText(), ngIdTextField.getText());
1451
1452         return new ConvertSetting(vhookDisabled, maxComment, font, fontIndex, shadowIndex, showConv, adjustFont,
1453                 commentOpaque, ngSetting);
1454     }
1455
1456     private class InputVideoPanelButtonListener implements ActionListener {
1457
1458         public void actionPerformed(ActionEvent e) {
1459             final Object source = e.getSource();
1460             final VideoSaveInfoPanel panel = videoSaveInfoPanel;
1461             String title;
1462             JTextField field;
1463             boolean isSave;
1464             boolean isDir;
1465
1466             if (source == panel.getShowSavingVideoFolderDialogButton()) {
1467                 title = "動画の保存先(フォルダ)";
1468                 field = panel.getVideoSavedFolderField();
1469                 isSave = true;
1470                 isDir = true;
1471             } else if (source == panel.getShowSavingVideoFileDialogButton()) {
1472                 title = "動画の保存先(ファイル)";
1473                 field = panel.getVideoSavedFileField();
1474                 isSave = true;
1475                 isDir = false;
1476             } else if (source == panel.getNibrFileChooserButton()) {
1477                 title = "NicoBrowserファイル選択";
1478                 field = panel.getNibrFileField();
1479                 isSave = false;
1480                 isDir = false;
1481             } else {
1482                 return;
1483             }
1484             showSaveDialog(title, field, isSave, isDir);
1485         }
1486     }
1487
1488     private class InputCommentPanelButtonListener implements ActionListener {
1489
1490         public void actionPerformed(ActionEvent e) {
1491             final Object source = e.getSource();
1492             String title;
1493             JTextField field;
1494             boolean isSave;
1495             boolean isDir;
1496             if (source == savePanel.getShowSavingCommentFolderDialogButton()) {
1497                 title = "コメントの保存先(フォルダ)";
1498                 field = savePanel.getCommentSavedFolderField();
1499                 isSave = true;
1500                 isDir = true;
1501             } else if (source == savePanel.getShowSavingCommentFileDialogButton()) {
1502                 title = "コメントの保存先(ファイル)";
1503                 field = savePanel.getCommentSavedFileField();
1504                 isSave = true;
1505                 isDir = false;
1506             } else {
1507                 return;
1508             }
1509             showSaveDialog(title, field, isSave, isDir);
1510         }
1511     }
1512
1513     private class OutputVideoPanelButtonListener implements ActionListener {
1514
1515         public void actionPerformed(ActionEvent e) {
1516             final Object source = e.getSource();
1517             String title;
1518             JTextField field;
1519             boolean isSave;
1520             boolean isDir;
1521             if (source == savePanel.getShowSavingConvertedVideoFolderDialogButton()) {
1522                 title = "コメント付き動画の保存先(フォルダ)";
1523                 field = savePanel.getConvertedVideoSavedFolderField();
1524                 isSave = true;
1525                 isDir = true;
1526             } else if (source == savePanel.getShowSavingConvertedVideoFileDialogButton()) {
1527                 title = "コメント付き動画の保存先(ファイル)";
1528                 field = savePanel.getConvertedVideoSavedFileField();
1529                 isSave = true;
1530                 isDir = false;
1531             } else {
1532                 return;
1533             }
1534             showSaveDialog(title, field, isSave, isDir);
1535         }
1536     }
1537
1538     private class VideoUseRadioButtonListener implements ActionListener {
1539
1540         public void actionPerformed(ActionEvent e) {
1541             Object source = e.getSource();
1542             if (source == videoSaveInfoPanel.getVideoUseNiBrButton()) {
1543                 maskExt();
1544             } else {
1545                 maskBase();
1546             }
1547         }
1548
1549         private void maskBase() {
1550             mask(true);
1551         }
1552
1553         private void maskExt() {
1554             mask(false);
1555         }
1556
1557         private void mask(boolean b) {
1558             final VideoSaveInfoPanel panel = videoSaveInfoPanel;
1559             VideoID_TextField.setEditable(b);
1560             panel.getDelVideoCheckBox().setEnabled(b);
1561
1562             panel.getSaveFolderRadioButton().setEnabled(b);
1563             panel.getVideoSavedFolderField().setEnabled(b);
1564             panel.getShowSavingVideoFolderDialogButton().setEnabled(b);
1565
1566             panel.getSaveFileRadioButton().setEnabled(b);
1567             panel.getVideoSavedFileField().setEnabled(b);
1568             panel.getShowSavingVideoFileDialogButton().setEnabled(b);
1569
1570             panel.getNibrFileField().setEnabled(!b);
1571             panel.getNibrFileChooserButton().setEnabled(!b);
1572         }
1573     }
1574 }
1575
1576 class MainFrame_this_windowAdapter extends WindowAdapter {
1577
1578     private MainFrame adaptee;
1579
1580     MainFrame_this_windowAdapter(MainFrame adaptee) {
1581         this.adaptee = adaptee;
1582     }
1583
1584     @Override
1585     public void windowClosing(WindowEvent e) {
1586         adaptee.this_windowClosing(e);
1587     }
1588 }
1589
1590 class MainFrame_SettingFontPathButton_actionAdapter implements ActionListener {
1591
1592     private MainFrame adaptee;
1593
1594     MainFrame_SettingFontPathButton_actionAdapter(MainFrame adaptee) {
1595         this.adaptee = adaptee;
1596     }
1597
1598     public void actionPerformed(ActionEvent e) {
1599         adaptee.SettingFontPathButton_actionPerformed(e);
1600     }
1601 }
1602
1603 class MainFrame_SettingVhookPathButton_actionAdapter implements ActionListener {
1604
1605     private MainFrame adaptee;
1606
1607     MainFrame_SettingVhookPathButton_actionAdapter(MainFrame adaptee) {
1608         this.adaptee = adaptee;
1609     }
1610
1611     public void actionPerformed(ActionEvent e) {
1612         adaptee.SettingVhookPathButton_actionPerformed(e);
1613     }
1614 }
1615
1616 class MainFrame_SettingFFmpegPathButton_actionAdapter implements ActionListener {
1617
1618     private MainFrame adaptee;
1619
1620     MainFrame_SettingFFmpegPathButton_actionAdapter(MainFrame adaptee) {
1621         this.adaptee = adaptee;
1622     }
1623
1624     public void actionPerformed(ActionEvent e) {
1625         adaptee.SettingFFmpegPathButton_actionPerformed(e);
1626     }
1627 }
1628
1629 class MainFrame_DoButton_actionAdapter implements ActionListener {
1630
1631     private MainFrame adaptee;
1632
1633     MainFrame_DoButton_actionAdapter(MainFrame adaptee) {
1634         this.adaptee = adaptee;
1635     }
1636
1637     public void actionPerformed(ActionEvent e) {
1638         adaptee.DoButton_actionPerformed(e);
1639     }
1640 }
1641
1642 class MainFrame_jMenuFileExit_ActionAdapter implements ActionListener {
1643
1644     MainFrame adaptee;
1645
1646     MainFrame_jMenuFileExit_ActionAdapter(MainFrame adaptee) {
1647         this.adaptee = adaptee;
1648     }
1649
1650     public void actionPerformed(ActionEvent actionEvent) {
1651         adaptee.jMenuFileExit_actionPerformed(actionEvent);
1652     }
1653 }
1654
1655 class MainFrame_jMenuHelpAbout_ActionAdapter implements ActionListener {
1656
1657     MainFrame adaptee;
1658
1659     MainFrame_jMenuHelpAbout_ActionAdapter(MainFrame adaptee) {
1660         this.adaptee = adaptee;
1661     }
1662
1663     public void actionPerformed(ActionEvent actionEvent) {
1664         adaptee.jMenuHelpAbout_actionPerformed(actionEvent);
1665     }
1666 }