diff --git a/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp b/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp deleted file mode 100644 index 1ae3998342e..00000000000 --- a/src/plugins/projectexplorer/devicesupport/idevicewidget.cpp +++ /dev/null @@ -1,52 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2015 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms and -** conditions see http://www.qt.io/terms-conditions. For further information -** use the contact form at http://www.qt.io/contact-us. -** -** 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 or version 3 as published by the Free -** Software Foundation and appearing in the file LICENSE.LGPLv21 and -** LICENSE.LGPLv3 included in the packaging of this file. Please review the -** following information to ensure the GNU Lesser General Public License -** requirements will be met: https://www.gnu.org/licenses/lgpl.html and -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, The Qt Company gives you certain additional -** rights. These rights are described in The Qt Company LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ -#include - -/*! - \class ProjectExplorer::IDeviceWidget - \brief The IDeviceWidget class provides an interface for the widget - configuring an IDevice. - - A class implementing this interface will display a widget on the - \gui Devices options page. It enables the user to configure a particular - device. -*/ - -/*! - \fn virtual void updateDeviceFromUi() - - Ensures that all changes in the UI are propagated to the device object. - - If the device is always updated right when the change happens, the - implementation of this function can be empty. However, you cannot generally - rely on the QLineEdit::editingFinished() signal being emitted on time if - some button in the dialog is clicked (such as \gui Apply). So if you have - any handlers for line edit changes, they should probably be called here. -*/ diff --git a/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp b/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp deleted file mode 100644 index 4e40809bcc3..00000000000 --- a/src/plugins/projectexplorer/publishing/ipublishingwizardfactory.cpp +++ /dev/null @@ -1,79 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2015 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms and -** conditions see http://www.qt.io/terms-conditions. For further information -** use the contact form at http://www.qt.io/contact-us. -** -** 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 or version 3 as published by the Free -** Software Foundation and appearing in the file LICENSE.LGPLv21 and -** LICENSE.LGPLv3 included in the packaging of this file. Please review the -** following information to ensure the GNU Lesser General Public License -** requirements will be met: https://www.gnu.org/licenses/lgpl.html and -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, The Qt Company gives you certain additional -** rights. These rights are described in The Qt Company LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -****************************************************************************/ -#include - - -/*! - \class ProjectExplorer::IPublishingWizardFactory - - \brief The IPublishingWizardFactory class provides an interface for creating - wizards to publish a project. - - A class implementing this interface is used to create an associated wizard - that allows users to publish their project to a remote facility, such as an - app store. - - Such a wizard would typically transform the project content into a format - expected by that facility (\e packaging) and also upload it, if possible. - - The factory objects have to be added to the global object pool via - \c ExtensionSystem::PluginManager::addObject(). - - \sa ExtensionSystem::PluginManager::addObject() -*/ - -/*! - \fn virtual QString displayName() const = 0 - - Describes on one line the type of wizard that this factory can create. -*/ - - /*! - \fn virtual QString description() const = 0 - - Explains the exact purpose of the wizard created by this factory. -*/ - -/*! - \fn virtual bool canCreateWizard(const Project *project) const = 0 - - Returns true if the type of wizard that this factory can create is available - for the specified \a project. -*/ - -/*! - \fn virtual QWizard *createWizard(const Project *project) const = 0 - - Creates a wizard that can publish \a project. Behavior is undefined if - canCreateWizard() returns \c false for the project. Returns the newly - created publishing wizard - - \sa canCreateWizard() -*/