aboutsummaryrefslogtreecommitdiffstats
path: root/3.4.0/src/modules/spaste/controller.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2008-03-24 03:14:30 +0000
committerGravatar Szymon Tomasz Stefanek2008-03-24 03:14:30 +0000
commit79025d0f297bcddd002bd6ec83421798d351ec01 (patch)
tree46e57c728cf431a646cd176b2391d24a23be244b /3.4.0/src/modules/spaste/controller.cpp
parentTagged release 3.4.0 (diff)
downloadKVIrc-79025d0f297bcddd002bd6ec83421798d351ec01.tar.gz
KVIrc-79025d0f297bcddd002bd6ec83421798d351ec01.tar.bz2
KVIrc-79025d0f297bcddd002bd6ec83421798d351ec01.zip
Will double check the commands before typing. Will double check the commands before typing. Will double check the commands before typing. Will double check...
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1263 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to '3.4.0/src/modules/spaste/controller.cpp')
-rw-r--r--3.4.0/src/modules/spaste/controller.cpp121
1 files changed, 0 insertions, 121 deletions
diff --git a/3.4.0/src/modules/spaste/controller.cpp b/3.4.0/src/modules/spaste/controller.cpp
deleted file mode 100644
index 23f4e732a..000000000
--- a/3.4.0/src/modules/spaste/controller.cpp
+++ /dev/null
@@ -1,121 +0,0 @@
-// File : controller.cpp
-// Creation date : Thu Apr 30 2002 17:13:12 GMT by Juanjo Álvarez
-//
-// This file is part of the KVirc irc client distribution
-// Copyright (C) 2002 Juanjo Álvarez (juanjux@yahoo.es)
-// Copyright (C) 2002 Szymon Stefanek (kvirc@tin.it)
-//
-// 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. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-#include "controller.h"
-#include "kvi_window.h"
-#include "kvi_console.h"
-#include "kvi_mirccntrl.h"
-#include "kvi_app.h"
-#include "kvi_options.h"
-
-#include <qtimer.h>
-#include <qstringlist.h>
-#include <qclipboard.h>
-
-extern KviPointerList<SPasteController> * g_pControllerList;
-
-SPasteController::SPasteController(KviWindow * w,int id)
- : m_pClipBuff(NULL),m_pFile(NULL),m_pId(id),m_pWindow(w)
-{
- g_pControllerList->append(this);
- //m_pWindow = w;
- m_pTimer = new QTimer(this);
-}
-
-SPasteController::~SPasteController()
-{
- g_pControllerList->removeRef(this);
- if(m_pFile)
- {
- m_pFile->close();
- delete m_pFile;
- }
- if(m_pTimer)
- {
- m_pTimer->stop();
- delete m_pTimer;
- }
- if(m_pClipBuff)
- delete m_pClipBuff;
-}
-
-bool SPasteController::pasteFileInit(QString &fileName)
-{
- if(m_pClipBuff)return false; // can't paste a file while pasting the clipboard
- if(m_pFile)return false; // can't paste two files at a time
- m_pFile = new QFile(fileName);
- if(!m_pFile->open(IO_ReadOnly))return false;
- connect(m_pTimer,SIGNAL(timeout()),this,SLOT(pasteFile()));
- m_pTimer->start(KVI_OPTION_UINT(KviOption_uintPasteDelay));
- return true;
-}
-
-bool SPasteController::pasteClipboardInit(void)
-{
- if(m_pFile)return false; // can't paste clipboard while pasting a file
- QString tmp(g_pApp->clipboard()->text());
- if(m_pClipBuff)
- {
- (*m_pClipBuff) += QStringList::split("\n",tmp,true);
- } else {
- m_pClipBuff = new QStringList(QStringList::split("\n",tmp,true));
- m_clipBuffIterator = m_pClipBuff->begin();
- }
- connect(m_pTimer,SIGNAL(timeout()),this,SLOT(pasteClipboard()));
- m_pTimer->start(KVI_OPTION_UINT(KviOption_uintPasteDelay));
- return true;
-}
-
-void SPasteController::pasteFile(void)
-{
-#ifndef COMPILE_USE_QT4
- QString line;
- if(m_pFile->readLine(line,999) != -1)
- {
- if(line.isEmpty())
- line = QChar(KVI_TEXT_RESET);
- if( (!g_pApp->windowExists(m_pWindow)) || m_pWindow->console()->isNotConnected() )
- {
- m_pFile->close();
- delete this;
- } else m_pWindow->ownMessage(line.ascii());
- } else { //File finished
- m_pFile->close();
- delete this;
- }
-#endif
-}
-
-void SPasteController::pasteClipboard(void)
-{
- if(m_clipBuffIterator != m_pClipBuff->end())
- {
- if((!g_pApp->windowExists(m_pWindow)) || m_pWindow->console()->isNotConnected() )
- delete this;
- else {
- if((*m_clipBuffIterator).isEmpty())(*m_clipBuffIterator) = QChar(KVI_TEXT_RESET);
- m_pWindow->ownMessage((*m_clipBuffIterator).ascii()); // <-- not good :/
- ++m_clipBuffIterator;
- }
- } else delete this;//Clipboard finished
-}
-
-#include "controller.moc"