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.
kvirc/src/modules/dcc/chat.h

103 lines
3.2 KiB

#ifndef _CHAT_H_
#define _CHAT_H_
//=============================================================================
//
// File : chat.h
// Creation date : Tue Sep 20 09 2000 15:11:12 by Szymon Stefanek
//
// This file is part of the KVirc irc client distribution
// Copyright (C) 2000-2004 Szymon Stefanek (pragma at kvirc dot 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 opinion) any later version.
//
// This program is distributed in the HOPE that it will be USEFUL,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, write to the Free Software Foundation,
// Inc. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#include "kvi_window.h"
#include "kvi_string.h"
#include "kvi_databuffer.h"
#include "window.h"
#include "descriptor.h"
#include "thread.h"
#include "kvi_pointerlist.h"
#ifdef COMPILE_SSL_SUPPORT
class KviSSL;
#endif
class KviDccChatThread : public KviDccThread
{
public:
KviDccChatThread(KviWindow * wnd,kvi_socket_t fd);
~KviDccChatThread();
protected:
KviPointerList<KviDataBuffer> * m_pOutBuffers;
protected:
virtual void run();
bool tryFlushOutBuffers();
// This should handle the incoming data buffer
// must "eat" some data from data.buffer, memmove the remaining part
// to the beginning , kvi_realloc data.buffer and update data.iLen
// If bCritical is true , it should handle the whole data buffer
// since the thread is going to die
// It should return true if the handing was succesfull
// or false if the thread should be stopped
virtual bool handleIncomingData(KviDccThreadIncomingData *data,bool bCritical);
public:
virtual void sendRawData(const void * buffer,int len); // mutex (m_pOutBuffers usage)
};
class KviDccMarshal;
class TQSplitter;
class KviDccChat : public KviDccWindow
{
Q_OBJECT
TQ_OBJECT
public:
KviDccChat(KviFrame *pFrm,KviDccDescriptor * dcc,const char * name);
~KviDccChat();
protected:
KviDccChatThread * m_pSlaveThread;
TQSplitter * m_pTopSplitter;
TQString m_szTarget;
TQString m_szLocalNick;
protected:
virtual const TQString & target();
virtual void fillCaptionBuffers();
virtual void getBaseLogFileName(KviStr &buffer);
virtual TQPixmap * myIconPtr();
virtual void resizeEvent(TQResizeEvent *e);
virtual TQSize sizeHint() const;
virtual const TQString & localNick();
virtual bool event(TQEvent *e);
virtual void ownMessage(const TQString &text);
virtual void ownAction(const TQString &text);
virtual void triggerCreationEvents();
virtual void triggerDestructionEvents();
void startConnection();
protected slots:
void handleMarshalError(int err);
void connected();
void sslError(const char * msg);
void connectionInProgress();
void startingSSLHandshake();
void textViewRightClicked();
};
#endif //_CHAT_H_