KTutorial  0.5.1
EditorSupport.h
00001 /***************************************************************************
00002  *   Copyright (C) 2010 by Daniel Calviño Sánchez <danxuliu@gmail.com>     *
00003  *   Copyright (C) 2011 by Daniel Calviño Sánchez <danxuliu@gmail.com>     *
00004  *   Copyright (C) 2012 by Daniel Calviño Sánchez <danxuliu@gmail.com>     *
00005  *                                                                         *
00006  *   This program is free software; you can redistribute it and/or modify  *
00007  *   it under the terms of the GNU General Public License as published by  *
00008  *   the Free Software Foundation; either version 2 of the License, or     *
00009  *   (at your option) any later version.                                   *
00010  *                                                                         *
00011  *   This program is distributed in the hope that it will be useful,       *
00012  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00013  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00014  *   GNU General Public License for more details.                          *
00015  *                                                                         *
00016  *   You should have received a copy of the GNU General Public License     *
00017  *   along with this program; If not, see <http://www.gnu.org/licenses/>.  *
00018  ***************************************************************************/
00019 
00020 #ifndef KTUTORIAL_EDITORSUPPORT_EDITORSUPPORT_H
00021 #define KTUTORIAL_EDITORSUPPORT_EDITORSUPPORT_H
00022 
00023 #include <QObject>
00024 
00025 namespace ktutorial {
00026 class ObjectFinder;
00027 class Tutorial;
00028 }
00029 
00030 namespace ktutorial {
00031 namespace editorsupport {
00032 class EventSpy;
00033 class EventSupportAdaptor;
00034 class ObjectRegister;
00035 }
00036 }
00037 
00038 namespace ktutorial {
00039 namespace editorsupport {
00040 
00076 class EditorSupport: public QObject {
00077 Q_OBJECT
00078 public:
00079 
00085     explicit EditorSupport(QObject* parent = 0);
00086 
00092     void setObjectFinder(ObjectFinder* objectFinder);
00093 
00100     void setup(QObject* window);
00101 
00107     int mainWindowObjectId();
00108 
00116     int findObject(const QString& name);
00117 
00124     void highlight(int objectId);
00125 
00132     void stopHighlighting(int objectId);
00133 
00137     void enableEventSpy();
00138 
00142     void disableEventSpy();
00143 
00152     void testScriptedTutorial(const QString& filename,
00153                               const QString& stepId = QString());
00154 
00155 Q_SIGNALS:
00156 
00162     void started(Tutorial* tutorial);
00163 
00164 private:
00165 
00169     ObjectRegister* mObjectRegister;
00170 
00174     EventSpy* mEventSpy;
00175 
00179     QObject* mWindow;
00180 
00184     ObjectFinder* mObjectFinder;
00185 
00186 private Q_SLOTS:
00187 
00193     void deleteFinishedTestTutorial(Tutorial* tutorial);
00194 
00195 };
00196 
00197 }
00198 }
00199 
00200 #endif