You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/ircviewbox.h

51 lines
1.0 KiB

/*
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.
*/
/*
Copyright (C) 2005 Renchi Raju <renchi@pooh.tam.uiuc.edu>
*/
#ifndef IRCVIEWBOX_H
#define IRCVIEWBOX_H
#include <tqvbox.h>
class IRCView;
class SearchBar;
class Server;
class IRCViewBox : public TQVBox
{
Q_OBJECT
public:
IRCViewBox(TQWidget* parent, Server* newServer);
~IRCViewBox();
IRCView* ircView() const;
public slots:
void slotSearch();
void slotSearchNext();
void slotSearchPrevious();
void slotSearchChanged(const TQString& pattern);
protected:
void searchNext(bool reversed = false);
private:
IRCView* m_ircView;
SearchBar* m_searchBar;
bool m_matchedOnce;
};
#endif /* IRCVIEWBOX_H */