summaryrefslogtreecommitdiffstats
path: root/part/kxeattributedialog.cpp
blob: a9fba9671fa68797d1d71a4f0167387dbc25fcc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/***************************************************************************
                          kxeattributedialog.cpp  -  description
                          ----------------------
    begin                : Fre Jul 12 2002
    copyright            : (C) 2002, 2003 by The KXMLEditor Team
    email                : lvanek@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program 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 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "kxeattributedialog.h"

#include <klineedit.h>
#include <kdebug.h>
#include <tdelocale.h>

#include <tqpushbutton.h>
#include <tqlabel.h>

KXEAttributeDialog::KXEAttributeDialog( TQWidget * pParent, const char * pszName, bool fModal, WFlags fl )
	: KXEAttributeDialogBase( pParent, pszName, fModal, fl )
{
  connect( m_pEditNamespace, SIGNAL(textChanged(const TQString &)), this, SLOT(slotNamespaceChanged(const TQString &)) );
	connect( m_pEditQName, SIGNAL(textChanged(const TQString &)), this, SLOT(slotNameChanged(const TQString &)) );
	connect( m_pEditValue, SIGNAL(textChanged(const TQString &)), this, SLOT(slotValueChanged(const TQString &)) );
}

void KXEAttributeDialog::clearDialog()
{
	m_pEditNamespace->clear();
	m_pEditQName->clear();
	m_pEditValue->clear();
}

int KXEAttributeDialog::exec()
{
	clearDialog();

  m_pBtnOK->setEnabled(false);

	m_pEditQName->setFocus();
	m_pBtnOK->setDefault(true);

	int iReturn = KXEAttributeDialogBase::exec();
	if ( iReturn == Accepted )
	{
    m_strNamespace = m_pEditNamespace->text();
    m_strQName = m_pEditQName->text();
    m_strValue = m_pEditValue->text();
	}

	return iReturn;
}

void KXEAttributeDialog::slotNameChanged(const TQString & strNewName)
{
	TQString strMessage = checkName(strNewName);
  if(strMessage.isEmpty())
     {
       strMessage = checkNamespace(m_pEditNamespace->text());
       if(strMessage.isEmpty())
         strMessage = checkValue(m_pEditValue->text());
     }
     
  m_pTextLabelMessage->setText(strMessage);

	if ( strNewName.isEmpty() || (strMessage.length() > 0) )
		m_pBtnOK->setEnabled(false);
	else
		m_pBtnOK->setEnabled(true);
}

void KXEAttributeDialog::slotValueChanged(const TQString & strNewValue)
{
	TQString strMessage = checkName(m_pEditQName->text());
  if(strMessage.isEmpty())
     {
       strMessage = checkNamespace(m_pEditNamespace->text());
       if(strMessage.isEmpty())
         strMessage = checkValue(strNewValue);
     }

  m_pTextLabelMessage->setText(strMessage);

	if ( m_pEditQName->text().isEmpty() || (strMessage.length() > 0) )
		m_pBtnOK->setEnabled(false);
	else
		m_pBtnOK->setEnabled(true);
}

void KXEAttributeDialog::slotNamespaceChanged(const TQString & strNewNamespace)
{
	TQString strMessage = checkName(m_pEditQName->text());
  if(strMessage.isEmpty())
     {
       strMessage = checkNamespace(strNewNamespace);
       if(strMessage.isEmpty())
         strMessage = checkValue(m_pEditValue->text());
     }

  m_pTextLabelMessage->setText(strMessage);

	if ( m_pEditQName->text().isEmpty() || (strMessage.length() > 0) )
		m_pBtnOK->setEnabled(false);
	else
		m_pBtnOK->setEnabled(true);
}

// Check, if XML attribute name is OK
TQString KXEAttributeDialog::checkNamespace(const TQString strAtttributeName)
{
  if(strAtttributeName.length() == 0)
    return  "";

  // test for space 
  if(strAtttributeName.find(' ') >= 0)
    return i18n("Atttribute namespace cannot contain space !");

  // Forbidden characters
  TQString strForbiddenChars("<>\"'");
  for(unsigned int i = 0; i < strForbiddenChars.length(); i++)
  {
    TQChar ch = strForbiddenChars[i];

    if(strAtttributeName.find(ch) >= 0)
      return i18n("Atttribute namespace cannot contain character: %1 !").arg(ch);
  }

  return "";
}

// Check, if XML attribute name is OK
TQString KXEAttributeDialog::checkName(const TQString strAtttributeName)
{
  if(strAtttributeName.length() == 0)
    return  "";

  // test for space 
  if(strAtttributeName.find(' ') >= 0)
    return i18n("Atttribute name cannot contain space !");

  // Forbidden characters
  TQString strForbiddenChars("&@#$%^()%+?=:<>;\"'*");
  for(unsigned int i = 0; i < strForbiddenChars.length(); i++)
  {
    TQChar ch = strForbiddenChars[i];

    if(strAtttributeName.find(ch) >= 0)
      return i18n("Atttribute name cannot contain character: %1 !").arg(ch);
  }

  return "";
}

// Check, if XML attribute value is OK
TQString KXEAttributeDialog::checkValue(const TQString strData)
{
  if(strData.length() == 0)
    return  "";

  // Forbidden characters
  TQString strForbiddenChars("<>\"");
  for(unsigned int i = 0; i < strForbiddenChars.length(); i++)
  {
    TQChar ch = strForbiddenChars[i];

    if(strData.find(ch) >= 0)
      return i18n("Attribute value cannot contain character: %1 !").arg(ch);
  }

  return "";
}

#include "kxeattributedialog.moc"