forked from qt-creator/qt-creator
Removal of Symbian support
Qt Creator's support for Symbian was at its peak in version 2.4.x. Nobody really verified it in Qt Creator 2.5 or 2.6. It is most likely rotten. Let's remove it! Also, the Symbian support code was spread throughout the whole Qt Creator code base. The plugin interfaces evolved in the meantime and target platforms like Android or QNX have 99% of their code in separate plugins. In case anyone wants to revive Symbian support in Qt Creator, please create a plugin for it. Change-Id: I56a758a3e2fd5b8c64d9aeb8f63d8e916c4883be Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
@@ -2,24 +2,20 @@
|
||||
class QtQuickConstants:
|
||||
class Components:
|
||||
BUILTIN = 1
|
||||
SYMBIAN = 2
|
||||
MEEGO_HARMATTAN = 4
|
||||
EXISTING_QML = 8
|
||||
MEEGO_HARMATTAN = 2
|
||||
EXISTING_QML = 4
|
||||
|
||||
class Targets:
|
||||
DESKTOP = 1
|
||||
SIMULATOR = 2
|
||||
SYMBIAN = 4
|
||||
MAEMO5 = 8
|
||||
HARMATTAN = 16
|
||||
EMBEDDED_LINUX = 32
|
||||
MAEMO5 = 4
|
||||
HARMATTAN = 8
|
||||
EMBEDDED_LINUX = 16
|
||||
|
||||
@staticmethod
|
||||
def getStringForComponents(components):
|
||||
if components==QtQuickConstants.Components.BUILTIN:
|
||||
return "Built-in elements only (for all platforms)"
|
||||
elif components==QtQuickConstants.Components.SYMBIAN:
|
||||
return "Qt Quick Components for Symbian"
|
||||
elif components==QtQuickConstants.Components.MEEGO_HARMATTAN:
|
||||
return "Qt Quick Components for Meego/Harmattan"
|
||||
elif components==QtQuickConstants.Components.EXISTING_QML:
|
||||
@@ -31,8 +27,6 @@ class QtQuickConstants:
|
||||
def getStringForTarget(target):
|
||||
if target==QtQuickConstants.Targets.DESKTOP:
|
||||
return "Desktop"
|
||||
elif target==QtQuickConstants.Targets.SYMBIAN:
|
||||
return "Symbian Device"
|
||||
elif target==QtQuickConstants.Targets.MAEMO5:
|
||||
return "Maemo5"
|
||||
elif target==QtQuickConstants.Targets.SIMULATOR:
|
||||
@@ -48,7 +42,7 @@ class QtQuickConstants:
|
||||
def getAllTargets():
|
||||
return [QtQuickConstants.Targets.DESKTOP, QtQuickConstants.Targets.HARMATTAN,
|
||||
QtQuickConstants.Targets.MAEMO5, QtQuickConstants.Targets.SIMULATOR,
|
||||
QtQuickConstants.Targets.SYMBIAN, QtQuickConstants.Targets.EMBEDDED_LINUX]
|
||||
QtQuickConstants.Targets.EMBEDDED_LINUX]
|
||||
|
||||
@staticmethod
|
||||
def getAllTargetStrings():
|
||||
|
||||
Reference in New Issue
Block a user