// -*- c++ -*-

/*
 *  Copyright (C) 2001-2003, Richard J. Moore <rich@kde.org>
 *
 *  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., 59 Temple Place - Suite 330,
 *  Boston, MA 02111-1307, USA.
 */

#ifndef KJSEMBEDJSCONSOLEWIDGET_H
#define KJSEMBEDJSCONSOLEWIDGET_H

#include <qframe.h>
#include <kjs/object.h>

class QComboBox;
class QPushButton;
class QTextEdit;

class KPopupTitle;
class KProcess;
class KShellProcess;

namespace KJS { class Interpreter; };

namespace KJSEmbed {

/**
 * A QWidget that provides a console for executing Javascript commands. Creating
 * a JS console is easy, as you can see below:
 *
 * <pre>
 *   KJS::Object global( new KJS::ObjectImp() );
 *   KJS::Interpreter *js = new KJS::Interpreter( global );
 *   KJSEmbed::JSConsoleWidget *win = new KJSEmbed::JSConsoleWidget( js );
 *   win->addBindings( js->globalExec(), global );
 * </pre>
 *
 * This example creates a console for a JS interpreter and adds a print function
 * to the interpreter.
 *
 * @version $Id: jsconsolewidget.h,v 1.6 2003/01/15 03:34:34 rich Exp $
 * @author Richard Moore, rich@kde.org
 */
class JSConsoleWidget : public QFrame
{
    Q_OBJECT

public:
    JSConsoleWidget( KJS::Interpreter *js, QWidget *parent=0, const char *name=0 );
    virtual ~JSConsoleWidget();

    KJS::Interpreter *jscript() const { return js; }
    QTextEdit *messages() const { return log; }
    KPopupTitle *title() const;

public slots:
    void execute();
    virtual bool execute( const QString &cmd );

    virtual void println( const QString &text );
    virtual void warn( const QString &text );

    virtual bool run( const QString &shellCmd );

protected:
    void createView();

    void childExited();
    void receivedStdOutput(KProcess *, char *, int);
    void receivedStdError(KProcess *, char *, int);

private:
    QString msg;
    KShellProcess *proc;
    KJS::Interpreter *js;

    QTextEdit *log;
    QComboBox *cmd;
    QPushButton *go;

    class Private *d;
};

}; // namespace KJSEmbed

#endif // KJSEMBEDJSCONSOLEWIDGET_H

// Local Variables:
// c-basic-offset: 4
// End:

