view libqterminal/unix/QUnixTerminalImpl.h @ 15653:35c891dce299

Removed INCLUDEPATH.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 30 Jan 2012 12:03:12 +0100
parents 845cebf281aa
children c05926c0657d
line wrap: on
line source

/*  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 "unix/kpty.h"
#include "unix/TerminalModel.h"
#include "unix/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