~repos /gdx-studio

#libgdx#java#desktop

git clone https://pyrossh.dev/repos/gdx-studio.git

An IDE for creating Games using libgdx and Java supported on all platforms Android, iOS, Desktop



src/gdxstudio/panel/ReplacePanel.java



package gdxstudio.panel;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import web.laf.lite.layout.HorizontalFlowLayout;
import web.laf.lite.utils.UIUtils;
public class ReplacePanel extends JPanel {
private static final long serialVersionUID = 1L;
//private JButton findButton = new JButton("Find");
private JTextField replaceField = new JTextField();
private JButton replaceButton = new JButton("Replace");
private JButton replaceFindButton = new JButton("Replace/Find");
private JButton replaceAllButton = new JButton("ReplaceAll");
public ReplacePanel(){
super(new HorizontalFlowLayout());
UIUtils.setUndecorated(this, true);
add(new JLabel("Replace With:"));
add(replaceField);
add(replaceButton);
add(replaceFindButton);
add(replaceAllButton);
setVisible(false);
}
}