diff options
Diffstat (limited to 'src/ios.h')
-rw-r--r-- | src/ios.h | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -65,15 +65,16 @@ void updateNowPlayingInfo_iOS (void); | |||
65 | /*----------------------------------------------------------------------------------------------*/ | 65 | /*----------------------------------------------------------------------------------------------*/ |
66 | 66 | ||
67 | enum iSystemTextInputFlags { | 67 | enum iSystemTextInputFlags { |
68 | multiLine_SystemTextInputFlags = iBit(1), | 68 | selectAll_SystemTextInputFlags = iBit(1), |
69 | returnGo_SystemTextInputFlags = iBit(2), | 69 | multiLine_SystemTextInputFlags = iBit(2), |
70 | returnSend_SystemTextInputFlags = iBit(3), | 70 | returnGo_SystemTextInputFlags = iBit(3), |
71 | disableAutocorrect_SystemTextInputFlag = iBit(4), | 71 | returnSend_SystemTextInputFlags = iBit(4), |
72 | alignRight_SystemTextInputFlag = iBit(5), | 72 | disableAutocorrect_SystemTextInputFlag = iBit(5), |
73 | alignRight_SystemTextInputFlag = iBit(6), | ||
73 | }; | 74 | }; |
74 | 75 | ||
75 | iDeclareType(SystemTextInput) | 76 | iDeclareType(SystemTextInput) |
76 | iDeclareTypeConstructionArgs(SystemTextInput, int flags) | 77 | iDeclareTypeConstructionArgs(SystemTextInput, iRect rect, int flags) |
77 | 78 | ||
78 | void setRect_SystemTextInput (iSystemTextInput *, iRect rect); | 79 | void setRect_SystemTextInput (iSystemTextInput *, iRect rect); |
79 | void setText_SystemTextInput (iSystemTextInput *, const iString *text); | 80 | void setText_SystemTextInput (iSystemTextInput *, const iString *text); |
@@ -81,3 +82,4 @@ void setFont_SystemTextInput (iSystemTextInput *, int fontId); | |||
81 | void setTextChangedFunc_SystemTextInput (iSystemTextInput *, void (*textChangedFunc)(iSystemTextInput *, void *), void *); | 82 | void setTextChangedFunc_SystemTextInput (iSystemTextInput *, void (*textChangedFunc)(iSystemTextInput *, void *), void *); |
82 | 83 | ||
83 | const iString * text_SystemTextInput (const iSystemTextInput *); | 84 | const iString * text_SystemTextInput (const iSystemTextInput *); |
85 | int preferredHeight_SystemTextInput (const iSystemTextInput *); | ||