summaryrefslogtreecommitdiffstats
path: root/konversation/src/rawlog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
commitee0d2e6e1967294f4a62da1840b0ffdaa3124a2d (patch)
tree5c150db3c91a190b4911f19aeec9b1b2163c0c53 /konversation/src/rawlog.h
downloadkonversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.tar.gz
konversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.zip
Added old abandoned KDE3 version of Konversation
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/konversation@1092922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konversation/src/rawlog.h')
-rw-r--r--konversation/src/rawlog.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/konversation/src/rawlog.h b/konversation/src/rawlog.h
new file mode 100644
index 0000000..8f3e6e8
--- /dev/null
+++ b/konversation/src/rawlog.h
@@ -0,0 +1,40 @@
+/*
+ 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.
+*/
+
+/*
+ RawLog.h - provides a view to the raw protocol
+ begin: Die M� 18 2003
+ copyright: (C) 2003 by Dario Abatianni
+ email: eisfuchs@tigress.com
+*/
+
+#ifndef _RAWLOG_H_
+#define _RAWLOG_H_
+
+#include "chatwindow.h"
+
+
+class RawLog : public ChatWindow
+{
+ Q_OBJECT
+
+ public:
+ explicit RawLog(QWidget* parent);
+ ~RawLog();
+
+ virtual bool closeYourself();
+ virtual bool searchView();
+
+ public slots:
+ void updateAppearance();
+ void morphNotification();
+
+ protected:
+ /** Called from ChatWindow adjustFocus */
+ virtual void childAdjustFocus();
+};
+#endif