// Openbravo POS is a point of sales application designed for touch screens.
// Copyright (C) 2007-2009 Openbravo, S.L.
// http://www.openbravo.com/product/pos
//
// This file is part of Openbravo POS.
//
// Openbravo POS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Openbravo POS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Openbravo POS. If not, see <http://www.gnu.org/licenses/>.
package com.openbravo.pos.admin;
import java.awt.Component;
import java.util.UUID;
import com.openbravo.basic.BasicException;
import com.openbravo.data.user.DirtyManager;
import com.openbravo.data.user.EditorRecord;
import com.openbravo.format.Formats;
import com.openbravo.pos.forms.AppLocal;
import org.fife.ui.rsyntaxtextarea.SyntaxConstants;
/**
*
* @author adrianromero
*/
public class RolesView extends javax.swing.JPanel implements EditorRecord {
private Object m_oId;
/** Creates new form RolesEditor */
public RolesView(DirtyManager dirty) {
initComponents();
m_jName.getDocument().addDocumentListener(dirty);
m_jText.getDocument().addDocumentListener(dirty);
m_jText.setAntiAliasingEnabled(true);
m_jText.setSyntaxEditingStyle(SyntaxConstants.SYNTAX_STYLE_XML);
writeValueEOF();
}
public void writeValueEOF() {
m_oId = null;
m_jName.setText(null);
m_jText.setText(null);
m_jName.setEnabled(false);
m_jText.setEnabled(false);
}
public void writeValueInsert() {
m_oId = null;
m_jName.setText(null);
m_jName.setBackground(COLOR_MANDATORY_FIELD);
m_jText.setText(null);
m_jName.setEnabled(true);
m_jText.setEnabled(true);
}
public void writeValueDelete(Object value) {
Object[] role = (Object[]) value;
m_oId = role[0];
m_jName.setText(Formats.STRING.formatValue(role[1]));
m_jText.setText(Formats.BYTEA.formatValue(role[2]));
m_jText.setCaretPosition(0);
m_jName.setEnabled(false);
m_jText.setEnabled(false);
}
public void writeValueEdit(Object value) {
Object[] role = (Object[]) value;
m_oId = role[0];
m_jName.setText(Formats.STRING.formatValue(role[1]));
m_jName.setBackground(null);
m_jText.setText(Formats.BYTEA.formatValue(role[2]));
m_jText.setCaretPosition(0);
m_jName.setEnabled(true);
m_jText.setEnabled(true);
}
public Object createValue() throws BasicException {
Object[] role = new Object[3];
role[0] = m_oId == null ? UUID.randomUUID().toString() : m_oId;
role[1] = m_jName.getText();
role[2] = Formats.BYTEA.parseValue(m_jText.getText());
return role;
}
public Component getComponent() {
return this;
}
public void refresh() {
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jScrollPane1 = new org.fife.ui.rtextarea.RTextScrollPane();
m_jText = new org.fife.ui.rsyntaxtextarea.RSyntaxTextArea();
jLabel2 = new javax.swing.JLabel();
m_jName = new javax.swing.JTextField();
m_jText.setFont(new java.awt.Font("DialogInput", 0, 12));
jScrollPane1.setViewportView(m_jText);
jLabel2.setText(AppLocal.getIntString("Label.Name")); // NOI18N
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 477, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(m_jName, javax.swing.GroupLayout.PREFERRED_SIZE, 260, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(m_jName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 312, Short.MAX_VALUE)
.addContainerGap())
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel2;
private org.fife.ui.rtextarea.RTextScrollPane jScrollPane1;
private javax.swing.JTextField m_jName;
private org.fife.ui.rsyntaxtextarea.RSyntaxTextArea m_jText;
// End of variables declaration//GEN-END:variables
}