| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | /**************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** This file is part of Qt Creator | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2010-03-05 11:25:49 +01:00
										 |  |  | ** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ** Contact: Nokia Corporation (qt-info@nokia.com) | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Commercial Usage | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Licensees holding valid Qt Commercial licenses may use this file in | 
					
						
							|  |  |  | ** accordance with the Qt Commercial License Agreement provided with the | 
					
						
							|  |  |  | ** Software or, alternatively, in accordance with the terms contained in | 
					
						
							|  |  |  | ** a written agreement between you and Nokia. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** GNU Lesser General Public License Usage | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Alternatively, this file may be used under the terms of the GNU Lesser | 
					
						
							|  |  |  | ** General Public License version 2.1 as published by the Free Software | 
					
						
							|  |  |  | ** Foundation and appearing in the file LICENSE.LGPL included in the | 
					
						
							|  |  |  | ** packaging of this file.  Please review the following information to | 
					
						
							|  |  |  | ** ensure the GNU Lesser General Public License version 2.1 requirements | 
					
						
							|  |  |  | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** If you are unsure which license is appropriate for your use, please | 
					
						
							|  |  |  | ** contact the sales department at http://qt.nokia.com/contact.
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | **************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef QMLPROJECTRUNCONFIGURATION_H
 | 
					
						
							|  |  |  | #define QMLPROJECTRUNCONFIGURATION_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qmlprojectmanager_global.h"
 | 
					
						
							|  |  |  | #include <projectexplorer/runconfiguration.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-13 10:58:30 +02:00
										 |  |  | #include <QWeakPointer>
 | 
					
						
							|  |  |  | #include <QComboBox>
 | 
					
						
							| 
									
										
										
										
											2010-08-20 11:34:02 +02:00
										 |  |  | #include <QLabel>
 | 
					
						
							| 
									
										
										
										
											2010-04-13 10:58:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | QT_FORWARD_DECLARE_CLASS(QStringListModel); | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | namespace Core { | 
					
						
							|  |  |  |     class IEditor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | namespace QmlProjectManager { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Internal { | 
					
						
							|  |  |  | class QmlProjectTarget; | 
					
						
							|  |  |  | class QmlProjectRunConfigurationFactory; | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | const char * const CURRENT_FILE  = QT_TRANSLATE_NOOP("QmlManager", "<Current File>"); | 
					
						
							| 
									
										
										
										
											2010-03-05 11:38:17 +01:00
										 |  |  | const char * const M_CURRENT_FILE  = "CurrentFile"; | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-15 11:59:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | class QMLPROJECTMANAGER_EXPORT QmlProjectRunConfigurationDebugData { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     QmlProjectRunConfigurationDebugData(); | 
					
						
							|  |  |  |     QString serverAddress; | 
					
						
							|  |  |  |     quint16 serverPort; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | class QMLPROJECTMANAGER_EXPORT QmlProjectRunConfiguration : public ProjectExplorer::RunConfiguration | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  |     friend class Internal::QmlProjectRunConfigurationFactory; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     QmlProjectRunConfiguration(Internal::QmlProjectTarget *parent); | 
					
						
							|  |  |  |     virtual ~QmlProjectRunConfiguration(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Internal::QmlProjectTarget *qmlTarget() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  |     bool isEnabled(ProjectExplorer::BuildConfiguration *bc) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     QString viewerPath() const; | 
					
						
							|  |  |  |     QStringList viewerArguments() const; | 
					
						
							|  |  |  |     QString workingDirectory() const; | 
					
						
							| 
									
										
										
										
											2010-02-16 16:30:41 +01:00
										 |  |  |     QString debugServerAddress() const; | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     uint debugServerPort() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // RunConfiguration
 | 
					
						
							| 
									
										
										
										
											2010-04-16 11:46:47 +02:00
										 |  |  |     virtual QWidget *createConfigurationWidget(); | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QVariantMap toMap() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-08 14:36:44 +01:00
										 |  |  | public slots: | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  |     void changeCurrentFile(Core::IEditor*); | 
					
						
							| 
									
										
										
										
											2010-03-08 14:36:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     QString mainScript() const; | 
					
						
							|  |  |  |     void setMainScript(const QString &scriptFile); | 
					
						
							| 
									
										
										
										
											2010-04-13 10:58:30 +02:00
										 |  |  |     void updateFileComboBox(); | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-19 16:51:27 +02:00
										 |  |  |     void updateEnabled(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-26 14:46:04 +01:00
										 |  |  |     void onViewerChanged(); | 
					
						
							|  |  |  |     void onViewerArgsChanged(); | 
					
						
							| 
									
										
										
										
											2010-02-16 16:30:41 +01:00
										 |  |  |     void onDebugServerAddressChanged(); | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     void onDebugServerPortChanged(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2010-08-19 16:51:27 +02:00
										 |  |  |     QString viewerDefaultPath() const; | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     QmlProjectRunConfiguration(Internal::QmlProjectTarget *parent, QmlProjectRunConfiguration *source); | 
					
						
							|  |  |  |     virtual bool fromMap(const QVariantMap &map); | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  |     void setEnabled(bool value); | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     void ctor(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  |     // absolute path to current file (if being used)
 | 
					
						
							|  |  |  |     QString m_currentFileFilename; | 
					
						
							|  |  |  |     // absolute path to selected main script (if being used)
 | 
					
						
							|  |  |  |     QString m_mainScriptFilename; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  |     QString m_scriptFile; | 
					
						
							|  |  |  |     QString m_qmlViewerCustomPath; | 
					
						
							|  |  |  |     QString m_qmlViewerArgs; | 
					
						
							| 
									
										
										
										
											2010-04-15 11:59:22 +02:00
										 |  |  |     QmlProjectRunConfigurationDebugData m_debugData; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-13 10:58:30 +02:00
										 |  |  |     QStringListModel *m_fileListModel; | 
					
						
							|  |  |  |     // weakpointer is used to make sure we don't try to manipulate
 | 
					
						
							|  |  |  |     // widget which was deleted already, as can be the case here.
 | 
					
						
							| 
									
										
										
										
											2010-08-20 11:34:02 +02:00
										 |  |  |     QWeakPointer<QLabel> m_qmlViewerExecutable; | 
					
						
							| 
									
										
										
										
											2010-04-13 10:58:30 +02:00
										 |  |  |     QWeakPointer<QComboBox> m_fileListCombo; | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-08 14:36:44 +01:00
										 |  |  |     Internal::QmlProjectTarget *m_projectTarget; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-05 11:11:05 +01:00
										 |  |  |     bool m_usingCurrentFile; | 
					
						
							|  |  |  |     bool m_isEnabled; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 13:39:13 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace QmlProjectManager
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // QMLPROJECTRUNCONFIGURATION_H
 |