00001 // **************************************************************************** 00002 // copyright (c) 2000-2004 Horst Knorr <hk_classes@knoda.org> 00003 // This file is part of the hk_kdeclasses library. 00004 // This file may be distributed and/or modified under the terms of the 00005 // GNU Library Public License version 2 as published by the Free Software 00006 // Foundation and appearing in the file LGPL included in the 00007 // packaging of this file. 00008 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00009 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00010 // **************************************************************************** 00011 // $Revision: 1.6 $ 00012 00013 #ifndef HK_KDEFINDDIALOG_H 00014 #define HK_KDEFINDDIALOG_H 00015 #include "hk_kdefinddialogbase.h" 00016 00017 class hk_kdefinddialog : public hk_kdefinddialogbase 00018 { 00019 Q_OBJECT 00020 00021 public: 00022 hk_kdefinddialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 00023 ~hk_kdefinddialog(); 00024 public slots: 00025 virtual void find_slot(); 00026 virtual void new_findargument(); 00027 signals: 00028 void signal_findbutton_clicked(); 00029 void signal_findargument_changed(); 00030 }; 00031 #endif // HK_KDEFINDDIALOG_H
1.4.1