123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445 |
- import QtQuick.tooling 1.2
- // This file describes the plugin-supplied types contained in the library.
- // It is used for QML tooling purposes only.
- //
- // This file was auto-generated by:
- // 'qmlplugindump -defaultplatform -nonrelocatable -dependencies dependencies.json QtQuick.VirtualKeyboard 2.14'
- Module {
- dependencies: [
- "Qt.labs.folderlistmodel 2.1",
- "QtQuick 2.0",
- "QtQuick.Layouts 1.0",
- "QtQuick.Window 2.2"
- ]
- Component {
- name: "QAbstractItemModel"
- prototype: "QObject"
- Enum {
- name: "LayoutChangeHint"
- values: {
- "NoLayoutChangeHint": 0,
- "VerticalSortHint": 1,
- "HorizontalSortHint": 2
- }
- }
- Enum {
- name: "CheckIndexOption"
- values: {
- "NoOption": 0,
- "IndexIsValid": 1,
- "DoNotUseParent": 2,
- "ParentIsInvalid": 4
- }
- }
- Signal {
- name: "dataChanged"
- Parameter { name: "topLeft"; type: "QModelIndex" }
- Parameter { name: "bottomRight"; type: "QModelIndex" }
- Parameter { name: "roles"; type: "QVector<int>" }
- }
- Signal {
- name: "dataChanged"
- Parameter { name: "topLeft"; type: "QModelIndex" }
- Parameter { name: "bottomRight"; type: "QModelIndex" }
- }
- Signal {
- name: "headerDataChanged"
- Parameter { name: "orientation"; type: "Qt::Orientation" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "layoutChanged"
- Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
- Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
- }
- Signal {
- name: "layoutChanged"
- Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
- }
- Signal { name: "layoutChanged" }
- Signal {
- name: "layoutAboutToBeChanged"
- Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
- Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
- }
- Signal {
- name: "layoutAboutToBeChanged"
- Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
- }
- Signal { name: "layoutAboutToBeChanged" }
- Signal {
- name: "rowsAboutToBeInserted"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "rowsInserted"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "rowsAboutToBeRemoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "rowsRemoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "columnsAboutToBeInserted"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "columnsInserted"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "columnsAboutToBeRemoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal {
- name: "columnsRemoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "first"; type: "int" }
- Parameter { name: "last"; type: "int" }
- }
- Signal { name: "modelAboutToBeReset" }
- Signal { name: "modelReset" }
- Signal {
- name: "rowsAboutToBeMoved"
- Parameter { name: "sourceParent"; type: "QModelIndex" }
- Parameter { name: "sourceStart"; type: "int" }
- Parameter { name: "sourceEnd"; type: "int" }
- Parameter { name: "destinationParent"; type: "QModelIndex" }
- Parameter { name: "destinationRow"; type: "int" }
- }
- Signal {
- name: "rowsMoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "start"; type: "int" }
- Parameter { name: "end"; type: "int" }
- Parameter { name: "destination"; type: "QModelIndex" }
- Parameter { name: "row"; type: "int" }
- }
- Signal {
- name: "columnsAboutToBeMoved"
- Parameter { name: "sourceParent"; type: "QModelIndex" }
- Parameter { name: "sourceStart"; type: "int" }
- Parameter { name: "sourceEnd"; type: "int" }
- Parameter { name: "destinationParent"; type: "QModelIndex" }
- Parameter { name: "destinationColumn"; type: "int" }
- }
- Signal {
- name: "columnsMoved"
- Parameter { name: "parent"; type: "QModelIndex" }
- Parameter { name: "start"; type: "int" }
- Parameter { name: "end"; type: "int" }
- Parameter { name: "destination"; type: "QModelIndex" }
- Parameter { name: "column"; type: "int" }
- }
- Method { name: "submit"; type: "bool" }
- Method { name: "revert" }
- Method {
- name: "hasIndex"
- type: "bool"
- Parameter { name: "row"; type: "int" }
- Parameter { name: "column"; type: "int" }
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method {
- name: "hasIndex"
- type: "bool"
- Parameter { name: "row"; type: "int" }
- Parameter { name: "column"; type: "int" }
- }
- Method {
- name: "index"
- type: "QModelIndex"
- Parameter { name: "row"; type: "int" }
- Parameter { name: "column"; type: "int" }
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method {
- name: "index"
- type: "QModelIndex"
- Parameter { name: "row"; type: "int" }
- Parameter { name: "column"; type: "int" }
- }
- Method {
- name: "parent"
- type: "QModelIndex"
- Parameter { name: "child"; type: "QModelIndex" }
- }
- Method {
- name: "sibling"
- type: "QModelIndex"
- Parameter { name: "row"; type: "int" }
- Parameter { name: "column"; type: "int" }
- Parameter { name: "idx"; type: "QModelIndex" }
- }
- Method {
- name: "rowCount"
- type: "int"
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method { name: "rowCount"; type: "int" }
- Method {
- name: "columnCount"
- type: "int"
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method { name: "columnCount"; type: "int" }
- Method {
- name: "hasChildren"
- type: "bool"
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method { name: "hasChildren"; type: "bool" }
- Method {
- name: "data"
- type: "QVariant"
- Parameter { name: "index"; type: "QModelIndex" }
- Parameter { name: "role"; type: "int" }
- }
- Method {
- name: "data"
- type: "QVariant"
- Parameter { name: "index"; type: "QModelIndex" }
- }
- Method {
- name: "setData"
- type: "bool"
- Parameter { name: "index"; type: "QModelIndex" }
- Parameter { name: "value"; type: "QVariant" }
- Parameter { name: "role"; type: "int" }
- }
- Method {
- name: "setData"
- type: "bool"
- Parameter { name: "index"; type: "QModelIndex" }
- Parameter { name: "value"; type: "QVariant" }
- }
- Method {
- name: "headerData"
- type: "QVariant"
- Parameter { name: "section"; type: "int" }
- Parameter { name: "orientation"; type: "Qt::Orientation" }
- Parameter { name: "role"; type: "int" }
- }
- Method {
- name: "headerData"
- type: "QVariant"
- Parameter { name: "section"; type: "int" }
- Parameter { name: "orientation"; type: "Qt::Orientation" }
- }
- Method {
- name: "fetchMore"
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method {
- name: "canFetchMore"
- type: "bool"
- Parameter { name: "parent"; type: "QModelIndex" }
- }
- Method {
- name: "flags"
- type: "Qt::ItemFlags"
- Parameter { name: "index"; type: "QModelIndex" }
- }
- Method {
- name: "match"
- type: "QModelIndexList"
- Parameter { name: "start"; type: "QModelIndex" }
- Parameter { name: "role"; type: "int" }
- Parameter { name: "value"; type: "QVariant" }
- Parameter { name: "hits"; type: "int" }
- Parameter { name: "flags"; type: "Qt::MatchFlags" }
- }
- Method {
- name: "match"
- type: "QModelIndexList"
- Parameter { name: "start"; type: "QModelIndex" }
- Parameter { name: "role"; type: "int" }
- Parameter { name: "value"; type: "QVariant" }
- Parameter { name: "hits"; type: "int" }
- }
- Method {
- name: "match"
- type: "QModelIndexList"
- Parameter { name: "start"; type: "QModelIndex" }
- Parameter { name: "role"; type: "int" }
- Parameter { name: "value"; type: "QVariant" }
- }
- }
- Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
- Component {
- name: "QVirtualKeyboardAbstractInputMethod"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/AbstractInputMethod 1.0",
- "QtQuick.VirtualKeyboard/AbstractInputMethod 2.0"
- ]
- isCreatable: false
- exportMetaObjectRevisions: [0, 0]
- Signal {
- name: "selectionListChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- }
- Signal {
- name: "selectionListActiveItemChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- Parameter { name: "index"; type: "int" }
- }
- Signal { name: "selectionListsChanged" }
- Method { name: "reset" }
- Method { name: "update" }
- }
- Component {
- name: "QVirtualKeyboardInputContext"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/InputContext 1.0",
- "QtQuick.VirtualKeyboard/InputContext 2.0"
- ]
- isCreatable: false
- isSingleton: true
- exportMetaObjectRevisions: [0, 0]
- Property { name: "shift"; type: "bool"; isReadonly: true }
- Property { name: "shiftActive"; revision: 4; type: "bool"; isReadonly: true }
- Property { name: "capsLock"; type: "bool"; isReadonly: true }
- Property { name: "capsLockActive"; revision: 4; type: "bool"; isReadonly: true }
- Property { name: "uppercase"; type: "bool"; isReadonly: true }
- Property { name: "anchorPosition"; type: "int"; isReadonly: true }
- Property { name: "cursorPosition"; type: "int"; isReadonly: true }
- Property { name: "inputMethodHints"; type: "Qt::InputMethodHints"; isReadonly: true }
- Property { name: "preeditText"; type: "string" }
- Property { name: "surroundingText"; type: "string"; isReadonly: true }
- Property { name: "selectedText"; type: "string"; isReadonly: true }
- Property { name: "anchorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "animating"; type: "bool" }
- Property { name: "locale"; type: "string"; isReadonly: true }
- Property { name: "inputItem"; type: "QObject"; isReadonly: true; isPointer: true }
- Property {
- name: "inputEngine"
- type: "QVirtualKeyboardInputEngine"
- isReadonly: true
- isPointer: true
- }
- Property { name: "selectionControlVisible"; type: "bool"; isReadonly: true }
- Property { name: "anchorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
- Property { name: "cursorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
- Property {
- name: "priv"
- type: "QVirtualKeyboardInputContextPrivate"
- isReadonly: true
- isPointer: true
- }
- Method {
- name: "sendKeyClick"
- Parameter { name: "key"; type: "int" }
- Parameter { name: "text"; type: "string" }
- Parameter { name: "modifiers"; type: "int" }
- }
- Method {
- name: "sendKeyClick"
- Parameter { name: "key"; type: "int" }
- Parameter { name: "text"; type: "string" }
- }
- Method { name: "commit" }
- Method {
- name: "commit"
- Parameter { name: "text"; type: "string" }
- Parameter { name: "replaceFrom"; type: "int" }
- Parameter { name: "replaceLength"; type: "int" }
- }
- Method {
- name: "commit"
- Parameter { name: "text"; type: "string" }
- Parameter { name: "replaceFrom"; type: "int" }
- }
- Method {
- name: "commit"
- Parameter { name: "text"; type: "string" }
- }
- Method { name: "clear" }
- Method {
- name: "setSelectionOnFocusObject"
- Parameter { name: "anchorPos"; type: "QPointF" }
- Parameter { name: "cursorPos"; type: "QPointF" }
- }
- }
- Component {
- name: "QVirtualKeyboardInputContextPrivate"
- prototype: "QObject"
- exports: ["QtQuick.VirtualKeyboard/InputContextPrivate 1.0"]
- isCreatable: false
- exportMetaObjectRevisions: [0]
- Enum {
- name: "State"
- values: {
- "Reselect": 1,
- "InputMethodEvent": 2,
- "KeyEvent": 4,
- "InputMethodClick": 8,
- "SyncShadowInput": 16
- }
- }
- Property { name: "focus"; type: "bool" }
- Property { name: "keyboardRectangle"; type: "QRectF" }
- Property { name: "previewRectangle"; type: "QRectF" }
- Property { name: "previewVisible"; type: "bool" }
- Property { name: "locale"; type: "string" }
- Property { name: "inputItem"; type: "QObject"; isReadonly: true; isPointer: true }
- Property {
- name: "shiftHandler"
- type: "QtVirtualKeyboard::ShiftHandler"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "shadow"
- type: "QtVirtualKeyboard::ShadowInputContext"
- isReadonly: true
- isPointer: true
- }
- Property { name: "inputMethods"; type: "QStringList"; isReadonly: true }
- Signal {
- name: "navigationKeyPressed"
- Parameter { name: "key"; type: "int" }
- Parameter { name: "isAutoRepeat"; type: "bool" }
- }
- Signal {
- name: "navigationKeyReleased"
- Parameter { name: "key"; type: "int" }
- Parameter { name: "isAutoRepeat"; type: "bool" }
- }
- Method { name: "hideInputPanel" }
- Method {
- name: "updateAvailableLocales"
- Parameter { name: "availableLocales"; type: "QStringList" }
- }
- Method {
- name: "forceCursorPosition"
- Parameter { name: "anchorPosition"; type: "int" }
- Parameter { name: "cursorPosition"; type: "int" }
- }
- Method {
- name: "fileExists"
- type: "bool"
- Parameter { name: "fileUrl"; type: "QUrl" }
- }
- Method {
- name: "hasEnterKeyAction"
- type: "bool"
- Parameter { name: "item"; type: "QObject"; isPointer: true }
- }
- }
- Component {
- name: "QVirtualKeyboardInputEngine"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/InputEngine 1.0",
- "QtQuick.VirtualKeyboard/InputEngine 2.0"
- ]
- isCreatable: false
- exportMetaObjectRevisions: [0, 0]
- Enum {
- name: "TextCase"
- values: {
- "Lower": 0,
- "Upper": 1
- }
- }
- Enum {
- name: "InputMode"
- values: {
- "Latin": 0,
- "Numeric": 1,
- "Dialable": 2,
- "Pinyin": 3,
- "Cangjie": 4,
- "Zhuyin": 5,
- "Hangul": 6,
- "Hiragana": 7,
- "Katakana": 8,
- "FullwidthLatin": 9,
- "Greek": 10,
- "Cyrillic": 11,
- "Arabic": 12,
- "Hebrew": 13,
- "ChineseHandwriting": 14,
- "JapaneseHandwriting": 15,
- "KoreanHandwriting": 16,
- "Thai": 17
- }
- }
- Enum {
- name: "PatternRecognitionMode"
- values: {
- "None": 0,
- "PatternRecognitionDisabled": 0,
- "Handwriting": 1,
- "HandwritingRecoginition": 1
- }
- }
- Enum {
- name: "ReselectFlag"
- values: {
- "WordBeforeCursor": 1,
- "WordAfterCursor": 2,
- "WordAtCursor": 3
- }
- }
- Property { name: "activeKey"; type: "Qt::Key"; isReadonly: true }
- Property { name: "previousKey"; type: "Qt::Key"; isReadonly: true }
- Property { name: "inputMethod"; type: "QVirtualKeyboardAbstractInputMethod"; isPointer: true }
- Property { name: "inputModes"; type: "QList<int>"; isReadonly: true }
- Property { name: "inputMode"; type: "InputMode" }
- Property { name: "patternRecognitionModes"; type: "QList<int>"; isReadonly: true }
- Property {
- name: "wordCandidateListModel"
- type: "QVirtualKeyboardSelectionListModel"
- isReadonly: true
- isPointer: true
- }
- Property { name: "wordCandidateListVisibleHint"; type: "bool"; isReadonly: true }
- Signal {
- name: "virtualKeyClicked"
- Parameter { name: "key"; type: "Qt::Key" }
- Parameter { name: "text"; type: "string" }
- Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
- Parameter { name: "isAutoRepeat"; type: "bool" }
- }
- Signal {
- name: "activeKeyChanged"
- Parameter { name: "key"; type: "Qt::Key" }
- }
- Signal {
- name: "previousKeyChanged"
- Parameter { name: "key"; type: "Qt::Key" }
- }
- Signal { name: "inputMethodReset" }
- Signal { name: "inputMethodUpdate" }
- Method {
- name: "virtualKeyPress"
- type: "bool"
- Parameter { name: "key"; type: "Qt::Key" }
- Parameter { name: "text"; type: "string" }
- Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
- Parameter { name: "repeat"; type: "bool" }
- }
- Method { name: "virtualKeyCancel" }
- Method {
- name: "virtualKeyRelease"
- type: "bool"
- Parameter { name: "key"; type: "Qt::Key" }
- Parameter { name: "text"; type: "string" }
- Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
- }
- Method {
- name: "virtualKeyClick"
- type: "bool"
- Parameter { name: "key"; type: "Qt::Key" }
- Parameter { name: "text"; type: "string" }
- Parameter { name: "modifiers"; type: "Qt::KeyboardModifiers" }
- }
- Method {
- name: "traceBegin"
- type: "QVirtualKeyboardTrace*"
- Parameter { name: "traceId"; type: "int" }
- Parameter { name: "patternRecognitionMode"; type: "PatternRecognitionMode" }
- Parameter { name: "traceCaptureDeviceInfo"; type: "QVariantMap" }
- Parameter { name: "traceScreenInfo"; type: "QVariantMap" }
- }
- Method {
- name: "traceEnd"
- type: "bool"
- Parameter { name: "trace"; type: "QVirtualKeyboardTrace"; isPointer: true }
- }
- Method {
- name: "reselect"
- type: "bool"
- Parameter { name: "cursorPosition"; type: "int" }
- Parameter { name: "reselectFlags"; type: "ReselectFlags" }
- }
- }
- Component {
- name: "QVirtualKeyboardSelectionListModel"
- prototype: "QAbstractListModel"
- exports: [
- "QtQuick.VirtualKeyboard/SelectionListModel 1.0",
- "QtQuick.VirtualKeyboard/SelectionListModel 2.0"
- ]
- isCreatable: false
- exportMetaObjectRevisions: [0, 0]
- Enum {
- name: "Type"
- values: {
- "WordCandidateList": 0
- }
- }
- Enum {
- name: "Role"
- values: {
- "Display": 0,
- "DisplayRole": 0,
- "WordCompletionLength": 257,
- "WordCompletionLengthRole": 257,
- "Dictionary": 258,
- "CanRemoveSuggestion": 259
- }
- }
- Enum {
- name: "DictionaryType"
- values: {
- "Default": 0,
- "User": 1
- }
- }
- Property { name: "count"; type: "int"; isReadonly: true }
- Signal {
- name: "activeItemChanged"
- Parameter { name: "index"; type: "int" }
- }
- Signal {
- name: "itemSelected"
- Parameter { name: "index"; type: "int" }
- }
- Method {
- name: "selectItem"
- Parameter { name: "index"; type: "int" }
- }
- Method {
- name: "removeItem"
- Parameter { name: "index"; type: "int" }
- }
- Method {
- name: "dataAt"
- type: "QVariant"
- Parameter { name: "index"; type: "int" }
- Parameter { name: "role"; type: "Role" }
- }
- Method {
- name: "dataAt"
- type: "QVariant"
- Parameter { name: "index"; type: "int" }
- }
- }
- Component {
- name: "QVirtualKeyboardTrace"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/Trace 2.0",
- "QtQuick.VirtualKeyboard/Trace 2.4"
- ]
- exportMetaObjectRevisions: [0, 0]
- Property { name: "traceId"; type: "int" }
- Property { name: "channels"; type: "QStringList" }
- Property { name: "length"; type: "int"; isReadonly: true }
- Property { name: "final"; type: "bool" }
- Property { name: "canceled"; type: "bool" }
- Property { name: "opacity"; type: "double" }
- Signal {
- name: "traceIdChanged"
- Parameter { name: "traceId"; type: "int" }
- }
- Signal {
- name: "lengthChanged"
- Parameter { name: "length"; type: "int" }
- }
- Signal {
- name: "finalChanged"
- Parameter { name: "isFinal"; type: "bool" }
- }
- Signal {
- name: "canceledChanged"
- Parameter { name: "isCanceled"; type: "bool" }
- }
- Signal {
- name: "opacityChanged"
- Parameter { name: "opacity"; type: "double" }
- }
- Method {
- name: "points"
- type: "QVariantList"
- Parameter { name: "pos"; type: "int" }
- Parameter { name: "count"; type: "int" }
- }
- Method {
- name: "points"
- type: "QVariantList"
- Parameter { name: "pos"; type: "int" }
- }
- Method { name: "points"; type: "QVariantList" }
- Method {
- name: "addPoint"
- type: "int"
- Parameter { name: "point"; type: "QPointF" }
- }
- Method {
- name: "setChannelData"
- Parameter { name: "channel"; type: "string" }
- Parameter { name: "index"; type: "int" }
- Parameter { name: "data"; type: "QVariant" }
- }
- Method {
- name: "channelData"
- type: "QVariantList"
- Parameter { name: "channel"; type: "string" }
- Parameter { name: "pos"; type: "int" }
- Parameter { name: "count"; type: "int" }
- }
- Method {
- name: "channelData"
- type: "QVariantList"
- Parameter { name: "channel"; type: "string" }
- Parameter { name: "pos"; type: "int" }
- }
- Method {
- name: "channelData"
- type: "QVariantList"
- Parameter { name: "channel"; type: "string" }
- }
- }
- Component {
- name: "QtVirtualKeyboard::EnterKeyAction"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/EnterKeyAction 1.0",
- "QtQuick.VirtualKeyboard/EnterKeyAction 2.0"
- ]
- exportMetaObjectRevisions: [0, 0]
- attachedType: "QtVirtualKeyboard::EnterKeyActionAttachedType"
- Enum {
- name: "Id"
- values: {
- "None": 0,
- "Go": 1,
- "Search": 2,
- "Send": 3,
- "Next": 4,
- "Done": 5
- }
- }
- }
- Component {
- name: "QtVirtualKeyboard::EnterKeyActionAttachedType"
- prototype: "QObject"
- Property { name: "actionId"; type: "int" }
- Property { name: "label"; type: "string" }
- Property { name: "enabled"; type: "bool" }
- }
- Component {
- name: "QtVirtualKeyboard::HangulInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: [
- "QtQuick.VirtualKeyboard.Plugins/HangulInputMethod 1.3",
- "QtQuick.VirtualKeyboard.Plugins/HangulInputMethod 2.0"
- ]
- exportMetaObjectRevisions: [0, 0]
- }
- Component {
- name: "QtVirtualKeyboard::InputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: [
- "QtQuick.VirtualKeyboard/InputMethod 1.0",
- "QtQuick.VirtualKeyboard/InputMethod 2.0"
- ]
- exportMetaObjectRevisions: [0, 0]
- Property {
- name: "inputContext"
- type: "QVirtualKeyboardInputContext"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "inputEngine"
- type: "QVirtualKeyboardInputEngine"
- isReadonly: true
- isPointer: true
- }
- }
- Component {
- name: "QtVirtualKeyboard::OpenWnnInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: [
- "QtQuick.VirtualKeyboard.Plugins/JapaneseInputMethod 1.3",
- "QtQuick.VirtualKeyboard.Plugins/JapaneseInputMethod 2.0"
- ]
- exportMetaObjectRevisions: [0, 0]
- }
- Component {
- name: "QtVirtualKeyboard::PinyinInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: [
- "QtQuick.VirtualKeyboard.Plugins/PinyinInputMethod 1.1",
- "QtQuick.VirtualKeyboard.Plugins/PinyinInputMethod 2.0"
- ]
- exportMetaObjectRevisions: [0, 0]
- }
- Component {
- name: "QtVirtualKeyboard::PlainInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: [
- "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 1.0",
- "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 2.0",
- "QtQuick.VirtualKeyboard.Plugins/PlainInputMethod 2.3"
- ]
- exportMetaObjectRevisions: [0, 0, 0]
- }
- Component {
- name: "QtVirtualKeyboard::ShadowInputContext"
- prototype: "QObject"
- exports: ["QtQuick.VirtualKeyboard/ShadowInputContext 2.2"]
- isCreatable: false
- exportMetaObjectRevisions: [0]
- Property { name: "inputItem"; type: "QObject"; isPointer: true }
- Property { name: "anchorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "anchorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
- Property { name: "cursorRectIntersectsClipRect"; type: "bool"; isReadonly: true }
- Property { name: "selectionControlVisible"; type: "bool"; isReadonly: true }
- Method {
- name: "setSelectionOnFocusObject"
- Parameter { name: "anchorPos"; type: "QPointF" }
- Parameter { name: "cursorPos"; type: "QPointF" }
- }
- Method { name: "updateSelectionProperties" }
- }
- Component {
- name: "QtVirtualKeyboard::ShiftHandler"
- prototype: "QObject"
- exports: [
- "QtQuick.VirtualKeyboard/ShiftHandler 1.0",
- "QtQuick.VirtualKeyboard/ShiftHandler 2.0"
- ]
- isCreatable: false
- exportMetaObjectRevisions: [0, 0]
- Property { name: "sentenceEndingCharacters"; type: "string" }
- Property { name: "autoCapitalizationEnabled"; type: "bool"; isReadonly: true }
- Property { name: "toggleShiftEnabled"; type: "bool"; isReadonly: true }
- Property { name: "shiftActive"; type: "bool" }
- Property { name: "capsLockActive"; type: "bool" }
- Property { name: "uppercase"; type: "bool"; isReadonly: true }
- Method { name: "toggleShift" }
- Method { name: "clearToggleShiftTimer" }
- }
- Component {
- name: "QtVirtualKeyboard::TCInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: ["QtQuick.VirtualKeyboard.Plugins/TCInputMethod 2.0"]
- exportMetaObjectRevisions: [0]
- Property { name: "simplified"; type: "bool" }
- }
- Component {
- name: "QtVirtualKeyboard::ThaiInputMethod"
- prototype: "QVirtualKeyboardAbstractInputMethod"
- exports: ["QtQuick.VirtualKeyboard.Plugins/ThaiInputMethod 2.3"]
- exportMetaObjectRevisions: [0]
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/AlternativeKeys 1.0"
- exports: ["QtQuick.VirtualKeyboard/AlternativeKeys 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "highlightIndex"; type: "int" }
- Property { name: "keyCode"; type: "int" }
- Property { name: "origin"; type: "QPointF" }
- Property { name: "listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Signal { name: "clicked" }
- Method {
- name: "open"
- type: "QVariant"
- Parameter { name: "key"; type: "QVariant" }
- Parameter { name: "originX"; type: "QVariant" }
- Parameter { name: "originY"; type: "QVariant" }
- }
- Method {
- name: "move"
- type: "QVariant"
- Parameter { name: "mouseX"; type: "QVariant" }
- }
- Method { name: "close"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/AlternativeKeys 2.0"
- exports: ["QtQuick.VirtualKeyboard/AlternativeKeys 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "highlightIndex"; type: "int" }
- Property { name: "keyCode"; type: "int" }
- Property { name: "origin"; type: "QPointF" }
- Property { name: "listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Signal { name: "clicked" }
- Method {
- name: "open"
- type: "QVariant"
- Parameter { name: "key"; type: "QVariant" }
- Parameter { name: "originX"; type: "QVariant" }
- Parameter { name: "originY"; type: "QVariant" }
- }
- Method {
- name: "move"
- type: "QVariant"
- Parameter { name: "mouseX"; type: "QVariant" }
- }
- Method { name: "close"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/BackspaceKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/BackspaceKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/BackspaceKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/BackspaceKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/BaseKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/BaseKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/BaseKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/BaseKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/ChangeLanguageKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/ChangeLanguageKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "customLayoutsOnly"; type: "bool" }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/ChangeLanguageKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/ChangeLanguageKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "customLayoutsOnly"; type: "bool" }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/CharacterPreviewBubble 1.0"
- exports: ["QtQuick.VirtualKeyboard/CharacterPreviewBubble 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "activeKey"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/CharacterPreviewBubble 2.0"
- exports: ["QtQuick.VirtualKeyboard/CharacterPreviewBubble 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "activeKey"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/EnterKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/EnterKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "actionId"; type: "int"; isReadonly: true }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/EnterKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/EnterKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "actionId"; type: "int"; isReadonly: true }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/FillerKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/FillerKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/FillerKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/FillerKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/HandwritingInputPanel 2.0"
- exports: ["QtQuick.VirtualKeyboard/HandwritingInputPanel 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputPanel"; type: "QVariant" }
- Property { name: "available"; type: "bool" }
- Property { name: "active"; type: "bool" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/HandwritingModeKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/HandwritingModeKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/HideKeyboardKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/HideKeyboardKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/HideKeyboardKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/HideKeyboardKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputModeKey 2.3"
- exports: ["QtQuick.VirtualKeyboard/InputModeKey 2.3"]
- exportMetaObjectRevisions: [3]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputModeNameList"; type: "QVariant" }
- Property { name: "inputModes"; type: "QVariant" }
- Property { name: "inputModeCount"; type: "int"; isReadonly: true }
- Property { name: "__inputModes"; type: "QVariant" }
- Method {
- name: "__nextInputMode"
- type: "QVariant"
- Parameter { name: "inputMode"; type: "QVariant" }
- }
- Method {
- name: "__filterInputModes"
- type: "QVariant"
- Parameter { name: "inputModes"; type: "QVariant" }
- Parameter { name: "filter"; type: "QVariant" }
- }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 1.0"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 1.2"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 1.2"]
- exportMetaObjectRevisions: [2]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 1.3"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 1.3"]
- exportMetaObjectRevisions: [3]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 2.0"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 2.1"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 2.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 2.2"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 2.2"]
- exportMetaObjectRevisions: [2]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 2.3"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 2.3"]
- exportMetaObjectRevisions: [3]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/InputPanel 2.4"
- exports: ["QtQuick.VirtualKeyboard/InputPanel 2.4"]
- exportMetaObjectRevisions: [4]
- isComposite: true
- defaultProperty: "data"
- Property { name: "externalLanguageSwitchEnabled"; type: "bool" }
- Property { name: "desktopPanel"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "keyboard"; type: "Keyboard_QMLTYPE_22"; isReadonly: true; isPointer: true }
- Signal {
- name: "externalLanguageSwitch"
- Parameter { name: "localeList"; type: "QVariant" }
- Parameter { name: "currentIndex"; type: "int" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/Key 1.0"
- exports: ["QtQuick.VirtualKeyboard/Key 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/Key 2.0"
- exports: ["QtQuick.VirtualKeyboard/Key 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/Keyboard 1.0"
- exports: ["QtQuick.VirtualKeyboard/Keyboard 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "activeKey"; type: "QVariant" }
- Property { name: "activeTouchPoint"; type: "QQuickTouchPoint"; isPointer: true }
- Property { name: "localeIndex"; type: "int" }
- Property { name: "availableLocaleIndices"; type: "QVariant" }
- Property { name: "availableCustomLocaleIndices"; type: "QVariant" }
- Property { name: "locale"; type: "string" }
- Property { name: "inputLocale"; type: "string" }
- Property { name: "defaultLocaleIndex"; type: "int" }
- Property { name: "latinOnly"; type: "bool"; isReadonly: true }
- Property { name: "preferNumbers"; type: "bool"; isReadonly: true }
- Property { name: "dialableCharactersOnly"; type: "bool"; isReadonly: true }
- Property { name: "formattedNumbersOnly"; type: "bool"; isReadonly: true }
- Property { name: "digitsOnly"; type: "bool"; isReadonly: true }
- Property { name: "layout"; type: "string" }
- Property { name: "layoutType"; type: "string" }
- Property { name: "active"; type: "bool" }
- Property { name: "handwritingMode"; type: "bool" }
- Property { name: "fullScreenHandwritingMode"; type: "bool" }
- Property { name: "symbolMode"; type: "bool" }
- Property { name: "fullScreenMode"; type: "bool" }
- Property { name: "defaultInputMethod"; type: "QVariant" }
- Property { name: "plainInputMethod"; type: "QVariant" }
- Property { name: "customInputMethod"; type: "QVariant" }
- Property { name: "customInputMethodSharedLayouts"; type: "QVariant" }
- Property { name: "defaultInputMode"; type: "int" }
- Property { name: "inputMethodNeedsReset"; type: "bool" }
- Property { name: "inputModeNeedsReset"; type: "bool" }
- Property { name: "navigationModeActive"; type: "bool" }
- Property { name: "languagePopupListActive"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "wordCandidateView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Property {
- name: "shadowInputControl"
- type: "ShadowInputControl_QMLTYPE_16"
- isReadonly: true
- isPointer: true
- }
- Property { name: "soundEffect"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Method { name: "initDefaultInputMethod"; type: "QVariant" }
- Method {
- name: "showLanguagePopup"
- type: "QVariant"
- Parameter { name: "parentItem"; type: "QVariant" }
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method { name: "hideLanguagePopup"; type: "QVariant" }
- Method {
- name: "showWordCandidateContextMenu"
- type: "QVariant"
- Parameter { name: "wordCandidateIndex"; type: "QVariant" }
- }
- Method { name: "hideWordCandidateContextMenu"; type: "QVariant" }
- Method { name: "updateInputMethod"; type: "QVariant" }
- Method { name: "updateLayout"; type: "QVariant" }
- Method { name: "updateDefaultLocale"; type: "QVariant" }
- Method {
- name: "filterLocaleIndices"
- type: "QVariant"
- Parameter { name: "filterCb"; type: "QVariant" }
- }
- Method { name: "updateAvailableLocaleIndices"; type: "QVariant" }
- Method {
- name: "listLocales"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- Parameter { name: "localeNameOnly"; type: "QVariant" }
- }
- Method {
- name: "nextLocaleIndex"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "changeInputLanguage"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "canChangeInputLanguage"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "findLocale"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "defaultValue"; type: "QVariant" }
- }
- Method { name: "findFallbackIndex"; type: "QVariant" }
- Method {
- name: "isValidLocale"
- type: "QVariant"
- Parameter { name: "localeNameOrIndex"; type: "QVariant" }
- Parameter { name: "ignoreActiveLocales"; type: "QVariant" }
- }
- Method {
- name: "getLayoutFile"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "getFallbackFile"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "layoutExists"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "findLayout"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method { name: "isHandwritingAvailable"; type: "QVariant" }
- Method {
- name: "setHandwritingMode"
- type: "QVariant"
- Parameter { name: "enabled"; type: "QVariant" }
- Parameter { name: "resetInputMode"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/Keyboard 2.0"
- exports: ["QtQuick.VirtualKeyboard/Keyboard 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "activeKey"; type: "QVariant" }
- Property { name: "activeTouchPoint"; type: "QQuickTouchPoint"; isPointer: true }
- Property { name: "localeIndex"; type: "int" }
- Property { name: "availableLocaleIndices"; type: "QVariant" }
- Property { name: "availableCustomLocaleIndices"; type: "QVariant" }
- Property { name: "locale"; type: "string" }
- Property { name: "inputLocale"; type: "string" }
- Property { name: "defaultLocaleIndex"; type: "int" }
- Property { name: "latinOnly"; type: "bool"; isReadonly: true }
- Property { name: "preferNumbers"; type: "bool"; isReadonly: true }
- Property { name: "dialableCharactersOnly"; type: "bool"; isReadonly: true }
- Property { name: "formattedNumbersOnly"; type: "bool"; isReadonly: true }
- Property { name: "digitsOnly"; type: "bool"; isReadonly: true }
- Property { name: "layout"; type: "string" }
- Property { name: "layoutType"; type: "string" }
- Property { name: "active"; type: "bool" }
- Property { name: "handwritingMode"; type: "bool" }
- Property { name: "fullScreenHandwritingMode"; type: "bool" }
- Property { name: "symbolMode"; type: "bool" }
- Property { name: "fullScreenMode"; type: "bool" }
- Property { name: "defaultInputMethod"; type: "QVariant" }
- Property { name: "plainInputMethod"; type: "QVariant" }
- Property { name: "customInputMethod"; type: "QVariant" }
- Property { name: "customInputMethodSharedLayouts"; type: "QVariant" }
- Property { name: "defaultInputMode"; type: "int" }
- Property { name: "inputMethodNeedsReset"; type: "bool" }
- Property { name: "inputModeNeedsReset"; type: "bool" }
- Property { name: "navigationModeActive"; type: "bool" }
- Property { name: "languagePopupListActive"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "wordCandidateView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Property {
- name: "shadowInputControl"
- type: "ShadowInputControl_QMLTYPE_16"
- isReadonly: true
- isPointer: true
- }
- Property { name: "soundEffect"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Method { name: "initDefaultInputMethod"; type: "QVariant" }
- Method {
- name: "showLanguagePopup"
- type: "QVariant"
- Parameter { name: "parentItem"; type: "QVariant" }
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method { name: "hideLanguagePopup"; type: "QVariant" }
- Method {
- name: "showWordCandidateContextMenu"
- type: "QVariant"
- Parameter { name: "wordCandidateIndex"; type: "QVariant" }
- }
- Method { name: "hideWordCandidateContextMenu"; type: "QVariant" }
- Method { name: "updateInputMethod"; type: "QVariant" }
- Method { name: "updateLayout"; type: "QVariant" }
- Method { name: "updateDefaultLocale"; type: "QVariant" }
- Method {
- name: "filterLocaleIndices"
- type: "QVariant"
- Parameter { name: "filterCb"; type: "QVariant" }
- }
- Method { name: "updateAvailableLocaleIndices"; type: "QVariant" }
- Method {
- name: "listLocales"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- Parameter { name: "localeNameOnly"; type: "QVariant" }
- }
- Method {
- name: "nextLocaleIndex"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "changeInputLanguage"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "canChangeInputLanguage"
- type: "QVariant"
- Parameter { name: "customLayoutsOnly"; type: "QVariant" }
- }
- Method {
- name: "findLocale"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "defaultValue"; type: "QVariant" }
- }
- Method { name: "findFallbackIndex"; type: "QVariant" }
- Method {
- name: "isValidLocale"
- type: "QVariant"
- Parameter { name: "localeNameOrIndex"; type: "QVariant" }
- Parameter { name: "ignoreActiveLocales"; type: "QVariant" }
- }
- Method {
- name: "getLayoutFile"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "getFallbackFile"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "layoutExists"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method {
- name: "findLayout"
- type: "QVariant"
- Parameter { name: "localeName"; type: "QVariant" }
- Parameter { name: "layoutType"; type: "QVariant" }
- }
- Method { name: "isHandwritingAvailable"; type: "QVariant" }
- Method {
- name: "setHandwritingMode"
- type: "QVariant"
- Parameter { name: "enabled"; type: "QVariant" }
- Parameter { name: "resetInputMode"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickColumnLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardColumn 1.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardColumn 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- }
- Component {
- prototype: "QQuickColumnLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardColumn 2.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardColumn 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- }
- Component {
- prototype: "QQuickColumnLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardLayout 1.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardLayout 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethod"; type: "QVariant" }
- Property { name: "sharedLayouts"; type: "QVariant" }
- Property { name: "inputMode"; type: "int" }
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- Method { name: "createInputMethod"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickColumnLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardLayout 2.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardLayout 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethod"; type: "QVariant" }
- Property { name: "sharedLayouts"; type: "QVariant" }
- Property { name: "inputMode"; type: "int" }
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- Method { name: "createInputMethod"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickLoader"
- name: "QtQuick.VirtualKeyboard/KeyboardLayoutLoader 1.1"
- exports: ["QtQuick.VirtualKeyboard/KeyboardLayoutLoader 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethod"; type: "QVariant" }
- Property { name: "sharedLayouts"; type: "QVariant" }
- Property { name: "inputMode"; type: "int" }
- Property { name: "__updateCount"; type: "int" }
- Method { name: "createInputMethod"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickLoader"
- name: "QtQuick.VirtualKeyboard/KeyboardLayoutLoader 2.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardLayoutLoader 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethod"; type: "QVariant" }
- Property { name: "sharedLayouts"; type: "QVariant" }
- Property { name: "inputMode"; type: "int" }
- Property { name: "__updateCount"; type: "int" }
- Method { name: "createInputMethod"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickRowLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardRow 1.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardRow 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- }
- Component {
- prototype: "QQuickRowLayout"
- name: "QtQuick.VirtualKeyboard/KeyboardRow 2.0"
- exports: ["QtQuick.VirtualKeyboard/KeyboardRow 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "keyWeight"; type: "double" }
- Property { name: "smallTextVisible"; type: "bool" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/ModeKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/ModeKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "mode"; type: "bool" }
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/MultiSoundEffect 1.1"
- exports: ["QtQuick.VirtualKeyboard/MultiSoundEffect 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "source"; type: "QUrl" }
- Property { name: "maxInstances"; type: "int" }
- Property { name: "__cachedInstances"; type: "QVariant" }
- Property { name: "__currentIndex"; type: "int" }
- Signal {
- name: "playingChanged"
- Parameter { name: "source"; type: "QUrl" }
- Parameter { name: "playing"; type: "bool" }
- }
- Method { name: "play"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/MultiSoundEffect 2.0"
- exports: ["QtQuick.VirtualKeyboard/MultiSoundEffect 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "source"; type: "QUrl" }
- Property { name: "maxInstances"; type: "int" }
- Property { name: "__cachedInstances"; type: "QVariant" }
- Property { name: "__currentIndex"; type: "int" }
- Signal {
- name: "playingChanged"
- Parameter { name: "source"; type: "QUrl" }
- Parameter { name: "playing"; type: "bool" }
- }
- Method { name: "play"; type: "QVariant" }
- }
- Component {
- prototype: "QObject"
- name: "QtQuick.VirtualKeyboard/MultitapInputMethod 1.0"
- exports: ["QtQuick.VirtualKeyboard/MultitapInputMethod 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "multitapSequence"; type: "string" }
- Property { name: "multitapIndex"; type: "int" }
- Property { name: "multiTapTimer"; type: "QVariant" }
- Method {
- name: "inputModes"
- type: "QVariant"
- Parameter { name: "locale"; type: "QVariant" }
- }
- Method {
- name: "setInputMode"
- type: "QVariant"
- Parameter { name: "locale"; type: "QVariant" }
- Parameter { name: "inputMode"; type: "QVariant" }
- }
- Method {
- name: "setTextCase"
- type: "QVariant"
- Parameter { name: "textCase"; type: "QVariant" }
- }
- Method { name: "reset"; type: "QVariant" }
- Method { name: "update"; type: "QVariant" }
- Method {
- name: "keyEvent"
- type: "QVariant"
- Parameter { name: "key"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
- Parameter { name: "modifiers"; type: "QVariant" }
- }
- Method { name: "selectionLists"; type: "QVariant" }
- Method {
- name: "selectionListItemCount"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- }
- Method {
- name: "selectionListData"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "role"; type: "QVariant" }
- }
- Method {
- name: "selectionListItemSelected"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- Parameter { name: "index"; type: "QVariant" }
- }
- Property {
- name: "inputContext"
- type: "QVirtualKeyboardInputContext"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "inputEngine"
- type: "QVirtualKeyboardInputEngine"
- isReadonly: true
- isPointer: true
- }
- Signal {
- name: "selectionListChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- }
- Signal {
- name: "selectionListActiveItemChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- Parameter { name: "index"; type: "int" }
- }
- Signal { name: "selectionListsChanged" }
- }
- Component {
- prototype: "QObject"
- name: "QtQuick.VirtualKeyboard/MultitapInputMethod 2.0"
- exports: ["QtQuick.VirtualKeyboard/MultitapInputMethod 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "multitapSequence"; type: "string" }
- Property { name: "multitapIndex"; type: "int" }
- Property { name: "multiTapTimer"; type: "QVariant" }
- Method {
- name: "inputModes"
- type: "QVariant"
- Parameter { name: "locale"; type: "QVariant" }
- }
- Method {
- name: "setInputMode"
- type: "QVariant"
- Parameter { name: "locale"; type: "QVariant" }
- Parameter { name: "inputMode"; type: "QVariant" }
- }
- Method {
- name: "setTextCase"
- type: "QVariant"
- Parameter { name: "textCase"; type: "QVariant" }
- }
- Method { name: "reset"; type: "QVariant" }
- Method { name: "update"; type: "QVariant" }
- Method {
- name: "keyEvent"
- type: "QVariant"
- Parameter { name: "key"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
- Parameter { name: "modifiers"; type: "QVariant" }
- }
- Method { name: "selectionLists"; type: "QVariant" }
- Method {
- name: "selectionListItemCount"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- }
- Method {
- name: "selectionListData"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "role"; type: "QVariant" }
- }
- Method {
- name: "selectionListItemSelected"
- type: "QVariant"
- Parameter { name: "type"; type: "QVariant" }
- Parameter { name: "index"; type: "QVariant" }
- }
- Property {
- name: "inputContext"
- type: "QVirtualKeyboardInputContext"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "inputEngine"
- type: "QVirtualKeyboardInputEngine"
- isReadonly: true
- isPointer: true
- }
- Signal {
- name: "selectionListChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- }
- Signal {
- name: "selectionListActiveItemChanged"
- Parameter { name: "type"; type: "QVirtualKeyboardSelectionListModel::Type" }
- Parameter { name: "index"; type: "int" }
- }
- Signal { name: "selectionListsChanged" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/NumberKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/NumberKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/NumberKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/NumberKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickListView"
- name: "QtQuick.VirtualKeyboard/PopupList 2.3"
- exports: ["QtQuick.VirtualKeyboard/PopupList 2.3"]
- exportMetaObjectRevisions: [3]
- isComposite: true
- defaultProperty: "data"
- Property { name: "maxVisibleItems"; type: "int" }
- Property { name: "preferredVisibleItems"; type: "int"; isReadonly: true }
- Property { name: "contentWidth"; type: "double"; isReadonly: true }
- Property { name: "background"; type: "QQmlComponent"; isPointer: true }
- Property { name: "defaultHighlight"; type: "QQmlComponent"; isReadonly: true; isPointer: true }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/SelectionControl 2.1"
- exports: ["QtQuick.VirtualKeyboard/SelectionControl 2.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "handleIsMoving"; type: "bool" }
- Property { name: "inputContext"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/ShiftKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/ShiftKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/ShiftKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/ShiftKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/SpaceKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/SpaceKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/SpaceKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/SpaceKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/SymbolModeKey 1.0"
- exports: ["QtQuick.VirtualKeyboard/SymbolModeKey 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/SymbolModeKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/SymbolModeKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "text"; type: "string" }
- Property { name: "displayText"; type: "string" }
- Property { name: "smallText"; type: "string" }
- Property { name: "smallTextVisible"; type: "bool" }
- Property { name: "alternativeKeys"; type: "QVariant" }
- Property { name: "effectiveAlternativeKeys"; type: "QVariant"; isReadonly: true }
- Property { name: "effectiveAlternativeKeysHighlightIndex"; type: "int"; isReadonly: true }
- Property { name: "key"; type: "int" }
- Property { name: "noKeyEvent"; type: "bool" }
- Property { name: "active"; type: "bool" }
- Property { name: "noModifier"; type: "bool" }
- Property { name: "repeat"; type: "bool" }
- Property { name: "highlighted"; type: "bool" }
- Property { name: "functionKey"; type: "bool" }
- Property { name: "showPreview"; type: "bool" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "uppercased"; type: "bool" }
- Property { name: "soundEffect"; type: "QUrl"; isReadonly: true }
- Property { name: "keyPanelDelegate"; type: "QQmlComponent"; isPointer: true }
- Signal { name: "clicked" }
- }
- Component {
- prototype: "QQuickMultiPointTouchArea"
- name: "QtQuick.VirtualKeyboard/TraceInputArea 2.0"
- exports: ["QtQuick.VirtualKeyboard/TraceInputArea 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "patternRecognitionMode"; type: "int" }
- Property { name: "horizontalRulers"; type: "QVariant" }
- Property { name: "verticalRulers"; type: "QVariant" }
- Property { name: "boundingBox"; type: "QRectF"; isReadonly: true }
- Property { name: "canvasType"; type: "string" }
- Property { name: "__traceCanvasList"; type: "QVariant" }
- Property { name: "__traceCaptureDeviceInfo"; type: "QVariant" }
- Property { name: "__traceScreenInfo"; type: "QVariant" }
- Method {
- name: "findTraceCanvasById"
- type: "QVariant"
- Parameter { name: "traceId"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.VirtualKeyboard/TraceInputKey 2.0"
- exports: ["QtQuick.VirtualKeyboard/TraceInputKey 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "weight"; type: "double" }
- Property { name: "patternRecognitionMode"; type: "int" }
- Property { name: "horizontalRulers"; type: "QVariant" }
- Property { name: "verticalRulers"; type: "QVariant" }
- Property { name: "boundingBox"; type: "QRectF"; isReadonly: true }
- Property { name: "canvasType"; type: "string" }
- }
- Component {
- prototype: "QQuickListView"
- name: "QtQuick.VirtualKeyboard/WordCandidatePopupList 2.0"
- exports: ["QtQuick.VirtualKeyboard/WordCandidatePopupList 2.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "preferredVisibleItems"; type: "int"; isReadonly: true }
- Property { name: "flipVertical"; type: "bool"; isReadonly: true }
- Property { name: "maxVisibleItems"; type: "int" }
- Property { name: "contentWidth"; type: "double"; isReadonly: true }
- Property { name: "background"; type: "QQmlComponent"; isPointer: true }
- Property { name: "defaultHighlight"; type: "QQmlComponent"; isReadonly: true; isPointer: true }
- }
- }
|