You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
/***************************************************************************
|
|
kxeattributedialog.h - 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KXEATTRIBUTEDIALOG_H
|
|
#define KXEATTRIBUTEDIALOG_H
|
|
|
|
#include "kxeattributedialogbase.h"
|
|
|
|
#include <tqdom.h>
|
|
|
|
class KXEAttributeDialog : public KXEAttributeDialogBase
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KXEAttributeDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 );
|
|
|
|
const TQString attributeNamespace() const { return m_strNamespace; }
|
|
const TQString QName() const { return m_strQName; }
|
|
const TQString Value() const { return m_strValue; }
|
|
|
|
/**
|
|
* To be used for adding an attribute to new XML element.
|
|
*
|
|
* @return see @ref TQDialog::exec
|
|
*/
|
|
int exec( );
|
|
|
|
/**
|
|
* Clears the dialogs widgets.
|
|
*/
|
|
void clearDialog();
|
|
|
|
// Check, if XML attribute name is OK
|
|
static TQString checkName(const TQString);
|
|
|
|
// Check, if XML attribute value is OK
|
|
static TQString checkValue(const TQString);
|
|
|
|
// Check, if XML attribute namespace is OK
|
|
static TQString checkNamespace(const TQString);
|
|
|
|
protected slots:
|
|
/**
|
|
* Called, when user change attribute name.
|
|
* Disables the OK button, if user input is wrong or incomplete.
|
|
*/
|
|
void slotNameChanged(const TQString &);
|
|
|
|
/**
|
|
* Called, when user change attribute value.
|
|
* Disables the OK button, if user input is wrong or incomplete.
|
|
*/
|
|
void slotValueChanged(const TQString &);
|
|
|
|
/**
|
|
* Called, when user change attribute namespace.
|
|
* Disables the OK button, if user input is wrong or incomplete.
|
|
*/
|
|
void slotNamespaceChanged(const TQString &);
|
|
|
|
protected:
|
|
TQString m_strNamespace;
|
|
TQString m_strQName;
|
|
TQString m_strValue;
|
|
};
|
|
|
|
#endif
|