Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ui tester api updates4 - Implement locating textbox in RangeEditor and performing KeySequence #1171
Ui tester api updates4 - Implement locating textbox in RangeEditor and performing KeySequence #1171
Changes from all commits
ba2378f
a6d28ca
28d5094
684be1c
9973d38
547b52b
7fecb2a
a6ede42
69d5cd5
b97a923
39c034e
57fcdda
dcdfdf8
6266a83
578b280
fe4c597
df81380
9803375
9077c08
400d9d3
33f750f
51e5b45
3149374
c43c88a
e444628
d4d8012
848d513
9753816
db80b28
bc0e7f1
eab72a8
8a59b57
77f5903
12e9d8f
8428778
fb3a535
8b0f2eb
55e0bfa
69b5618
5aeef94
d8baa03
0284280
e1fdef6
38e6ff7
1189ddc
7ba111e
f4f2be2
40ad90a
705a820
405a030
e2b082a
a96fb0d
7577c81
5e75d0a
1a0a7a9
a287c52
7c595ca
7847933
991be83
f08e54f
ee863e5
73a97d4
b806e3a
78a7bf0
c03ef46
f8b4b9c
4f723e1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eventually we will want to add SimpleSpinEditor, but this can be done in a later PR.
For later reference: The SimpleSpinEditor class in Qt has a control that is a QtGui.QSpinBox object, which subclasses QtGui.AbstractSpinBox which has a lineEdit() method which returns the QLineEdit for the spin box (likely we would just need to resolve to this and then the other handlers should work). For wx however, the SimpleSpinEditor has a control of a wx.SpinCtrl, which is supposedly combines a wx.SpinCtrl and wx.TextCtrl in one. However, it doesn't seem to subclass wx.TextCtrl and doesn't appear to support the same methods, so our handlers for KeyClick, KeySequence, etc. may not work correctly.