diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-03-26 13:50:43 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-03-26 13:50:43 +0100 |
commit | d62c8c002c51fb7c36487839eeeb4ac89f044dee (patch) | |
tree | bb4d1f5c631ab1f22a3018ba39e6a806035f80fd /part/kxespecprocinstrdialog.h | |
download | kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.tar.gz kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.zip |
Initial import of kxmleditor 1.1.4
Diffstat (limited to 'part/kxespecprocinstrdialog.h')
-rw-r--r-- | part/kxespecprocinstrdialog.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/part/kxespecprocinstrdialog.h b/part/kxespecprocinstrdialog.h new file mode 100644 index 0000000..c78301f --- /dev/null +++ b/part/kxespecprocinstrdialog.h @@ -0,0 +1,54 @@ +/*************************************************************************** + kxespecprocinstrdialog.h - description + ------------------------ + begin : Ne ?ec 6 2003 + copyright : (C) 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 KXESPECPROCINSTRDIALOG_H +#define KXESPECPROCINSTRDIALOG_H + +#include "kxespecprocinstrdialogbase.h" + +#include <qwidget.h> + +/** + *@author Lumir Vanek + */ + +class KXESpecProcInstrDialog : public KXESpecProcInstrDialogBase +{ + Q_OBJECT + +public: + KXESpecProcInstrDialog(QWidget *parent=0, const char *name=0); + ~KXESpecProcInstrDialog(); + + QString getData(); + + /** Initialize dialog from given target and data string */ + void fillDialog(const QString&, const QString&); + + /** Initialize dialog from given data string */ + void fillDialog(const QString); + + int exec(); + +protected slots: + + /** Called when user press OK button */ + void slotAccept(); + +}; + +#endif |