From cf07c722faf8328171d8aa38077a56a3a2ac3528 Mon Sep 17 00:00:00 2001 From: yukihane Date: Tue, 2 Aug 2011 16:40:50 +0900 Subject: [PATCH] =?utf8?q?avfilter=E3=82=AA=E3=83=97=E3=82=B7=E3=83=A7?= =?utf8?q?=E3=83=B3=E5=85=A5=E5=8A=9B=E6=AC=84=E3=81=8C=E8=A1=A8=E7=A4=BA?= =?utf8?q?=E3=81=8B=E3=82=89=E6=BC=8F=E3=82=8C=E3=81=A6=E3=81=84=E3=81=9F?= =?utf8?q?=E3=81=AE=E3=81=A7=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- frontend/src/saccubus/MainFrame.java | 72 ++++++++++++++++++++---------------- 1 file changed, 41 insertions(+), 31 deletions(-) diff --git a/frontend/src/saccubus/MainFrame.java b/frontend/src/saccubus/MainFrame.java index 989ad55..9e2958e 100644 --- a/frontend/src/saccubus/MainFrame.java +++ b/frontend/src/saccubus/MainFrame.java @@ -447,13 +447,18 @@ public class MainFrame extends JFrame { .addComponent(extOptionLabel) .addComponent(mainOptionLabel) .addComponent(inputOptionLabel) - .addComponent(outputOptionLabel)) + .addComponent(outputOptionLabel) + .addComponent(avfilterOptionLabel) + ) .addPreferredGap(ComponentPlacement.RELATED) .addGroup(layout.createParallelGroup() .addComponent(extOptionField) .addComponent(mainOptionField) .addComponent(inputOptionField) - .addComponent(outputOptionField))) + .addComponent(outputOptionField) + .addComponent(avfilterOptionField) + ) + ) .addGroup(layout.createParallelGroup() .addGroup(layout.createSequentialGroup() .addComponent(resizeCheckBox) @@ -464,39 +469,44 @@ public class MainFrame extends JFrame { .addPreferredGap(ComponentPlacement.UNRELATED) .addComponent(resizeHeightLabel) .addPreferredGap(ComponentPlacement.RELATED) - .addComponent(resizeHeigitField))) - .addGroup(layout.createSequentialGroup() - .addGap(10) - .addComponent(adjustRatioCheckBox)) - .addGroup(layout.createSequentialGroup() - .addGap(20) + .addComponent(resizeHeigitField) ) - ); + ) + .addGroup(layout.createSequentialGroup() + .addGap(10) + .addComponent(adjustRatioCheckBox)) + .addGroup(layout.createSequentialGroup() + .addGap(20) + ) + ); layout.setVerticalGroup(layout.createSequentialGroup() - .addComponent(getFFmpegOptionComboBoxPanel()) - .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) - .addComponent(extOptionLabel) - .addComponent(extOptionField)) + .addComponent(getFFmpegOptionComboBoxPanel()) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) + .addComponent(extOptionLabel) + .addComponent(extOptionField)) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) + .addComponent(mainOptionLabel) + .addComponent(mainOptionField)) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) + .addComponent(inputOptionLabel) + .addComponent(inputOptionField)) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) + .addComponent(outputOptionLabel) + .addComponent(outputOptionField)) + .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) + .addComponent(avfilterOptionLabel) + .addComponent(avfilterOptionField)) + .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) - .addComponent(mainOptionLabel) - .addComponent(mainOptionField)) - .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) - .addComponent(inputOptionLabel) - .addComponent(inputOptionField)) - .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) - .addComponent(outputOptionLabel) - .addComponent(outputOptionField)) - .addGroup(layout.createSequentialGroup() - .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE) - .addComponent(resizeCheckBox) - .addComponent(resizeWidthLabel) - .addComponent(resizeWidthField) - .addComponent(resizeHeightLabel) - .addComponent(resizeHeigitField)) - .addComponent(adjustRatioCheckBox) - ) - ); + .addComponent(resizeCheckBox) + .addComponent(resizeWidthLabel) + .addComponent(resizeWidthField) + .addComponent(resizeHeightLabel) + .addComponent(resizeHeigitField)) + .addComponent(adjustRatioCheckBox) + ) + ); resizeCheckBox.addActionListener(ffmpegOptionCheckBoxListener); adjustRatioCheckBox.addActionListener(ffmpegOptionCheckBoxListener); -- 2.11.0