summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/kwrited.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konsole/konsole/kwrited.cpp')
-rw-r--r--konsole/konsole/kwrited.cpp143
1 files changed, 143 insertions, 0 deletions
diff --git a/konsole/konsole/kwrited.cpp b/konsole/konsole/kwrited.cpp
new file mode 100644
index 000000000..7b0e1167b
--- /dev/null
+++ b/konsole/konsole/kwrited.cpp
@@ -0,0 +1,143 @@
+/*
+ kwrited is a write(1) receiver for KDE.
+ Copyright (C) 1997,1998 by Lars Doelle <lars.doelle@on-line.de>
+
+ 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.
+
+ 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.
+*/
+
+// System
+#include <iostream>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <signal.h>
+
+// X11
+#include <X11/Xlib.h>
+#include <fixx11h.h>
+
+// Qt
+#include <dcopclient.h>
+#include <qsocketnotifier.h>
+
+// KDE
+#include <kuniqueapplication.h>
+#include <kcmdlineargs.h>
+#include <klocale.h>
+#include <kglobalsettings.h>
+#include <kdebug.h>
+#include <kcrash.h>
+#include <kpty.h>
+#include <kuser.h>
+#include <kglobal.h>
+
+// kwrited
+#include "kwrited.h"
+#include <config.h>
+
+/* TODO
+ for anyone who likes to do improvements here, go ahead.
+ - check FIXMEs below
+ - add Menu
+ - accept messages (on/off)
+ - pop up on incoming messages
+ - clear messages
+ - allow max. lines
+ - add CORBA interface?
+ - add session awareness.
+ - add client complements.
+*/
+
+KWrited::KWrited() : QTextEdit()
+{
+ int pref_width, pref_height;
+
+ setFont(KGlobalSettings::fixedFont());
+ pref_width = (2 * KGlobalSettings::desktopGeometry(0).width()) / 3;
+ pref_height = fontMetrics().lineSpacing() * 10;
+ setMinimumWidth(pref_width);
+ setMinimumHeight(pref_height);
+ setReadOnly(true);
+ setFocusPolicy(QWidget::NoFocus);
+ setWordWrap(QTextEdit::WidgetWidth);
+ setTextFormat(Qt::PlainText);
+
+ pty = new KPty();
+ pty->open();
+ pty->login(KUser().loginName().local8Bit().data(), getenv("DISPLAY"));
+ QSocketNotifier *sn = new QSocketNotifier(pty->masterFd(), QSocketNotifier::Read, this);
+ connect(sn, SIGNAL(activated(int)), this, SLOT(block_in(int)));
+
+ QString txt = i18n("KWrited - Listening on Device %1").arg(pty->ttyName());
+ setCaption(txt);
+
+ kdDebug() << txt << endl;
+}
+
+KWrited::~KWrited()
+{
+ pty->logout();
+ delete pty;
+}
+
+void KWrited::block_in(int fd)
+{
+ char buf[4096];
+ int len = read(fd, buf, 4096);
+ if (len <= 0)
+ return;
+
+ insert( QString::fromLocal8Bit( buf, len ).remove('\r') );
+ show();
+ raise();
+}
+
+void KWrited::clearText()
+{
+ clear();
+}
+
+QPopupMenu *KWrited::createPopupMenu( const QPoint &pos )
+{
+ QPopupMenu *menu = QTextEdit::createPopupMenu( pos );
+
+ menu->insertItem( i18n( "Clear Messages" ),
+ this, SLOT( clearText() ),
+ 0, -1, 0 );
+
+ return menu;
+}
+
+KWritedModule::KWritedModule( const QCString& obj )
+ : KDEDModule( obj )
+{
+ KGlobal::locale()->insertCatalogue("konsole");
+ pro = new KWrited;
+}
+
+KWritedModule::~KWritedModule()
+{
+ delete pro;
+ KGlobal::locale()->removeCatalogue("konsole");
+}
+
+extern "C"
+KDE_EXPORT KDEDModule* create_kwrited( const QCString& obj )
+ {
+ return new KWritedModule( obj );
+ }
+
+#include "kwrited.moc"