Aparentemente Intellij cambio algo en las vistas

No se que es, probablemente es por el cambio de estilo de codigo
This commit is contained in:
Daniel Cortes
2019-03-02 00:43:03 -03:00
parent 95685b7f82
commit 8bd6a0b493
10 changed files with 55 additions and 51 deletions

BIN
dist/Programa Caja.jar vendored

Binary file not shown.

View File

@@ -64,13 +64,6 @@ public class ArqueoView {
private NumberFormatedTextField debeRendirField;
private NumberFormatedTextField retiroField;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
public JPanel getContentPanel() {
return contentPanel;
}
@@ -159,6 +152,13 @@ public class ArqueoView {
return retiroField;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!
@@ -487,4 +487,5 @@ public class ArqueoView {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -13,13 +13,6 @@ public class BaseLayout {
private JPanel sidePanel;
private JPanel mainPanel;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
public JPanel getContentPanel() {
return contentPanel;
}
@@ -32,6 +25,13 @@ public class BaseLayout {
return mainPanel;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!
@@ -63,4 +63,5 @@ public class BaseLayout {
public JComponent $$$getRootComponent$$$() {
return contentPanel;
}
}

View File

@@ -46,13 +46,6 @@ public class CajasView {
private JToggleButton arqueoButton;
private DatePicker datePicker;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
public JToggleButton getEgresosButton() {
return egresosButton;
}
@@ -77,6 +70,13 @@ public class CajasView {
return cardPanel;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!

View File

@@ -67,13 +67,6 @@ public class EgresosView {
private EgresosTableModel egresosTableModel;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
private void createUIComponents() {
createEgresosTable();
createTipoCombo();
@@ -152,6 +145,13 @@ public class EgresosView {
return errorTipoEgreso;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!

View File

@@ -18,6 +18,7 @@ import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSpinner;
import javax.swing.JSpinner.DefaultEditor;
import javax.swing.SpinnerModel;
public class EstadoResultadoView {
@@ -762,7 +763,7 @@ public class EstadoResultadoView {
SpinnerModel model = new YearSpinnerModel();
this.yearSpinner = new JSpinner();
this.yearSpinner.setModel(model);
((JSpinner.DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
((DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
}
private void createMonthCombo() {

View File

@@ -41,13 +41,6 @@ public class InformesSideBar {
private JButton estadoResultadoButton;
private JButton volverButton;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
public JPanel getContentPanel() {
return contentPanel;
}
@@ -68,6 +61,13 @@ public class InformesSideBar {
return volverButton;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!

View File

@@ -70,13 +70,6 @@ public class IngresosView {
private IngresosTableModel ingresosTableModel;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
private void createUIComponents() {
this.createIngresosTable();
this.createTipoCombo();
@@ -171,6 +164,13 @@ public class IngresosView {
return errorNroZInicial;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!

View File

@@ -16,13 +16,6 @@ public class MainSideBar {
private JButton cajasButton;
private JPanel buttonPanel;
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
public JPanel getContentPanel() {
return contentPanel;
}
@@ -39,6 +32,13 @@ public class MainSideBar {
return cajasButton;
}
{
// GUI initializer generated by IntelliJ IDEA GUI Designer
// >>> IMPORTANT!! <<<
// DO NOT EDIT OR ADD ANY CODE HERE!
$$$setupUI$$$();
}
/**
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR
* call it in your code!

View File

@@ -41,6 +41,7 @@ import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSpinner;
import javax.swing.JSpinner.DefaultEditor;
import javax.swing.KeyStroke;
import javax.swing.SpinnerModel;
@@ -120,7 +121,7 @@ public class MonthSelectDialog extends JDialog {
SpinnerModel model = new YearSpinnerModel();
this.yearSpinner = new JSpinner();
this.yearSpinner.setModel(model);
((JSpinner.DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
((DefaultEditor) this.yearSpinner.getEditor()).getTextField().setEditable(true);
}
private void createMonthCombo() {