diff --git a/Windows Setup/Librography.bat b/Windows Setup/Librography.bat new file mode 100644 index 0000000..6b7935d --- /dev/null +++ b/Windows Setup/Librography.bat @@ -0,0 +1 @@ +java -jar Librography.jar \ No newline at end of file diff --git a/Windows Setup/copyToC.bat b/Windows Setup/copyToC.bat new file mode 100644 index 0000000..bce55c2 --- /dev/null +++ b/Windows Setup/copyToC.bat @@ -0,0 +1,2 @@ +copy ..\dist\Librography.jar C:\Librography\ +copy Librography.bat C:\Librography\ \ No newline at end of file diff --git a/Windows Setup/setupMysql.bat b/Windows Setup/setupMysql.bat index c61242f..cd5ab80 100644 --- a/Windows Setup/setupMysql.bat +++ b/Windows Setup/setupMysql.bat @@ -36,15 +36,17 @@ rem ------------------------------------------------ echo Creating access to user. Waiting ... echo Enter the MySql root password: set /p rootpassword= +set dbname=applibrography set dbuser=gowl set userpassword=gowl Rem "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" "--defaults-file=C:\ProgramData\MySQL\MySQL Server 5.7\my.ini" "-uroot" "-p" SET PATH=%PATH%;C:\Program Files\MySQL\MySQL Server 5.7\bin -mysql -uroot -p%rootpassword% --execute="CREATE DATABASE %dbuser%;" +mysql -uroot -p%rootpassword% --execute="CREATE DATABASE %dbname%;" mysql -uroot -p%rootpassword% --execute="CREATE USER '%dbuser%'@'localhost' IDENTIFIED BY '%userpassword%';" mysql -uroot -p%rootpassword% --execute="GRANT ALL PRIVILEGES ON %dbuser%.* TO '%dbuser%'@'localhost';" mysql -uroot -p%rootpassword% --execute="FLUSH PRIVILEGES;" +mysql -uroot -p%rootpassword% --execute="source script.sql" echo Done. echo "MySQL user created." echo "Username: %dbuser%" diff --git a/build/built-jar.properties b/build/built-jar.properties index c003f58..38db89e 100644 --- a/build/built-jar.properties +++ b/build/built-jar.properties @@ -1,4 +1,4 @@ -#Tue, 03 Aug 2021 14:22:34 -0300 +#Mon, 01 Nov 2021 01:36:33 -0200 -F\:\\Desktop\\goldenowl\\Netbeans\\Librography= +F\:\\Desktop\\Librography= diff --git a/build/classes/.netbeans_automatic_build b/build/classes/.netbeans_automatic_build deleted file mode 100644 index e69de29..0000000 diff --git a/build/classes/.netbeans_update_resources b/build/classes/.netbeans_update_resources deleted file mode 100644 index e69de29..0000000 diff --git a/build/classes/br/com/parg/viacep/ViaCEP.class b/build/classes/br/com/parg/viacep/ViaCEP.class index 3c9c958..a5301f3 100644 Binary files a/build/classes/br/com/parg/viacep/ViaCEP.class and b/build/classes/br/com/parg/viacep/ViaCEP.class differ diff --git a/build/classes/br/com/parg/viacep/ViaCEPBase.class b/build/classes/br/com/parg/viacep/ViaCEPBase.class index f0a8e89..3293a64 100644 Binary files a/build/classes/br/com/parg/viacep/ViaCEPBase.class and b/build/classes/br/com/parg/viacep/ViaCEPBase.class differ diff --git a/build/classes/br/com/parg/viacep/ViaCEPEvents.class b/build/classes/br/com/parg/viacep/ViaCEPEvents.class index bfe78f2..3333bc4 100644 Binary files a/build/classes/br/com/parg/viacep/ViaCEPEvents.class and b/build/classes/br/com/parg/viacep/ViaCEPEvents.class differ diff --git a/build/classes/br/com/projeto/dao/EmprestimoDao.class b/build/classes/br/com/projeto/dao/EmprestimoDao.class index 8f7dd93..6845a39 100644 Binary files a/build/classes/br/com/projeto/dao/EmprestimoDao.class and b/build/classes/br/com/projeto/dao/EmprestimoDao.class differ diff --git a/build/classes/br/com/projeto/dao/FornecedorDao.class b/build/classes/br/com/projeto/dao/FornecedorDao.class index af87ff6..863225b 100644 Binary files a/build/classes/br/com/projeto/dao/FornecedorDao.class and b/build/classes/br/com/projeto/dao/FornecedorDao.class differ diff --git a/build/classes/br/com/projeto/dao/FuncionarioDao.class b/build/classes/br/com/projeto/dao/FuncionarioDao.class index c33377c..c51ad1f 100644 Binary files a/build/classes/br/com/projeto/dao/FuncionarioDao.class and b/build/classes/br/com/projeto/dao/FuncionarioDao.class differ diff --git a/build/classes/br/com/projeto/dao/LivroDao.class b/build/classes/br/com/projeto/dao/LivroDao.class index 7d8d299..14eb6b6 100644 Binary files a/build/classes/br/com/projeto/dao/LivroDao.class and b/build/classes/br/com/projeto/dao/LivroDao.class differ diff --git a/build/classes/br/com/projeto/dao/MultaDao.class b/build/classes/br/com/projeto/dao/MultaDao.class index ac93ae6..09cddde 100644 Binary files a/build/classes/br/com/projeto/dao/MultaDao.class and b/build/classes/br/com/projeto/dao/MultaDao.class differ diff --git a/build/classes/br/com/projeto/dao/OptionsDao.class b/build/classes/br/com/projeto/dao/OptionsDao.class index 572916b..d547fab 100644 Binary files a/build/classes/br/com/projeto/dao/OptionsDao.class and b/build/classes/br/com/projeto/dao/OptionsDao.class differ diff --git a/build/classes/br/com/projeto/dao/ReciboDao.class b/build/classes/br/com/projeto/dao/ReciboDao.class index 4c73c46..6df8c9a 100644 Binary files a/build/classes/br/com/projeto/dao/ReciboDao.class and b/build/classes/br/com/projeto/dao/ReciboDao.class differ diff --git a/build/classes/br/com/projeto/dao/UsuarioDao.class b/build/classes/br/com/projeto/dao/UsuarioDao.class index 281f767..cde572c 100644 Binary files a/build/classes/br/com/projeto/dao/UsuarioDao.class and b/build/classes/br/com/projeto/dao/UsuarioDao.class differ diff --git a/build/classes/br/com/projeto/jdbc/ConexaoBanco$1.class b/build/classes/br/com/projeto/jdbc/ConexaoBanco$1.class index 58fa9f7..56992f3 100644 Binary files a/build/classes/br/com/projeto/jdbc/ConexaoBanco$1.class and b/build/classes/br/com/projeto/jdbc/ConexaoBanco$1.class differ diff --git a/build/classes/br/com/projeto/jdbc/ConexaoBanco.class b/build/classes/br/com/projeto/jdbc/ConexaoBanco.class index 9dcb75a..a357d0d 100644 Binary files a/build/classes/br/com/projeto/jdbc/ConexaoBanco.class and b/build/classes/br/com/projeto/jdbc/ConexaoBanco.class differ diff --git a/build/classes/br/com/projeto/jdbc/TestarConexao.class b/build/classes/br/com/projeto/jdbc/TestarConexao.class index b6fda3c..6bf8990 100644 Binary files a/build/classes/br/com/projeto/jdbc/TestarConexao.class and b/build/classes/br/com/projeto/jdbc/TestarConexao.class differ diff --git a/build/classes/br/com/projeto/model/Fornecedor.class b/build/classes/br/com/projeto/model/Fornecedor.class index e26b9db..0284191 100644 Binary files a/build/classes/br/com/projeto/model/Fornecedor.class and b/build/classes/br/com/projeto/model/Fornecedor.class differ diff --git a/build/classes/br/com/projeto/model/Insert.class b/build/classes/br/com/projeto/model/Insert.class index b81ada3..4a4498c 100644 Binary files a/build/classes/br/com/projeto/model/Insert.class and b/build/classes/br/com/projeto/model/Insert.class differ diff --git a/build/classes/br/com/projeto/model/Options.class b/build/classes/br/com/projeto/model/Options.class index 9f4e1eb..83ce949 100644 Binary files a/build/classes/br/com/projeto/model/Options.class and b/build/classes/br/com/projeto/model/Options.class differ diff --git a/build/classes/br/com/projeto/model/Utilitarios.class b/build/classes/br/com/projeto/model/Utilitarios.class index 54ef6ed..ebc3b22 100644 Binary files a/build/classes/br/com/projeto/model/Utilitarios.class and b/build/classes/br/com/projeto/model/Utilitarios.class differ diff --git a/build/classes/br/com/projeto/model/XlsxProcess.class b/build/classes/br/com/projeto/model/XlsxProcess.class index ac43e4b..be57f1b 100644 Binary files a/build/classes/br/com/projeto/model/XlsxProcess.class and b/build/classes/br/com/projeto/model/XlsxProcess.class differ diff --git a/build/classes/br/com/projeto/view/FormCartao$5.class b/build/classes/br/com/projeto/view/FormCartao$5.class index ea9f729..ff3f1b3 100644 Binary files a/build/classes/br/com/projeto/view/FormCartao$5.class and b/build/classes/br/com/projeto/view/FormCartao$5.class differ diff --git a/build/classes/br/com/projeto/view/FormCartao$PrintObject.class b/build/classes/br/com/projeto/view/FormCartao$PrintObject.class index 8a32f30..5291b3a 100644 Binary files a/build/classes/br/com/projeto/view/FormCartao$PrintObject.class and b/build/classes/br/com/projeto/view/FormCartao$PrintObject.class differ diff --git a/build/classes/br/com/projeto/view/FormCartao.class b/build/classes/br/com/projeto/view/FormCartao.class index ffcd598..b1f4913 100644 Binary files a/build/classes/br/com/projeto/view/FormCartao.class and b/build/classes/br/com/projeto/view/FormCartao.class differ diff --git a/build/classes/br/com/projeto/view/FormCartao.form b/build/classes/br/com/projeto/view/FormCartao.form deleted file mode 100644 index e38a889..0000000 --- a/build/classes/br/com/projeto/view/FormCartao.form +++ /dev/null @@ -1,370 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/classes/br/com/projeto/view/FormDetalhesLivro$3.class b/build/classes/br/com/projeto/view/FormDetalhesLivro$3.class index 83023f5..b6fa676 100644 Binary files a/build/classes/br/com/projeto/view/FormDetalhesLivro$3.class and b/build/classes/br/com/projeto/view/FormDetalhesLivro$3.class differ diff --git a/build/classes/br/com/projeto/view/FormDetalhesLivro.class b/build/classes/br/com/projeto/view/FormDetalhesLivro.class index e92e5ba..b3eca7f 100644 Binary files a/build/classes/br/com/projeto/view/FormDetalhesLivro.class and b/build/classes/br/com/projeto/view/FormDetalhesLivro.class differ diff --git a/build/classes/br/com/projeto/view/FormDetalhesLivro.form b/build/classes/br/com/projeto/view/FormDetalhesLivro.form deleted file mode 100644 index 94e42ee..0000000 --- a/build/classes/br/com/projeto/view/FormDetalhesLivro.form +++ /dev/null @@ -1,458 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/classes/br/com/projeto/view/FormEmprestimos$1.class b/build/classes/br/com/projeto/view/FormEmprestimos$1.class index d2bec00..1b4b3e6 100644 Binary files a/build/classes/br/com/projeto/view/FormEmprestimos$1.class and b/build/classes/br/com/projeto/view/FormEmprestimos$1.class differ diff --git a/build/classes/br/com/projeto/view/FormEmprestimos$45.class b/build/classes/br/com/projeto/view/FormEmprestimos$45.class index df4a752..fafa202 100644 Binary files a/build/classes/br/com/projeto/view/FormEmprestimos$45.class and b/build/classes/br/com/projeto/view/FormEmprestimos$45.class differ diff --git a/build/classes/br/com/projeto/view/FormEmprestimos.class b/build/classes/br/com/projeto/view/FormEmprestimos.class index bac0936..4813749 100644 Binary files a/build/classes/br/com/projeto/view/FormEmprestimos.class and b/build/classes/br/com/projeto/view/FormEmprestimos.class differ diff --git a/build/classes/br/com/projeto/view/FormEmprestimos.form b/build/classes/br/com/projeto/view/FormEmprestimos.form deleted file mode 100644 index d0a9f88..0000000 --- a/build/classes/br/com/projeto/view/FormEmprestimos.form +++ /dev/null @@ -1,1440 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - -
- - - - - - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - -
- - - - - - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="true" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaLivrosFiltroMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_AddingCodePost" type="java.lang.String" value="tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(0)).setPreferredWidth(34); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(1)).setPreferredWidth(170); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(2)).setPreferredWidth(150); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(3)).setPreferredWidth(140);"/> - <AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new javax.swing.JTable() /* { @Override public Component prepareRenderer (TableCellRenderer renderer, int rowIndex, int columnIndex){ Component componenet = super.prepareRenderer(renderer, rowIndex, columnIndex); Object value = getModel().getValueAt(rowIndex,columnIndex); System.out.println("value ===" +value); if(columnIndex == 6){ if(value.equals("true")) { componenet.setBackground(Color.RED); componenet.setForeground(Color.GREEN); } if(value.equals("false")){ componenet.setBackground(Color.GREEN); componenet.setForeground(Color.RED); } }else { componenet.setBackground(Color.WHITE); componenet.setForeground(Color.BLACK); } return componenet; } } */ "/> - </AuxValues> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JTextField" name="txtBuscaLivro"> - <Events> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtBuscaLivroKeyReleased"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtAgora"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtAgoraActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtPrazoEntrega"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPrazoEntregaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Data para Devolução:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="text" type="java.lang.String" value="Data Atual:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="text" type="java.lang.String" value="Livro ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtTituloSelect"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtTituloSelectActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="brnAddLivro"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/right_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="<html>Adicionar à Lista"/> - <Property name="toolTipText" type="java.lang.String" value=""/> - <Property name="actionCommand" type="java.lang.String" value="<html>Adicionar à Lista"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="brnAddLivroActionPerformed"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_InitCodePost" type="java.lang.String" value="brnAddLivro.setVerticalTextPosition(SwingConstants.BOTTOM); brnAddLivro.setHorizontalTextPosition(SwingConstants.CENTER);"/> - </AuxValues> - </Component> - <Component class="javax.swing.JTextField" name="txtBookId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane3"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTextArea" name="txtObservacoes"> - <Properties> - <Property name="columns" type="int" value="20"/> - <Property name="rows" type="int" value="5"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="text" type="java.lang.String" value="Observações:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnRemoveBook"> - <Properties> - <Property name="text" type="java.lang.String" value="Remover Livro da Lista"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnRemoveBookActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnSalvar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/save_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="SALVAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSalvarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="ID de Usuário:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JCheckBox" name="cbOcultarEmprestados"> - <Properties> - <Property name="text" type="java.lang.String" value="Ocultar Emprestados"/> - </Properties> - <Events> - <EventHandler event="itemStateChanged" listener="java.awt.event.ItemListener" parameters="java.awt.event.ItemEvent" handler="cbOcultarEmprestadosItemStateChanged"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton5"> - <Properties> - <Property name="text" type="java.lang.String" value="Mapa"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnNovo"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/new_file_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="NOVO"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="lblImagem"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/book_cover.png"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.EtchedBorderInfo"> - <EtchetBorder bevelType="0"> - <Color PropertyName="highlight" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/> - <Color PropertyName="shadow" blue="40" green="40" id="darkGray" palette="1" red="40" type="palette"/> - </EtchetBorder> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtISBN"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtISBNActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="text" type="java.lang.String" value="<html>ISBN/<br>ISSN: "/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtStatus"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel11"> - <Properties> - <Property name="text" type="java.lang.String" value="Status:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="text" type="java.lang.String" value="Empréstimos Restantes:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtEmprestimosRestantes"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblimagemUser"> - <Properties> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor" postCode="lblimagemUser.setVerticalTextPosition(SwingConstants.BOTTOM); lblimagemUser.setHorizontalTextPosition(SwingConstants.CENTER);"> - <Image iconType="3" name="/imagens/iconfinder_student_309036 (2).png"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.EtchedBorderInfo"> - <EtchetBorder bevelType="0"> - <Color PropertyName="highlight" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/> - <Color PropertyName="shadow" blue="40" green="40" id="darkGray" palette="1" red="40" type="palette"/> - </EtchetBorder> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnCartao"> - <Properties> - <Property name="text" type="java.lang.String" value="Imprimir/ Ver Cartão"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnCartaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="text" type="java.lang.String" value="Cadastro"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton13"> - <Properties> - <Property name="text" type="java.lang.String" value="Cadastro"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton13ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnDetalhes"> - <Properties> - <Property name="text" type="java.lang.String" value="Detalhes"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnDetalhesActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnBuscarLivrosAdvanced"> - <Properties> - <Property name="text" type="java.lang.String" value="Busca Avançada"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnBuscarLivrosAdvancedActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtDisponibilidade"> - <Properties> - <Property name="enabled" type="boolean" value="false"/> - <Property name="opaque" type="boolean" value="false"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel23"> - <Properties> - <Property name="text" type="java.lang.String" value="Título:"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="jPanel3"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Devoluções"> - <Property name="tabTitle" type="java.lang.String" value="Devoluções"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="37" max="-2" attributes="0"/> - <Component id="jLabel12" min="-2" max="-2" attributes="0"/> - </Group> - <Component id="jLabel15" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtIdEmprest" min="-2" pref="66" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel13" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtLeitorresponsavel" min="-2" pref="348" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - <Component id="txtLivroEmprestado" min="-2" pref="544" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="13" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel20" min="-2" max="-2" attributes="0"/> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtMulta" min="-2" pref="175" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtDataParaDevolucao" min="-2" pref="175" max="-2" attributes="0"/> - <Component id="StatusEmprestimo" min="-2" pref="175" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="-2" pref="18" max="-2" attributes="0"/> - <Component id="jLabel17" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtDataEmprestimo" min="-2" pref="172" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtFuncionarioQueEmprestou" alignment="1" min="-2" pref="275" max="-2" attributes="0"/> - <Component id="jScrollPane7" alignment="1" min="-2" pref="354" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="radbtnAddObs" alignment="1" min="-2" max="-2" attributes="0"/> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnDevolver" min="-2" pref="161" max="-2" attributes="0"/> - <Component id="btnReemprestar" min="-2" pref="161" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnImprimeMulta" min="-2" pref="148" max="-2" attributes="0"/> - <Component id="btnDesbloqueiaUsuario" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <Component id="jLabel16" alignment="0" min="-2" max="-2" attributes="0"/> - <Component id="jLabel22" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace min="-2" pref="231" max="-2" attributes="0"/> - <Component id="jButton9" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="833" max="-2" attributes="0"/> - <Component id="radioLista" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane6" min="-2" pref="993" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Component id="radioLista" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane6" min="-2" pref="200" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtIdEmprest" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtLeitorresponsavel" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel13" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="13" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel15" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtLivroEmprestado" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" pref="18" max="32767" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="radbtnAddObs" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="3" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnImprimeMulta" alignment="3" min="-2" pref="50" max="-2" attributes="0"/> - <Component id="btnDevolver" alignment="3" min="-2" pref="50" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnDesbloqueiaUsuario" alignment="3" min="-2" pref="50" max="-2" attributes="0"/> - <Component id="btnReemprestar" alignment="3" min="-2" pref="50" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="52" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel16" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel17" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtDataEmprestimo" linkSize="1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtFuncionarioQueEmprestou" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtDataParaDevolucao" linkSize="1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel22" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel20" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="StatusEmprestimo" linkSize="1" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="23" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel21" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtMulta" linkSize="1" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <Component id="jScrollPane7" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="35" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" attributes="0"> - <Component id="jButton9" min="-2" max="-2" attributes="0"/> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JScrollPane" name="jScrollPane6"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaDevolucoes"> - <Properties> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="9" rowCount="0"> - <Column editable="false" title="Atraso" type="java.lang.Object"/> - <Column editable="false" title="Id do Empréstimo" type="java.lang.Object"/> - <Column editable="false" title="Usuário" type="java.lang.Object"/> - <Column editable="false" title="Titulo" type="java.lang.Object"/> - <Column editable="false" title="Funcionário" type="java.lang.Object"/> - <Column editable="false" title="Data do Empréstimo" type="java.lang.Object"/> - <Column editable="false" title="Data Agendada de Entrega" type="java.lang.Object"/> - <Column editable="true" title="Observações" type="java.lang.Object"/> - <Column editable="false" title="Data da Devolução" type="java.lang.Object"/> - </Table> - </Property> - <Property name="columnModel" type="javax.swing.table.TableColumnModel" editor="org.netbeans.modules.form.editors2.TableColumnModelEditor"> - <TableColumnModel selectionModel="0"> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="true" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaDevolucoesMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new javax.swing.JTable() { @Override public Component prepareRenderer (TableCellRenderer renderer, int rowIndex, int columnIndex){ Component componenet = super.prepareRenderer(renderer, rowIndex, columnIndex); Object value = getModel().getValueAt(rowIndex,columnIndex); if(columnIndex == 0){ if(value.equals("1 dias restantes") || value.equals("2 dias restantes") || value.equals("3 dias restantes") || value.equals("4 dias restantes") || value.equals("5 dias restantes") || value.equals("6 dias restantes") || value.equals("7 dias restantes") || value.equals("8 dias restantes") || value.equals("9 dias restantes") || value.equals("10 dias restantes") || value.equals("11 dias restantes") || value.equals("12 dias restantes") || value.equals("13 dias restantes") || value.equals("14 dias restantes")) { componenet.setBackground(Color.GREEN); componenet.setForeground(Color.BLACK); } if(value.equals("Vence Hoje")){ // if date equal current date componenet.setBackground(Color.YELLOW); componenet.setForeground(Color.BLACK); } if(value.equals("1 dias de atraso") || value.equals("2 dias de atraso") || value.equals("3 dias de atraso") || value.equals("4 dias de atraso") || value.equals("5 dias de atraso") || value.equals("6 dias de atraso") || value.equals("7 dias de atraso") || value.equals("8 dias de atraso") || value.equals("9 dias de atraso") ){ componenet.setBackground(Color.PINK); componenet.setForeground(Color.BLACK); } if(value.equals("+ de 15 dias de atraso")){ // if date equal current date componenet.setBackground(Color.RED); componenet.setForeground(Color.WHITE); } if(value.equals("Devolvido")){ // if date equal current date componenet.setBackground(Color.WHITE); componenet.setForeground(Color.GRAY); } } else { // componenet.setBackground(Color.RED); // componenet.setForeground(Color.WHITE); } return componenet; } } "/> - <AuxValue name="JavaCodeGenerator_InitCodePre" type="java.lang.String" value="tabelaDevolucoes.setDefaultRenderer(Date.class, new DateRenderer());"/> - </AuxValues> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnDevolver"> - <Properties> - <Property name="text" type="java.lang.String" value="Devolver"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnDevolverActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnReemprestar"> - <Properties> - <Property name="text" type="java.lang.String" value="reeemprestar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnReemprestarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton9"> - <Properties> - <Property name="text" type="java.lang.String" value="Localização"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnImprimeMulta"> - <Properties> - <Property name="text" type="java.lang.String" value="Imprime Multa"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnImprimeMultaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnDesbloqueiaUsuario"> - <Properties> - <Property name="text" type="java.lang.String" value="Desbloqueia Usuário"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtIdEmprest"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdEmprestActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtLeitorresponsavel"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtLivroEmprestado"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtFuncionarioQueEmprestou"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="horizontalAlignment" type="int" value="11"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtDataEmprestimo"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtDataParaDevolucao"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtMulta"> - </Component> - <Component class="javax.swing.JTextField" name="StatusEmprestimo"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane7"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTextArea" name="txtObservacoesDevolucao"> - <Properties> - <Property name="columns" type="int" value="20"/> - <Property name="rows" type="int" value="5"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="text" type="java.lang.String" value="Id do Empréstimo"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="text" type="java.lang.String" value="Leitor Responsável:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel15"> - <Properties> - <Property name="text" type="java.lang.String" value="Título:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel16"> - <Properties> - <Property name="text" type="java.lang.String" value="Funcionário:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel17"> - <Properties> - <Property name="text" type="java.lang.String" value="Data de Empréstimo:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="Data para Devolução:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel20"> - <Properties> - <Property name="text" type="java.lang.String" value="Status:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel21"> - <Properties> - <Property name="text" type="java.lang.String" value="Multa:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel22"> - <Properties> - <Property name="text" type="java.lang.String" value="Observações:"/> - </Properties> - </Component> - <Component class="javax.swing.JRadioButton" name="radbtnAddObs"> - <Properties> - <Property name="text" type="java.lang.String" value="Add Observações como permanente para o Livro"/> - </Properties> - </Component> - <Component class="javax.swing.JRadioButton" name="radioLista"> - <Properties> - <Property name="text" type="java.lang.String" value="Mostrar Devolvidos"/> - </Properties> - <Events> - <EventHandler event="itemStateChanged" listener="java.awt.event.ItemListener" parameters="java.awt.event.ItemEvent" handler="radioListaItemStateChanged"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormFornecedores$15.class b/build/classes/br/com/projeto/view/FormFornecedores$15.class index 8532d90..b975f15 100644 Binary files a/build/classes/br/com/projeto/view/FormFornecedores$15.class and b/build/classes/br/com/projeto/view/FormFornecedores$15.class differ diff --git a/build/classes/br/com/projeto/view/FormFornecedores.class b/build/classes/br/com/projeto/view/FormFornecedores.class index bdde80c..82baee4 100644 Binary files a/build/classes/br/com/projeto/view/FormFornecedores.class and b/build/classes/br/com/projeto/view/FormFornecedores.class differ diff --git a/build/classes/br/com/projeto/view/FormFornecedores.form b/build/classes/br/com/projeto/view/FormFornecedores.form deleted file mode 100644 index 5dea4af..0000000 --- a/build/classes/br/com/projeto/view/FormFornecedores.form +++ /dev/null @@ -1,707 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" max="32767" attributes="0"/> - <Component id="tabbedFrameF" alignment="0" max="32767" attributes="0"/> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnImprimir" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="29" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="tabbedFrameF" max="32767" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnImprimir" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="33" green="33" red="33" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel1" alignment="1" pref="72" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Cadastro de Fornecedores"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JTabbedPane" name="tabbedFrameF"> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="tabConsultaUsuarios"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Consulta de Fornecedores"> - <Property name="tabTitle" type="java.lang.String" value="Consulta de Fornecedores"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Component id="jLabel14" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtPesquisaFornecedor" min="-2" pref="282" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnPesquisar" min="-2" max="-2" attributes="0"/> - <EmptySpace pref="428" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel14" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtPesquisaFornecedor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnPesquisar" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane1" min="-2" pref="208" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel14"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPesquisaFornecedor"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPesquisaFornecedorActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtPesquisaFornecedorKeyReleased"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnPesquisar"> - <Properties> - <Property name="text" type="java.lang.String" value="Pesquisar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnPesquisarActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="btnPesquisarKeyReleased"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane1"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaFornecedor"> - <Properties> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="13" rowCount="0"> - <Column editable="false" title="cod" type="java.lang.Object"/> - <Column editable="false" title="nome" type="java.lang.Object"/> - <Column editable="false" title="cnpj" type="java.lang.Object"/> - <Column editable="false" title="email" type="java.lang.Object"/> - <Column editable="false" title="telefone" type="java.lang.Object"/> - <Column editable="false" title="celular" type="java.lang.Object"/> - <Column editable="false" title="cep" type="java.lang.Object"/> - <Column editable="false" title="endereco" type="java.lang.Object"/> - <Column editable="false" title="numero" type="java.lang.Object"/> - <Column editable="false" title="complemento" type="java.lang.Object"/> - <Column editable="false" title="bairro" type="java.lang.Object"/> - <Column editable="false" title="cidade" type="java.lang.Object"/> - <Column editable="false" title="estado" type="java.lang.Object"/> - </Table> - </Property> - <Property name="autoResizeMode" type="int" value="4"/> - <Property name="autoscrolls" type="boolean" value="false"/> - <Property name="columnModel" type="javax.swing.table.TableColumnModel" editor="org.netbeans.modules.form.editors2.TableColumnModelEditor"> - <TableColumnModel selectionModel="0"> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="false" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaFornecedorMouseClicked"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="tabCadastro"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Cadastro de Fornecedores"> - <Property name="tabTitle" type="java.lang.String" value="Cadastro de Fornecedores"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="312" max="-2" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="33" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel2" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="jLabel10" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="txtCnpj" min="-2" pref="165" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jLabel12" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCelular" min="-2" pref="109" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel9" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtTelefone" min="-2" pref="125" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="txtId" min="-2" pref="59" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel3" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtNome" min="-2" pref="247" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtEmail" min="-2" pref="280" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCep" min="-2" pref="111" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jButton1" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="46" max="-2" attributes="0"/> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtEndereco" min="-2" pref="258" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNum" min="-2" pref="45" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel13" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtComplemento" min="-2" pref="204" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtBairro" min="-2" pref="189" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel16" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCidade" min="-2" pref="171" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="boxUf" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="53" max="-2" attributes="0"/> - <Component id="btnNovo" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnSalvar" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnExcluir" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </Group> - </Group> - <EmptySpace pref="64" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtId" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNome" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEmail" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCelular" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtTelefone" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel10" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCnpj" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace pref="47" max="32767" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="159" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEndereco" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNum" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCep" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton1" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel13" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtComplemento" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel8" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtBairro" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel16" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxUf" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" max="-2" attributes="0"> - <Component id="btnNovo" alignment="3" max="32767" attributes="0"/> - <Component id="btnSalvar" alignment="3" max="32767" attributes="0"/> - <Component id="btnExcluir" alignment="3" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Email:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Logradouro:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="UF:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="N:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Bairro:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Telefone:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*CNPJ:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Celular:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Complemento:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel16"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Cidade:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtNome"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtNomeActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtEmail"> - </Component> - <Component class="javax.swing.JTextField" name="txtEndereco"> - </Component> - <Component class="javax.swing.JTextField" name="txtNum"> - </Component> - <Component class="javax.swing.JTextField" name="txtComplemento"> - </Component> - <Component class="javax.swing.JTextField" name="txtBairro"> - </Component> - <Component class="javax.swing.JTextField" name="txtCidade"> - </Component> - <Component class="javax.swing.JTextField" name="txtId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel18"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="CEP:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxUf"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="27"> - <StringItem index="0" value="AC"/> - <StringItem index="1" value="AL"/> - <StringItem index="2" value="AP"/> - <StringItem index="3" value="AM"/> - <StringItem index="4" value="BA"/> - <StringItem index="5" value="CE"/> - <StringItem index="6" value="DF"/> - <StringItem index="7" value="ES"/> - <StringItem index="8" value="GO"/> - <StringItem index="9" value="MA"/> - <StringItem index="10" value="MT"/> - <StringItem index="11" value="MS"/> - <StringItem index="12" value="MG"/> - <StringItem index="13" value="PA"/> - <StringItem index="14" value="PB"/> - <StringItem index="15" value="PR"/> - <StringItem index="16" value="PE"/> - <StringItem index="17" value="PI"/> - <StringItem index="18" value="RJ"/> - <StringItem index="19" value="RN"/> - <StringItem index="20" value="RS"/> - <StringItem index="21" value="RO"/> - <StringItem index="22" value="RR"/> - <StringItem index="23" value="SC"/> - <StringItem index="24" value="SP"/> - <StringItem index="25" value="SE"/> - <StringItem index="26" value="TO"/> - </StringArray> - </Property> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCep"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#####-###" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCelular"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)#####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtTelefone"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCnpj"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="##.###.###/####-##" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnNovo"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/new_file_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="NOVO"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnSalvar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/save_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="SALVAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSalvarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnExcluir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/delete_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="EXCLUIR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel21"> - <Properties> - <Property name="text" type="java.lang.String" value="Campos marcados com * são de preenchimento obrigátório!"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="text" type="java.lang.String" value="Buscar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnImprimir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="FECHAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnImprimirActionPerformed"/> - </Events> - </Component> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormFuncionarios$16.class b/build/classes/br/com/projeto/view/FormFuncionarios$16.class index 49875b9..71e4d45 100644 Binary files a/build/classes/br/com/projeto/view/FormFuncionarios$16.class and b/build/classes/br/com/projeto/view/FormFuncionarios$16.class differ diff --git a/build/classes/br/com/projeto/view/FormFuncionarios.class b/build/classes/br/com/projeto/view/FormFuncionarios.class index 484f061..2317afe 100644 Binary files a/build/classes/br/com/projeto/view/FormFuncionarios.class and b/build/classes/br/com/projeto/view/FormFuncionarios.class differ diff --git a/build/classes/br/com/projeto/view/FormFuncionarios.form b/build/classes/br/com/projeto/view/FormFuncionarios.form deleted file mode 100644 index dd413ea..0000000 --- a/build/classes/br/com/projeto/view/FormFuncionarios.form +++ /dev/null @@ -1,840 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" max="32767" attributes="0"/> - <Component id="tabbedFrameF" alignment="0" max="32767" attributes="0"/> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnFechar" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="19" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="tabbedFrameF" min="-2" pref="266" max="-2" attributes="0"/> - <EmptySpace type="unrelated" min="-2" max="-2" attributes="0"/> - <Component id="btnFechar" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="33" green="33" red="33" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel1" alignment="1" pref="72" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Cadastro de Funcionários"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JTabbedPane" name="tabbedFrameF"> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="tabConsultaUsuarios"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Consulta de Funcionários"> - <Property name="tabTitle" type="java.lang.String" value="Consulta de Funcionários"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jScrollPane1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel14" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtPesquisaFuncionario" pref="307" max="32767" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnPesquisar" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="618" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel14" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtPesquisaFuncionario" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnPesquisar" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="38" max="-2" attributes="0"/> - <Component id="jScrollPane1" min="-2" pref="176" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel14"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPesquisaFuncionario"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPesquisaFuncionarioActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtPesquisaFuncionarioKeyReleased"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnPesquisar"> - <Properties> - <Property name="text" type="java.lang.String" value="Pesquisar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnPesquisarActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="btnPesquisarKeyReleased"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane1"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaFuncionario"> - <Properties> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="17" rowCount="0"> - <Column editable="false" title="cod" type="java.lang.Object"/> - <Column editable="false" title="nome" type="java.lang.Object"/> - <Column editable="false" title="rg" type="java.lang.Object"/> - <Column editable="false" title="cpf" type="java.lang.Object"/> - <Column editable="false" title="email" type="java.lang.Object"/> - <Column editable="false" title="senha" type="java.lang.Object"/> - <Column editable="false" title="cargo" type="java.lang.Object"/> - <Column editable="false" title="nivel_acesso" type="java.lang.Object"/> - <Column editable="false" title="telefone" type="java.lang.Object"/> - <Column editable="false" title="celular" type="java.lang.Object"/> - <Column editable="false" title="cep" type="java.lang.Object"/> - <Column editable="false" title="endereco" type="java.lang.Object"/> - <Column editable="false" title="numero" type="java.lang.Object"/> - <Column editable="false" title="complemento" type="java.lang.Object"/> - <Column editable="false" title="bairro" type="java.lang.Object"/> - <Column editable="false" title="cidade" type="java.lang.Object"/> - <Column editable="false" title="estado" type="java.lang.Object"/> - </Table> - </Property> - <Property name="autoResizeMode" type="int" value="4"/> - <Property name="autoscrolls" type="boolean" value="false"/> - <Property name="columnModel" type="javax.swing.table.TableColumnModel" editor="org.netbeans.modules.form.editors2.TableColumnModelEditor"> - <TableColumnModel selectionModel="0"> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="false"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="false" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaFuncionarioMouseClicked"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="tabCadastro"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Cadastro deFuncionários"> - <Property name="tabTitle" type="java.lang.String" value="Cadastro deFuncionários"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="txtCep" min="-2" pref="111" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jButton1" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="26" max="-2" attributes="0"/> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtEndereco" min="-2" pref="258" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNum" min="-2" pref="45" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="txtBairro" min="-2" pref="189" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel16" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCidade" min="-2" pref="171" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="6" pref="6" max="-2" attributes="0"/> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="boxUf" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jLabel13" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtComplemento" max="32767" attributes="0"/> - <EmptySpace min="-2" pref="307" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="btnNovo" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnSalvar" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnExcluir" min="-2" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="312" max="-2" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="33" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="6" pref="6" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtEmail" min="-2" pref="280" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel10" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCpf" min="-2" pref="165" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jLabel11" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtRg" min="-2" pref="156" max="-2" attributes="0"/> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel2" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="jLabel17" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="txtCargo" max="32767" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jLabel12" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtCelular" min="-2" pref="109" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel9" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtTelefone" min="-2" pref="125" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="348" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jTextField17" alignment="0" min="-2" pref="86" max="-2" attributes="0"/> - <Group type="102" alignment="0" attributes="0"> - <Component id="txtId" min="-2" pref="59" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel3" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtNome" min="-2" pref="247" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel15" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtSenha" min="-2" pref="206" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel20" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="boxNivelAcesso" min="-2" pref="241" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtId" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNome" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel15" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel20" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxNivelAcesso" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSenha" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCelular" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtTelefone" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel17" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCargo" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtEmail" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel10" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel11" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCpf" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtRg" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEndereco" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNum" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel13" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtComplemento" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCep" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton1" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel8" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtBairro" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel16" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxUf" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="31" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" max="-2" attributes="0"> - <Component id="btnNovo" alignment="3" max="32767" attributes="0"/> - <Component id="btnSalvar" alignment="3" max="32767" attributes="0"/> - <Component id="btnExcluir" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace min="-2" pref="63" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="159" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="-2" pref="181" max="-2" attributes="0"/> - <Component id="jTextField17" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Email:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Endereço:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="UF:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="N:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Bairro:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Telefone:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="CPF:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel11"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*RG:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Celular:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Complemento:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel16"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Cidade:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtNome"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtNomeActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtEmail"> - </Component> - <Component class="javax.swing.JTextField" name="txtEndereco"> - </Component> - <Component class="javax.swing.JTextField" name="txtNum"> - </Component> - <Component class="javax.swing.JTextField" name="txtComplemento"> - </Component> - <Component class="javax.swing.JTextField" name="txtBairro"> - </Component> - <Component class="javax.swing.JTextField" name="txtCidade"> - </Component> - <Component class="javax.swing.JTextField" name="txtId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel15"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Senha"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtCargo"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel17"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Cargo"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="jTextField17"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jTextField17ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel18"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="CEP:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxUf"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="27"> - <StringItem index="0" value="AC"/> - <StringItem index="1" value="AL"/> - <StringItem index="2" value="AP"/> - <StringItem index="3" value="AM"/> - <StringItem index="4" value="BA"/> - <StringItem index="5" value="CE"/> - <StringItem index="6" value="DF"/> - <StringItem index="7" value="ES"/> - <StringItem index="8" value="GO"/> - <StringItem index="9" value="MA"/> - <StringItem index="10" value="MT"/> - <StringItem index="11" value="MS"/> - <StringItem index="12" value="MG"/> - <StringItem index="13" value="PA"/> - <StringItem index="14" value="PB"/> - <StringItem index="15" value="PR"/> - <StringItem index="16" value="PE"/> - <StringItem index="17" value="PI"/> - <StringItem index="18" value="RJ"/> - <StringItem index="19" value="RN"/> - <StringItem index="20" value="RS"/> - <StringItem index="21" value="RO"/> - <StringItem index="22" value="RR"/> - <StringItem index="23" value="SC"/> - <StringItem index="24" value="SP"/> - <StringItem index="25" value="SE"/> - <StringItem index="26" value="TO"/> - </StringArray> - </Property> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCep"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#####-###" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCelular"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)#####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtTelefone"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCpf"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="###.###.###-##" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtRg"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#.###.###-#" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel20"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Nível de Acesso"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxNivelAcesso"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="3"> - <StringItem index="0" value="Administrador"/> - <StringItem index="1" value="Atendente"/> - <StringItem index="2" value="Usuario"/> - </StringArray> - </Property> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JPasswordField" name="txtSenha"> - </Component> - <Component class="javax.swing.JButton" name="btnNovo"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/new_file_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="NOVO"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnSalvar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/save_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="SALVAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSalvarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnExcluir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/delete_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="EXCLUIR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel21"> - <Properties> - <Property name="text" type="java.lang.String" value="Campos marcados com * são de preenchimento obrigátório!"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="text" type="java.lang.String" value="Buscar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnFechar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="FECHAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnFecharActionPerformed"/> - </Events> - </Component> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormLeitor$22.class b/build/classes/br/com/projeto/view/FormLeitor$22.class index 9a57b80..007bf27 100644 Binary files a/build/classes/br/com/projeto/view/FormLeitor$22.class and b/build/classes/br/com/projeto/view/FormLeitor$22.class differ diff --git a/build/classes/br/com/projeto/view/FormLeitor$23.class b/build/classes/br/com/projeto/view/FormLeitor$23.class index e65a8ab..0ffb848 100644 Binary files a/build/classes/br/com/projeto/view/FormLeitor$23.class and b/build/classes/br/com/projeto/view/FormLeitor$23.class differ diff --git a/build/classes/br/com/projeto/view/FormLeitor.class b/build/classes/br/com/projeto/view/FormLeitor.class index 2a4ed95..b29172f 100644 Binary files a/build/classes/br/com/projeto/view/FormLeitor.class and b/build/classes/br/com/projeto/view/FormLeitor.class differ diff --git a/build/classes/br/com/projeto/view/FormLeitor.form b/build/classes/br/com/projeto/view/FormLeitor.form deleted file mode 100644 index 6ed8ec9..0000000 --- a/build/classes/br/com/projeto/view/FormLeitor.form +++ /dev/null @@ -1,1022 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - <Property name="title" type="java.lang.String" value="Controle de Usuários"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" max="32767" attributes="0"/> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnNovo1" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="14" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="tabbedFrame" min="-2" pref="826" max="-2" attributes="0"/> - <EmptySpace min="0" pref="24" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="tabbedFrame" min="-2" pref="417" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnNovo1" pref="43" max="32767" attributes="0"/> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="33" green="33" red="33" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel1" min="-2" pref="48" max="-2" attributes="0"/> - <EmptySpace min="0" pref="6" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Cadastro de Usuário"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JTabbedPane" name="tabbedFrame"> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="tabConsultaUsuarios"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Consulta de Usuários"> - <Property name="tabTitle" type="java.lang.String" value="Consulta de Usuários"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnXlsExport" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnXlsImport" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jScrollPane1" min="-2" pref="791" max="-2" attributes="0"/> - <EmptySpace pref="8" max="32767" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="jLabel14" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtPesquisaUsuario" max="32767" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnPesquisar" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="220" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel14" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtPesquisaUsuario" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnPesquisar" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane1" min="-2" pref="274" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnXlsExport" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnXlsImport" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="19" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel14"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPesquisaUsuario"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPesquisaUsuarioActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtPesquisaUsuarioKeyReleased"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnPesquisar"> - <Properties> - <Property name="text" type="java.lang.String" value="Pesquisar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnPesquisarActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="btnPesquisarKeyReleased"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane1"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaUsuario"> - <Properties> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="19" rowCount="0"> - <Column editable="false" title="cod" type="java.lang.Object"/> - <Column editable="false" title="nome" type="java.lang.Object"/> - <Column editable="false" title="rg" type="java.lang.Object"/> - <Column editable="false" title="cpf" type="java.lang.Object"/> - <Column editable="false" title="email" type="java.lang.Object"/> - <Column editable="false" title="telefone" type="java.lang.Object"/> - <Column editable="false" title="celular" type="java.lang.Object"/> - <Column editable="false" title="cep" type="java.lang.Object"/> - <Column editable="false" title="endereco" type="java.lang.Object"/> - <Column editable="false" title="numero" type="java.lang.Object"/> - <Column editable="false" title="complemento" type="java.lang.Object"/> - <Column editable="false" title="bairro" type="java.lang.Object"/> - <Column editable="false" title="cidade" type="java.lang.Object"/> - <Column editable="false" title="estado" type="java.lang.Object"/> - <Column editable="false" title="curso" type="java.lang.Object"/> - <Column editable="false" title="ano" type="java.lang.Object"/> - <Column editable="false" title="Máximo de Emprestimos" type="java.lang.Object"/> - <Column editable="false" title="Observações" type="java.lang.Object"/> - <Column editable="false" title="Tipo" type="java.lang.Object"/> - </Table> - </Property> - <Property name="autoResizeMode" type="int" value="0"/> - <Property name="autoscrolls" type="boolean" value="false"/> - <Property name="columnModel" type="javax.swing.table.TableColumnModel" editor="org.netbeans.modules.form.editors2.TableColumnModelEditor" postCode="tabelaUsuario.getColumn(tabelaUsuario.getColumnName(0)).setPreferredWidth(30); tabelaUsuario.getColumn(tabelaUsuario.getColumnName(1)).setPreferredWidth(200);"> - <TableColumnModel selectionModel="0"> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="false"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="false" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaUsuarioMouseClicked"/> - </Events> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnXlsExport"> - <Properties> - <Property name="text" type="java.lang.String" value="Exportar para XLSX"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnXlsExportActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnXlsImport"> - <Properties> - <Property name="text" type="java.lang.String" value="Importar dados de arquivo XLSX"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnXlsImportActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="tabCadastro"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Cadastro de Usuário"> - <Property name="tabTitle" type="java.lang.String" value="Cadastro de Usuário"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="22" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" max="-2" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - <Component id="txtId" min="-2" pref="59" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jLabel22" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtMaxEmprestimos" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel3" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNome" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtEmail" min="-2" pref="279" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="6" pref="6" max="-2" attributes="0"/> - <Component id="jLabel20" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="boxTipo" min="-2" pref="215" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnFoto" min="-2" max="-2" attributes="0"/> - <Component id="lblImagem" min="-2" pref="115" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel12" alignment="0" min="-2" max="-2" attributes="0"/> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="6" max="-2" attributes="0"/> - <Component id="jLabel11" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="jLabel9" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtTelefone" min="-2" pref="142" max="-2" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="1" max="-2" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel10" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtCpf" max="32767" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="1" attributes="0"> - <Component id="txtRg" alignment="1" min="-2" pref="159" max="-2" attributes="0"/> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="56" max="-2" attributes="0"/> - <Component id="txtCelular" min="-2" pref="145" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Component id="btnImprimir" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace min="-2" pref="2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="btnNovo" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnSalvar" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnExcluir" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="49" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - <Component id="jLabel16" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="txtCidade" max="32767" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="boxUf" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - <Component id="txtEndereco" min="-2" pref="266" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNum" min="-2" pref="45" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="txtBairro" max="32767" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel13" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtComplemento" min="-2" pref="106" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="8" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="6" pref="6" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="37" max="-2" attributes="0"/> - <Component id="txtCep" min="-2" pref="111" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jButton1" min="-2" max="-2" attributes="0"/> - </Group> - <Component id="jLabel5" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="196" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="375" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="6" pref="6" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - <Component id="jScrollPane2" alignment="0" min="-2" pref="407" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel15" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtCurso" min="-2" pref="212" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel17" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtSerie" min="-2" pref="31" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="0" pref="14" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtId" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel22" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCep" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtMaxEmprestimos" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEndereco" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNum" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel8" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtBairro" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtComplemento" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel13" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="171" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxUf" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="txtCidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel16" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jLabel21" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane2" min="-2" pref="103" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel15" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCurso" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel17" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSerie" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" pref="30" max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" max="-2" attributes="0"> - <Component id="btnNovo" alignment="3" max="32767" attributes="0"/> - <Component id="btnSalvar" alignment="3" max="32767" attributes="0"/> - <Component id="btnExcluir" alignment="3" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNome" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEmail" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="lblImagem" min="-2" pref="158" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnFoto" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtTelefone" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtCelular" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtRg" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel11" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel10" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCpf" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnImprimir" min="-2" pref="32" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxTipo" alignment="3" max="-2" attributes="0"/> - <Component id="jLabel20" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="* Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Email:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="* Logradouro"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*UF:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="N:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Bairro:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Telefone:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="CPF:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel11"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="* RG:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="* Celular:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Complemento:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel16"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Cidade:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtNome"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtNomeActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtEmail"> - </Component> - <Component class="javax.swing.JTextField" name="txtEndereco"> - </Component> - <Component class="javax.swing.JTextField" name="txtComplemento"> - </Component> - <Component class="javax.swing.JTextField" name="txtBairro"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtBairroActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtCidade"> - </Component> - <Component class="javax.swing.JTextField" name="txtId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel15"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Curso:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtCurso"> - </Component> - <Component class="javax.swing.JTextField" name="txtSerie"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel17"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Série:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel18"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="* CEP:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxUf"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="27"> - <StringItem index="0" value="AC"/> - <StringItem index="1" value="AL"/> - <StringItem index="2" value="AP"/> - <StringItem index="3" value="AM"/> - <StringItem index="4" value="BA"/> - <StringItem index="5" value="CE"/> - <StringItem index="6" value="DF"/> - <StringItem index="7" value="ES"/> - <StringItem index="8" value="GO"/> - <StringItem index="9" value="MA"/> - <StringItem index="10" value="MT"/> - <StringItem index="11" value="MS"/> - <StringItem index="12" value="MG"/> - <StringItem index="13" value="PA"/> - <StringItem index="14" value="PB"/> - <StringItem index="15" value="PR"/> - <StringItem index="16" value="PE"/> - <StringItem index="17" value="PI"/> - <StringItem index="18" value="RJ"/> - <StringItem index="19" value="RN"/> - <StringItem index="20" value="RS"/> - <StringItem index="21" value="RO"/> - <StringItem index="22" value="RR"/> - <StringItem index="23" value="SC"/> - <StringItem index="24" value="SP"/> - <StringItem index="25" value="SE"/> - <StringItem index="26" value="TO"/> - </StringArray> - </Property> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCep"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#####-###" subtype="-1" type="5"/> - </Property> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new javax.swing.JFormattedTextField()"/> - </AuxValues> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCelular"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)#####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtTelefone"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="(##)####-####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtCpf"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="###.###.###-##" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtRg"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#.###.###-#" subtype="-1" type="5"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtRgActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="lblImagem"> - <Properties> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_student_309036 (1).png"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.LineBorderInfo"> - <LineBorder/> - </Border> - </Property> - </Properties> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane2"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTextArea" name="txtObservacoes"> - <Properties> - <Property name="columns" type="int" value="20"/> - <Property name="rows" type="int" value="5"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel21"> - <Properties> - <Property name="text" type="java.lang.String" value="Observações:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel22"> - <Properties> - <Property name="text" type="java.lang.String" value="* No de Empréstimos Máximo:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnFoto"> - <Properties> - <Property name="text" type="java.lang.String" value=" Escolher Foto"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnFotoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnImprimir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/print_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Imprimir/Ver Cartão"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnImprimirActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JComboBox" name="boxTipo"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="selectedItem" type="java.lang.Object" editor="org.netbeans.modules.form.RADConnectionPropertyEditor"> - <Connection component="boxTipo" type="bean"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.MatteColorBorderInfo"> - <MatteColorBorder/> - </Border> - </Property> - <Property name="debugGraphicsOptions" type="int" value="-1"/> - <Property name="doubleBuffered" type="boolean" value="true"/> - <Property name="lightWeightPopupEnabled" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxTipoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JLabel" name="jLabel20"> - <Properties> - <Property name="text" type="java.lang.String" value="Tipo de Usuário:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnNovo"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/new_file_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="NOVO"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnSalvar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/save_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="SALVAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSalvarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnExcluir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/delete_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="EXCLUIR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="text" type="java.lang.String" value="Buscar "/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtMaxEmprestimos"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="##" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtNum"> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnNovo1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="FECHAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovo1ActionPerformed"/> - </Events> - </Component> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormLivros$26.class b/build/classes/br/com/projeto/view/FormLivros$26.class index 15d127c..4e44a2b 100644 Binary files a/build/classes/br/com/projeto/view/FormLivros$26.class and b/build/classes/br/com/projeto/view/FormLivros$26.class differ diff --git a/build/classes/br/com/projeto/view/FormLivros$27.class b/build/classes/br/com/projeto/view/FormLivros$27.class index c1126c3..a67aafc 100644 Binary files a/build/classes/br/com/projeto/view/FormLivros$27.class and b/build/classes/br/com/projeto/view/FormLivros$27.class differ diff --git a/build/classes/br/com/projeto/view/FormLivros.class b/build/classes/br/com/projeto/view/FormLivros.class index 4a8ff72..9ec4539 100644 Binary files a/build/classes/br/com/projeto/view/FormLivros.class and b/build/classes/br/com/projeto/view/FormLivros.class differ diff --git a/build/classes/br/com/projeto/view/FormLivros.form b/build/classes/br/com/projeto/view/FormLivros.form deleted file mode 100644 index bcb250e..0000000 --- a/build/classes/br/com/projeto/view/FormLivros.form +++ /dev/null @@ -1,971 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <NonVisualComponents> - <Container class="javax.swing.JMenu" name="jMenu1"> - <Properties> - <Property name="text" type="java.lang.String" value="jMenu1"/> - </Properties> - - <Layout class="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout"> - <Property name="useNullLayout" type="boolean" value="true"/> - </Layout> - </Container> - </NonVisualComponents> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" max="32767" attributes="0"/> - <Group type="102" alignment="0" attributes="0"> - <Component id="tabbedFrameF" min="-2" max="-2" attributes="0"/> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="jButton1" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="16" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="tabbedFrameF" min="-2" pref="444" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jButton1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="33" green="33" red="33" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="jLabel1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel1" alignment="1" pref="72" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Cadastro de Livros"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JTabbedPane" name="tabbedFrameF"> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="tabConsultaUsuarios"> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabConsultaUsuariosMouseClicked"/> - </Events> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Consulta de Livros"> - <Property name="tabTitle" type="java.lang.String" value="Consulta de Livros"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jScrollPane1" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel14" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtPesquisaLivros" pref="362" max="32767" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnPesquisar" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="426" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnXlsxExport" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jButton3" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel14" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtPesquisaLivros" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnPesquisar" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jScrollPane1" min="-2" pref="278" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnXlsxExport" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton3" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="42" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel14"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPesquisaLivros"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPesquisaLivrosActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtPesquisaLivrosKeyReleased"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnPesquisar"> - <Properties> - <Property name="text" type="java.lang.String" value="Pesquisar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnPesquisarActionPerformed"/> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="btnPesquisarKeyReleased"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane1"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaLivros"> - <Properties> - <Property name="autoCreateRowSorter" type="boolean" value="true"/> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="16" rowCount="0"> - <Column editable="false" title="cod" type="java.lang.Object"/> - <Column editable="false" title="Título" type="java.lang.Object"/> - <Column editable="false" title="Autor" type="java.lang.Object"/> - <Column editable="false" title="Editora" type="java.lang.Object"/> - <Column editable="false" title="ISBN" type="java.lang.Object"/> - <Column editable="false" title="Ano" type="java.lang.Object"/> - <Column editable="false" title="Serie" type="java.lang.Object"/> - <Column editable="false" title="Edição" type="java.lang.Object"/> - <Column editable="false" title="Idioma" type="java.lang.Object"/> - <Column editable="false" title="Fornecedor" type="java.lang.Object"/> - <Column editable="false" title="Piso" type="java.lang.Object"/> - <Column editable="false" title="Corredor" type="java.lang.Object"/> - <Column editable="false" title="Posição" type="java.lang.Object"/> - <Column editable="false" title="Seção" type="java.lang.Object"/> - <Column editable="false" title="Disponibilidade" type="java.lang.Object"/> - <Column editable="false" title="Observações" type="java.lang.Object"/> - </Table> - </Property> - <Property name="autoResizeMode" type="int" value="0"/> - <Property name="columnModel" type="javax.swing.table.TableColumnModel" editor="org.netbeans.modules.form.editors2.TableColumnModelEditor" preCode="tabelaLivros.getColumn(tabelaLivros.getColumnName(0)).setPreferredWidth(30); tabelaLivros.getColumn(tabelaLivros.getColumnName(1)).setPreferredWidth(200);"> - <TableColumnModel selectionModel="0"> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - <Column maxWidth="-1" minWidth="-1" prefWidth="-1" resizable="true"> - <Title/> - <Editor/> - <Renderer/> - </Column> - </TableColumnModel> - </Property> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="false" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaLivrosMouseClicked"/> - </Events> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="btnXlsxExport"> - <Properties> - <Property name="text" type="java.lang.String" value="Exportar para XLSX"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnXlsxExportActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton3"> - <Properties> - <Property name="text" type="java.lang.String" value="Importar de arquivo XLSX"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton3ActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="tabCadastro"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Cadastro de livros"> - <Property name="tabTitle" type="java.lang.String" value="Cadastro de livros"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="23" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel2" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="lblNome" min="-2" max="-2" attributes="0"/> - <Component id="lblAutor" min="-2" max="-2" attributes="0"/> - <Component id="lblEditora" min="-2" max="-2" attributes="0"/> - <Component id="lblIsbn" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - <Component id="jLabel20" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="15" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtId" min="-2" pref="59" max="-2" attributes="0"/> - <Component id="txtIdioma" alignment="0" min="-2" pref="133" max="-2" attributes="0"/> - <Group type="103" alignment="0" groupAlignment="1" max="-2" attributes="0"> - <Component id="txtEditora" alignment="0" max="32767" attributes="0"/> - <Component id="txtAutor" alignment="0" max="32767" attributes="0"/> - <Component id="txtTitulo" alignment="0" max="32767" attributes="0"/> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" max="-2" attributes="0"> - <Group type="102" attributes="0"> - <Component id="txtIsbn" min="-2" pref="146" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="lblAno" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Component id="txtSerie" max="32767" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="lblEdicao" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtEdicao" min="-2" pref="45" max="-2" attributes="0"/> - <Component id="txtAno" min="-2" pref="43" max="-2" attributes="0"/> - </Group> - <EmptySpace min="0" pref="17" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - <Component id="jSeparator2" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" max="-2" attributes="0"> - <Component id="boxFornecedor" max="32767" attributes="0"/> - <Component id="boxDisponibilidade" min="-2" pref="208" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace min="-2" pref="14" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel9" min="-2" max="-2" attributes="0"/> - <Component id="jLabel12" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <Component id="jLabel13" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="boxCorredor" alignment="1" max="32767" attributes="0"/> - <Component id="boxSecao" alignment="1" max="32767" attributes="0"/> - <Component id="boxPiso" pref="0" max="32767" attributes="0"/> - <Component id="boxPosicao" alignment="1" max="32767" attributes="0"/> - </Group> - </Group> - <Component id="jScrollPane2" alignment="0" max="32767" attributes="0"/> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - <Component id="jSeparator1" min="-2" pref="203" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="73" max="-2" attributes="0"/> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="160" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="0" pref="67" max="32767" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="btnMapa" min="-2" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnNovo" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="btnSalvar" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnExcluir" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="18" max="-2" attributes="0"/> - <Component id="btNavegar" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnbaixarCapa" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="27" max="-2" attributes="0"/> - <Component id="lblImagem" min="-2" pref="162" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" max="-2" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="jSeparator2" min="-2" pref="232" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="173" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxFornecedor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel8" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxDisponibilidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jSeparator1" min="-2" pref="5" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="23" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel13" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxPiso" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxCorredor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxSecao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="boxPosicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane2" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Component id="lblImagem" min="-2" pref="240" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btNavegar" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnbaixarCapa" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace type="unrelated" min="-2" max="-2" attributes="0"/> - <Component id="btnMapa" min="-2" pref="40" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="48" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtId" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="18" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtTitulo" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblNome" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtAutor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblAutor" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtEditora" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblEditora" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="18" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="lblIsbn" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtIsbn" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblAno" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtAno" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblEdicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSerie" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEdicao" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel20" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtIdioma" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="32767" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnExcluir" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnSalvar" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnNovo" alignment="3" max="32767" attributes="0"/> - </Group> - <Component id="jLabel18" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="32" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblNome"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Título:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblAutor"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Autor:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="1"/> - </Property> - <Property name="text" type="java.lang.String" value="LOCALIZAÇÃO"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblAno"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Ano:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Posição:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblEditora"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Editora:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*Seção:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblIsbn"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="*ISBN:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Corredor:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Piso:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblEdicao"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Edição:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtTitulo"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtTituloActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtAutor"> - </Component> - <Component class="javax.swing.JTextField" name="txtEditora"> - </Component> - <Component class="javax.swing.JTextField" name="txtId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel18"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="Série:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxSecao"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxSecaoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtIsbn"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="#############" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JSeparator" name="jSeparator2"> - <Properties> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.BevelBorderInfo"> - <BevelBorder/> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxCorredor"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxCorredorMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JComboBox" name="boxPiso"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - <Property name="lightWeightPopupEnabled" type="boolean" value="false"/> - <Property name="name" type="java.lang.String" value="" noResource="true"/> - <Property name="requestFocusEnabled" type="boolean" value="false"/> - <Property name="verifyInputWhenFocusTarget" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxPisoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JComboBox" name="boxPosicao"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxPosicaoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JButton" name="btnMapa"> - <Properties> - <Property name="text" type="java.lang.String" value="mapa"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnMapaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JSeparator" name="jSeparator1"> - <Properties> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.SoftBevelBorderInfo"> - <BevelBorder/> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btNavegar"> - <Properties> - <Property name="text" type="java.lang.String" value="Navegar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btNavegarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnbaixarCapa"> - <Properties> - <Property name="text" type="java.lang.String" value="baixar capa"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel20"> - <Properties> - <Property name="text" type="java.lang.String" value="*Idioma:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtSerie"> - </Component> - <Component class="javax.swing.JTextField" name="txtIdioma"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdiomaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtEdicao"> - </Component> - <Component class="javax.swing.JComboBox" name="boxFornecedor"> - <Properties> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - <Property name="lightWeightPopupEnabled" type="boolean" value="false"/> - <Property name="opaque" type="boolean" value="false"/> - <Property name="verifyInputWhenFocusTarget" type="boolean" value="false"/> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxFornecedorMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_SerializeTo" type="java.lang.String" value="FormLivros_boxFornecedor"/> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane2"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTextArea" name="txtAreaObservacoes"> - <Properties> - <Property name="columns" type="int" value="20"/> - <Property name="rows" type="int" value="5"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Observações:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxDisponibilidade"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="0"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="null"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxDisponibilidadeMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="text" type="java.lang.String" value="*Disponibilidade:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblImagem"> - <Properties> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/book_cover.png"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.LineBorderInfo"> - <LineBorder/> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="text" type="java.lang.String" value="Alterar Fornecedor:"/> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtAno"> - <Properties> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnSalvar"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/save_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="SALVAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSalvarActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnNovo"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/new_file_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="NOVO"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnNovoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnExcluir"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/delete_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="EXCLUIR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Dialog" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="FECHAR"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormLogin$3.class b/build/classes/br/com/projeto/view/FormLogin$3.class index 5c90350..d942c63 100644 Binary files a/build/classes/br/com/projeto/view/FormLogin$3.class and b/build/classes/br/com/projeto/view/FormLogin$3.class differ diff --git a/build/classes/br/com/projeto/view/FormLogin.class b/build/classes/br/com/projeto/view/FormLogin.class index 062b880..8260d43 100644 Binary files a/build/classes/br/com/projeto/view/FormLogin.class and b/build/classes/br/com/projeto/view/FormLogin.class differ diff --git a/build/classes/br/com/projeto/view/FormLogin.form b/build/classes/br/com/projeto/view/FormLogin.form deleted file mode 100644 index 262904f..0000000 --- a/build/classes/br/com/projeto/view/FormLogin.form +++ /dev/null @@ -1,172 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - <Property name="resizable" type="boolean" value="false"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="true"/> - </SyntheticProperties> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" alignment="1" max="32767" attributes="0"/> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="121" max="-2" attributes="0"/> - <Component id="btnEntrarLogin" min="-2" pref="124" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="34" max="-2" attributes="0"/> - <Component id="btnCancelarLogin" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="58" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" max="-2" attributes="0"> - <Component id="txtNomeLogin" max="32767" attributes="0"/> - <Component id="txtSenhaLogin" min="-2" pref="272" max="-2" attributes="0"/> - </Group> - </Group> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace pref="68" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="28" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtNomeLogin" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="29" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSenhaLogin" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="39" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace pref="31" max="32767" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnCancelarLogin" alignment="3" min="-2" pref="42" max="-2" attributes="0"/> - <Component id="btnEntrarLogin" alignment="3" min="-2" pref="42" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="24" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="0" green="0" red="0" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel1" alignment="1" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="22" max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" pref="54" max="-2" attributes="0"/> - <EmptySpace pref="20" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Autenticação de Usuário"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome de Usuário:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="text" type="java.lang.String" value="Senha:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtNomeLogin"> - </Component> - <Component class="javax.swing.JPasswordField" name="txtSenhaLogin"> - </Component> - <Component class="javax.swing.JButton" name="btnCancelarLogin"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/cancel_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Cancelar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnCancelarLoginActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnEntrarLogin"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="14" style="1"/> - </Property> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/user_small.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Entrar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnEntrarLoginActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Dica: Credenciais iniciais padrão são: admin@admin e senha: admin"/> - </Properties> - </Component> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormMenu$10.class b/build/classes/br/com/projeto/view/FormMenu$10.class index 1fe9f0e..da06d25 100644 Binary files a/build/classes/br/com/projeto/view/FormMenu$10.class and b/build/classes/br/com/projeto/view/FormMenu$10.class differ diff --git a/build/classes/br/com/projeto/view/FormMenu.class b/build/classes/br/com/projeto/view/FormMenu.class index b94516d..cce8b11 100644 Binary files a/build/classes/br/com/projeto/view/FormMenu.class and b/build/classes/br/com/projeto/view/FormMenu.class differ diff --git a/build/classes/br/com/projeto/view/FormMenu.form b/build/classes/br/com/projeto/view/FormMenu.form deleted file mode 100644 index 1fbf862..0000000 --- a/build/classes/br/com/projeto/view/FormMenu.form +++ /dev/null @@ -1,296 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <NonVisualComponents> - <Component class="javax.swing.JTextField" name="txtlogado"> - </Component> - <Menu class="javax.swing.JMenuBar" name="jMenuBar1"> - <SubComponents> - <Menu class="javax.swing.JMenu" name="jMenu1"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/leitor.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Usuários"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem9"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+U"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de usuários"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem9ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu2"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/funcionario.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Funcionários"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem1"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+F"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de Funcionários"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem1ActionPerformed"/> - </Events> - </MenuItem> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem10"> - <Properties> - <Property name="text" type="java.lang.String" value="Alterar Funcionário"/> - </Properties> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu3"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/provider.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Fornecedores"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem2"> - <Properties> - <Property name="text" type="java.lang.String" value="Controle de Forncedores"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem2ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu4"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/boook.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Livraria"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem3"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+L"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de Livros"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem3ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu5"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/bookloc.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Empréstimos"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem4"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+E"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de Empréstimos"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem4ActionPerformed"/> - </Events> - </MenuItem> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem5"> - <Properties> - <Property name="text" type="java.lang.String" value="Histórico de Empréstimos"/> - </Properties> - </MenuItem> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem6"> - <Properties> - <Property name="text" type="java.lang.String" value="Controle de Multas"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem6ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu6"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/config.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Configurações"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem7"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+C"/> - </Property> - <Property name="text" type="java.lang.String" value="Configurarações"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem7ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu7"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Sair"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem8"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+S"/> - </Property> - <Property name="text" type="java.lang.String" value="Sair"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem8ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - </SubComponents> - </Menu> - </NonVisualComponents> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" alignment="0" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="0" pref="357" max="32767" attributes="0"/> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="lblLogado" min="-2" pref="143" max="-2" attributes="0"/> - <EmptySpace pref="569" max="32767" attributes="0"/> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtIdLogado" min="-2" pref="29" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="109" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace pref="10" max="32767" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtIdLogado" alignment="0" min="-2" max="-2" attributes="0"/> - <Component id="lblLogado" alignment="1" min="-2" pref="20" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="text" type="java.lang.String" value="Logado como:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblLogado"> - </Component> - <Component class="javax.swing.JTextField" name="txtIdLogado"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="enabled" type="boolean" value="false"/> - <Property name="focusable" type="boolean" value="false"/> - <Property name="opaque" type="boolean" value="false"/> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Id:"/> - </Properties> - </Component> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormMenuAtendente$7.class b/build/classes/br/com/projeto/view/FormMenuAtendente$7.class index c0f53fb..63f175f 100644 Binary files a/build/classes/br/com/projeto/view/FormMenuAtendente$7.class and b/build/classes/br/com/projeto/view/FormMenuAtendente$7.class differ diff --git a/build/classes/br/com/projeto/view/FormMenuAtendente.class b/build/classes/br/com/projeto/view/FormMenuAtendente.class index 94e1c26..2a38aa8 100644 Binary files a/build/classes/br/com/projeto/view/FormMenuAtendente.class and b/build/classes/br/com/projeto/view/FormMenuAtendente.class differ diff --git a/build/classes/br/com/projeto/view/FormMenuAtendente.form b/build/classes/br/com/projeto/view/FormMenuAtendente.form deleted file mode 100644 index d1fd56f..0000000 --- a/build/classes/br/com/projeto/view/FormMenuAtendente.form +++ /dev/null @@ -1,222 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <NonVisualComponents> - <Component class="javax.swing.JTextField" name="txtlogado"> - </Component> - <Menu class="javax.swing.JMenuBar" name="jMenuBar1"> - <SubComponents> - <Menu class="javax.swing.JMenu" name="jMenu1"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/leitor.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Usuários"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem9"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+U"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de usuários"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem9ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu4"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/boook.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Livraria"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem3"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+L"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de Livros"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem3ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu5"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/bookloc.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Empréstimos"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem4"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+E"/> - </Property> - <Property name="text" type="java.lang.String" value="Controle de Empréstimos"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem4ActionPerformed"/> - </Events> - </MenuItem> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem5"> - <Properties> - <Property name="text" type="java.lang.String" value="Histórico de Empréstimos"/> - </Properties> - </MenuItem> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem6"> - <Properties> - <Property name="text" type="java.lang.String" value="Controle de Multas"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem6ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - <Menu class="javax.swing.JMenu" name="jMenu7"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/iconfinder_Door_enter_entrance_exit_leave_logout_out_quit_4831032.png"/> - </Property> - <Property name="text" type="java.lang.String" value="Sair"/> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Segoe UI" size="18" style="1"/> - </Property> - </Properties> - <SubComponents> - <MenuItem class="javax.swing.JMenuItem" name="jMenuItem8"> - <Properties> - <Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor"> - <KeyStroke key="Ctrl+S"/> - </Property> - <Property name="text" type="java.lang.String" value="Sair"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMenuItem8ActionPerformed"/> - </Events> - </MenuItem> - </SubComponents> - </Menu> - </SubComponents> - </Menu> - </NonVisualComponents> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" alignment="0" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="0" pref="357" max="32767" attributes="0"/> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="lblLogado" min="-2" pref="143" max="-2" attributes="0"/> - <EmptySpace pref="569" max="32767" attributes="0"/> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtIdLogado" min="-2" pref="29" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="109" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace pref="10" max="32767" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtIdLogado" alignment="0" min="-2" max="-2" attributes="0"/> - <Component id="lblLogado" alignment="1" min="-2" pref="20" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="text" type="java.lang.String" value="Logado como:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblLogado"> - </Component> - <Component class="javax.swing.JTextField" name="txtIdLogado"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="enabled" type="boolean" value="false"/> - <Property name="focusable" type="boolean" value="false"/> - <Property name="opaque" type="boolean" value="false"/> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Id:"/> - </Properties> - </Component> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormMenuUsuario$10.class b/build/classes/br/com/projeto/view/FormMenuUsuario$10.class index e1ee878..42e6e40 100644 Binary files a/build/classes/br/com/projeto/view/FormMenuUsuario$10.class and b/build/classes/br/com/projeto/view/FormMenuUsuario$10.class differ diff --git a/build/classes/br/com/projeto/view/FormMenuUsuario.class b/build/classes/br/com/projeto/view/FormMenuUsuario.class index 331797b..cc56ef5 100644 Binary files a/build/classes/br/com/projeto/view/FormMenuUsuario.class and b/build/classes/br/com/projeto/view/FormMenuUsuario.class differ diff --git a/build/classes/br/com/projeto/view/FormMenuUsuario.form b/build/classes/br/com/projeto/view/FormMenuUsuario.form deleted file mode 100644 index f91b7cc..0000000 --- a/build/classes/br/com/projeto/view/FormMenuUsuario.form +++ /dev/null @@ -1,606 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.9" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <NonVisualComponents> - <Component class="javax.swing.JTextField" name="txtlogado"> - </Component> - <Menu class="javax.swing.JMenuBar" name="jMenuBar1"> - </Menu> - </NonVisualComponents> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="40" green="40" id="darkGray" palette="1" red="40" type="palette"/> - </Property> - <Property name="undecorated" type="boolean" value="true"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="false"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - <AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,2,105,0,0,4,23"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription"> - <GridBagConstraints gridX="0" gridY="2" gridWidth="1" gridHeight="3" fill="0" ipadX="601" ipadY="8" insetsTop="6" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="lblLogado" min="-2" pref="143" max="-2" attributes="0"/> - <EmptySpace pref="607" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace pref="14" max="32767" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="lblLogado" alignment="1" min="-2" pref="20" max="-2" attributes="0"/> - <Component id="jLabel1" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="10" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="text" type="java.lang.String" value="Logado como:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblLogado"> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Id:"/> - </Properties> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription"> - <GridBagConstraints gridX="1" gridY="2" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="20" insetsLeft="61" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/> - </Constraint> - </Constraints> - </Component> - <Component class="javax.swing.JTextField" name="txtIdLogado"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="enabled" type="boolean" value="false"/> - <Property name="focusable" type="boolean" value="false"/> - <Property name="opaque" type="boolean" value="false"/> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription"> - <GridBagConstraints gridX="2" gridY="2" gridWidth="4" gridHeight="2" fill="0" ipadX="15" ipadY="0" insetsTop="20" insetsLeft="6" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/> - </Constraint> - </Constraints> - </Component> - <Container class="javax.swing.JPanel" name="jPanel2"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="0" green="0" red="0" type="rgb"/> - </Property> - </Properties> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription"> - <GridBagConstraints gridX="0" gridY="0" gridWidth="6" gridHeight="1" fill="0" ipadX="721" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="jLabel3" pref="945" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel3" min="-2" pref="54" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Terminal de Consulta"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="jPanel3"> - <Properties> - <Property name="toolTipText" type="java.lang.String" value=""/> - </Properties> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription"> - <GridBagConstraints gridX="0" gridY="1" gridWidth="3" gridHeight="1" fill="0" ipadX="9" ipadY="12" insetsTop="10" insetsLeft="17" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="16" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jScrollPane5" min="-2" pref="366" max="-2" attributes="0"/> - <Group type="102" attributes="0"> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtBuscaLivro" min="-2" pref="242" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="25" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - <Component id="jScrollPane3" min="-2" pref="499" max="-2" attributes="0"/> - </Group> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="9" max="-2" attributes="0"/> - <Component id="txtPrazoEntrega" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="0" pref="9" max="32767" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="lblImagem" min="-2" pref="126" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtBookId" min="-2" pref="93" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel10" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtISBN" min="-2" pref="178" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel11" min="-2" max="-2" attributes="0"/> - <Component id="jLabel23" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtTituloSelect" alignment="0" min="-2" pref="313" max="-2" attributes="0"/> - <Component id="txtStatus" alignment="1" min="-2" pref="313" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <Group type="102" alignment="1" attributes="0"> - <Component id="jLabel20" min="-2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" max="-2" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" alignment="0" groupAlignment="1" attributes="0"> - <Component id="lblAutor" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="lblEditora" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - <Component id="jLabel19" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" max="-2" attributes="0"> - <Component id="txtEditora" alignment="0" max="32767" attributes="0"/> - <Component id="txtAutor" alignment="0" max="32767" attributes="0"/> - <Component id="txtSerie" alignment="0" min="-2" pref="313" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="3" max="-2" attributes="0"/> - <Component id="txtIdioma" min="-2" pref="154" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - <Component id="lblAno" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtAno" min="-2" pref="43" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="lblEdicao" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="txtEdicao" min="-2" pref="45" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </Group> - </Group> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtTituloSelect" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel23" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel11" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtStatus" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="103" alignment="1" groupAlignment="3" attributes="0"> - <Component id="txtBookId" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Component id="jLabel10" alignment="1" min="-2" max="-2" attributes="0"/> - <Component id="txtISBN" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtAutor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblAutor" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtEditora" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblEditora" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="20" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel19" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSerie" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="11" max="-2" attributes="0"/> - <Component id="lblImagem" min="-2" pref="190" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="lblEdicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEdicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel20" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtIdioma" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="lblAno" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtAno" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="8" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtPrazoEntrega" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jScrollPane3" min="-2" pref="106" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtBuscaLivro" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="jScrollPane5" min="-2" pref="398" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace pref="18" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JTextField" name="txtBuscaLivro"> - <Events> - <EventHandler event="keyReleased" listener="java.awt.event.KeyListener" parameters="java.awt.event.KeyEvent" handler="txtBuscaLivroKeyReleased"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane5"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTable" name="tabelaLivrosFiltro"> - <Properties> - <Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> - <Table columnCount="7" rowCount="0"> - <Column editable="false" title="Disponibilidade" type="java.lang.Object"/> - <Column editable="false" title="Título" type="java.lang.Object"/> - <Column editable="true" title="Observações" type="java.lang.Object"/> - <Column editable="false" title="Localização" type="java.lang.Object"/> - <Column editable="false" title="Cod" type="java.lang.Object"/> - <Column editable="false" title="ISBN" type="java.lang.Object"/> - <Column editable="false" title="Emprestado" type="java.lang.Object"/> - </Table> - </Property> - <Property name="autoResizeMode" type="int" value="0"/> - <Property name="tableHeader" type="javax.swing.table.JTableHeader" editor="org.netbeans.modules.form.editors2.JTableHeaderEditor"> - <TableHeader reorderingAllowed="true" resizingAllowed="true"/> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="tabelaLivrosFiltroMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_AddingCodePost" type="java.lang.String" value="tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(0)).setPreferredWidth(34); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(1)).setPreferredWidth(170); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(2)).setPreferredWidth(150); tabelaLivrosFiltro.getColumn(tabelaLivrosFiltro.getColumnName(3)).setPreferredWidth(140);"/> - <AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new javax.swing.JTable() /* { @Override public Component prepareRenderer (TableCellRenderer renderer, int rowIndex, int columnIndex){ Component componenet = super.prepareRenderer(renderer, rowIndex, columnIndex); Object value = getModel().getValueAt(rowIndex,columnIndex); System.out.println("value ===" +value); if(columnIndex == 6){ if(value.equals("true")) { componenet.setBackground(Color.RED); componenet.setForeground(Color.GREEN); } if(value.equals("false")){ componenet.setBackground(Color.GREEN); componenet.setForeground(Color.RED); } }else { componenet.setBackground(Color.WHITE); componenet.setForeground(Color.BLACK); } return componenet; } } */ "/> - </AuxValues> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="lblImagem"> - <Properties> - <Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor"> - <Image iconType="3" name="/imagens/book_cover.png"/> - </Property> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.EtchedBorderInfo"> - <EtchetBorder bevelType="0"> - <Color PropertyName="highlight" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/> - <Color PropertyName="shadow" blue="40" green="40" id="darkGray" palette="1" red="40" type="palette"/> - </EtchetBorder> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel23"> - <Properties> - <Property name="text" type="java.lang.String" value="Título:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel11"> - <Properties> - <Property name="text" type="java.lang.String" value="Status:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtTituloSelect"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtTituloSelectActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtStatus"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtStatusActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtBookId"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="text" type="java.lang.String" value="<html>ISBN/<br>ISSN: "/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtISBN"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtISBNActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtAutor"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblAutor"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Autor:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblEditora"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Editora:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtEditora"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtSerie"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel19"> - <Properties> - <Property name="text" type="java.lang.String" value="Série:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel20"> - <Properties> - <Property name="text" type="java.lang.String" value="Idioma:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtIdioma"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtIdiomaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Localização"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPrazoEntrega"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtPrazoEntregaActionPerformed"/> - </Events> - </Component> - <Container class="javax.swing.JScrollPane" name="jScrollPane3"> - <AuxValues> - <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> - <SubComponents> - <Component class="javax.swing.JTextArea" name="txtObservacoes"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="columns" type="int" value="20"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - <Property name="rows" type="int" value="5"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="text" type="java.lang.String" value="Ficha Técnica:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtEdicao"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JFormattedTextField" name="txtAno"> - <Properties> - <Property name="editable" type="boolean" value="false"/> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="66" green="66" red="66" type="rgb"/> - </Property> - <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor" preCode="try {" postCode="} catch (java.text.ParseException ex) { ex.printStackTrace(); }"> - <Format format="####" subtype="-1" type="5"/> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblAno"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Ano:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="lblEdicao"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Edição:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="text" type="java.lang.String" value="Livro ID:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="12" style="0"/> - </Property> - <Property name="text" type="java.lang.String" value="Filtrar Livro:"/> - </Properties> - </Component> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormMulta$5.class b/build/classes/br/com/projeto/view/FormMulta$5.class index f177b33..9c95ad9 100644 Binary files a/build/classes/br/com/projeto/view/FormMulta$5.class and b/build/classes/br/com/projeto/view/FormMulta$5.class differ diff --git a/build/classes/br/com/projeto/view/FormMulta.class b/build/classes/br/com/projeto/view/FormMulta.class index 9dda649..27209a7 100644 Binary files a/build/classes/br/com/projeto/view/FormMulta.class and b/build/classes/br/com/projeto/view/FormMulta.class differ diff --git a/build/classes/br/com/projeto/view/FormMulta.form b/build/classes/br/com/projeto/view/FormMulta.form deleted file mode 100644 index 9cf0436..0000000 --- a/build/classes/br/com/projeto/view/FormMulta.form +++ /dev/null @@ -1,280 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - <Property name="focusable" type="boolean" value="false"/> - <Property name="focusableWindowState" type="boolean" value="false"/> - <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor"> - <Dimension value="[448, 175]"/> - </Property> - <Property name="undecorated" type="boolean" value="true"/> - <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor"> - <Dimension value="[448, 175]"/> - </Property> - <Property name="resizable" type="boolean" value="false"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="true"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - <AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,0,-81,0,0,1,-63"/> - </AuxValues> - - <Layout class="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout"> - <Property name="useNullLayout" type="boolean" value="true"/> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel2"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription"> - <AbsoluteConstraints x="0" y="22" width="440" height="150"/> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="15" max="-2" attributes="0"/> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNumMulta" min="-2" pref="84" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="33" max="-2" attributes="0"/> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtLeitorId" max="32767" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtEmprestimoId" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="59" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - <Component id="txtDiasAtraso" min="-2" pref="53" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtNomeLivro" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="14" max="-2" attributes="0"/> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtValorMulta" min="-2" pref="79" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="txtImprimeMulta" min="-2" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - <Component id="btnReceberMulta" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jButton2" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNumMulta" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtLeitorId" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtDiasAtraso" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtEmprestimoId" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtNomeLivro" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtValorMulta" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="txtImprimeMulta" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnReceberMulta" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace pref="10" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Nº da Multa:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="text" type="java.lang.String" value="Livro:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Dias de Atraso:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="text" type="java.lang.String" value="Valor da Multa:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="text" type="java.lang.String" value="Id de Usuário:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="text" type="java.lang.String" value="Referente Empréstimo nº:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="txtImprimeMulta"> - <Properties> - <Property name="text" type="java.lang.String" value="Imprimir"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtImprimeMultaActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="jButton2"> - <Properties> - <Property name="text" type="java.lang.String" value="Fechar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton2ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtNumMulta"> - </Component> - <Component class="javax.swing.JTextField" name="txtEmprestimoId"> - </Component> - <Component class="javax.swing.JTextField" name="txtLeitorId"> - </Component> - <Component class="javax.swing.JTextField" name="txtDiasAtraso"> - </Component> - <Component class="javax.swing.JTextField" name="txtNomeLivro"> - </Component> - <Component class="javax.swing.JTextField" name="txtValorMulta"> - </Component> - <Component class="javax.swing.JButton" name="btnReceberMulta"> - <Properties> - <Property name="text" type="java.lang.String" value="Receber"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnReceberMultaActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="0" green="0" red="0" type="rgb"/> - </Property> - <Property name="opaque" type="boolean" value="false"/> - </Properties> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription"> - <AbsoluteConstraints x="0" y="0" width="520" height="30"/> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel3" min="-2" max="-2" attributes="0"/> - <EmptySpace min="0" pref="3" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="jPanel3" min="-2" max="-2" attributes="0"/> - <EmptySpace pref="9" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel3"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="cc" red="66" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="70" max="-2" attributes="0"/> - <Component id="jLabel3" min="-2" pref="306" max="-2" attributes="0"/> - <EmptySpace pref="141" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel3" alignment="0" pref="21" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="MULTA"/> - </Properties> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/build/classes/br/com/projeto/view/FormOptions$33.class b/build/classes/br/com/projeto/view/FormOptions$33.class index d67e75d..77586f9 100644 Binary files a/build/classes/br/com/projeto/view/FormOptions$33.class and b/build/classes/br/com/projeto/view/FormOptions$33.class differ diff --git a/build/classes/br/com/projeto/view/FormOptions.class b/build/classes/br/com/projeto/view/FormOptions.class index b72b747..4f06add 100644 Binary files a/build/classes/br/com/projeto/view/FormOptions.class and b/build/classes/br/com/projeto/view/FormOptions.class differ diff --git a/build/classes/br/com/projeto/view/FormOptions.form b/build/classes/br/com/projeto/view/FormOptions.form deleted file mode 100644 index 9a6ce92..0000000 --- a/build/classes/br/com/projeto/view/FormOptions.form +++ /dev/null @@ -1,873 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> - <Properties> - <Property name="defaultCloseOperation" type="int" value="2"/> - <Property name="resizable" type="boolean" value="false"/> - </Properties> - <SyntheticProperties> - <SyntheticProperty name="formSizePolicy" type="int" value="1"/> - <SyntheticProperty name="generateCenter" type="boolean" value="true"/> - </SyntheticProperties> - <Events> - <EventHandler event="windowActivated" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowActivated"/> - </Events> - <AuxValues> - <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> - <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> - <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> - <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> - <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> - </AuxValues> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jPanel1" max="32767" attributes="0"/> - <Component id="jTabbedPane2" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jPanel1" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="jTabbedPane2" max="32767" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel1"> - <Properties> - <Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="0" green="0" red="0" type="rgb"/> - </Property> - </Properties> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel1" alignment="1" max="32767" attributes="0"/> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel1" min="-2" pref="54" max="-2" attributes="0"/> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel1"> - <Properties> - <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> - <Font name="Tahoma" size="24" style="0"/> - </Property> - <Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> - <Color blue="ff" green="ff" red="ff" type="rgb"/> - </Property> - <Property name="horizontalAlignment" type="int" value="0"/> - <Property name="text" type="java.lang.String" value="Opções"/> - </Properties> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JTabbedPane" name="jTabbedPane2"> - - <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> - <SubComponents> - <Container class="javax.swing.JPanel" name="jPanel2"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Geral"> - <Property name="tabTitle" type="java.lang.String" value="Geral"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="-2" pref="20" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="1" attributes="0"> - <Group type="102" attributes="0"> - <Component id="jLabel6" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="txtIp" min="-2" pref="251" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnSaveIp" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="jLabel12" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="txtUserDB" min="-2" pref="251" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnSaveUserDB" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="jLabel15" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="txtPassDB" min="-2" pref="251" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnSavePassDB" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Component id="jLabel16" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="txtmsgRecibo" min="-2" pref="245" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="24" max="-2" attributes="0"/> - <Component id="btnSaveMsgRecibo" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace min="-2" pref="101" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel13" alignment="0" min="-2" pref="146" max="-2" attributes="0"/> - <Component id="lblLibraryLogo" alignment="0" min="-2" pref="143" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="22" max="-2" attributes="0"/> - <Component id="jLabel9" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxPrinter" min="-2" pref="251" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnSavePrinter" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="jLabel11" alignment="0" min="-2" pref="144" max="-2" attributes="0"/> - <Component id="jLabel10" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="txtLibraryName" min="-2" pref="320" max="-2" attributes="0"/> - <Component id="txtLibraryAddress" min="-2" pref="317" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - <Component id="btnSetLibraryLogo" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnLibraryName" alignment="0" min="-2" max="-2" attributes="0"/> - <Component id="btnLibraryAddress" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - <EmptySpace max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" attributes="0"> - <EmptySpace min="-2" pref="12" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtIp" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnSaveIp" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel12" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtUserDB" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnSaveUserDB" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel15" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnSavePassDB" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Component id="txtPassDB" alignment="0" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnSaveMsgRecibo" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel16" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtmsgRecibo" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="jLabel13" min="-2" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="lblLibraryLogo" min="-2" pref="146" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnSetLibraryLogo" min="-2" max="-2" attributes="0"/> - <Group type="102" attributes="0"> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxPrinter" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnSavePrinter" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" min="-2" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel10" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtLibraryName" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnLibraryName" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace min="-2" pref="23" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel11" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtLibraryAddress" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnLibraryAddress" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - <EmptySpace pref="59" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JButton" name="btnSaveIp"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSaveIpActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel6"> - <Properties> - <Property name="text" type="java.lang.String" value="IP ou Url do Servidor"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtIp"> - </Component> - <Component class="javax.swing.JLabel" name="jLabel9"> - <Properties> - <Property name="text" type="java.lang.String" value="Impressora Padrão:"/> - </Properties> - </Component> - <Component class="javax.swing.JComboBox" name="boxPrinter"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Selecione>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxPrinterMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JButton" name="btnSavePrinter"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSavePrinterActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel10"> - <Properties> - <Property name="text" type="java.lang.String" value="Nome da Instituição:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel11"> - <Properties> - <Property name="text" type="java.lang.String" value="Endereço da Instituição:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtLibraryName"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtLibraryNameActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnLibraryAddress"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnLibraryAddressActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JTextField" name="txtLibraryAddress"> - </Component> - <Component class="javax.swing.JButton" name="btnLibraryName"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnLibraryNameActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="lblLibraryLogo"> - <Properties> - <Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> - <Border info="org.netbeans.modules.form.compat2.border.EtchedBorderInfo"> - <EtchetBorder bevelType="0"> - <Color PropertyName="highlight" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/> - <Color PropertyName="shadow" blue="40" green="40" id="darkGray" palette="1" red="40" type="palette"/> - </EtchetBorder> - </Border> - </Property> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnSetLibraryLogo"> - <Properties> - <Property name="text" type="java.lang.String" value="Selecione"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSetLibraryLogoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel13"> - <Properties> - <Property name="text" type="java.lang.String" value="Logotipo da Instituição"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel12"> - <Properties> - <Property name="text" type="java.lang.String" value="Usuario banco de Dados:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtUserDB"> - </Component> - <Component class="javax.swing.JButton" name="btnSaveUserDB"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSaveUserDBActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel15"> - <Properties> - <Property name="text" type="java.lang.String" value="Senha Banco de Dados:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="btnSavePassDB"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSavePassDBActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JPasswordField" name="txtPassDB"> - </Component> - <Component class="javax.swing.JButton" name="btnSaveMsgRecibo"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSaveMsgReciboActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel16"> - <Properties> - <Property name="text" type="java.lang.String" value="Mensagem Recibo:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtmsgRecibo"> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="jPanel3"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Biblioteca"> - <Property name="tabTitle" type="java.lang.String" value="Biblioteca"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="136" max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="21" max="-2" attributes="0"/> - <Group type="103" groupAlignment="1" attributes="0"> - <Component id="jLabel5" min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" min="-2" max="-2" attributes="0"/> - <Component id="jLabel3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel2" min="-2" max="-2" attributes="0"/> - <Component id="jLabel7" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" max="-2" attributes="0"> - <Component id="txtPiso" alignment="0" max="32767" attributes="0"/> - <Component id="txtCorredor" alignment="0" max="32767" attributes="0"/> - <Component id="txtPosicao" alignment="0" max="32767" attributes="0"/> - <Component id="txtSecao" max="32767" attributes="0"/> - <Component id="txtDisponibilidade" min="-2" pref="195" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <Component id="btnAddPosicao" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxPosicao" min="-2" pref="225" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnApagarPosicao" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="btnAddCorredor" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxCorredor" min="-2" pref="225" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnApagarCorredor" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="btnAddPiso" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxPiso" min="-2" pref="225" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnExcluirPiso" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Group type="103" groupAlignment="1" max="-2" attributes="0"> - <Group type="102" alignment="1" attributes="0"> - <Component id="btnAddDsiponibilidade" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxDisponibilidade" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="0" attributes="0"> - <Component id="btnAddSecao" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxSecao" min="-2" pref="225" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Component id="btnApagarSecao" min="-2" max="-2" attributes="0"/> - <Component id="btnApagarDisponibilidade" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - </Group> - </Group> - </Group> - <EmptySpace pref="54" max="32767" attributes="0"/> - </Group> - <Group type="102" alignment="1" attributes="0"> - <EmptySpace min="0" pref="0" max="32767" attributes="0"/> - <Component id="jLabel14" min="-2" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="txtTipos" min="-2" pref="195" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="btnAddtipos" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="boxTipos" min="-2" pref="225" max="-2" attributes="0"/> - <EmptySpace type="unrelated" max="-2" attributes="0"/> - <Component id="btnExcluirTipos" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="48" max="-2" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="37" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnAddPiso" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxPiso" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnExcluirPiso" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Component id="txtPiso" alignment="1" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnAddCorredor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxCorredor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnApagarCorredor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtCorredor" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="txtPosicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnAddPosicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxPosicao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnApagarPosicao" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="btnAddSecao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtSecao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="boxSecao" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnApagarSecao" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="btnAddDsiponibilidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxDisponibilidade" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnApagarDisponibilidade" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <Group type="103" alignment="0" groupAlignment="3" attributes="0"> - <Component id="jLabel7" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtDisponibilidade" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - </Group> - <EmptySpace max="-2" attributes="0"/> - <Component id="jLabel8" min="-2" max="-2" attributes="0"/> - <EmptySpace min="-2" pref="14" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="btnAddtipos" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="boxTipos" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="btnExcluirTipos" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="txtTipos" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jLabel14" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="57" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel2"> - <Properties> - <Property name="text" type="java.lang.String" value="Piso:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel3"> - <Properties> - <Property name="text" type="java.lang.String" value="Corredor:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel4"> - <Properties> - <Property name="text" type="java.lang.String" value="Posição:"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel5"> - <Properties> - <Property name="text" type="java.lang.String" value="Seção:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtPiso"> - </Component> - <Component class="javax.swing.JTextField" name="txtCorredor"> - </Component> - <Component class="javax.swing.JTextField" name="txtPosicao"> - </Component> - <Component class="javax.swing.JTextField" name="txtSecao"> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtSecaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnAddPiso"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddPisoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnAddCorredor"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddCorredorActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnAddPosicao"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddPosicaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnAddSecao"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddSecaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JComboBox" name="boxCorredor"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Lista de Corredores>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxCorredorMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JComboBox" name="boxPiso"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Lista de Pisos>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxPisoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Component class="javax.swing.JComboBox" name="boxPosicao"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Lista de Posições>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxPosicaoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JComboBox" name="boxSecao"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Lista de Seções>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxSecaoMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JButton" name="btnExcluirPiso"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirPisoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnApagarCorredor"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnApagarCorredorActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnApagarPosicao"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnApagarPosicaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnApagarSecao"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnApagarSecaoActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JButton" name="btnAddDsiponibilidade"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddDsiponibilidadeActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel7"> - <Properties> - <Property name="text" type="java.lang.String" value="Disponibilidade:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtDisponibilidade"> - </Component> - <Component class="javax.swing.JComboBox" name="boxDisponibilidade"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="Quantos dias pode ser locado"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxDisponibilidadeMouseClicked"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - <Component class="javax.swing.JButton" name="btnApagarDisponibilidade"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnApagarDisponibilidadeActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JLabel" name="jLabel8"> - <Properties> - <Property name="text" type="java.lang.String" value="Configura para qtos dias o livro pode ser locado ( Zero para Apenas Leitura Interna)"/> - </Properties> - </Component> - <Component class="javax.swing.JLabel" name="jLabel14"> - <Properties> - <Property name="text" type="java.lang.String" value="Tipo de Usuários:"/> - </Properties> - </Component> - <Component class="javax.swing.JTextField" name="txtTipos"> - </Component> - <Component class="javax.swing.JButton" name="btnAddtipos"> - <Properties> - <Property name="text" type="java.lang.String" value="Add"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnAddtiposActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JComboBox" name="boxTipos"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="1"> - <StringItem index="0" value="<Lista de Tipos de Usuários>"/> - </StringArray> - </Property> - </Properties> - <Events> - <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="boxTiposMouseClicked"/> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="boxTiposActionPerformed"/> - </Events> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value=""/> - </AuxValues> - </Component> - <Component class="javax.swing.JButton" name="btnExcluirTipos"> - <Properties> - <Property name="text" type="java.lang.String" value="Apagar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnExcluirTiposActionPerformed"/> - </Events> - </Component> - </SubComponents> - </Container> - <Container class="javax.swing.JPanel" name="jPanel4"> - <Constraints> - <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription"> - <JTabbedPaneConstraints tabName="Aparência"> - <Property name="tabTitle" type="java.lang.String" value="Aparência"/> - </JTabbedPaneConstraints> - </Constraint> - </Constraints> - - <Layout> - <DimensionLayout dim="0"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="39" max="-2" attributes="0"/> - <Component id="jLabel17" min="-2" max="-2" attributes="0"/> - <EmptySpace type="separate" max="-2" attributes="0"/> - <Component id="cboxTema" min="-2" pref="280" max="-2" attributes="0"/> - <EmptySpace max="-2" attributes="0"/> - <Component id="jButton1" min="-2" max="-2" attributes="0"/> - <EmptySpace pref="279" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - <DimensionLayout dim="1"> - <Group type="103" groupAlignment="0" attributes="0"> - <Group type="102" alignment="0" attributes="0"> - <EmptySpace min="-2" pref="38" max="-2" attributes="0"/> - <Group type="103" groupAlignment="3" attributes="0"> - <Component id="jLabel17" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="jButton1" alignment="3" min="-2" max="-2" attributes="0"/> - <Component id="cboxTema" alignment="3" min="-2" max="-2" attributes="0"/> - </Group> - <EmptySpace pref="324" max="32767" attributes="0"/> - </Group> - </Group> - </DimensionLayout> - </Layout> - <SubComponents> - <Component class="javax.swing.JLabel" name="jLabel17"> - <Properties> - <Property name="text" type="java.lang.String" value="Tema Padrão:"/> - </Properties> - </Component> - <Component class="javax.swing.JButton" name="jButton1"> - <Properties> - <Property name="text" type="java.lang.String" value="Salvar"/> - </Properties> - <Events> - <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/> - </Events> - </Component> - <Component class="javax.swing.JComboBox" name="cboxTema"> - <Properties> - <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> - <StringArray count="2"> - <StringItem index="0" value="Tema Claro"/> - <StringItem index="1" value="Tema Escuro"/> - </StringArray> - </Property> - <Property name="selectedIndex" type="int" value="-1"/> - </Properties> - <AuxValues> - <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> - </AuxValues> - </Component> - </SubComponents> - </Container> - </SubComponents> - </Container> - </SubComponents> -</Form> diff --git a/dist/Librography.jar b/dist/Librography.jar index c7530f6..9f920cd 100644 Binary files a/dist/Librography.jar and b/dist/Librography.jar differ diff --git a/dist/lib/yaz4j-1.7.0-SNAPSHOT.jar b/dist/lib/yaz4j-1.7.0-SNAPSHOT.jar new file mode 100644 index 0000000..f25f587 Binary files /dev/null and b/dist/lib/yaz4j-1.7.0-SNAPSHOT.jar differ diff --git a/nbproject/private/private.properties b/nbproject/private/private.properties index 4d43b3b..e95c762 100644 --- a/nbproject/private/private.properties +++ b/nbproject/private/private.properties @@ -1,10 +1,22 @@ compile.on.save=true do.depend=false do.jar=true +file.reference.caelum-stella-core-2.1.2.jar=F:\\Desktop\\Librography\\dist\\lib\\caelum-stella-core-2.1.2.jar +file.reference.commons-collections4-4.4.jar=F:\\Desktop\\Librography\\dist\\lib\\commons-collections4-4.4.jar +file.reference.commons-compress-1.19.jar=F:\\Desktop\\Librography\\dist\\lib\\commons-compress-1.19.jar +file.reference.commons-math3-3.6.1.jar=F:\\Desktop\\Librography\\dist\\lib\\commons-math3-3.6.1.jar +file.reference.core-3.3.0.jar=F:\\Desktop\\Librography\\dist\\lib\\core-3.3.0.jar +file.reference.darcula-1.0.0.jar=F:\\Desktop\\Librography\\dist\\lib\\darcula-1.0.0.jar +file.reference.dom4j-2.1.3.jar=F:\\Desktop\\Librography\\dist\\lib\\dom4j-2.1.3.jar +file.reference.java-json.jar=F:\\Desktop\\Librography\\dist\\lib\\java-json.jar +file.reference.javase-3.3.0.jar=F:\\Desktop\\Librography\\dist\\lib\\javase-3.3.0.jar file.reference.log4j-1.2-api-2.14.1.jar=F:\\Desktop\\goldenowl\\Netbeans\\jar-classpath\\log4j-1.2-api-2.14.1.jar file.reference.log4j-api-2.14.1.jar=F:\\Desktop\\goldenowl\\Netbeans\\jar-classpath\\log4j-api-2.14.1.jar file.reference.log4j-core-2.14.1.jar=F:\\Desktop\\goldenowl\\Netbeans\\jar-classpath\\log4j-core-2.14.1.jar +file.reference.poi-5.0.0.jar=F:\\Desktop\\Librography\\dist\\lib\\poi-5.0.0.jar +file.reference.poi-ooxml-5.0.0.jar=F:\\Desktop\\Librography\\dist\\lib\\poi-ooxml-5.0.0.jar file.reference.poi-ooxml-full-5.0.0.jar=F:\\Desktop\\goldenowl\\Netbeans\\jar-classpath\\poi-ooxml-5.0.0.jar +file.reference.poi-ooxml-lite-5.0.0.jar=F:\\Desktop\\Librography\\dist\\lib\\poi-ooxml-lite-5.0.0.jar file.reference.xmlbeans-5.0.0.jar=F:\\Desktop\\goldenowl\\Netbeans\\jar-classpath\\xmlbeans-5.0.0.jar javac.debug=true javadoc.preview=true diff --git a/nbproject/project.properties b/nbproject/project.properties index 04781aa..dbd3e14 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -30,22 +30,34 @@ dist.javadoc.dir=${dist.dir}/javadoc endorsed.classpath= excludes= file.reference.caelum-stella-core-2.1.2.jar=../jar-classpath/caelum-stella-core-2.1.2.jar +file.reference.caelum-stella-core-2.1.2.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\caelum-stella-core-2.1.2.jar file.reference.commons-collections4-4.4.jar=../jar-classpath/commons-collections4-4.4.jar +file.reference.commons-collections4-4.4.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\commons-collections4-4.4.jar file.reference.commons-compress-1.19.jar=../jar-classpath/commons-compress-1.19.jar +file.reference.commons-compress-1.19.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\commons-compress-1.19.jar file.reference.commons-math3-3.6.1.jar=../jar-classpath/commons-math3-3.6.1.jar +file.reference.commons-math3-3.6.1.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\commons-math3-3.6.1.jar file.reference.core-3.3.0.jar=../jar-classpath/core-3.3.0.jar +file.reference.core-3.3.0.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\core-3.3.0.jar file.reference.darcula-1.0.0.jar=../jar-classpath/darcula-1.0.0.jar +file.reference.darcula-1.0.0.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\darcula-1.0.0.jar file.reference.dom4j-2.1.3.jar=../jar-classpath/dom4j-2.1.3.jar +file.reference.dom4j-2.1.3.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\dom4j-2.1.3.jar file.reference.java-json.jar=../jar-classpath/java-json.jar +file.reference.java-json.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\java-json.jar file.reference.javase-3.3.0.jar=../jar-classpath/javase-3.3.0.jar +file.reference.javase-3.3.0.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\javase-3.3.0.jar file.reference.log4j-1.2-api-2.14.1.jar=../jar-classpath/apache-log4j-2.14.1-bin/log4j-1.2-api-2.14.1.jar file.reference.log4j-api-2.14.1.jar=../jar-classpath/apache-log4j-2.14.1-bin/log4j-api-2.14.1.jar file.reference.log4j-core-2.14.1.jar=../jar-classpath/apache-log4j-2.14.1-bin/log4j-core-2.14.1.jar file.reference.poi-5.0.0.jar=../jar-classpath/poi-5.0.0.jar +file.reference.poi-5.0.0.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\poi-5.0.0.jar file.reference.poi-ooxml-5.0.0.jar=../jar-classpath/poi-ooxml-5.0.0.jar file.reference.poi-ooxml-full-5.0.0.jar=../jar-classpath/poi-5.0.0/poi-ooxml-full-5.0.0.jar file.reference.poi-ooxml-lite-5.0.0.jar=../jar-classpath/poi-ooxml-lite-5.0.0.jar +file.reference.poi-ooxml-lite-5.0.0.jar-1=..\\goldenowl\\Netbeans\\jar-classpath\\poi-ooxml-lite-5.0.0.jar file.reference.xmlbeans-5.0.0.jar=../jar-classpath/xmlBeans/xmlbeans-5.0.0.jar +file.reference.yaz4j-1.7.0-SNAPSHOT.jar=..\\goldenowl\\Netbeans\\jar-classpath\\yaz4j-1.7.0-SNAPSHOT.jar includes=** jar.compress=true javac.classpath=\ @@ -67,7 +79,19 @@ javac.classpath=\ ${file.reference.xmlbeans-5.0.0.jar}:\ ${file.reference.dom4j-2.1.3.jar}:\ ${file.reference.commons-compress-1.19.jar}:\ - ${file.reference.poi-ooxml-lite-5.0.0.jar} + ${file.reference.poi-ooxml-lite-5.0.0.jar}:\ + ${file.reference.java-json.jar-1}:\ + ${file.reference.poi-5.0.0.jar-1}:\ + ${file.reference.darcula-1.0.0.jar-1}:\ + ${file.reference.caelum-stella-core-2.1.2.jar-1}:\ + ${file.reference.commons-collections4-4.4.jar-1}:\ + ${file.reference.commons-compress-1.19.jar-1}:\ + ${file.reference.commons-math3-3.6.1.jar-1}:\ + ${file.reference.core-3.3.0.jar-1}:\ + ${file.reference.dom4j-2.1.3.jar-1}:\ + ${file.reference.javase-3.3.0.jar-1}:\ + ${file.reference.poi-ooxml-lite-5.0.0.jar-1}:\ + ${file.reference.yaz4j-1.7.0-SNAPSHOT.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false diff --git a/notas.txt b/notas.txt index 1c28132..fbc9961 100644 --- a/notas.txt +++ b/notas.txt @@ -1 +1,4 @@ --- remover VISIBLE e linha com create table if no exist \ No newline at end of file +-- remover VISIBLE e linha com create table if no exist + reativar e ver tema + carateres estranhios mysql + incluir dbpass,dbuser,ipserver dentro dos zip e remover create dos bat \ No newline at end of file diff --git a/src/br/com/projeto/jdbc/ConexaoBanco.java b/src/br/com/projeto/jdbc/ConexaoBanco.java index ac41448..200f9c5 100644 --- a/src/br/com/projeto/jdbc/ConexaoBanco.java +++ b/src/br/com/projeto/jdbc/ConexaoBanco.java @@ -59,7 +59,7 @@ public class ConexaoBanco { String contentPass; contentPass = new String(Files.readAllBytes(Paths.get(dbpassPath))); - String url = "jdbc:mysql://" + contentIP + ":3306/applibrography"; //Nome da base de dados + String url = "jdbc:mysql://" + contentIP + ":3306/gowl"; //Nome da base de dados String user = contentUser; //nome do usuário do MySQL String password = contentPass; //senha do MySQL diff --git a/src/br/com/projeto/view/FormLogin.java b/src/br/com/projeto/view/FormLogin.java index f213c16..9ab8bac 100644 --- a/src/br/com/projeto/view/FormLogin.java +++ b/src/br/com/projeto/view/FormLogin.java @@ -180,7 +180,7 @@ public class FormLogin extends javax.swing.JFrame { /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ - + /* OptionsDao optionsdao = new OptionsDao(); String temaPadrao = optionsdao.retornaOption(30); if (temaPadrao.equals("Tema Claro")) {