forked from qt-creator/qt-creator
Squish: Update objects after merging BaseValidatingEdit...
...into FancyLineEdit. Change-Id: I7e45861783a7bdf160827595b4e455d869884c81 Reviewed-by: Robert Loehning <robert.loehning@digia.com>
This commit is contained in:
committed by
Robert Loehning
parent
409f9c47e5
commit
e7297926ef
@@ -118,7 +118,7 @@
|
|||||||
:Options.qt_tabwidget_tabbar_QTabBar {name='qt_tabwidget_tabbar' type='QTabBar' visible='1' window=':Options_Core::Internal::SettingsDialog'}
|
:Options.qt_tabwidget_tabbar_QTabBar {name='qt_tabwidget_tabbar' type='QTabBar' visible='1' window=':Options_Core::Internal::SettingsDialog'}
|
||||||
:Options_Core::Internal::SettingsDialog {type='Core::Internal::SettingsDialog' unnamed='1' visible='1' windowTitle~='(Options|Preferences)'}
|
:Options_Core::Internal::SettingsDialog {type='Core::Internal::SettingsDialog' unnamed='1' visible='1' windowTitle~='(Options|Preferences)'}
|
||||||
:Options_QListView {type='QListView' unnamed='1' visible='1' window=':Options_Core::Internal::SettingsDialog'}
|
:Options_QListView {type='QListView' unnamed='1' visible='1' window=':Options_Core::Internal::SettingsDialog'}
|
||||||
:Path.Utils_BaseValidatingLineEdit {container=':qt_tabwidget_stackedwidget_QWidget' name='LineEdit' type='Utils::BaseValidatingLineEdit' visible='1'}
|
:Path.Utils_BaseValidatingLineEdit {container=':qt_tabwidget_stackedwidget_QWidget' name='LineEdit' type='Utils::FancyLineEdit' visible='1'}
|
||||||
:QML Debugging.No_QPushButton {text='No' type='QPushButton' unnamed='1' visible='1' window=':QML Debugging_QMessageBox'}
|
:QML Debugging.No_QPushButton {text='No' type='QPushButton' unnamed='1' visible='1' window=':QML Debugging_QMessageBox'}
|
||||||
:QML Debugging_QMessageBox {text='The option will only take effect if the project is recompiled. Do you want to recompile now?' type='QMessageBox' unnamed='1' visible='1'}
|
:QML Debugging_QMessageBox {text='The option will only take effect if the project is recompiled. Do you want to recompile now?' type='QMessageBox' unnamed='1' visible='1'}
|
||||||
:QWebPage {type='QWebPage' unnamed='1'}
|
:QWebPage {type='QWebPage' unnamed='1'}
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
:User Interface.languageBox_QComboBox {container=':Core__Internal__GeneralSettings.User Interface_QGroupBox' name='languageBox' type='QComboBox' visible='1'}
|
:User Interface.languageBox_QComboBox {container=':Core__Internal__GeneralSettings.User Interface_QGroupBox' name='languageBox' type='QComboBox' visible='1'}
|
||||||
:Widget Box_qdesigner_internal::WidgetBoxTreeWidget {container=':*Qt Creator.Widget Box_QDockWidget' type='qdesigner_internal::WidgetBoxTreeWidget' unnamed='1' visible='1'}
|
:Widget Box_qdesigner_internal::WidgetBoxTreeWidget {container=':*Qt Creator.Widget Box_QDockWidget' type='qdesigner_internal::WidgetBoxTreeWidget' unnamed='1' visible='1'}
|
||||||
:Working Copy.checkoutDirectoryLineEdit_QLineEdit {container=':Git Repository Clone.Working Copy_QGroupBox' name='checkoutDirectoryLineEdit' type='QLineEdit' visible='1'}
|
:Working Copy.checkoutDirectoryLineEdit_QLineEdit {container=':Git Repository Clone.Working Copy_QGroupBox' name='checkoutDirectoryLineEdit' type='QLineEdit' visible='1'}
|
||||||
:Working Copy_Utils::BaseValidatingLineEdit {container=':Git Repository Clone.Working Copy_QGroupBox' type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'}
|
:Working Copy_Utils::BaseValidatingLineEdit {container=':Git Repository Clone.Working Copy_QGroupBox' type='Utils::FancyLineEdit' unnamed='1' visible='1'}
|
||||||
:WritePermissions_Core::Internal::ReadOnlyFilesDialog {name='Core__Internal__ReadOnlyFilesDialog' type='Core::Internal::ReadOnlyFilesDialog' visible='1' windowTitle='Files Without Write Permissions'}
|
:WritePermissions_Core::Internal::ReadOnlyFilesDialog {name='Core__Internal__ReadOnlyFilesDialog' type='Core::Internal::ReadOnlyFilesDialog' visible='1' windowTitle='Files Without Write Permissions'}
|
||||||
:addToVersionControlComboBox_QComboBox {name='addToVersionControlComboBox' type='QComboBox' visible='1'}
|
:addToVersionControlComboBox_QComboBox {name='addToVersionControlComboBox' type='QComboBox' visible='1'}
|
||||||
:fileNameEdit_QLineEdit {buddy=':Open File.File name:_QLabel' name='fileNameEdit' type='QLineEdit' visible='1'}
|
:fileNameEdit_QLineEdit {buddy=':Open File.File name:_QLabel' name='fileNameEdit' type='QLineEdit' visible='1'}
|
||||||
|
@@ -231,7 +231,7 @@ def __configureCustomExecutable__(projectName, port, mkspec, qmakeVersion):
|
|||||||
# function that retrieves a specific child object by its class
|
# function that retrieves a specific child object by its class
|
||||||
# this is sometimes the best way to avoid using waitForObject() on objects that
|
# this is sometimes the best way to avoid using waitForObject() on objects that
|
||||||
# occur more than once - but could easily be found by using a compound object
|
# occur more than once - but could easily be found by using a compound object
|
||||||
# (e.g. search for Utils::PathChooser instead of Utils::BaseValidatingLineEdit and get the child)
|
# (e.g. search for Utils::PathChooser instead of Utils::FancyLineEdit and get the child)
|
||||||
def getChildByClass(parent, classToSearchFor, occurence=1):
|
def getChildByClass(parent, classToSearchFor, occurence=1):
|
||||||
children = [child for child in object.children(parent) if className(child) == classToSearchFor]
|
children = [child for child in object.children(parent) if className(child) == classToSearchFor]
|
||||||
if len(children) < occurence:
|
if len(children) < occurence:
|
||||||
@@ -408,14 +408,14 @@ def __invokeAddCustomExecutable__(exe, args, workingDir=None):
|
|||||||
addMenu = addButton.menu()
|
addMenu = addButton.menu()
|
||||||
activateItem(waitForObjectItem(addMenu, 'Custom Executable'))
|
activateItem(waitForObjectItem(addMenu, 'Custom Executable'))
|
||||||
exePathChooser = waitForObject(":Executable:_Utils::PathChooser")
|
exePathChooser = waitForObject(":Executable:_Utils::PathChooser")
|
||||||
exeLineEd = getChildByClass(exePathChooser, "Utils::BaseValidatingLineEdit")
|
exeLineEd = getChildByClass(exePathChooser, "Utils::FancyLineEdit")
|
||||||
argLineEd = waitForObject("{buddy={window=':Qt Creator_Core::Internal::MainWindow' "
|
argLineEd = waitForObject("{buddy={window=':Qt Creator_Core::Internal::MainWindow' "
|
||||||
"type='QLabel' text='Arguments:' visible='1'} type='QLineEdit' "
|
"type='QLabel' text='Arguments:' visible='1'} type='QLineEdit' "
|
||||||
"unnamed='1' visible='1'}")
|
"unnamed='1' visible='1'}")
|
||||||
wdPathChooser = waitForObject("{buddy={window=':Qt Creator_Core::Internal::MainWindow' "
|
wdPathChooser = waitForObject("{buddy={window=':Qt Creator_Core::Internal::MainWindow' "
|
||||||
"text='Working directory:' type='QLabel'} "
|
"text='Working directory:' type='QLabel'} "
|
||||||
"type='Utils::PathChooser' unnamed='1' visible='1'}")
|
"type='Utils::PathChooser' unnamed='1' visible='1'}")
|
||||||
wdLineEd = getChildByClass(wdPathChooser, "Utils::BaseValidatingLineEdit")
|
wdLineEd = getChildByClass(wdPathChooser, "Utils::FancyLineEdit")
|
||||||
replaceEditorContent(exeLineEd, exe)
|
replaceEditorContent(exeLineEd, exe)
|
||||||
replaceEditorContent(argLineEd, args)
|
replaceEditorContent(argLineEd, args)
|
||||||
if workingDir:
|
if workingDir:
|
||||||
|
@@ -56,7 +56,7 @@ def openQmakeProject(projectPath, targets=Targets.desktopTargetClasses(), fromWe
|
|||||||
def openCmakeProject(projectPath, buildDir):
|
def openCmakeProject(projectPath, buildDir):
|
||||||
invokeMenuItem("File", "Open File or Project...")
|
invokeMenuItem("File", "Open File or Project...")
|
||||||
selectFromFileDialog(projectPath)
|
selectFromFileDialog(projectPath)
|
||||||
replaceEditorContent("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'"
|
replaceEditorContent("{type='Utils::FancyLineEdit' unnamed='1' visible='1'"
|
||||||
"window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'}", buildDir)
|
"window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'}", buildDir)
|
||||||
clickButton(waitForObject(":CMake Wizard.Next_QPushButton"))
|
clickButton(waitForObject(":CMake Wizard.Next_QPushButton"))
|
||||||
return __handleCmakeWizardPage__()
|
return __handleCmakeWizardPage__()
|
||||||
@@ -111,7 +111,8 @@ def __createProjectOrFileSelectType__(category, template, fromWelcome = False, i
|
|||||||
return __getSupportedPlatforms__(str(text), template)[0]
|
return __getSupportedPlatforms__(str(text), template)[0]
|
||||||
|
|
||||||
def __createProjectSetNameAndPath__(path, projectName = None, checks = True):
|
def __createProjectSetNameAndPath__(path, projectName = None, checks = True):
|
||||||
directoryEdit = waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'}")
|
directoryEdit = waitForObject("{type='Utils::FancyLineEdit' unnamed='1' visible='1' "
|
||||||
|
"toolTip?='Full path: *'}")
|
||||||
replaceEditorContent(directoryEdit, path)
|
replaceEditorContent(directoryEdit, path)
|
||||||
projectNameEdit = waitForObject("{name='nameLineEdit' visible='1' "
|
projectNameEdit = waitForObject("{name='nameLineEdit' visible='1' "
|
||||||
"type='Utils::ProjectNameValidatingLineEdit'}")
|
"type='Utils::ProjectNameValidatingLineEdit'}")
|
||||||
@@ -635,7 +636,7 @@ def addCPlusPlusFileToCurrentProject(name, template, forceOverwrite=False, addTo
|
|||||||
return
|
return
|
||||||
__createProjectOrFileSelectType__(" C++", template, isProject=False)
|
__createProjectOrFileSelectType__(" C++", template, isProject=False)
|
||||||
window = "{type='Utils::FileWizardDialog' unnamed='1' visible='1'}"
|
window = "{type='Utils::FileWizardDialog' unnamed='1' visible='1'}"
|
||||||
basePath = str(waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1' "
|
basePath = str(waitForObject("{type='Utils::FancyLineEdit' unnamed='1' visible='1' "
|
||||||
"window=%s}" % window).text)
|
"window=%s}" % window).text)
|
||||||
lineEdit = waitForObject("{name='nameLineEdit' type='Utils::FileNameValidatingLineEdit' "
|
lineEdit = waitForObject("{name='nameLineEdit' type='Utils::FileNameValidatingLineEdit' "
|
||||||
"visible='1' window=%s}" % window)
|
"visible='1' window=%s}" % window)
|
||||||
|
@@ -34,7 +34,8 @@ def addFileToProject(projectPath, category, fileTemplate, fileName):
|
|||||||
nameLineEdit = waitForObject("{name='nameLineEdit' type='Utils::FileNameValidatingLineEdit' "
|
nameLineEdit = waitForObject("{name='nameLineEdit' type='Utils::FileNameValidatingLineEdit' "
|
||||||
"visible='1'}")
|
"visible='1'}")
|
||||||
replaceEditorContent(nameLineEdit, fileName)
|
replaceEditorContent(nameLineEdit, fileName)
|
||||||
test.compare(waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'}").text,
|
test.compare(waitForObject("{type='Utils::FancyLineEdit' unnamed='1' visible='1' "
|
||||||
|
"toolTip?='Full path: *'}").text,
|
||||||
projectPath, "Verifying whether path is correct.")
|
projectPath, "Verifying whether path is correct.")
|
||||||
clickButton(waitForObject(":Next_QPushButton"))
|
clickButton(waitForObject(":Next_QPushButton"))
|
||||||
projCombo = waitForObject("{buddy={name='projectLabel' text='Add to project:' type='QLabel' "
|
projCombo = waitForObject("{buddy={name='projectLabel' text='Add to project:' type='QLabel' "
|
||||||
|
Reference in New Issue
Block a user