plugins.qmltypes 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445
  1. import QtQuick.tooling 1.2
  2. // This file describes the plugin-supplied types contained in the library.
  3. // It is used for QML tooling purposes only.
  4. //
  5. // This file was auto-generated by:
  6. // 'qmlplugindump -defaultplatform -nonrelocatable -dependencies dependencies.json QtQuick.VirtualKeyboard 2.14'
  7. Module {
  8. dependencies: [
  9. "Qt.labs.folderlistmodel 2.1",
  10. "QtQuick 2.0",
  11. "QtQuick.Layouts 1.0",
  12. "QtQuick.Window 2.2"
  13. ]
  14. Component {
  15. name: "QAbstractItemModel"
  16. prototype: "QObject"
  17. Enum {
  18. name: "LayoutChangeHint"
  19. values: {
  20. "NoLayoutChangeHint": 0,
  21. "VerticalSortHint": 1,
  22. "HorizontalSortHint": 2
  23. }
  24. }
  25. Enum {
  26. name: "CheckIndexOption"
  27. values: {
  28. "NoOption": 0,
  29. "IndexIsValid": 1,
  30. "DoNotUseParent": 2,
  31. "ParentIsInvalid": 4
  32. }
  33. }
  34. Signal {
  35. name: "dataChanged"
  36. Parameter { name: "topLeft"; type: "QModelIndex" }
  37. Parameter { name: "bottomRight"; type: "QModelIndex" }
  38. Parameter { name: "roles"; type: "QVector<int>" }
  39. }
  40. Signal {
  41. name: "dataChanged"
  42. Parameter { name: "topLeft"; type: "QModelIndex" }
  43. Parameter { name: "bottomRight"; type: "QModelIndex" }
  44. }
  45. Signal {
  46. name: "headerDataChanged"
  47. Parameter { name: "orientation"; type: "Qt::Orientation" }
  48. Parameter { name: "first"; type: "int" }
  49. Parameter { name: "last"; type: "int" }
  50. }
  51. Signal {
  52. name: "layoutChanged"
  53. Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
  54. Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
  55. }
  56. Signal {
  57. name: "layoutChanged"
  58. Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
  59. }
  60. Signal { name: "layoutChanged" }
  61. Signal {
  62. name: "layoutAboutToBeChanged"
  63. Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
  64. Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
  65. }
  66. Signal {
  67. name: "layoutAboutToBeChanged"
  68. Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
  69. }
  70. Signal { name: "layoutAboutToBeChanged" }
  71. Signal {
  72. name: "rowsAboutToBeInserted"
  73. Parameter { name: "parent"; type: "QModelIndex" }
  74. Parameter { name: "first"; type: "int" }
  75. Parameter { name: "last"; type: "int" }
  76. }
  77. Signal {
  78. name: "rowsInserted"
  79. Parameter { name: "parent"; type: "QModelIndex" }
  80. Parameter { name: "first"; type: "int" }
  81. Parameter { name: "last"; type: "int" }
  82. }
  83. Signal {
  84. name: "rowsAboutToBeRemoved"
  85. Parameter { name: "parent"; type: "QModelIndex" }
  86. Parameter { name: "first"; type: "int" }
  87. Parameter { name: "last"; type: "int" }
  88. }
  89. Signal {
  90. name: "rowsRemoved"
  91. Parameter { name: "parent"; type: "QModelIndex" }
  92. Parameter { name: "first"; type: "int" }
  93. Parameter { name: "last"; type: "int" }
  94. }
  95. Signal {
  96. name: "columnsAboutToBeInserted"
  97. Parameter { name: "parent"; type: "QModelIndex" }
  98. Parameter { name: "first"; type: "int" }
  99. Parameter { name: "last"; type: "int" }
  100. }
  101. Signal {
  102. name: "columnsInserted"
  103. Parameter { name: "parent"; type: "QModelIndex" }
  104. Parameter { name: "first"; type: "int" }
  105. Parameter { name: "last"; type: "int" }
  106. }
  107. Signal {
  108. name: "columnsAboutToBeRemoved"
  109. Parameter { name: "parent"; type: "QModelIndex" }
  110. Parameter { name: "first"; type: "int" }
  111. Parameter { name: "last"; type: "int" }
  112. }
  113. Signal {
  114. name: "columnsRemoved"
  115. Parameter { name: "parent"; type: "QModelIndex" }
  116. Parameter { name: "first"; type: "int" }
  117. Parameter { name: "last"; type: "int" }
  118. }
  119. Signal { name: "modelAboutToBeReset" }
  120. Signal { name: "modelReset" }
  121. Signal {
  122. name: "rowsAboutToBeMoved"
  123. Parameter { name: "sourceParent"; type: "QModelIndex" }
  124. Parameter { name: "sourceStart"; type: "int" }
  125. Parameter { name: "sourceEnd"; type: "int" }
  126. Parameter { name: "destinationParent"; type: "QModelIndex" }
  127. Parameter { name: "destinationRow"; type: "int" }
  128. }
  129. Signal {
  130. name: "rowsMoved"
  131. Parameter { name: "parent"; type: "QModelIndex" }
  132. Parameter { name: "start"; type: "int" }
  133. Parameter { name: "end"; type: "int" }
  134. Parameter { name: "destination"; type: "QModelIndex" }
  135. Parameter { name: "row"; type: "int" }
  136. }
  137. Signal {
  138. name: "columnsAboutToBeMoved"
  139. Parameter { name: "sourceParent"; type: "QModelIndex" }
  140. Parameter { name: "sourceStart"; type: "int" }
  141. Parameter { name: "sourceEnd"; type: "int" }
  142. Parameter { name: "destinationParent"; type: "QModelIndex" }
  143. Parameter { name: "destinationColumn"; type: "int" }
  144. }
  145. Signal {
  146. name: "columnsMoved"
  147. Parameter { name: "parent"; type: "QModelIndex" }
  148. Parameter { name: "start"; type: "int" }
  149. Parameter { name: "end"; type: "int" }
  150. Parameter { name: "destination"; type: "QModelIndex" }
  151. Parameter { name: "column"; type: "int" }
  152. }
  153. Method { name: "submit"; type: "bool" }
  154. Method { name: "revert" }
  155. Method {
  156. name: "hasIndex"
  157. type: "bool"
  158. Parameter { name: "row"; type: "int" }
  159. Parameter { name: "column"; type: "int" }
  160. Parameter { name: "parent"; type: "QModelIndex" }
  161. }
  162. Method {
  163. name: "hasIndex"
  164. type: "bool"
  165. Parameter { name: "row"; type: "int" }
  166. Parameter { name: "column"; type: "int" }
  167. }
  168. Method {
  169. name: "index"
  170. type: "QModelIndex"
  171. Parameter { name: "row"; type: "int" }
  172. Parameter { name: "column"; type: "int" }
  173. Parameter { name: "parent"; type: "QModelIndex" }
  174. }
  175. Method {
  176. name: "index"
  177. type: "QModelIndex"
  178. Parameter { name: "row"; type: "int" }
  179. Parameter { name: "column"; type: "int" }
  180. }
  181. Method {
  182. name: "parent"
  183. type: "QModelIndex"
  184. Parameter { name: "child"; type: "QModelIndex" }
  185. }
  186. Method {
  187. name: "sibling"
  188. type: "QModelIndex"
  189. Parameter { name: "row"; type: "int" }
  190. Parameter { name: "column"; type: "int" }
  191. Parameter { name: "idx"; type: "QModelIndex" }
  192. }
  193. Method {
  194. name: "rowCount"
  195. type: "int"
  196. Parameter { name: "parent"; type: "QModelIndex" }
  197. }
  198. Method { name: "rowCount"; type: "int" }
  199. Method {
  200. name: "columnCount"
  201. type: "int"
  202. Parameter { name: "parent"; type: "QModelIndex" }
  203. }
  204. Method { name: "columnCount"; type: "int" }
  205. Method {
  206. name: "hasChildren"
  207. type: "bool"
  208. Parameter { name: "parent"; type: "QModelIndex" }
  209. }
  210. Method { name: "hasChildren"; type: "bool" }
  211. Method {
  212. name: "data"
  213. type: "QVariant"
  214. Parameter { name: "index"; type: "QModelIndex" }
  215. Parameter { name: "role"; type: "int" }
  216. }
  217. Method {
  218. name: "data"
  219. type: "QVariant"
  220. Parameter { name: "index"; type: "QModelIndex" }
  221. }
  222. Method {
  223. name: "setData"
  224. type: "bool"
  225. Parameter { name: "index"; type: "QModelIndex" }
  226. Parameter { name: "value"; type: "QVariant" }
  227. Parameter { name: "role"; type: "int" }
  228. }
  229. Method {
  230. name: "setData"
  231. type: "bool"
  232. Parameter { name: "index"; type: "QModelIndex" }
  233. Parameter { name: "value"; type: "QVariant" }
  234. }
  235. Method {
  236. name: "headerData"
  237. type: "QVariant"
  238. Parameter { name: "section"; type: "int" }
  239. Parameter { name: "orientation"; type: "Qt::Orientation" }
  240. Parameter { name: "role"; type: "int" }
  241. }
  242. Method {
  243. name: "headerData"
  244. type: "QVariant"
  245. Parameter { name: "section"; type: "int" }
  246. Parameter { name: "orientation"; type: "Qt::Orientation" }
  247. }
  248. Method {
  249. name: "fetchMore"
  250. Parameter { name: "parent"; type: "QModelIndex" }
  251. }
  252. Method {
  253. name: "canFetchMore"
  254. type: "bool"
  255. Parameter { name: "parent"; type: "QModelIndex" }
  256. }
  257. Method {
  258. name: "flags"
  259. type: "Qt::ItemFlags"
  260. Parameter { name: "index"; type: "QModelIndex" }
  261. }
  262. Method {
  263. name: "match"
  264. type: "QModelIndexList"
  265. Parameter { name: "start"; type: "QModelIndex" }
  266. Parameter { name: "role"; type: "int" }
  267. Parameter { name: "value"; type: "QVariant" }
  268. Parameter { name: "hits"; type: "int" }
  269. Parameter { name: "flags"; type: "Qt::MatchFlags" }
  270. }
  271. Method {
  272. name: "match"
  273. type: "QModelIndexList"
  274. Parameter { name: "start"; type: "QModelIndex" }
  275. Parameter { name: "role"; type: "int" }
  276. Parameter { name: "value"; type: "QVariant" }
  277. Parameter { name: "hits"; type: "int" }
  278. }
  279. Method {
  280. name: "match"
  281. type: "QModelIndexList"
  282. Parameter { name: "start"; type: "QModelIndex" }
  283. Parameter { name: "role"; type: "int" }
  284. Parameter { name: "value"; type: "QVariant" }
  285. }
  286. }
  287. Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
  288. Component {
  289. name: "QVirtualKeyboardAbstractInputMethod"
  290. prototype: "QObject"
  291. exports: [
  292. "QtQuick.VirtualKeyboard/AbstractInputMethod 1.0",
  293. "QtQuick.VirtualKeyboard/AbstractInputMethod 2.0"
  294. ]
  295. isCreatable: false
  296. exportMetaObjectRevisions: [0, 0]
  297. Signal {
  298. name: "selectionListChanged"
  299. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  300. }
  301. Signal {
  302. name: "selectionListActiveItemChanged"
  303. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  304. Parameter { name: "index"; type: "int" }
  305. }
  306. Signal { name: "selectionListsChanged" }
  307. Method { name: "reset" }
  308. Method { name: "update" }
  309. }
  310. Component {
  311. name: "QVirtualKeyboardInputContext"
  312. prototype: "QObject"
  313. exports: [
  314. "QtQuick.VirtualKeyboard/InputContext 1.0",
  315. "QtQuick.VirtualKeyboard/InputContext 2.0"
  316. ]
  317. isCreatable: false
  318. isSingleton: true
  319. exportMetaObjectRevisions: [0, 0]
  320. Property { name: "shift"; type: "bool"; isReadonly: true }
  321. Property { name: "shiftActive"; revision: 4; type: "bool"; isReadonly: true }
  322. Property { name: "capsLock"; type: "bool"; isReadonly: true }
  323. Property { name: "capsLockActive"; revision: 4; type: "bool"; isReadonly: true }
  324. Property { name: "uppercase"; type: "bool"; isReadonly: true }
  325. Property { name: "anchorPosition"; type: "int"; isReadonly: true }
  326. Property { name: "cursorPosition"; type: "int"; isReadonly: true }
  327. Property { name: "inputMethodHints"; type: "Qt::InputMethodHints"; isReadonly: true }
  328. Property { name: "preeditText"; type: "string" }
  329. Property { name: "surroundingText"; type: "string"; isReadonly: true }
  330. Property { name: "selectedText"; type: "string"; isReadonly: true }
  331. Property { name: "anchorRectangle"; type: "QRectF"; isReadonly: true }
  332. Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
  333. Property { name: "animating"; type: "bool" }
  334. Property { name: "locale"; type: "string"; isReadonly: true }
  335. Property { name: "inputItem"; type: "QObject"; isReadonly: true; isPointer: true }
  336. Property {
  337. name: "inputEngine"
  338. type: "QVirtualKeyboardInputEngine"
  339. isReadonly: true
  340. isPointer: true
  341. }
  342. Property { name: "selectionControlVisible"; type: "bool"; isReadonly: true }
  343. Property { name: "anchorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
  344. Property { name: "cursorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
  345. Property {
  346. name: "priv"
  347. type: "QVirtualKeyboardInputContextPrivate"
  348. isReadonly: true
  349. isPointer: true
  350. }
  351. Method {
  352. name: "sendKeyClick"
  353. Parameter { name: "key"; type: "int" }
  354. Parameter { name: "text"; type: "string" }
  355. Parameter { name: "modifiers"; type: "int" }
  356. }
  357. Method {
  358. name: "sendKeyClick"
  359. Parameter { name: "key"; type: "int" }
  360. Parameter { name: "text"; type: "string" }
  361. }
  362. Method { name: "commit" }
  363. Method {
  364. name: "commit"
  365. Parameter { name: "text"; type: "string" }
  366. Parameter { name: "replaceFrom"; type: "int" }
  367. Parameter { name: "replaceLength"; type: "int" }
  368. }
  369. Method {
  370. name: "commit"
  371. Parameter { name: "text"; type: "string" }
  372. Parameter { name: "replaceFrom"; type: "int" }
  373. }
  374. Method {
  375. name: "commit"
  376. Parameter { name: "text"; type: "string" }
  377. }
  378. Method { name: "clear" }
  379. Method {
  380. name: "setSelectionOnFocusObject"
  381. Parameter { name: "anchorPos"; type: "QPointF" }
  382. Parameter { name: "cursorPos"; type: "QPointF" }
  383. }
  384. }
  385. Component {
  386. name: "QVirtualKeyboardInputContextPrivate"
  387. prototype: "QObject"
  388. exports: ["QtQuick.VirtualKeyboard/InputContextPrivate 1.0"]
  389. isCreatable: false
  390. exportMetaObjectRevisions: [0]
  391. Enum {
  392. name: "State"
  393. values: {
  394. "Reselect": 1,
  395. "InputMethodEvent": 2,
  396. "KeyEvent": 4,
  397. "InputMethodClick": 8,
  398. "SyncShadowInput": 16
  399. }
  400. }
  401. Property { name: "focus"; type: "bool" }
  402. Property { name: "keyboardRectangle"; type: "QRectF" }
  403. Property { name: "previewRectangle"; type: "QRectF" }
  404. Property { name: "previewVisible"; type: "bool" }
  405. Property { name: "locale"; type: "string" }
  406. Property { name: "inputItem"; type: "QObject"; isReadonly: true; isPointer: true }
  407. Property {
  408. name: "shiftHandler"
  409. type: "QtVirtualKeyboard::ShiftHandler"
  410. isReadonly: true
  411. isPointer: true
  412. }
  413. Property {
  414. name: "shadow"
  415. type: "QtVirtualKeyboard::ShadowInputContext"
  416. isReadonly: true
  417. isPointer: true
  418. }
  419. Property { name: "inputMethods"; type: "QStringList"; isReadonly: true }
  420. Signal {
  421. name: "navigationKeyPressed"
  422. Parameter { name: "key"; type: "int" }
  423. Parameter { name: "isAutoRepeat"; type: "bool" }
  424. }
  425. Signal {
  426. name: "navigationKeyReleased"
  427. Parameter { name: "key"; type: "int" }
  428. Parameter { name: "isAutoRepeat"; type: "bool" }
  429. }
  430. Method { name: "hideInputPanel" }
  431. Method {
  432. name: "updateAvailableLocales"
  433. Parameter { name: "availableLocales"; type: "QStringList" }
  434. }
  435. Method {
  436. name: "forceCursorPosition"
  437. Parameter { name: "anchorPosition"; type: "int" }
  438. Parameter { name: "cursorPosition"; type: "int" }
  439. }
  440. Method {
  441. name: "fileExists"
  442. type: "bool"
  443. Parameter { name: "fileUrl"; type: "QUrl" }
  444. }
  445. Method {
  446. name: "hasEnterKeyAction"
  447. type: "bool"
  448. Parameter { name: "item"; type: "QObject"; isPointer: true }
  449. }
  450. }
  451. Component {
  452. name: "QVirtualKeyboardInputEngine"
  453. prototype: "QObject"
  454. exports: [
  455. "QtQuick.VirtualKeyboard/InputEngine 1.0",
  456. "QtQuick.VirtualKeyboard/InputEngine 2.0"
  457. ]
  458. isCreatable: false
  459. exportMetaObjectRevisions: [0, 0]
  460. Enum {
  461. name: "TextCase"
  462. values: {
  463. "Lower": 0,
  464. "Upper": 1
  465. }
  466. }
  467. Enum {
  468. name: "InputMode"
  469. values: {
  470. "Latin": 0,
  471. "Numeric": 1,
  472. "Dialable": 2,
  473. "Pinyin": 3,
  474. "Cangjie": 4,
  475. "Zhuyin": 5,
  476. "Hangul": 6,
  477. "Hiragana": 7,
  478. "Katakana": 8,
  479. "FullwidthLatin": 9,
  480. "Greek": 10,
  481. "Cyrillic": 11,
  482. "Arabic": 12,
  483. "Hebrew": 13,
  484. "ChineseHandwriting": 14,
  485. "JapaneseHandwriting": 15,
  486. "KoreanHandwriting": 16,
  487. "Thai": 17
  488. }
  489. }
  490. Enum {
  491. name: "PatternRecognitionMode"
  492. values: {
  493. "None": 0,
  494. "PatternRecognitionDisabled": 0,
  495. "Handwriting": 1,
  496. "HandwritingRecoginition": 1
  497. }
  498. }
  499. Enum {
  500. name: "ReselectFlag"
  501. values: {
  502. "WordBeforeCursor": 1,
  503. "WordAfterCursor": 2,
  504. "WordAtCursor": 3
  505. }
  506. }
  507. Property { name: "activeKey"; type: "Qt::Key"; isReadonly: true }
  508. Property { name: "previousKey"; type: "Qt::Key"; isReadonly: true }
  509. Property { name: "inputMethod"; type: "QVirtualKeyboardAbstractInputMethod"; isPointer: true }
  510. Property { name: "inputModes"; type: "QList<int>"; isReadonly: true }
  511. Property { name: "inputMode"; type: "InputMode" }
  512. Property { name: "patternRecognitionModes"; type: "QList<int>"; isReadonly: true }
  513. Property {
  514. name: "wordCandidateListModel"
  515. type: "QVirtualKeyboardSelectionListModel"
  516. isReadonly: true
  517. isPointer: true
  518. }
  519. Property { name: "wordCandidateListVisibleHint"; type: "bool"; isReadonly: true }
  520. Signal {
  521. name: "virtualKeyClicked"
  522. Parameter { name: "key"; type: "Qt::Key" }
  523. Parameter { name: "text"; type: "string" }
  524. Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
  525. Parameter { name: "isAutoRepeat"; type: "bool" }
  526. }
  527. Signal {
  528. name: "activeKeyChanged"
  529. Parameter { name: "key"; type: "Qt::Key" }
  530. }
  531. Signal {
  532. name: "previousKeyChanged"
  533. Parameter { name: "key"; type: "Qt::Key" }
  534. }
  535. Signal { name: "inputMethodReset" }
  536. Signal { name: "inputMethodUpdate" }
  537. Method {
  538. name: "virtualKeyPress"
  539. type: "bool"
  540. Parameter { name: "key"; type: "Qt::Key" }
  541. Parameter { name: "text"; type: "string" }
  542. Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
  543. Parameter { name: "repeat"; type: "bool" }
  544. }
  545. Method { name: "virtualKeyCancel" }
  546. Method {
  547. name: "virtualKeyRelease"
  548. type: "bool"
  549. Parameter { name: "key"; type: "Qt::Key" }
  550. Parameter { name: "text"; type: "string" }
  551. Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
  552. }
  553. Method {
  554. name: "virtualKeyClick"
  555. type: "bool"
  556. Parameter { name: "key"; type: "Qt::Key" }
  557. Parameter { name: "text"; type: "string" }
  558. Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
  559. }
  560. Method {
  561. name: "traceBegin"
  562. type: "QVirtualKeyboardTrace*"
  563. Parameter { name: "traceId"; type: "int" }
  564. Parameter { name: "patternRecognitionMode"; type: "PatternRecognitionMode" }
  565. Parameter { name: "traceCaptureDeviceInfo"; type: "QVariantMap" }
  566. Parameter { name: "traceScreenInfo"; type: "QVariantMap" }
  567. }
  568. Method {
  569. name: "traceEnd"
  570. type: "bool"
  571. Parameter { name: "trace"; type: "QVirtualKeyboardTrace"; isPointer: true }
  572. }
  573. Method {
  574. name: "reselect"
  575. type: "bool"
  576. Parameter { name: "cursorPosition"; type: "int" }
  577. Parameter { name: "reselectFlags"; type: "ReselectFlags" }
  578. }
  579. }
  580. Component {
  581. name: "QVirtualKeyboardSelectionListModel"
  582. prototype: "QAbstractListModel"
  583. exports: [
  584. "QtQuick.VirtualKeyboard/SelectionListModel 1.0",
  585. "QtQuick.VirtualKeyboard/SelectionListModel 2.0"
  586. ]
  587. isCreatable: false
  588. exportMetaObjectRevisions: [0, 0]
  589. Enum {
  590. name: "Type"
  591. values: {
  592. "WordCandidateList": 0
  593. }
  594. }
  595. Enum {
  596. name: "Role"
  597. values: {
  598. "Display": 0,
  599. "DisplayRole": 0,
  600. "WordCompletionLength": 257,
  601. "WordCompletionLengthRole": 257,
  602. "Dictionary": 258,
  603. "CanRemoveSuggestion": 259
  604. }
  605. }
  606. Enum {
  607. name: "DictionaryType"
  608. values: {
  609. "Default": 0,
  610. "User": 1
  611. }
  612. }
  613. Property { name: "count"; type: "int"; isReadonly: true }
  614. Signal {
  615. name: "activeItemChanged"
  616. Parameter { name: "index"; type: "int" }
  617. }
  618. Signal {
  619. name: "itemSelected"
  620. Parameter { name: "index"; type: "int" }
  621. }
  622. Method {
  623. name: "selectItem"
  624. Parameter { name: "index"; type: "int" }
  625. }
  626. Method {
  627. name: "removeItem"
  628. Parameter { name: "index"; type: "int" }
  629. }
  630. Method {
  631. name: "dataAt"
  632. type: "QVariant"
  633. Parameter { name: "index"; type: "int" }
  634. Parameter { name: "role"; type: "Role" }
  635. }
  636. Method {
  637. name: "dataAt"
  638. type: "QVariant"
  639. Parameter { name: "index"; type: "int" }
  640. }
  641. }
  642. Component {
  643. name: "QVirtualKeyboardTrace"
  644. prototype: "QObject"
  645. exports: [
  646. "QtQuick.VirtualKeyboard/Trace 2.0",
  647. "QtQuick.VirtualKeyboard/Trace 2.4"
  648. ]
  649. exportMetaObjectRevisions: [0, 0]
  650. Property { name: "traceId"; type: "int" }
  651. Property { name: "channels"; type: "QStringList" }
  652. Property { name: "length"; type: "int"; isReadonly: true }
  653. Property { name: "final"; type: "bool" }
  654. Property { name: "canceled"; type: "bool" }
  655. Property { name: "opacity"; type: "double" }
  656. Signal {
  657. name: "traceIdChanged"
  658. Parameter { name: "traceId"; type: "int" }
  659. }
  660. Signal {
  661. name: "lengthChanged"
  662. Parameter { name: "length"; type: "int" }
  663. }
  664. Signal {
  665. name: "finalChanged"
  666. Parameter { name: "isFinal"; type: "bool" }
  667. }
  668. Signal {
  669. name: "canceledChanged"
  670. Parameter { name: "isCanceled"; type: "bool" }
  671. }
  672. Signal {
  673. name: "opacityChanged"
  674. Parameter { name: "opacity"; type: "double" }
  675. }
  676. Method {
  677. name: "points"
  678. type: "QVariantList"
  679. Parameter { name: "pos"; type: "int" }
  680. Parameter { name: "count"; type: "int" }
  681. }
  682. Method {
  683. name: "points"
  684. type: "QVariantList"
  685. Parameter { name: "pos"; type: "int" }
  686. }
  687. Method { name: "points"; type: "QVariantList" }
  688. Method {
  689. name: "addPoint"
  690. type: "int"
  691. Parameter { name: "point"; type: "QPointF" }
  692. }
  693. Method {
  694. name: "setChannelData"
  695. Parameter { name: "channel"; type: "string" }
  696. Parameter { name: "index"; type: "int" }
  697. Parameter { name: "data"; type: "QVariant" }
  698. }
  699. Method {
  700. name: "channelData"
  701. type: "QVariantList"
  702. Parameter { name: "channel"; type: "string" }
  703. Parameter { name: "pos"; type: "int" }
  704. Parameter { name: "count"; type: "int" }
  705. }
  706. Method {
  707. name: "channelData"
  708. type: "QVariantList"
  709. Parameter { name: "channel"; type: "string" }
  710. Parameter { name: "pos"; type: "int" }
  711. }
  712. Method {
  713. name: "channelData"
  714. type: "QVariantList"
  715. Parameter { name: "channel"; type: "string" }
  716. }
  717. }
  718. Component {
  719. name: "QtVirtualKeyboard::EnterKeyAction"
  720. prototype: "QObject"
  721. exports: [
  722. "QtQuick.VirtualKeyboard/EnterKeyAction 1.0",
  723. "QtQuick.VirtualKeyboard/EnterKeyAction 2.0"
  724. ]
  725. exportMetaObjectRevisions: [0, 0]
  726. attachedType: "QtVirtualKeyboard::EnterKeyActionAttachedType"
  727. Enum {
  728. name: "Id"
  729. values: {
  730. "None": 0,
  731. "Go": 1,
  732. "Search": 2,
  733. "Send": 3,
  734. "Next": 4,
  735. "Done": 5
  736. }
  737. }
  738. }
  739. Component {
  740. name: "QtVirtualKeyboard::EnterKeyActionAttachedType"
  741. prototype: "QObject"
  742. Property { name: "actionId"; type: "int" }
  743. Property { name: "label"; type: "string" }
  744. Property { name: "enabled"; type: "bool" }
  745. }
  746. Component {
  747. name: "QtVirtualKeyboard::HangulInputMethod"
  748. prototype: "QVirtualKeyboardAbstractInputMethod"
  749. exports: [
  750. "QtQuick.VirtualKeyboard.Plugins/HangulInputMethod 1.3",
  751. "QtQuick.VirtualKeyboard.Plugins/HangulInputMethod 2.0"
  752. ]
  753. exportMetaObjectRevisions: [0, 0]
  754. }
  755. Component {
  756. name: "QtVirtualKeyboard::InputMethod"
  757. prototype: "QVirtualKeyboardAbstractInputMethod"
  758. exports: [
  759. "QtQuick.VirtualKeyboard/InputMethod 1.0",
  760. "QtQuick.VirtualKeyboard/InputMethod 2.0"
  761. ]
  762. exportMetaObjectRevisions: [0, 0]
  763. Property {
  764. name: "inputContext"
  765. type: "QVirtualKeyboardInputContext"
  766. isReadonly: true
  767. isPointer: true
  768. }
  769. Property {
  770. name: "inputEngine"
  771. type: "QVirtualKeyboardInputEngine"
  772. isReadonly: true
  773. isPointer: true
  774. }
  775. }
  776. Component {
  777. name: "QtVirtualKeyboard::OpenWnnInputMethod"
  778. prototype: "QVirtualKeyboardAbstractInputMethod"
  779. exports: [
  780. "QtQuick.VirtualKeyboard.Plugins/JapaneseInputMethod 1.3",
  781. "QtQuick.VirtualKeyboard.Plugins/JapaneseInputMethod 2.0"
  782. ]
  783. exportMetaObjectRevisions: [0, 0]
  784. }
  785. Component {
  786. name: "QtVirtualKeyboard::PinyinInputMethod"
  787. prototype: "QVirtualKeyboardAbstractInputMethod"
  788. exports: [
  789. "QtQuick.VirtualKeyboard.Plugins/PinyinInputMethod 1.1",
  790. "QtQuick.VirtualKeyboard.Plugins/PinyinInputMethod 2.0"
  791. ]
  792. exportMetaObjectRevisions: [0, 0]
  793. }
  794. Component {
  795. name: "QtVirtualKeyboard::PlainInputMethod"
  796. prototype: "QVirtualKeyboardAbstractInputMethod"
  797. exports: [
  798. "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 1.0",
  799. "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 2.0",
  800. "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 2.3"
  801. ]
  802. exportMetaObjectRevisions: [0, 0, 0]
  803. }
  804. Component {
  805. name: "QtVirtualKeyboard::ShadowInputContext"
  806. prototype: "QObject"
  807. exports: ["QtQuick.VirtualKeyboard/ShadowInputContext 2.2"]
  808. isCreatable: false
  809. exportMetaObjectRevisions: [0]
  810. Property { name: "inputItem"; type: "QObject"; isPointer: true }
  811. Property { name: "anchorRectangle"; type: "QRectF"; isReadonly: true }
  812. Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
  813. Property { name: "anchorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
  814. Property { name: "cursorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
  815. Property { name: "selectionControlVisible"; type: "bool"; isReadonly: true }
  816. Method {
  817. name: "setSelectionOnFocusObject"
  818. Parameter { name: "anchorPos"; type: "QPointF" }
  819. Parameter { name: "cursorPos"; type: "QPointF" }
  820. }
  821. Method { name: "updateSelectionProperties" }
  822. }
  823. Component {
  824. name: "QtVirtualKeyboard::ShiftHandler"
  825. prototype: "QObject"
  826. exports: [
  827. "QtQuick.VirtualKeyboard/ShiftHandler 1.0",
  828. "QtQuick.VirtualKeyboard/ShiftHandler 2.0"
  829. ]
  830. isCreatable: false
  831. exportMetaObjectRevisions: [0, 0]
  832. Property { name: "sentenceEndingCharacters"; type: "string" }
  833. Property { name: "autoCapitalizationEnabled"; type: "bool"; isReadonly: true }
  834. Property { name: "toggleShiftEnabled"; type: "bool"; isReadonly: true }
  835. Property { name: "shiftActive"; type: "bool" }
  836. Property { name: "capsLockActive"; type: "bool" }
  837. Property { name: "uppercase"; type: "bool"; isReadonly: true }
  838. Method { name: "toggleShift" }
  839. Method { name: "clearToggleShiftTimer" }
  840. }
  841. Component {
  842. name: "QtVirtualKeyboard::TCInputMethod"
  843. prototype: "QVirtualKeyboardAbstractInputMethod"
  844. exports: ["QtQuick.VirtualKeyboard.Plugins/TCInputMethod 2.0"]
  845. exportMetaObjectRevisions: [0]
  846. Property { name: "simplified"; type: "bool" }
  847. }
  848. Component {
  849. name: "QtVirtualKeyboard::ThaiInputMethod"
  850. prototype: "QVirtualKeyboardAbstractInputMethod"
  851. exports: ["QtQuick.VirtualKeyboard.Plugins/ThaiInputMethod 2.3"]
  852. exportMetaObjectRevisions: [0]
  853. }
  854. Component {
  855. prototype: "QQuickItem"
  856. name: "QtQuick.VirtualKeyboard/AlternativeKeys 1.0"
  857. exports: ["QtQuick.VirtualKeyboard/AlternativeKeys 1.0"]
  858. exportMetaObjectRevisions: [0]
  859. isComposite: true
  860. defaultProperty: "data"
  861. Property { name: "active"; type: "bool" }
  862. Property { name: "highlightIndex"; type: "int" }
  863. Property { name: "keyCode"; type: "int" }
  864. Property { name: "origin"; type: "QPointF" }
  865. Property { name: "listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
  866. Signal { name: "clicked" }
  867. Method {
  868. name: "open"
  869. type: "QVariant"
  870. Parameter { name: "key"; type: "QVariant" }
  871. Parameter { name: "originX"; type: "QVariant" }
  872. Parameter { name: "originY"; type: "QVariant" }
  873. }
  874. Method {
  875. name: "move"
  876. type: "QVariant"
  877. Parameter { name: "mouseX"; type: "QVariant" }
  878. }
  879. Method { name: "close"; type: "QVariant" }
  880. }
  881. Component {
  882. prototype: "QQuickItem"
  883. name: "QtQuick.VirtualKeyboard/AlternativeKeys 2.0"
  884. exports: ["QtQuick.VirtualKeyboard/AlternativeKeys 2.0"]
  885. exportMetaObjectRevisions: [0]
  886. isComposite: true
  887. defaultProperty: "data"
  888. Property { name: "active"; type: "bool" }
  889. Property { name: "highlightIndex"; type: "int" }
  890. Property { name: "keyCode"; type: "int" }
  891. Property { name: "origin"; type: "QPointF" }
  892. Property { name: "listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
  893. Signal { name: "clicked" }
  894. Method {
  895. name: "open"
  896. type: "QVariant"
  897. Parameter { name: "key"; type: "QVariant" }
  898. Parameter { name: "originX"; type: "QVariant" }
  899. Parameter { name: "originY"; type: "QVariant" }
  900. }
  901. Method {
  902. name: "move"
  903. type: "QVariant"
  904. Parameter { name: "mouseX"; type: "QVariant" }
  905. }
  906. Method { name: "close"; type: "QVariant" }
  907. }
  908. Component {
  909. prototype: "QQuickItem"
  910. name: "QtQuick.VirtualKeyboard/BackspaceKey 1.0"
  911. exports: ["QtQuick.VirtualKeyboard/BackspaceKey 1.0"]
  912. exportMetaObjectRevisions: [0]
  913. isComposite: true
  914. defaultProperty: "data"
  915. Property { name: "weight"; type: "double" }
  916. Property { name: "text"; type: "string" }
  917. Property { name: "displayText"; type: "string" }
  918. Property { name: "smallText"; type: "string" }
  919. Property { name: "smallTextVisible"; type: "bool" }
  920. Property { name: "alternativeKeys"; type: "QVariant" }
  921. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  922. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  923. Property { name: "key"; type: "int" }
  924. Property { name: "noKeyEvent"; type: "bool" }
  925. Property { name: "active"; type: "bool" }
  926. Property { name: "noModifier"; type: "bool" }
  927. Property { name: "repeat"; type: "bool" }
  928. Property { name: "highlighted"; type: "bool" }
  929. Property { name: "functionKey"; type: "bool" }
  930. Property { name: "showPreview"; type: "bool" }
  931. Property { name: "pressed"; type: "bool" }
  932. Property { name: "uppercased"; type: "bool" }
  933. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  934. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  935. Signal { name: "clicked" }
  936. }
  937. Component {
  938. prototype: "QQuickItem"
  939. name: "QtQuick.VirtualKeyboard/BackspaceKey 2.0"
  940. exports: ["QtQuick.VirtualKeyboard/BackspaceKey 2.0"]
  941. exportMetaObjectRevisions: [0]
  942. isComposite: true
  943. defaultProperty: "data"
  944. Property { name: "weight"; type: "double" }
  945. Property { name: "text"; type: "string" }
  946. Property { name: "displayText"; type: "string" }
  947. Property { name: "smallText"; type: "string" }
  948. Property { name: "smallTextVisible"; type: "bool" }
  949. Property { name: "alternativeKeys"; type: "QVariant" }
  950. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  951. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  952. Property { name: "key"; type: "int" }
  953. Property { name: "noKeyEvent"; type: "bool" }
  954. Property { name: "active"; type: "bool" }
  955. Property { name: "noModifier"; type: "bool" }
  956. Property { name: "repeat"; type: "bool" }
  957. Property { name: "highlighted"; type: "bool" }
  958. Property { name: "functionKey"; type: "bool" }
  959. Property { name: "showPreview"; type: "bool" }
  960. Property { name: "pressed"; type: "bool" }
  961. Property { name: "uppercased"; type: "bool" }
  962. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  963. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  964. Signal { name: "clicked" }
  965. }
  966. Component {
  967. prototype: "QQuickItem"
  968. name: "QtQuick.VirtualKeyboard/BaseKey 1.0"
  969. exports: ["QtQuick.VirtualKeyboard/BaseKey 1.0"]
  970. exportMetaObjectRevisions: [0]
  971. isComposite: true
  972. defaultProperty: "data"
  973. Property { name: "weight"; type: "double" }
  974. Property { name: "text"; type: "string" }
  975. Property { name: "displayText"; type: "string" }
  976. Property { name: "smallText"; type: "string" }
  977. Property { name: "smallTextVisible"; type: "bool" }
  978. Property { name: "alternativeKeys"; type: "QVariant" }
  979. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  980. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  981. Property { name: "key"; type: "int" }
  982. Property { name: "noKeyEvent"; type: "bool" }
  983. Property { name: "active"; type: "bool" }
  984. Property { name: "noModifier"; type: "bool" }
  985. Property { name: "repeat"; type: "bool" }
  986. Property { name: "highlighted"; type: "bool" }
  987. Property { name: "functionKey"; type: "bool" }
  988. Property { name: "showPreview"; type: "bool" }
  989. Property { name: "pressed"; type: "bool" }
  990. Property { name: "uppercased"; type: "bool" }
  991. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  992. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  993. Signal { name: "clicked" }
  994. }
  995. Component {
  996. prototype: "QQuickItem"
  997. name: "QtQuick.VirtualKeyboard/BaseKey 2.0"
  998. exports: ["QtQuick.VirtualKeyboard/BaseKey 2.0"]
  999. exportMetaObjectRevisions: [0]
  1000. isComposite: true
  1001. defaultProperty: "data"
  1002. Property { name: "weight"; type: "double" }
  1003. Property { name: "text"; type: "string" }
  1004. Property { name: "displayText"; type: "string" }
  1005. Property { name: "smallText"; type: "string" }
  1006. Property { name: "smallTextVisible"; type: "bool" }
  1007. Property { name: "alternativeKeys"; type: "QVariant" }
  1008. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1009. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1010. Property { name: "key"; type: "int" }
  1011. Property { name: "noKeyEvent"; type: "bool" }
  1012. Property { name: "active"; type: "bool" }
  1013. Property { name: "noModifier"; type: "bool" }
  1014. Property { name: "repeat"; type: "bool" }
  1015. Property { name: "highlighted"; type: "bool" }
  1016. Property { name: "functionKey"; type: "bool" }
  1017. Property { name: "showPreview"; type: "bool" }
  1018. Property { name: "pressed"; type: "bool" }
  1019. Property { name: "uppercased"; type: "bool" }
  1020. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1021. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1022. Signal { name: "clicked" }
  1023. }
  1024. Component {
  1025. prototype: "QQuickItem"
  1026. name: "QtQuick.VirtualKeyboard/ChangeLanguageKey 1.0"
  1027. exports: ["QtQuick.VirtualKeyboard/ChangeLanguageKey 1.0"]
  1028. exportMetaObjectRevisions: [0]
  1029. isComposite: true
  1030. defaultProperty: "data"
  1031. Property { name: "customLayoutsOnly"; type: "bool" }
  1032. Property { name: "weight"; type: "double" }
  1033. Property { name: "text"; type: "string" }
  1034. Property { name: "displayText"; type: "string" }
  1035. Property { name: "smallText"; type: "string" }
  1036. Property { name: "smallTextVisible"; type: "bool" }
  1037. Property { name: "alternativeKeys"; type: "QVariant" }
  1038. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1039. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1040. Property { name: "key"; type: "int" }
  1041. Property { name: "noKeyEvent"; type: "bool" }
  1042. Property { name: "active"; type: "bool" }
  1043. Property { name: "noModifier"; type: "bool" }
  1044. Property { name: "repeat"; type: "bool" }
  1045. Property { name: "highlighted"; type: "bool" }
  1046. Property { name: "functionKey"; type: "bool" }
  1047. Property { name: "showPreview"; type: "bool" }
  1048. Property { name: "pressed"; type: "bool" }
  1049. Property { name: "uppercased"; type: "bool" }
  1050. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1051. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1052. Signal { name: "clicked" }
  1053. }
  1054. Component {
  1055. prototype: "QQuickItem"
  1056. name: "QtQuick.VirtualKeyboard/ChangeLanguageKey 2.0"
  1057. exports: ["QtQuick.VirtualKeyboard/ChangeLanguageKey 2.0"]
  1058. exportMetaObjectRevisions: [0]
  1059. isComposite: true
  1060. defaultProperty: "data"
  1061. Property { name: "customLayoutsOnly"; type: "bool" }
  1062. Property { name: "weight"; type: "double" }
  1063. Property { name: "text"; type: "string" }
  1064. Property { name: "displayText"; type: "string" }
  1065. Property { name: "smallText"; type: "string" }
  1066. Property { name: "smallTextVisible"; type: "bool" }
  1067. Property { name: "alternativeKeys"; type: "QVariant" }
  1068. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1069. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1070. Property { name: "key"; type: "int" }
  1071. Property { name: "noKeyEvent"; type: "bool" }
  1072. Property { name: "active"; type: "bool" }
  1073. Property { name: "noModifier"; type: "bool" }
  1074. Property { name: "repeat"; type: "bool" }
  1075. Property { name: "highlighted"; type: "bool" }
  1076. Property { name: "functionKey"; type: "bool" }
  1077. Property { name: "showPreview"; type: "bool" }
  1078. Property { name: "pressed"; type: "bool" }
  1079. Property { name: "uppercased"; type: "bool" }
  1080. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1081. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1082. Signal { name: "clicked" }
  1083. }
  1084. Component {
  1085. prototype: "QQuickItem"
  1086. name: "QtQuick.VirtualKeyboard/CharacterPreviewBubble 1.0"
  1087. exports: ["QtQuick.VirtualKeyboard/CharacterPreviewBubble 1.0"]
  1088. exportMetaObjectRevisions: [0]
  1089. isComposite: true
  1090. defaultProperty: "data"
  1091. Property { name: "active"; type: "bool" }
  1092. Property { name: "activeKey"; type: "QVariant" }
  1093. }
  1094. Component {
  1095. prototype: "QQuickItem"
  1096. name: "QtQuick.VirtualKeyboard/CharacterPreviewBubble 2.0"
  1097. exports: ["QtQuick.VirtualKeyboard/CharacterPreviewBubble 2.0"]
  1098. exportMetaObjectRevisions: [0]
  1099. isComposite: true
  1100. defaultProperty: "data"
  1101. Property { name: "active"; type: "bool" }
  1102. Property { name: "activeKey"; type: "QVariant" }
  1103. }
  1104. Component {
  1105. prototype: "QQuickItem"
  1106. name: "QtQuick.VirtualKeyboard/EnterKey 1.0"
  1107. exports: ["QtQuick.VirtualKeyboard/EnterKey 1.0"]
  1108. exportMetaObjectRevisions: [0]
  1109. isComposite: true
  1110. defaultProperty: "data"
  1111. Property { name: "actionId"; type: "int"; isReadonly: true }
  1112. Property { name: "weight"; type: "double" }
  1113. Property { name: "text"; type: "string" }
  1114. Property { name: "displayText"; type: "string" }
  1115. Property { name: "smallText"; type: "string" }
  1116. Property { name: "smallTextVisible"; type: "bool" }
  1117. Property { name: "alternativeKeys"; type: "QVariant" }
  1118. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1119. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1120. Property { name: "key"; type: "int" }
  1121. Property { name: "noKeyEvent"; type: "bool" }
  1122. Property { name: "active"; type: "bool" }
  1123. Property { name: "noModifier"; type: "bool" }
  1124. Property { name: "repeat"; type: "bool" }
  1125. Property { name: "highlighted"; type: "bool" }
  1126. Property { name: "functionKey"; type: "bool" }
  1127. Property { name: "showPreview"; type: "bool" }
  1128. Property { name: "pressed"; type: "bool" }
  1129. Property { name: "uppercased"; type: "bool" }
  1130. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1131. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1132. Signal { name: "clicked" }
  1133. }
  1134. Component {
  1135. prototype: "QQuickItem"
  1136. name: "QtQuick.VirtualKeyboard/EnterKey 2.0"
  1137. exports: ["QtQuick.VirtualKeyboard/EnterKey 2.0"]
  1138. exportMetaObjectRevisions: [0]
  1139. isComposite: true
  1140. defaultProperty: "data"
  1141. Property { name: "actionId"; type: "int"; isReadonly: true }
  1142. Property { name: "weight"; type: "double" }
  1143. Property { name: "text"; type: "string" }
  1144. Property { name: "displayText"; type: "string" }
  1145. Property { name: "smallText"; type: "string" }
  1146. Property { name: "smallTextVisible"; type: "bool" }
  1147. Property { name: "alternativeKeys"; type: "QVariant" }
  1148. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1149. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1150. Property { name: "key"; type: "int" }
  1151. Property { name: "noKeyEvent"; type: "bool" }
  1152. Property { name: "active"; type: "bool" }
  1153. Property { name: "noModifier"; type: "bool" }
  1154. Property { name: "repeat"; type: "bool" }
  1155. Property { name: "highlighted"; type: "bool" }
  1156. Property { name: "functionKey"; type: "bool" }
  1157. Property { name: "showPreview"; type: "bool" }
  1158. Property { name: "pressed"; type: "bool" }
  1159. Property { name: "uppercased"; type: "bool" }
  1160. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1161. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1162. Signal { name: "clicked" }
  1163. }
  1164. Component {
  1165. prototype: "QQuickItem"
  1166. name: "QtQuick.VirtualKeyboard/FillerKey 1.0"
  1167. exports: ["QtQuick.VirtualKeyboard/FillerKey 1.0"]
  1168. exportMetaObjectRevisions: [0]
  1169. isComposite: true
  1170. defaultProperty: "data"
  1171. Property { name: "weight"; type: "double" }
  1172. Property { name: "text"; type: "string" }
  1173. Property { name: "displayText"; type: "string" }
  1174. Property { name: "smallText"; type: "string" }
  1175. Property { name: "smallTextVisible"; type: "bool" }
  1176. Property { name: "alternativeKeys"; type: "QVariant" }
  1177. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1178. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1179. Property { name: "key"; type: "int" }
  1180. Property { name: "noKeyEvent"; type: "bool" }
  1181. Property { name: "active"; type: "bool" }
  1182. Property { name: "noModifier"; type: "bool" }
  1183. Property { name: "repeat"; type: "bool" }
  1184. Property { name: "highlighted"; type: "bool" }
  1185. Property { name: "functionKey"; type: "bool" }
  1186. Property { name: "showPreview"; type: "bool" }
  1187. Property { name: "pressed"; type: "bool" }
  1188. Property { name: "uppercased"; type: "bool" }
  1189. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1190. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1191. Signal { name: "clicked" }
  1192. }
  1193. Component {
  1194. prototype: "QQuickItem"
  1195. name: "QtQuick.VirtualKeyboard/FillerKey 2.0"
  1196. exports: ["QtQuick.VirtualKeyboard/FillerKey 2.0"]
  1197. exportMetaObjectRevisions: [0]
  1198. isComposite: true
  1199. defaultProperty: "data"
  1200. Property { name: "weight"; type: "double" }
  1201. Property { name: "text"; type: "string" }
  1202. Property { name: "displayText"; type: "string" }
  1203. Property { name: "smallText"; type: "string" }
  1204. Property { name: "smallTextVisible"; type: "bool" }
  1205. Property { name: "alternativeKeys"; type: "QVariant" }
  1206. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1207. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1208. Property { name: "key"; type: "int" }
  1209. Property { name: "noKeyEvent"; type: "bool" }
  1210. Property { name: "active"; type: "bool" }
  1211. Property { name: "noModifier"; type: "bool" }
  1212. Property { name: "repeat"; type: "bool" }
  1213. Property { name: "highlighted"; type: "bool" }
  1214. Property { name: "functionKey"; type: "bool" }
  1215. Property { name: "showPreview"; type: "bool" }
  1216. Property { name: "pressed"; type: "bool" }
  1217. Property { name: "uppercased"; type: "bool" }
  1218. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1219. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1220. Signal { name: "clicked" }
  1221. }
  1222. Component {
  1223. prototype: "QQuickItem"
  1224. name: "QtQuick.VirtualKeyboard/HandwritingInputPanel 2.0"
  1225. exports: ["QtQuick.VirtualKeyboard/HandwritingInputPanel 2.0"]
  1226. exportMetaObjectRevisions: [0]
  1227. isComposite: true
  1228. defaultProperty: "data"
  1229. Property { name: "inputPanel"; type: "QVariant" }
  1230. Property { name: "available"; type: "bool" }
  1231. Property { name: "active"; type: "bool" }
  1232. }
  1233. Component {
  1234. prototype: "QQuickItem"
  1235. name: "QtQuick.VirtualKeyboard/HandwritingModeKey 2.0"
  1236. exports: ["QtQuick.VirtualKeyboard/HandwritingModeKey 2.0"]
  1237. exportMetaObjectRevisions: [0]
  1238. isComposite: true
  1239. defaultProperty: "data"
  1240. Property { name: "weight"; type: "double" }
  1241. Property { name: "text"; type: "string" }
  1242. Property { name: "displayText"; type: "string" }
  1243. Property { name: "smallText"; type: "string" }
  1244. Property { name: "smallTextVisible"; type: "bool" }
  1245. Property { name: "alternativeKeys"; type: "QVariant" }
  1246. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1247. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1248. Property { name: "key"; type: "int" }
  1249. Property { name: "noKeyEvent"; type: "bool" }
  1250. Property { name: "active"; type: "bool" }
  1251. Property { name: "noModifier"; type: "bool" }
  1252. Property { name: "repeat"; type: "bool" }
  1253. Property { name: "highlighted"; type: "bool" }
  1254. Property { name: "functionKey"; type: "bool" }
  1255. Property { name: "showPreview"; type: "bool" }
  1256. Property { name: "pressed"; type: "bool" }
  1257. Property { name: "uppercased"; type: "bool" }
  1258. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1259. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1260. Signal { name: "clicked" }
  1261. }
  1262. Component {
  1263. prototype: "QQuickItem"
  1264. name: "QtQuick.VirtualKeyboard/HideKeyboardKey 1.0"
  1265. exports: ["QtQuick.VirtualKeyboard/HideKeyboardKey 1.0"]
  1266. exportMetaObjectRevisions: [0]
  1267. isComposite: true
  1268. defaultProperty: "data"
  1269. Property { name: "weight"; type: "double" }
  1270. Property { name: "text"; type: "string" }
  1271. Property { name: "displayText"; type: "string" }
  1272. Property { name: "smallText"; type: "string" }
  1273. Property { name: "smallTextVisible"; type: "bool" }
  1274. Property { name: "alternativeKeys"; type: "QVariant" }
  1275. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1276. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1277. Property { name: "key"; type: "int" }
  1278. Property { name: "noKeyEvent"; type: "bool" }
  1279. Property { name: "active"; type: "bool" }
  1280. Property { name: "noModifier"; type: "bool" }
  1281. Property { name: "repeat"; type: "bool" }
  1282. Property { name: "highlighted"; type: "bool" }
  1283. Property { name: "functionKey"; type: "bool" }
  1284. Property { name: "showPreview"; type: "bool" }
  1285. Property { name: "pressed"; type: "bool" }
  1286. Property { name: "uppercased"; type: "bool" }
  1287. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1288. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1289. Signal { name: "clicked" }
  1290. }
  1291. Component {
  1292. prototype: "QQuickItem"
  1293. name: "QtQuick.VirtualKeyboard/HideKeyboardKey 2.0"
  1294. exports: ["QtQuick.VirtualKeyboard/HideKeyboardKey 2.0"]
  1295. exportMetaObjectRevisions: [0]
  1296. isComposite: true
  1297. defaultProperty: "data"
  1298. Property { name: "weight"; type: "double" }
  1299. Property { name: "text"; type: "string" }
  1300. Property { name: "displayText"; type: "string" }
  1301. Property { name: "smallText"; type: "string" }
  1302. Property { name: "smallTextVisible"; type: "bool" }
  1303. Property { name: "alternativeKeys"; type: "QVariant" }
  1304. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1305. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1306. Property { name: "key"; type: "int" }
  1307. Property { name: "noKeyEvent"; type: "bool" }
  1308. Property { name: "active"; type: "bool" }
  1309. Property { name: "noModifier"; type: "bool" }
  1310. Property { name: "repeat"; type: "bool" }
  1311. Property { name: "highlighted"; type: "bool" }
  1312. Property { name: "functionKey"; type: "bool" }
  1313. Property { name: "showPreview"; type: "bool" }
  1314. Property { name: "pressed"; type: "bool" }
  1315. Property { name: "uppercased"; type: "bool" }
  1316. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1317. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1318. Signal { name: "clicked" }
  1319. }
  1320. Component {
  1321. prototype: "QQuickItem"
  1322. name: "QtQuick.VirtualKeyboard/InputModeKey 2.3"
  1323. exports: ["QtQuick.VirtualKeyboard/InputModeKey 2.3"]
  1324. exportMetaObjectRevisions: [3]
  1325. isComposite: true
  1326. defaultProperty: "data"
  1327. Property { name: "inputModeNameList"; type: "QVariant" }
  1328. Property { name: "inputModes"; type: "QVariant" }
  1329. Property { name: "inputModeCount"; type: "int"; isReadonly: true }
  1330. Property { name: "__inputModes"; type: "QVariant" }
  1331. Method {
  1332. name: "__nextInputMode"
  1333. type: "QVariant"
  1334. Parameter { name: "inputMode"; type: "QVariant" }
  1335. }
  1336. Method {
  1337. name: "__filterInputModes"
  1338. type: "QVariant"
  1339. Parameter { name: "inputModes"; type: "QVariant" }
  1340. Parameter { name: "filter"; type: "QVariant" }
  1341. }
  1342. Property { name: "weight"; type: "double" }
  1343. Property { name: "text"; type: "string" }
  1344. Property { name: "displayText"; type: "string" }
  1345. Property { name: "smallText"; type: "string" }
  1346. Property { name: "smallTextVisible"; type: "bool" }
  1347. Property { name: "alternativeKeys"; type: "QVariant" }
  1348. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1349. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1350. Property { name: "key"; type: "int" }
  1351. Property { name: "noKeyEvent"; type: "bool" }
  1352. Property { name: "active"; type: "bool" }
  1353. Property { name: "noModifier"; type: "bool" }
  1354. Property { name: "repeat"; type: "bool" }
  1355. Property { name: "highlighted"; type: "bool" }
  1356. Property { name: "functionKey"; type: "bool" }
  1357. Property { name: "showPreview"; type: "bool" }
  1358. Property { name: "pressed"; type: "bool" }
  1359. Property { name: "uppercased"; type: "bool" }
  1360. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1361. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1362. Signal { name: "clicked" }
  1363. }
  1364. Component {
  1365. prototype: "QQuickItem"
  1366. name: "QtQuick.VirtualKeyboard/InputPanel 1.0"
  1367. exports: ["QtQuick.VirtualKeyboard/InputPanel 1.0"]
  1368. exportMetaObjectRevisions: [0]
  1369. isComposite: true
  1370. defaultProperty: "data"
  1371. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1372. Property { name: "desktopPanel"; type: "bool" }
  1373. Property { name: "active"; type: "bool" }
  1374. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1375. Signal {
  1376. name: "externalLanguageSwitch"
  1377. Parameter { name: "localeList"; type: "QVariant" }
  1378. Parameter { name: "currentIndex"; type: "int" }
  1379. }
  1380. }
  1381. Component {
  1382. prototype: "QQuickItem"
  1383. name: "QtQuick.VirtualKeyboard/InputPanel 1.2"
  1384. exports: ["QtQuick.VirtualKeyboard/InputPanel 1.2"]
  1385. exportMetaObjectRevisions: [2]
  1386. isComposite: true
  1387. defaultProperty: "data"
  1388. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1389. Property { name: "desktopPanel"; type: "bool" }
  1390. Property { name: "active"; type: "bool" }
  1391. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1392. Signal {
  1393. name: "externalLanguageSwitch"
  1394. Parameter { name: "localeList"; type: "QVariant" }
  1395. Parameter { name: "currentIndex"; type: "int" }
  1396. }
  1397. }
  1398. Component {
  1399. prototype: "QQuickItem"
  1400. name: "QtQuick.VirtualKeyboard/InputPanel 1.3"
  1401. exports: ["QtQuick.VirtualKeyboard/InputPanel 1.3"]
  1402. exportMetaObjectRevisions: [3]
  1403. isComposite: true
  1404. defaultProperty: "data"
  1405. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1406. Property { name: "desktopPanel"; type: "bool" }
  1407. Property { name: "active"; type: "bool" }
  1408. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1409. Signal {
  1410. name: "externalLanguageSwitch"
  1411. Parameter { name: "localeList"; type: "QVariant" }
  1412. Parameter { name: "currentIndex"; type: "int" }
  1413. }
  1414. }
  1415. Component {
  1416. prototype: "QQuickItem"
  1417. name: "QtQuick.VirtualKeyboard/InputPanel 2.0"
  1418. exports: ["QtQuick.VirtualKeyboard/InputPanel 2.0"]
  1419. exportMetaObjectRevisions: [0]
  1420. isComposite: true
  1421. defaultProperty: "data"
  1422. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1423. Property { name: "desktopPanel"; type: "bool" }
  1424. Property { name: "active"; type: "bool" }
  1425. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1426. Signal {
  1427. name: "externalLanguageSwitch"
  1428. Parameter { name: "localeList"; type: "QVariant" }
  1429. Parameter { name: "currentIndex"; type: "int" }
  1430. }
  1431. }
  1432. Component {
  1433. prototype: "QQuickItem"
  1434. name: "QtQuick.VirtualKeyboard/InputPanel 2.1"
  1435. exports: ["QtQuick.VirtualKeyboard/InputPanel 2.1"]
  1436. exportMetaObjectRevisions: [1]
  1437. isComposite: true
  1438. defaultProperty: "data"
  1439. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1440. Property { name: "desktopPanel"; type: "bool" }
  1441. Property { name: "active"; type: "bool" }
  1442. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1443. Signal {
  1444. name: "externalLanguageSwitch"
  1445. Parameter { name: "localeList"; type: "QVariant" }
  1446. Parameter { name: "currentIndex"; type: "int" }
  1447. }
  1448. }
  1449. Component {
  1450. prototype: "QQuickItem"
  1451. name: "QtQuick.VirtualKeyboard/InputPanel 2.2"
  1452. exports: ["QtQuick.VirtualKeyboard/InputPanel 2.2"]
  1453. exportMetaObjectRevisions: [2]
  1454. isComposite: true
  1455. defaultProperty: "data"
  1456. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1457. Property { name: "desktopPanel"; type: "bool" }
  1458. Property { name: "active"; type: "bool" }
  1459. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1460. Signal {
  1461. name: "externalLanguageSwitch"
  1462. Parameter { name: "localeList"; type: "QVariant" }
  1463. Parameter { name: "currentIndex"; type: "int" }
  1464. }
  1465. }
  1466. Component {
  1467. prototype: "QQuickItem"
  1468. name: "QtQuick.VirtualKeyboard/InputPanel 2.3"
  1469. exports: ["QtQuick.VirtualKeyboard/InputPanel 2.3"]
  1470. exportMetaObjectRevisions: [3]
  1471. isComposite: true
  1472. defaultProperty: "data"
  1473. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1474. Property { name: "desktopPanel"; type: "bool" }
  1475. Property { name: "active"; type: "bool" }
  1476. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1477. Signal {
  1478. name: "externalLanguageSwitch"
  1479. Parameter { name: "localeList"; type: "QVariant" }
  1480. Parameter { name: "currentIndex"; type: "int" }
  1481. }
  1482. }
  1483. Component {
  1484. prototype: "QQuickItem"
  1485. name: "QtQuick.VirtualKeyboard/InputPanel 2.4"
  1486. exports: ["QtQuick.VirtualKeyboard/InputPanel 2.4"]
  1487. exportMetaObjectRevisions: [4]
  1488. isComposite: true
  1489. defaultProperty: "data"
  1490. Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
  1491. Property { name: "desktopPanel"; type: "bool" }
  1492. Property { name: "active"; type: "bool" }
  1493. Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
  1494. Signal {
  1495. name: "externalLanguageSwitch"
  1496. Parameter { name: "localeList"; type: "QVariant" }
  1497. Parameter { name: "currentIndex"; type: "int" }
  1498. }
  1499. }
  1500. Component {
  1501. prototype: "QQuickItem"
  1502. name: "QtQuick.VirtualKeyboard/Key 1.0"
  1503. exports: ["QtQuick.VirtualKeyboard/Key 1.0"]
  1504. exportMetaObjectRevisions: [0]
  1505. isComposite: true
  1506. defaultProperty: "data"
  1507. Property { name: "weight"; type: "double" }
  1508. Property { name: "text"; type: "string" }
  1509. Property { name: "displayText"; type: "string" }
  1510. Property { name: "smallText"; type: "string" }
  1511. Property { name: "smallTextVisible"; type: "bool" }
  1512. Property { name: "alternativeKeys"; type: "QVariant" }
  1513. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1514. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1515. Property { name: "key"; type: "int" }
  1516. Property { name: "noKeyEvent"; type: "bool" }
  1517. Property { name: "active"; type: "bool" }
  1518. Property { name: "noModifier"; type: "bool" }
  1519. Property { name: "repeat"; type: "bool" }
  1520. Property { name: "highlighted"; type: "bool" }
  1521. Property { name: "functionKey"; type: "bool" }
  1522. Property { name: "showPreview"; type: "bool" }
  1523. Property { name: "pressed"; type: "bool" }
  1524. Property { name: "uppercased"; type: "bool" }
  1525. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1526. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1527. Signal { name: "clicked" }
  1528. }
  1529. Component {
  1530. prototype: "QQuickItem"
  1531. name: "QtQuick.VirtualKeyboard/Key 2.0"
  1532. exports: ["QtQuick.VirtualKeyboard/Key 2.0"]
  1533. exportMetaObjectRevisions: [0]
  1534. isComposite: true
  1535. defaultProperty: "data"
  1536. Property { name: "weight"; type: "double" }
  1537. Property { name: "text"; type: "string" }
  1538. Property { name: "displayText"; type: "string" }
  1539. Property { name: "smallText"; type: "string" }
  1540. Property { name: "smallTextVisible"; type: "bool" }
  1541. Property { name: "alternativeKeys"; type: "QVariant" }
  1542. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1543. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1544. Property { name: "key"; type: "int" }
  1545. Property { name: "noKeyEvent"; type: "bool" }
  1546. Property { name: "active"; type: "bool" }
  1547. Property { name: "noModifier"; type: "bool" }
  1548. Property { name: "repeat"; type: "bool" }
  1549. Property { name: "highlighted"; type: "bool" }
  1550. Property { name: "functionKey"; type: "bool" }
  1551. Property { name: "showPreview"; type: "bool" }
  1552. Property { name: "pressed"; type: "bool" }
  1553. Property { name: "uppercased"; type: "bool" }
  1554. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1555. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1556. Signal { name: "clicked" }
  1557. }
  1558. Component {
  1559. prototype: "QQuickItem"
  1560. name: "QtQuick.VirtualKeyboard/Keyboard 1.0"
  1561. exports: ["QtQuick.VirtualKeyboard/Keyboard 1.0"]
  1562. exportMetaObjectRevisions: [0]
  1563. isComposite: true
  1564. defaultProperty: "data"
  1565. Property { name: "activeKey"; type: "QVariant" }
  1566. Property { name: "activeTouchPoint"; type: "QQuickTouchPoint"; isPointer: true }
  1567. Property { name: "localeIndex"; type: "int" }
  1568. Property { name: "availableLocaleIndices"; type: "QVariant" }
  1569. Property { name: "availableCustomLocaleIndices"; type: "QVariant" }
  1570. Property { name: "locale"; type: "string" }
  1571. Property { name: "inputLocale"; type: "string" }
  1572. Property { name: "defaultLocaleIndex"; type: "int" }
  1573. Property { name: "latinOnly"; type: "bool"; isReadonly: true }
  1574. Property { name: "preferNumbers"; type: "bool"; isReadonly: true }
  1575. Property { name: "dialableCharactersOnly"; type: "bool"; isReadonly: true }
  1576. Property { name: "formattedNumbersOnly"; type: "bool"; isReadonly: true }
  1577. Property { name: "digitsOnly"; type: "bool"; isReadonly: true }
  1578. Property { name: "layout"; type: "string" }
  1579. Property { name: "layoutType"; type: "string" }
  1580. Property { name: "active"; type: "bool" }
  1581. Property { name: "handwritingMode"; type: "bool" }
  1582. Property { name: "fullScreenHandwritingMode"; type: "bool" }
  1583. Property { name: "symbolMode"; type: "bool" }
  1584. Property { name: "fullScreenMode"; type: "bool" }
  1585. Property { name: "defaultInputMethod"; type: "QVariant" }
  1586. Property { name: "plainInputMethod"; type: "QVariant" }
  1587. Property { name: "customInputMethod"; type: "QVariant" }
  1588. Property { name: "customInputMethodSharedLayouts"; type: "QVariant" }
  1589. Property { name: "defaultInputMode"; type: "int" }
  1590. Property { name: "inputMethodNeedsReset"; type: "bool" }
  1591. Property { name: "inputModeNeedsReset"; type: "bool" }
  1592. Property { name: "navigationModeActive"; type: "bool" }
  1593. Property { name: "languagePopupListActive"; type: "bool"; isReadonly: true }
  1594. Property { name: "style"; type: "QObject"; isReadonly: true; isPointer: true }
  1595. Property { name: "wordCandidateView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
  1596. Property {
  1597. name: "shadowInputControl"
  1598. type: "ShadowInputControl_QMLTYPE_16"
  1599. isReadonly: true
  1600. isPointer: true
  1601. }
  1602. Property { name: "soundEffect"; type: "QQuickItem"; isReadonly: true; isPointer: true }
  1603. Method { name: "initDefaultInputMethod"; type: "QVariant" }
  1604. Method {
  1605. name: "showLanguagePopup"
  1606. type: "QVariant"
  1607. Parameter { name: "parentItem"; type: "QVariant" }
  1608. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1609. }
  1610. Method { name: "hideLanguagePopup"; type: "QVariant" }
  1611. Method {
  1612. name: "showWordCandidateContextMenu"
  1613. type: "QVariant"
  1614. Parameter { name: "wordCandidateIndex"; type: "QVariant" }
  1615. }
  1616. Method { name: "hideWordCandidateContextMenu"; type: "QVariant" }
  1617. Method { name: "updateInputMethod"; type: "QVariant" }
  1618. Method { name: "updateLayout"; type: "QVariant" }
  1619. Method { name: "updateDefaultLocale"; type: "QVariant" }
  1620. Method {
  1621. name: "filterLocaleIndices"
  1622. type: "QVariant"
  1623. Parameter { name: "filterCb"; type: "QVariant" }
  1624. }
  1625. Method { name: "updateAvailableLocaleIndices"; type: "QVariant" }
  1626. Method {
  1627. name: "listLocales"
  1628. type: "QVariant"
  1629. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1630. Parameter { name: "localeNameOnly"; type: "QVariant" }
  1631. }
  1632. Method {
  1633. name: "nextLocaleIndex"
  1634. type: "QVariant"
  1635. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1636. }
  1637. Method {
  1638. name: "changeInputLanguage"
  1639. type: "QVariant"
  1640. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1641. }
  1642. Method {
  1643. name: "canChangeInputLanguage"
  1644. type: "QVariant"
  1645. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1646. }
  1647. Method {
  1648. name: "findLocale"
  1649. type: "QVariant"
  1650. Parameter { name: "localeName"; type: "QVariant" }
  1651. Parameter { name: "defaultValue"; type: "QVariant" }
  1652. }
  1653. Method { name: "findFallbackIndex"; type: "QVariant" }
  1654. Method {
  1655. name: "isValidLocale"
  1656. type: "QVariant"
  1657. Parameter { name: "localeNameOrIndex"; type: "QVariant" }
  1658. Parameter { name: "ignoreActiveLocales"; type: "QVariant" }
  1659. }
  1660. Method {
  1661. name: "getLayoutFile"
  1662. type: "QVariant"
  1663. Parameter { name: "localeName"; type: "QVariant" }
  1664. Parameter { name: "layoutType"; type: "QVariant" }
  1665. }
  1666. Method {
  1667. name: "getFallbackFile"
  1668. type: "QVariant"
  1669. Parameter { name: "localeName"; type: "QVariant" }
  1670. Parameter { name: "layoutType"; type: "QVariant" }
  1671. }
  1672. Method {
  1673. name: "layoutExists"
  1674. type: "QVariant"
  1675. Parameter { name: "localeName"; type: "QVariant" }
  1676. Parameter { name: "layoutType"; type: "QVariant" }
  1677. }
  1678. Method {
  1679. name: "findLayout"
  1680. type: "QVariant"
  1681. Parameter { name: "localeName"; type: "QVariant" }
  1682. Parameter { name: "layoutType"; type: "QVariant" }
  1683. }
  1684. Method { name: "isHandwritingAvailable"; type: "QVariant" }
  1685. Method {
  1686. name: "setHandwritingMode"
  1687. type: "QVariant"
  1688. Parameter { name: "enabled"; type: "QVariant" }
  1689. Parameter { name: "resetInputMode"; type: "QVariant" }
  1690. }
  1691. }
  1692. Component {
  1693. prototype: "QQuickItem"
  1694. name: "QtQuick.VirtualKeyboard/Keyboard 2.0"
  1695. exports: ["QtQuick.VirtualKeyboard/Keyboard 2.0"]
  1696. exportMetaObjectRevisions: [0]
  1697. isComposite: true
  1698. defaultProperty: "data"
  1699. Property { name: "activeKey"; type: "QVariant" }
  1700. Property { name: "activeTouchPoint"; type: "QQuickTouchPoint"; isPointer: true }
  1701. Property { name: "localeIndex"; type: "int" }
  1702. Property { name: "availableLocaleIndices"; type: "QVariant" }
  1703. Property { name: "availableCustomLocaleIndices"; type: "QVariant" }
  1704. Property { name: "locale"; type: "string" }
  1705. Property { name: "inputLocale"; type: "string" }
  1706. Property { name: "defaultLocaleIndex"; type: "int" }
  1707. Property { name: "latinOnly"; type: "bool"; isReadonly: true }
  1708. Property { name: "preferNumbers"; type: "bool"; isReadonly: true }
  1709. Property { name: "dialableCharactersOnly"; type: "bool"; isReadonly: true }
  1710. Property { name: "formattedNumbersOnly"; type: "bool"; isReadonly: true }
  1711. Property { name: "digitsOnly"; type: "bool"; isReadonly: true }
  1712. Property { name: "layout"; type: "string" }
  1713. Property { name: "layoutType"; type: "string" }
  1714. Property { name: "active"; type: "bool" }
  1715. Property { name: "handwritingMode"; type: "bool" }
  1716. Property { name: "fullScreenHandwritingMode"; type: "bool" }
  1717. Property { name: "symbolMode"; type: "bool" }
  1718. Property { name: "fullScreenMode"; type: "bool" }
  1719. Property { name: "defaultInputMethod"; type: "QVariant" }
  1720. Property { name: "plainInputMethod"; type: "QVariant" }
  1721. Property { name: "customInputMethod"; type: "QVariant" }
  1722. Property { name: "customInputMethodSharedLayouts"; type: "QVariant" }
  1723. Property { name: "defaultInputMode"; type: "int" }
  1724. Property { name: "inputMethodNeedsReset"; type: "bool" }
  1725. Property { name: "inputModeNeedsReset"; type: "bool" }
  1726. Property { name: "navigationModeActive"; type: "bool" }
  1727. Property { name: "languagePopupListActive"; type: "bool"; isReadonly: true }
  1728. Property { name: "style"; type: "QObject"; isReadonly: true; isPointer: true }
  1729. Property { name: "wordCandidateView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
  1730. Property {
  1731. name: "shadowInputControl"
  1732. type: "ShadowInputControl_QMLTYPE_16"
  1733. isReadonly: true
  1734. isPointer: true
  1735. }
  1736. Property { name: "soundEffect"; type: "QQuickItem"; isReadonly: true; isPointer: true }
  1737. Method { name: "initDefaultInputMethod"; type: "QVariant" }
  1738. Method {
  1739. name: "showLanguagePopup"
  1740. type: "QVariant"
  1741. Parameter { name: "parentItem"; type: "QVariant" }
  1742. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1743. }
  1744. Method { name: "hideLanguagePopup"; type: "QVariant" }
  1745. Method {
  1746. name: "showWordCandidateContextMenu"
  1747. type: "QVariant"
  1748. Parameter { name: "wordCandidateIndex"; type: "QVariant" }
  1749. }
  1750. Method { name: "hideWordCandidateContextMenu"; type: "QVariant" }
  1751. Method { name: "updateInputMethod"; type: "QVariant" }
  1752. Method { name: "updateLayout"; type: "QVariant" }
  1753. Method { name: "updateDefaultLocale"; type: "QVariant" }
  1754. Method {
  1755. name: "filterLocaleIndices"
  1756. type: "QVariant"
  1757. Parameter { name: "filterCb"; type: "QVariant" }
  1758. }
  1759. Method { name: "updateAvailableLocaleIndices"; type: "QVariant" }
  1760. Method {
  1761. name: "listLocales"
  1762. type: "QVariant"
  1763. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1764. Parameter { name: "localeNameOnly"; type: "QVariant" }
  1765. }
  1766. Method {
  1767. name: "nextLocaleIndex"
  1768. type: "QVariant"
  1769. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1770. }
  1771. Method {
  1772. name: "changeInputLanguage"
  1773. type: "QVariant"
  1774. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1775. }
  1776. Method {
  1777. name: "canChangeInputLanguage"
  1778. type: "QVariant"
  1779. Parameter { name: "customLayoutsOnly"; type: "QVariant" }
  1780. }
  1781. Method {
  1782. name: "findLocale"
  1783. type: "QVariant"
  1784. Parameter { name: "localeName"; type: "QVariant" }
  1785. Parameter { name: "defaultValue"; type: "QVariant" }
  1786. }
  1787. Method { name: "findFallbackIndex"; type: "QVariant" }
  1788. Method {
  1789. name: "isValidLocale"
  1790. type: "QVariant"
  1791. Parameter { name: "localeNameOrIndex"; type: "QVariant" }
  1792. Parameter { name: "ignoreActiveLocales"; type: "QVariant" }
  1793. }
  1794. Method {
  1795. name: "getLayoutFile"
  1796. type: "QVariant"
  1797. Parameter { name: "localeName"; type: "QVariant" }
  1798. Parameter { name: "layoutType"; type: "QVariant" }
  1799. }
  1800. Method {
  1801. name: "getFallbackFile"
  1802. type: "QVariant"
  1803. Parameter { name: "localeName"; type: "QVariant" }
  1804. Parameter { name: "layoutType"; type: "QVariant" }
  1805. }
  1806. Method {
  1807. name: "layoutExists"
  1808. type: "QVariant"
  1809. Parameter { name: "localeName"; type: "QVariant" }
  1810. Parameter { name: "layoutType"; type: "QVariant" }
  1811. }
  1812. Method {
  1813. name: "findLayout"
  1814. type: "QVariant"
  1815. Parameter { name: "localeName"; type: "QVariant" }
  1816. Parameter { name: "layoutType"; type: "QVariant" }
  1817. }
  1818. Method { name: "isHandwritingAvailable"; type: "QVariant" }
  1819. Method {
  1820. name: "setHandwritingMode"
  1821. type: "QVariant"
  1822. Parameter { name: "enabled"; type: "QVariant" }
  1823. Parameter { name: "resetInputMode"; type: "QVariant" }
  1824. }
  1825. }
  1826. Component {
  1827. prototype: "QQuickColumnLayout"
  1828. name: "QtQuick.VirtualKeyboard/KeyboardColumn 1.0"
  1829. exports: ["QtQuick.VirtualKeyboard/KeyboardColumn 1.0"]
  1830. exportMetaObjectRevisions: [0]
  1831. isComposite: true
  1832. defaultProperty: "data"
  1833. Property { name: "keyWeight"; type: "double" }
  1834. Property { name: "smallTextVisible"; type: "bool" }
  1835. }
  1836. Component {
  1837. prototype: "QQuickColumnLayout"
  1838. name: "QtQuick.VirtualKeyboard/KeyboardColumn 2.0"
  1839. exports: ["QtQuick.VirtualKeyboard/KeyboardColumn 2.0"]
  1840. exportMetaObjectRevisions: [0]
  1841. isComposite: true
  1842. defaultProperty: "data"
  1843. Property { name: "keyWeight"; type: "double" }
  1844. Property { name: "smallTextVisible"; type: "bool" }
  1845. }
  1846. Component {
  1847. prototype: "QQuickColumnLayout"
  1848. name: "QtQuick.VirtualKeyboard/KeyboardLayout 1.0"
  1849. exports: ["QtQuick.VirtualKeyboard/KeyboardLayout 1.0"]
  1850. exportMetaObjectRevisions: [0]
  1851. isComposite: true
  1852. defaultProperty: "data"
  1853. Property { name: "inputMethod"; type: "QVariant" }
  1854. Property { name: "sharedLayouts"; type: "QVariant" }
  1855. Property { name: "inputMode"; type: "int" }
  1856. Property { name: "keyWeight"; type: "double" }
  1857. Property { name: "smallTextVisible"; type: "bool" }
  1858. Method { name: "createInputMethod"; type: "QVariant" }
  1859. }
  1860. Component {
  1861. prototype: "QQuickColumnLayout"
  1862. name: "QtQuick.VirtualKeyboard/KeyboardLayout 2.0"
  1863. exports: ["QtQuick.VirtualKeyboard/KeyboardLayout 2.0"]
  1864. exportMetaObjectRevisions: [0]
  1865. isComposite: true
  1866. defaultProperty: "data"
  1867. Property { name: "inputMethod"; type: "QVariant" }
  1868. Property { name: "sharedLayouts"; type: "QVariant" }
  1869. Property { name: "inputMode"; type: "int" }
  1870. Property { name: "keyWeight"; type: "double" }
  1871. Property { name: "smallTextVisible"; type: "bool" }
  1872. Method { name: "createInputMethod"; type: "QVariant" }
  1873. }
  1874. Component {
  1875. prototype: "QQuickLoader"
  1876. name: "QtQuick.VirtualKeyboard/KeyboardLayoutLoader 1.1"
  1877. exports: ["QtQuick.VirtualKeyboard/KeyboardLayoutLoader 1.1"]
  1878. exportMetaObjectRevisions: [1]
  1879. isComposite: true
  1880. defaultProperty: "data"
  1881. Property { name: "inputMethod"; type: "QVariant" }
  1882. Property { name: "sharedLayouts"; type: "QVariant" }
  1883. Property { name: "inputMode"; type: "int" }
  1884. Property { name: "__updateCount"; type: "int" }
  1885. Method { name: "createInputMethod"; type: "QVariant" }
  1886. }
  1887. Component {
  1888. prototype: "QQuickLoader"
  1889. name: "QtQuick.VirtualKeyboard/KeyboardLayoutLoader 2.0"
  1890. exports: ["QtQuick.VirtualKeyboard/KeyboardLayoutLoader 2.0"]
  1891. exportMetaObjectRevisions: [0]
  1892. isComposite: true
  1893. defaultProperty: "data"
  1894. Property { name: "inputMethod"; type: "QVariant" }
  1895. Property { name: "sharedLayouts"; type: "QVariant" }
  1896. Property { name: "inputMode"; type: "int" }
  1897. Property { name: "__updateCount"; type: "int" }
  1898. Method { name: "createInputMethod"; type: "QVariant" }
  1899. }
  1900. Component {
  1901. prototype: "QQuickRowLayout"
  1902. name: "QtQuick.VirtualKeyboard/KeyboardRow 1.0"
  1903. exports: ["QtQuick.VirtualKeyboard/KeyboardRow 1.0"]
  1904. exportMetaObjectRevisions: [0]
  1905. isComposite: true
  1906. defaultProperty: "data"
  1907. Property { name: "keyWeight"; type: "double" }
  1908. Property { name: "smallTextVisible"; type: "bool" }
  1909. }
  1910. Component {
  1911. prototype: "QQuickRowLayout"
  1912. name: "QtQuick.VirtualKeyboard/KeyboardRow 2.0"
  1913. exports: ["QtQuick.VirtualKeyboard/KeyboardRow 2.0"]
  1914. exportMetaObjectRevisions: [0]
  1915. isComposite: true
  1916. defaultProperty: "data"
  1917. Property { name: "keyWeight"; type: "double" }
  1918. Property { name: "smallTextVisible"; type: "bool" }
  1919. }
  1920. Component {
  1921. prototype: "QQuickItem"
  1922. name: "QtQuick.VirtualKeyboard/ModeKey 2.0"
  1923. exports: ["QtQuick.VirtualKeyboard/ModeKey 2.0"]
  1924. exportMetaObjectRevisions: [0]
  1925. isComposite: true
  1926. defaultProperty: "data"
  1927. Property { name: "mode"; type: "bool" }
  1928. Property { name: "weight"; type: "double" }
  1929. Property { name: "text"; type: "string" }
  1930. Property { name: "displayText"; type: "string" }
  1931. Property { name: "smallText"; type: "string" }
  1932. Property { name: "smallTextVisible"; type: "bool" }
  1933. Property { name: "alternativeKeys"; type: "QVariant" }
  1934. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  1935. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  1936. Property { name: "key"; type: "int" }
  1937. Property { name: "noKeyEvent"; type: "bool" }
  1938. Property { name: "active"; type: "bool" }
  1939. Property { name: "noModifier"; type: "bool" }
  1940. Property { name: "repeat"; type: "bool" }
  1941. Property { name: "highlighted"; type: "bool" }
  1942. Property { name: "functionKey"; type: "bool" }
  1943. Property { name: "showPreview"; type: "bool" }
  1944. Property { name: "pressed"; type: "bool" }
  1945. Property { name: "uppercased"; type: "bool" }
  1946. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  1947. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  1948. Signal { name: "clicked" }
  1949. }
  1950. Component {
  1951. prototype: "QQuickItem"
  1952. name: "QtQuick.VirtualKeyboard/MultiSoundEffect 1.1"
  1953. exports: ["QtQuick.VirtualKeyboard/MultiSoundEffect 1.1"]
  1954. exportMetaObjectRevisions: [1]
  1955. isComposite: true
  1956. defaultProperty: "data"
  1957. Property { name: "source"; type: "QUrl" }
  1958. Property { name: "maxInstances"; type: "int" }
  1959. Property { name: "__cachedInstances"; type: "QVariant" }
  1960. Property { name: "__currentIndex"; type: "int" }
  1961. Signal {
  1962. name: "playingChanged"
  1963. Parameter { name: "source"; type: "QUrl" }
  1964. Parameter { name: "playing"; type: "bool" }
  1965. }
  1966. Method { name: "play"; type: "QVariant" }
  1967. }
  1968. Component {
  1969. prototype: "QQuickItem"
  1970. name: "QtQuick.VirtualKeyboard/MultiSoundEffect 2.0"
  1971. exports: ["QtQuick.VirtualKeyboard/MultiSoundEffect 2.0"]
  1972. exportMetaObjectRevisions: [0]
  1973. isComposite: true
  1974. defaultProperty: "data"
  1975. Property { name: "source"; type: "QUrl" }
  1976. Property { name: "maxInstances"; type: "int" }
  1977. Property { name: "__cachedInstances"; type: "QVariant" }
  1978. Property { name: "__currentIndex"; type: "int" }
  1979. Signal {
  1980. name: "playingChanged"
  1981. Parameter { name: "source"; type: "QUrl" }
  1982. Parameter { name: "playing"; type: "bool" }
  1983. }
  1984. Method { name: "play"; type: "QVariant" }
  1985. }
  1986. Component {
  1987. prototype: "QObject"
  1988. name: "QtQuick.VirtualKeyboard/MultitapInputMethod 1.0"
  1989. exports: ["QtQuick.VirtualKeyboard/MultitapInputMethod 1.0"]
  1990. exportMetaObjectRevisions: [0]
  1991. isComposite: true
  1992. Property { name: "multitapSequence"; type: "string" }
  1993. Property { name: "multitapIndex"; type: "int" }
  1994. Property { name: "multiTapTimer"; type: "QVariant" }
  1995. Method {
  1996. name: "inputModes"
  1997. type: "QVariant"
  1998. Parameter { name: "locale"; type: "QVariant" }
  1999. }
  2000. Method {
  2001. name: "setInputMode"
  2002. type: "QVariant"
  2003. Parameter { name: "locale"; type: "QVariant" }
  2004. Parameter { name: "inputMode"; type: "QVariant" }
  2005. }
  2006. Method {
  2007. name: "setTextCase"
  2008. type: "QVariant"
  2009. Parameter { name: "textCase"; type: "QVariant" }
  2010. }
  2011. Method { name: "reset"; type: "QVariant" }
  2012. Method { name: "update"; type: "QVariant" }
  2013. Method {
  2014. name: "keyEvent"
  2015. type: "QVariant"
  2016. Parameter { name: "key"; type: "QVariant" }
  2017. Parameter { name: "text"; type: "QVariant" }
  2018. Parameter { name: "modifiers"; type: "QVariant" }
  2019. }
  2020. Method { name: "selectionLists"; type: "QVariant" }
  2021. Method {
  2022. name: "selectionListItemCount"
  2023. type: "QVariant"
  2024. Parameter { name: "type"; type: "QVariant" }
  2025. }
  2026. Method {
  2027. name: "selectionListData"
  2028. type: "QVariant"
  2029. Parameter { name: "type"; type: "QVariant" }
  2030. Parameter { name: "index"; type: "QVariant" }
  2031. Parameter { name: "role"; type: "QVariant" }
  2032. }
  2033. Method {
  2034. name: "selectionListItemSelected"
  2035. type: "QVariant"
  2036. Parameter { name: "type"; type: "QVariant" }
  2037. Parameter { name: "index"; type: "QVariant" }
  2038. }
  2039. Property {
  2040. name: "inputContext"
  2041. type: "QVirtualKeyboardInputContext"
  2042. isReadonly: true
  2043. isPointer: true
  2044. }
  2045. Property {
  2046. name: "inputEngine"
  2047. type: "QVirtualKeyboardInputEngine"
  2048. isReadonly: true
  2049. isPointer: true
  2050. }
  2051. Signal {
  2052. name: "selectionListChanged"
  2053. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  2054. }
  2055. Signal {
  2056. name: "selectionListActiveItemChanged"
  2057. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  2058. Parameter { name: "index"; type: "int" }
  2059. }
  2060. Signal { name: "selectionListsChanged" }
  2061. }
  2062. Component {
  2063. prototype: "QObject"
  2064. name: "QtQuick.VirtualKeyboard/MultitapInputMethod 2.0"
  2065. exports: ["QtQuick.VirtualKeyboard/MultitapInputMethod 2.0"]
  2066. exportMetaObjectRevisions: [0]
  2067. isComposite: true
  2068. Property { name: "multitapSequence"; type: "string" }
  2069. Property { name: "multitapIndex"; type: "int" }
  2070. Property { name: "multiTapTimer"; type: "QVariant" }
  2071. Method {
  2072. name: "inputModes"
  2073. type: "QVariant"
  2074. Parameter { name: "locale"; type: "QVariant" }
  2075. }
  2076. Method {
  2077. name: "setInputMode"
  2078. type: "QVariant"
  2079. Parameter { name: "locale"; type: "QVariant" }
  2080. Parameter { name: "inputMode"; type: "QVariant" }
  2081. }
  2082. Method {
  2083. name: "setTextCase"
  2084. type: "QVariant"
  2085. Parameter { name: "textCase"; type: "QVariant" }
  2086. }
  2087. Method { name: "reset"; type: "QVariant" }
  2088. Method { name: "update"; type: "QVariant" }
  2089. Method {
  2090. name: "keyEvent"
  2091. type: "QVariant"
  2092. Parameter { name: "key"; type: "QVariant" }
  2093. Parameter { name: "text"; type: "QVariant" }
  2094. Parameter { name: "modifiers"; type: "QVariant" }
  2095. }
  2096. Method { name: "selectionLists"; type: "QVariant" }
  2097. Method {
  2098. name: "selectionListItemCount"
  2099. type: "QVariant"
  2100. Parameter { name: "type"; type: "QVariant" }
  2101. }
  2102. Method {
  2103. name: "selectionListData"
  2104. type: "QVariant"
  2105. Parameter { name: "type"; type: "QVariant" }
  2106. Parameter { name: "index"; type: "QVariant" }
  2107. Parameter { name: "role"; type: "QVariant" }
  2108. }
  2109. Method {
  2110. name: "selectionListItemSelected"
  2111. type: "QVariant"
  2112. Parameter { name: "type"; type: "QVariant" }
  2113. Parameter { name: "index"; type: "QVariant" }
  2114. }
  2115. Property {
  2116. name: "inputContext"
  2117. type: "QVirtualKeyboardInputContext"
  2118. isReadonly: true
  2119. isPointer: true
  2120. }
  2121. Property {
  2122. name: "inputEngine"
  2123. type: "QVirtualKeyboardInputEngine"
  2124. isReadonly: true
  2125. isPointer: true
  2126. }
  2127. Signal {
  2128. name: "selectionListChanged"
  2129. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  2130. }
  2131. Signal {
  2132. name: "selectionListActiveItemChanged"
  2133. Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
  2134. Parameter { name: "index"; type: "int" }
  2135. }
  2136. Signal { name: "selectionListsChanged" }
  2137. }
  2138. Component {
  2139. prototype: "QQuickItem"
  2140. name: "QtQuick.VirtualKeyboard/NumberKey 1.0"
  2141. exports: ["QtQuick.VirtualKeyboard/NumberKey 1.0"]
  2142. exportMetaObjectRevisions: [0]
  2143. isComposite: true
  2144. defaultProperty: "data"
  2145. Property { name: "weight"; type: "double" }
  2146. Property { name: "text"; type: "string" }
  2147. Property { name: "displayText"; type: "string" }
  2148. Property { name: "smallText"; type: "string" }
  2149. Property { name: "smallTextVisible"; type: "bool" }
  2150. Property { name: "alternativeKeys"; type: "QVariant" }
  2151. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2152. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2153. Property { name: "key"; type: "int" }
  2154. Property { name: "noKeyEvent"; type: "bool" }
  2155. Property { name: "active"; type: "bool" }
  2156. Property { name: "noModifier"; type: "bool" }
  2157. Property { name: "repeat"; type: "bool" }
  2158. Property { name: "highlighted"; type: "bool" }
  2159. Property { name: "functionKey"; type: "bool" }
  2160. Property { name: "showPreview"; type: "bool" }
  2161. Property { name: "pressed"; type: "bool" }
  2162. Property { name: "uppercased"; type: "bool" }
  2163. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2164. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2165. Signal { name: "clicked" }
  2166. }
  2167. Component {
  2168. prototype: "QQuickItem"
  2169. name: "QtQuick.VirtualKeyboard/NumberKey 2.0"
  2170. exports: ["QtQuick.VirtualKeyboard/NumberKey 2.0"]
  2171. exportMetaObjectRevisions: [0]
  2172. isComposite: true
  2173. defaultProperty: "data"
  2174. Property { name: "weight"; type: "double" }
  2175. Property { name: "text"; type: "string" }
  2176. Property { name: "displayText"; type: "string" }
  2177. Property { name: "smallText"; type: "string" }
  2178. Property { name: "smallTextVisible"; type: "bool" }
  2179. Property { name: "alternativeKeys"; type: "QVariant" }
  2180. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2181. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2182. Property { name: "key"; type: "int" }
  2183. Property { name: "noKeyEvent"; type: "bool" }
  2184. Property { name: "active"; type: "bool" }
  2185. Property { name: "noModifier"; type: "bool" }
  2186. Property { name: "repeat"; type: "bool" }
  2187. Property { name: "highlighted"; type: "bool" }
  2188. Property { name: "functionKey"; type: "bool" }
  2189. Property { name: "showPreview"; type: "bool" }
  2190. Property { name: "pressed"; type: "bool" }
  2191. Property { name: "uppercased"; type: "bool" }
  2192. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2193. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2194. Signal { name: "clicked" }
  2195. }
  2196. Component {
  2197. prototype: "QQuickListView"
  2198. name: "QtQuick.VirtualKeyboard/PopupList 2.3"
  2199. exports: ["QtQuick.VirtualKeyboard/PopupList 2.3"]
  2200. exportMetaObjectRevisions: [3]
  2201. isComposite: true
  2202. defaultProperty: "data"
  2203. Property { name: "maxVisibleItems"; type: "int" }
  2204. Property { name: "preferredVisibleItems"; type: "int"; isReadonly: true }
  2205. Property { name: "contentWidth"; type: "double"; isReadonly: true }
  2206. Property { name: "background"; type: "QQmlComponent"; isPointer: true }
  2207. Property { name: "defaultHighlight"; type: "QQmlComponent"; isReadonly: true; isPointer: true }
  2208. }
  2209. Component {
  2210. prototype: "QQuickItem"
  2211. name: "QtQuick.VirtualKeyboard/SelectionControl 2.1"
  2212. exports: ["QtQuick.VirtualKeyboard/SelectionControl 2.1"]
  2213. exportMetaObjectRevisions: [1]
  2214. isComposite: true
  2215. defaultProperty: "data"
  2216. Property { name: "handleIsMoving"; type: "bool" }
  2217. Property { name: "inputContext"; type: "QVariant" }
  2218. }
  2219. Component {
  2220. prototype: "QQuickItem"
  2221. name: "QtQuick.VirtualKeyboard/ShiftKey 1.0"
  2222. exports: ["QtQuick.VirtualKeyboard/ShiftKey 1.0"]
  2223. exportMetaObjectRevisions: [0]
  2224. isComposite: true
  2225. defaultProperty: "data"
  2226. Property { name: "weight"; type: "double" }
  2227. Property { name: "text"; type: "string" }
  2228. Property { name: "displayText"; type: "string" }
  2229. Property { name: "smallText"; type: "string" }
  2230. Property { name: "smallTextVisible"; type: "bool" }
  2231. Property { name: "alternativeKeys"; type: "QVariant" }
  2232. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2233. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2234. Property { name: "key"; type: "int" }
  2235. Property { name: "noKeyEvent"; type: "bool" }
  2236. Property { name: "active"; type: "bool" }
  2237. Property { name: "noModifier"; type: "bool" }
  2238. Property { name: "repeat"; type: "bool" }
  2239. Property { name: "highlighted"; type: "bool" }
  2240. Property { name: "functionKey"; type: "bool" }
  2241. Property { name: "showPreview"; type: "bool" }
  2242. Property { name: "pressed"; type: "bool" }
  2243. Property { name: "uppercased"; type: "bool" }
  2244. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2245. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2246. Signal { name: "clicked" }
  2247. }
  2248. Component {
  2249. prototype: "QQuickItem"
  2250. name: "QtQuick.VirtualKeyboard/ShiftKey 2.0"
  2251. exports: ["QtQuick.VirtualKeyboard/ShiftKey 2.0"]
  2252. exportMetaObjectRevisions: [0]
  2253. isComposite: true
  2254. defaultProperty: "data"
  2255. Property { name: "weight"; type: "double" }
  2256. Property { name: "text"; type: "string" }
  2257. Property { name: "displayText"; type: "string" }
  2258. Property { name: "smallText"; type: "string" }
  2259. Property { name: "smallTextVisible"; type: "bool" }
  2260. Property { name: "alternativeKeys"; type: "QVariant" }
  2261. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2262. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2263. Property { name: "key"; type: "int" }
  2264. Property { name: "noKeyEvent"; type: "bool" }
  2265. Property { name: "active"; type: "bool" }
  2266. Property { name: "noModifier"; type: "bool" }
  2267. Property { name: "repeat"; type: "bool" }
  2268. Property { name: "highlighted"; type: "bool" }
  2269. Property { name: "functionKey"; type: "bool" }
  2270. Property { name: "showPreview"; type: "bool" }
  2271. Property { name: "pressed"; type: "bool" }
  2272. Property { name: "uppercased"; type: "bool" }
  2273. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2274. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2275. Signal { name: "clicked" }
  2276. }
  2277. Component {
  2278. prototype: "QQuickItem"
  2279. name: "QtQuick.VirtualKeyboard/SpaceKey 1.0"
  2280. exports: ["QtQuick.VirtualKeyboard/SpaceKey 1.0"]
  2281. exportMetaObjectRevisions: [0]
  2282. isComposite: true
  2283. defaultProperty: "data"
  2284. Property { name: "weight"; type: "double" }
  2285. Property { name: "text"; type: "string" }
  2286. Property { name: "displayText"; type: "string" }
  2287. Property { name: "smallText"; type: "string" }
  2288. Property { name: "smallTextVisible"; type: "bool" }
  2289. Property { name: "alternativeKeys"; type: "QVariant" }
  2290. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2291. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2292. Property { name: "key"; type: "int" }
  2293. Property { name: "noKeyEvent"; type: "bool" }
  2294. Property { name: "active"; type: "bool" }
  2295. Property { name: "noModifier"; type: "bool" }
  2296. Property { name: "repeat"; type: "bool" }
  2297. Property { name: "highlighted"; type: "bool" }
  2298. Property { name: "functionKey"; type: "bool" }
  2299. Property { name: "showPreview"; type: "bool" }
  2300. Property { name: "pressed"; type: "bool" }
  2301. Property { name: "uppercased"; type: "bool" }
  2302. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2303. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2304. Signal { name: "clicked" }
  2305. }
  2306. Component {
  2307. prototype: "QQuickItem"
  2308. name: "QtQuick.VirtualKeyboard/SpaceKey 2.0"
  2309. exports: ["QtQuick.VirtualKeyboard/SpaceKey 2.0"]
  2310. exportMetaObjectRevisions: [0]
  2311. isComposite: true
  2312. defaultProperty: "data"
  2313. Property { name: "weight"; type: "double" }
  2314. Property { name: "text"; type: "string" }
  2315. Property { name: "displayText"; type: "string" }
  2316. Property { name: "smallText"; type: "string" }
  2317. Property { name: "smallTextVisible"; type: "bool" }
  2318. Property { name: "alternativeKeys"; type: "QVariant" }
  2319. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2320. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2321. Property { name: "key"; type: "int" }
  2322. Property { name: "noKeyEvent"; type: "bool" }
  2323. Property { name: "active"; type: "bool" }
  2324. Property { name: "noModifier"; type: "bool" }
  2325. Property { name: "repeat"; type: "bool" }
  2326. Property { name: "highlighted"; type: "bool" }
  2327. Property { name: "functionKey"; type: "bool" }
  2328. Property { name: "showPreview"; type: "bool" }
  2329. Property { name: "pressed"; type: "bool" }
  2330. Property { name: "uppercased"; type: "bool" }
  2331. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2332. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2333. Signal { name: "clicked" }
  2334. }
  2335. Component {
  2336. prototype: "QQuickItem"
  2337. name: "QtQuick.VirtualKeyboard/SymbolModeKey 1.0"
  2338. exports: ["QtQuick.VirtualKeyboard/SymbolModeKey 1.0"]
  2339. exportMetaObjectRevisions: [0]
  2340. isComposite: true
  2341. defaultProperty: "data"
  2342. Property { name: "weight"; type: "double" }
  2343. Property { name: "text"; type: "string" }
  2344. Property { name: "displayText"; type: "string" }
  2345. Property { name: "smallText"; type: "string" }
  2346. Property { name: "smallTextVisible"; type: "bool" }
  2347. Property { name: "alternativeKeys"; type: "QVariant" }
  2348. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2349. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2350. Property { name: "key"; type: "int" }
  2351. Property { name: "noKeyEvent"; type: "bool" }
  2352. Property { name: "active"; type: "bool" }
  2353. Property { name: "noModifier"; type: "bool" }
  2354. Property { name: "repeat"; type: "bool" }
  2355. Property { name: "highlighted"; type: "bool" }
  2356. Property { name: "functionKey"; type: "bool" }
  2357. Property { name: "showPreview"; type: "bool" }
  2358. Property { name: "pressed"; type: "bool" }
  2359. Property { name: "uppercased"; type: "bool" }
  2360. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2361. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2362. Signal { name: "clicked" }
  2363. }
  2364. Component {
  2365. prototype: "QQuickItem"
  2366. name: "QtQuick.VirtualKeyboard/SymbolModeKey 2.0"
  2367. exports: ["QtQuick.VirtualKeyboard/SymbolModeKey 2.0"]
  2368. exportMetaObjectRevisions: [0]
  2369. isComposite: true
  2370. defaultProperty: "data"
  2371. Property { name: "weight"; type: "double" }
  2372. Property { name: "text"; type: "string" }
  2373. Property { name: "displayText"; type: "string" }
  2374. Property { name: "smallText"; type: "string" }
  2375. Property { name: "smallTextVisible"; type: "bool" }
  2376. Property { name: "alternativeKeys"; type: "QVariant" }
  2377. Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
  2378. Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
  2379. Property { name: "key"; type: "int" }
  2380. Property { name: "noKeyEvent"; type: "bool" }
  2381. Property { name: "active"; type: "bool" }
  2382. Property { name: "noModifier"; type: "bool" }
  2383. Property { name: "repeat"; type: "bool" }
  2384. Property { name: "highlighted"; type: "bool" }
  2385. Property { name: "functionKey"; type: "bool" }
  2386. Property { name: "showPreview"; type: "bool" }
  2387. Property { name: "pressed"; type: "bool" }
  2388. Property { name: "uppercased"; type: "bool" }
  2389. Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
  2390. Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
  2391. Signal { name: "clicked" }
  2392. }
  2393. Component {
  2394. prototype: "QQuickMultiPointTouchArea"
  2395. name: "QtQuick.VirtualKeyboard/TraceInputArea 2.0"
  2396. exports: ["QtQuick.VirtualKeyboard/TraceInputArea 2.0"]
  2397. exportMetaObjectRevisions: [0]
  2398. isComposite: true
  2399. defaultProperty: "data"
  2400. Property { name: "patternRecognitionMode"; type: "int" }
  2401. Property { name: "horizontalRulers"; type: "QVariant" }
  2402. Property { name: "verticalRulers"; type: "QVariant" }
  2403. Property { name: "boundingBox"; type: "QRectF"; isReadonly: true }
  2404. Property { name: "canvasType"; type: "string" }
  2405. Property { name: "__traceCanvasList"; type: "QVariant" }
  2406. Property { name: "__traceCaptureDeviceInfo"; type: "QVariant" }
  2407. Property { name: "__traceScreenInfo"; type: "QVariant" }
  2408. Method {
  2409. name: "findTraceCanvasById"
  2410. type: "QVariant"
  2411. Parameter { name: "traceId"; type: "QVariant" }
  2412. }
  2413. }
  2414. Component {
  2415. prototype: "QQuickItem"
  2416. name: "QtQuick.VirtualKeyboard/TraceInputKey 2.0"
  2417. exports: ["QtQuick.VirtualKeyboard/TraceInputKey 2.0"]
  2418. exportMetaObjectRevisions: [0]
  2419. isComposite: true
  2420. defaultProperty: "data"
  2421. Property { name: "weight"; type: "double" }
  2422. Property { name: "patternRecognitionMode"; type: "int" }
  2423. Property { name: "horizontalRulers"; type: "QVariant" }
  2424. Property { name: "verticalRulers"; type: "QVariant" }
  2425. Property { name: "boundingBox"; type: "QRectF"; isReadonly: true }
  2426. Property { name: "canvasType"; type: "string" }
  2427. }
  2428. Component {
  2429. prototype: "QQuickListView"
  2430. name: "QtQuick.VirtualKeyboard/WordCandidatePopupList 2.0"
  2431. exports: ["QtQuick.VirtualKeyboard/WordCandidatePopupList 2.0"]
  2432. exportMetaObjectRevisions: [0]
  2433. isComposite: true
  2434. defaultProperty: "data"
  2435. Property { name: "preferredVisibleItems"; type: "int"; isReadonly: true }
  2436. Property { name: "flipVertical"; type: "bool"; isReadonly: true }
  2437. Property { name: "maxVisibleItems"; type: "int" }
  2438. Property { name: "contentWidth"; type: "double"; isReadonly: true }
  2439. Property { name: "background"; type: "QQmlComponent"; isPointer: true }
  2440. Property { name: "defaultHighlight"; type: "QQmlComponent"; isReadonly: true; isPointer: true }
  2441. }
  2442. }