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/kxechoosestringdialog.h | |
download | kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.tar.gz kxmleditor-d62c8c002c51fb7c36487839eeeb4ac89f044dee.zip |
Initial import of kxmleditor 1.1.4
Diffstat (limited to 'part/kxechoosestringdialog.h')
-rw-r--r-- | part/kxechoosestringdialog.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/part/kxechoosestringdialog.h b/part/kxechoosestringdialog.h new file mode 100644 index 0000000..2065e3a --- /dev/null +++ b/part/kxechoosestringdialog.h @@ -0,0 +1,44 @@ +/*************************************************************************** + kxechoosestringdialog.h - description + ----------------------- + begin : Fri Jul 20 2001 + copyright : (C) 2001, 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 KXECHOOSESTRINGDIALOG_H +#define KXECHOOSESTRINGDIALOG_H + +#include "kxechoosestringdialogbase.h" + +#include <qwidget.h> + +/**Dialog with combobox that allow enter +or select any string + *@author Lumir Vanek + */ + +class KXEChooseStringDialog : public KXEChooseStringDialogBase +{ + Q_OBJECT +public: + KXEChooseStringDialog(QWidget *, const char *, const char *, const char *); + +protected slots: // Protected slots + /** Called, when user press OK button */ + void slotOk(); +public: // Public attributes + /** Contain text choosed by user */ + QString m_strChoosedText; +}; + +#endif |