parts/regexptest/regexptestdlg.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2001 by Bernd Gehrmann * 00003 * bernd@kdevelop.org * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef _REGEXPTESTDLG_H_ 00013 #define _REGEXPTESTDLG_H_ 00014 00015 #include "regexptestdlgbase.h" 00016 00017 class KDevPlugin; 00018 00019 00020 class RegexpTestDialog : public RegexpTestDialogBase 00021 { 00022 Q_OBJECT 00023 00024 public: 00025 RegexpTestDialog( KDevPlugin *part ); 00026 ~RegexpTestDialog(); 00027 00028 protected: 00029 virtual void showEvent(QShowEvent *e); 00030 00031 protected slots: 00032 void showRegExpEditor(); 00033 00034 private: 00035 virtual void somethingChanged(); 00036 virtual void checkPOSIX(); 00037 virtual void checkQRegExp(); 00038 virtual void checkKRegExp(); 00039 virtual void insertQuoted(); 00040 00041 KDevPlugin *m_part; 00042 00043 QDialog * _regexp_dialog; 00044 }; 00045 00046 #endif