diff libqterminal/unix/QUnixTerminalImpl.h @ 15651:845cebf281aa

Added files of QConsole.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 30 Jan 2012 11:23:13 +0100
parents
children 35c891dce299
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libqterminal/unix/QUnixTerminalImpl.h	Mon Jan 30 11:23:13 2012 +0100
@@ -0,0 +1,67 @@
+/*  Copyright (C) 2008 e_k (e_k@users.sourceforge.net)
+    Copyright (C) 2012 Jacob Dawid <jacob.dawid@googlemail.com>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+		    
+    This library 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
+    Library General Public License for more details.
+			    
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+						    
+
+#ifndef Q_TERMINAL
+#define Q_TERMINAL
+
+#include <QtGui>
+#include "kpty.h"
+#include "TerminalModel.h"
+#include "TerminalView.h"
+
+class QTerminal : public QWidget
+{
+    Q_OBJECT
+public:
+    QTerminal(QWidget *parent = 0);
+    ~QTerminal();
+    
+    void setTerminalFont(QFont &font); 
+    void setArgs(QStringList &args);
+    void setTextCodec(QTextCodec *codec);
+    void setSize(int h, int v);
+    void setHistorySize(int lines);
+    void setReadOnly(bool);
+            
+signals:
+    void finished();
+
+public slots:
+    void copyClipboard();
+    void pasteClipboard();
+        
+protected:
+    void focusInEvent(QFocusEvent *focusEvent);
+    void showEvent(QShowEvent *);
+    virtual void resizeEvent(QResizeEvent *);
+    
+protected slots:
+    void sessionFinished();        
+    
+private:
+    void initialize();
+    void connectToPty();
+
+    TerminalView *m_sessionView;
+    TerminalModel *m_sessionModel;
+    KPty *m_kpty;
+};
+
+#endif // Q_TERMINAL