00001 /*************************************************************************** 00002 * * 00003 * searchtextbrowser.h * 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 * Read the file COPYING for details. * 00011 * * 00012 * copyright: (C) 2003 by Jan Mueller * 00013 * email: janmueller7@hotmail.com * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef SearchTextBrowser_h 00018 #define SearchTextBrowser_h 00019 #include <qtextbrowser.h> 00020 #include <qstring.h> 00021 00022 class SearchTextBrowser : public QTextBrowser { 00023 private: 00024 SearchTextBrowser(const SearchTextBrowser&); 00025 00026 public: 00027 SearchTextBrowser( QWidget *parent = 0, const char *name = 0 ): QTextBrowser(parent, name) {}; 00028 public slots: 00029 virtual void setSource(const QString &name) {}; 00030 }; 00031 00032 00033 #endif
1.3.6-20040222