/************************************************************************** OmegaT - Computer Assisted Translation (CAT) tool with fuzzy matching, translation memory, keyword search, glossaries, and translation leveraging into updated projects. Copyright (C) 2013 Alex Buloichik 2015 Aaron Madlon-Kay Home page: http://www.omegat.org/ Support center: http://groups.yahoo.com/group/OmegaT/ This file is part of OmegaT. OmegaT 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 (at your option) any later version. OmegaT 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 org.omegat.gui.editor.filter; import javax.swing.UIManager; import javax.swing.border.Border; import org.omegat.util.OStrings; /** * @author Alex Buloichik (alex73mail@gmail.com) * @author Aaron Madlon-Kay */ @SuppressWarnings("serial") public class FilterBarReplace extends javax.swing.JPanel { /** * Creates new form FilterBarReplace */ public FilterBarReplace() { initComponents(); Border border = UIManager.getBorder("OmegaTEditorFilter.border"); if (border != null) { setBorder(border); } } /** * 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() { filler3 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 0)); btnSkip = new javax.swing.JButton(); filler2 = new javax.swing.Box.Filler(new java.awt.Dimension(5, 0), new java.awt.Dimension(5, 0), new java.awt.Dimension(5, 32767)); btnReplaceNext = new javax.swing.JButton(); filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(5, 0), new java.awt.Dimension(5, 0), new java.awt.Dimension(5, 32767)); btnCancel = new javax.swing.JButton(); filler4 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 0)); setLayout(new javax.swing.BoxLayout(this, javax.swing.BoxLayout.LINE_AXIS)); add(filler3); org.openide.awt.Mnemonics.setLocalizedText(btnSkip, OStrings.getString("BUTTON_FILTER_SKIP")); // NOI18N add(btnSkip); add(filler2); org.openide.awt.Mnemonics.setLocalizedText(btnReplaceNext, OStrings.getString("BUTTON_FILTER_REPLACE_NEXT")); // NOI18N add(btnReplaceNext); add(filler1); org.openide.awt.Mnemonics.setLocalizedText(btnCancel, OStrings.getString("BUTTON_FILTER_CANCEL")); // NOI18N add(btnCancel); add(filler4); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables javax.swing.JButton btnCancel; javax.swing.JButton btnReplaceNext; javax.swing.JButton btnSkip; javax.swing.Box.Filler filler1; javax.swing.Box.Filler filler2; javax.swing.Box.Filler filler3; javax.swing.Box.Filler filler4; // End of variables declaration//GEN-END:variables }