でMigLayoutを使用しDialogBox
ます。
すべてのパネルは MigLayout を使用します。
ショー行のパネルがあります。列ごとにパネルがあります(配信タイプ、要素の選択、出撃)。出力ファイル行のパネルがあります。ボタン用のパネルがあります。
あまりにも多くのパネルなしでそれを行うためのより良い方法があるかもしれません?
私のコード
//set global layout
this.setLayout( new MigLayout( "wrap 3, debug" ) );
this.add( getSearchPanel(), "span 3, wrap" );
// middle section
this.add( getLivraison(), "width 33%" );
this.add( getChoixElement(), "width 33%" );
this.add( getProfile(), "width 33%" );
JLabel lblFichierSortie = new JLabel( "Output file" );
JTextField txtFichierSortie = new JTextField();
this.add( lblFichierSortie, "span 2, right" );
this.add( txtFichierSortie, "width 33%, wrap" );
this.add( getButton(), "span 3, right" );
private JPanel getSearchPanel() {
JPanel searchPanel = new JPanel( new MigLayout() );
JLabel lblEmission = new JLabel( "Show" );
JTextField txtEmission = new JTextField( 10 );
JTextField txtEM = new JTextField( 5 );
searchPanel.add( lblEmission, "width 2%" );
searchPanel.add( txtEmission, "split 2,right,width 60%, growx" );
searchPanel.add( txtEM, "width 38%, growx" );
return searchPanel;
}
private JPanel getLivraison() {
JPanel livraisonPanel = new JPanel( new MigLayout() );
JLabel lblComponent1 = new JLabel( "Delivery type" );
JCheckBox chkFluxElementaire = new JCheckBox( "Flux" );
JCheckBox chkTranscoding = new JCheckBox( "Transcoding" );
livraisonPanel.add( lblComponent1, "wrap" );
livraisonPanel.add( chkFluxElementaire, "wrap" );
livraisonPanel.add( chkTranscoding, "wrap" );
return livraisonPanel;
}
private JPanel getChoixElement() {
JPanel component2 = new JPanel( new MigLayout() );
JLabel lblChoix = new JLabel( "Choose element" );
JLabel lblVideo = new JLabel( "Vidéo" );
JLabel lblAudio = new JLabel( "Audio" );
JLabel lblAudio2 = new JLabel( "Audio 2" );
JLabel lblSubTitle = new JLabel( "ST" );
JLabel lblMontage = new JLabel( "Montage" );
//todo put combobox below every label
component2.add( lblChoix, "wrap" );
component2.add( lblVideo,"wrap" );
component2.add( lblAudio,"wrap" );
component2.add( lblAudio2, "wrap" );
component2.add( lblSubTitle, "wrap" );
component2.add( lblMontage, "wrap" );
return component2;
}
private JPanel getProfile() {
JPanel component3 = new JPanel( new MigLayout() );
JLabel lblSortie = new JLabel( "Sortie" );
component3.add( lblSortie, "wrap" );
JLabel lblProfil = new JLabel( "Profil" );
component3.add( lblProfil, "wrap" );
JComboBox cbxProfil = new JComboBox();
component3.add( cbxProfil, "wrap" );
return component3;
}
private JPanel getButton() {
JPanel buttonPanel = new JPanel( new MigLayout( "fillx,insets 0" ) );
JButton okButton = new JButton( "Ok" );
okButton.setMnemonic( 'O' );
buttonPanel.add( okButton, "split,right,width 100!" );
// Cancel button
JButton cancelButton = new JButton( "Cancel" );
cancelButton.setMnemonic( 'C' );
buttonPanel.add( cancelButton, "width 100!" );
return buttonPanel;
}
ウィンドウを移動するまでテキストフィールドのサイズがありません。理由がわかりません。また、すべての列のコンポーネントがパネルの上部から始まっていないのはなぜですか?