Advertisement
Guest User

plugins.qmltypes

a guest
Apr 26th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick.tooling 1.1
  2.  
  3. // This file describes the plugin-supplied types contained in the library.
  4. // It is used for QML tooling purposes only.
  5.  
  6. Module {
  7.     Component {
  8.         name: "QAbstractItemModel"
  9.         prototype: "QObject"
  10.         Signal {
  11.             name: "dataChanged"
  12.             Parameter { name: "topLeft"; type: "QModelIndex" }
  13.             Parameter { name: "bottomRight"; type: "QModelIndex" }
  14.         }
  15.         Signal {
  16.             name: "headerDataChanged"
  17.             Parameter { name: "orientation"; type: "Qt::Orientation" }
  18.             Parameter { name: "first"; type: "int" }
  19.             Parameter { name: "last"; type: "int" }
  20.         }
  21.         Signal { name: "layoutChanged" }
  22.         Signal { name: "layoutAboutToBeChanged" }
  23.         Signal {
  24.             name: "rowsAboutToBeInserted"
  25.             Parameter { name: "parent"; type: "QModelIndex" }
  26.             Parameter { name: "first"; type: "int" }
  27.             Parameter { name: "last"; type: "int" }
  28.         }
  29.         Signal {
  30.             name: "rowsInserted"
  31.             Parameter { name: "parent"; type: "QModelIndex" }
  32.             Parameter { name: "first"; type: "int" }
  33.             Parameter { name: "last"; type: "int" }
  34.         }
  35.         Signal {
  36.             name: "rowsAboutToBeRemoved"
  37.             Parameter { name: "parent"; type: "QModelIndex" }
  38.             Parameter { name: "first"; type: "int" }
  39.             Parameter { name: "last"; type: "int" }
  40.         }
  41.         Signal {
  42.             name: "rowsRemoved"
  43.             Parameter { name: "parent"; type: "QModelIndex" }
  44.             Parameter { name: "first"; type: "int" }
  45.             Parameter { name: "last"; type: "int" }
  46.         }
  47.         Signal {
  48.             name: "columnsAboutToBeInserted"
  49.             Parameter { name: "parent"; type: "QModelIndex" }
  50.             Parameter { name: "first"; type: "int" }
  51.             Parameter { name: "last"; type: "int" }
  52.         }
  53.         Signal {
  54.             name: "columnsInserted"
  55.             Parameter { name: "parent"; type: "QModelIndex" }
  56.             Parameter { name: "first"; type: "int" }
  57.             Parameter { name: "last"; type: "int" }
  58.         }
  59.         Signal {
  60.             name: "columnsAboutToBeRemoved"
  61.             Parameter { name: "parent"; type: "QModelIndex" }
  62.             Parameter { name: "first"; type: "int" }
  63.             Parameter { name: "last"; type: "int" }
  64.         }
  65.         Signal {
  66.             name: "columnsRemoved"
  67.             Parameter { name: "parent"; type: "QModelIndex" }
  68.             Parameter { name: "first"; type: "int" }
  69.             Parameter { name: "last"; type: "int" }
  70.         }
  71.         Signal { name: "modelAboutToBeReset" }
  72.         Signal { name: "modelReset" }
  73.         Signal {
  74.             name: "rowsAboutToBeMoved"
  75.             Parameter { name: "sourceParent"; type: "QModelIndex" }
  76.             Parameter { name: "sourceStart"; type: "int" }
  77.             Parameter { name: "sourceEnd"; type: "int" }
  78.             Parameter { name: "destinationParent"; type: "QModelIndex" }
  79.             Parameter { name: "destinationRow"; type: "int" }
  80.         }
  81.         Signal {
  82.             name: "rowsMoved"
  83.             Parameter { name: "parent"; type: "QModelIndex" }
  84.             Parameter { name: "start"; type: "int" }
  85.             Parameter { name: "end"; type: "int" }
  86.             Parameter { name: "destination"; type: "QModelIndex" }
  87.             Parameter { name: "row"; type: "int" }
  88.         }
  89.         Signal {
  90.             name: "columnsAboutToBeMoved"
  91.             Parameter { name: "sourceParent"; type: "QModelIndex" }
  92.             Parameter { name: "sourceStart"; type: "int" }
  93.             Parameter { name: "sourceEnd"; type: "int" }
  94.             Parameter { name: "destinationParent"; type: "QModelIndex" }
  95.             Parameter { name: "destinationColumn"; type: "int" }
  96.         }
  97.         Signal {
  98.             name: "columnsMoved"
  99.             Parameter { name: "parent"; type: "QModelIndex" }
  100.             Parameter { name: "start"; type: "int" }
  101.             Parameter { name: "end"; type: "int" }
  102.             Parameter { name: "destination"; type: "QModelIndex" }
  103.             Parameter { name: "column"; type: "int" }
  104.         }
  105.         Method { name: "submit"; type: "bool" }
  106.         Method { name: "revert" }
  107.     }
  108.     Component {
  109.         name: "QCursorArea"
  110.         defaultProperty: "data"
  111.         prototype: "QDeclarativeItem"
  112.         exports: [
  113.             "CursorArea 0.1"
  114.         ]
  115.         Enum {
  116.             name: "Cursor"
  117.             values: {
  118.                 "DefaultCursor": 0,
  119.                 "ArrowCursor": 1,
  120.                 "SizeHorCursor": 2,
  121.                 "SizeVerCursor": 3,
  122.                 "SizeAllCursor": 4,
  123.                 "SplitHCursor": 5,
  124.                 "SplitVCursor": 6,
  125.                 "WaitCursor": 7,
  126.                 "PointingHandCursor": 8
  127.             }
  128.         }
  129.         Property { name: "cursor"; type: "Cursor" }
  130.         Signal { name: "cursorChanged" }
  131.     }
  132.     Component {
  133.         name: "QDeclarativeColumnLayout"
  134.         defaultProperty: "data"
  135.         prototype: "QDeclarativeLinearLayout"
  136.         exports: [
  137.             "ColumnLayout 0.1"
  138.         ]
  139.     }
  140.     Component {
  141.         name: "QDeclarativeLayout"
  142.         defaultProperty: "data"
  143.         prototype: "QDeclarativeItem"
  144.         exports: [
  145.             "Layout 0.1"
  146.         ]
  147.         attachedType: "QDeclarativeLayoutAttached"
  148.         Enum {
  149.             name: "SizePolicy"
  150.             values: {
  151.                 "Fixed": 0,
  152.                 "Expanding": 1
  153.             }
  154.         }
  155.     }
  156.     Component {
  157.         name: "QDeclarativeLayoutAttached"
  158.         prototype: "QObject"
  159.         Property { name: "minimumWidth"; type: "qreal" }
  160.         Property { name: "minimumHeight"; type: "qreal" }
  161.         Property { name: "maximumWidth"; type: "qreal" }
  162.         Property { name: "maximumHeight"; type: "qreal" }
  163.         Property { name: "verticalSizePolicy"; type: "QDeclarativeLayout::SizePolicy" }
  164.         Property { name: "horizontalSizePolicy"; type: "QDeclarativeLayout::SizePolicy" }
  165.     }
  166.     Component {
  167.         name: "QDeclarativeLinearLayout"
  168.         defaultProperty: "data"
  169.         prototype: "QDeclarativeLayout"
  170.         Property { name: "spacing"; type: "qreal" }
  171.         Signal { name: "spacingChanged" }
  172.         Signal { name: "orientationChanged" }
  173.     }
  174.     Component {
  175.         name: "QDeclarativeRowLayout"
  176.         defaultProperty: "data"
  177.         prototype: "QDeclarativeLinearLayout"
  178.         exports: [
  179.             "RowLayout 0.1"
  180.         ]
  181.     }
  182.     Component {
  183.         name: "QDesktopItem"
  184.         prototype: "QObject"
  185.         exports: [
  186.             "QtQuick/Desktop 1.1"
  187.         ]
  188.         attachedType: "QDesktopItem"
  189.         Property { name: "screenWidth"; type: "int"; isReadonly: true }
  190.         Property { name: "screenHeight"; type: "int"; isReadonly: true }
  191.         Property { name: "availableWidth"; type: "int"; isReadonly: true }
  192.         Property { name: "availableHeight"; type: "int"; isReadonly: true }
  193.         Property { name: "screenCount"; type: "int"; isReadonly: true }
  194.         Signal { name: "screenGeometryChanged" }
  195.         Signal { name: "availableGeometryChanged" }
  196.         Signal { name: "screenCountChanged" }
  197.         Method {
  198.             name: "screenGeometry"
  199.             type: "QRect"
  200.             Parameter { name: "screen"; type: "int" }
  201.         }
  202.         Method {
  203.             name: "availableGeometry"
  204.             type: "QRect"
  205.             Parameter { name: "screen"; type: "int" }
  206.         }
  207.     }
  208.     Component {
  209.         name: "QFileSystemModel"
  210.         prototype: "QAbstractItemModel"
  211.         exports: [
  212.             "FileSystemModel 0.1"
  213.         ]
  214.         Property { name: "resolveSymlinks"; type: "bool" }
  215.         Property { name: "readOnly"; type: "bool" }
  216.         Property { name: "nameFilterDisables"; type: "bool" }
  217.         Signal {
  218.             name: "rootPathChanged"
  219.             Parameter { name: "newPath"; type: "string" }
  220.         }
  221.         Signal {
  222.             name: "fileRenamed"
  223.             Parameter { name: "path"; type: "string" }
  224.             Parameter { name: "oldName"; type: "string" }
  225.             Parameter { name: "newName"; type: "string" }
  226.         }
  227.         Signal {
  228.             name: "directoryLoaded"
  229.             Parameter { name: "path"; type: "string" }
  230.         }
  231.     }
  232.     Component {
  233.         name: "QRangeModel"
  234.         prototype: "QObject"
  235.         exports: [
  236.             "RangeModel 0.1"
  237.         ]
  238.         Property { name: "value"; type: "qreal" }
  239.         Property { name: "minimumValue"; type: "qreal" }
  240.         Property { name: "maximumValue"; type: "qreal" }
  241.         Property { name: "stepSize"; type: "qreal" }
  242.         Property { name: "position"; type: "qreal" }
  243.         Property { name: "positionAtMinimum"; type: "qreal" }
  244.         Property { name: "positionAtMaximum"; type: "qreal" }
  245.         Property { name: "inverted"; type: "bool" }
  246.         Signal {
  247.             name: "valueChanged"
  248.             Parameter { name: "value"; type: "qreal" }
  249.         }
  250.         Signal {
  251.             name: "positionChanged"
  252.             Parameter { name: "position"; type: "qreal" }
  253.         }
  254.         Signal {
  255.             name: "stepSizeChanged"
  256.             Parameter { name: "stepSize"; type: "qreal" }
  257.         }
  258.         Signal {
  259.             name: "invertedChanged"
  260.             Parameter { name: "inverted"; type: "bool" }
  261.         }
  262.         Signal {
  263.             name: "minimumChanged"
  264.             Parameter { name: "min"; type: "qreal" }
  265.         }
  266.         Signal {
  267.             name: "maximumChanged"
  268.             Parameter { name: "max"; type: "qreal" }
  269.         }
  270.         Signal {
  271.             name: "positionAtMinimumChanged"
  272.             Parameter { name: "min"; type: "qreal" }
  273.         }
  274.         Signal {
  275.             name: "positionAtMaximumChanged"
  276.             Parameter { name: "max"; type: "qreal" }
  277.         }
  278.         Method { name: "toMinimum" }
  279.         Method { name: "toMaximum" }
  280.         Method {
  281.             name: "setValue"
  282.             Parameter { name: "value"; type: "qreal" }
  283.         }
  284.         Method {
  285.             name: "setPosition"
  286.             Parameter { name: "position"; type: "qreal" }
  287.         }
  288.         Method {
  289.             name: "valueForPosition"
  290.             type: "qreal"
  291.             Parameter { name: "position"; type: "qreal" }
  292.         }
  293.         Method {
  294.             name: "positionForValue"
  295.             type: "qreal"
  296.             Parameter { name: "value"; type: "qreal" }
  297.         }
  298.     }
  299.     Component {
  300.         name: "QStyleItem"
  301.         defaultProperty: "data"
  302.         prototype: "QDeclarativeItem"
  303.         exports: [
  304.             "StyleItem 0.1"
  305.         ]
  306.         Property { name: "sunken"; type: "bool" }
  307.         Property { name: "raised"; type: "bool" }
  308.         Property { name: "active"; type: "bool" }
  309.         Property { name: "selected"; type: "bool" }
  310.         Property { name: "hasFocus"; type: "bool" }
  311.         Property { name: "on"; type: "bool" }
  312.         Property { name: "hover"; type: "bool" }
  313.         Property { name: "horizontal"; type: "bool" }
  314.         Property { name: "elementType"; type: "string" }
  315.         Property { name: "text"; type: "string" }
  316.         Property { name: "activeControl"; type: "string" }
  317.         Property { name: "info"; type: "string" }
  318.         Property { name: "style"; type: "string"; isReadonly: true }
  319.         Property { name: "hint"; type: "string" }
  320.         Property { name: "minimum"; type: "int" }
  321.         Property { name: "maximum"; type: "int" }
  322.         Property { name: "value"; type: "int" }
  323.         Property { name: "step"; type: "int" }
  324.         Property { name: "paintMargins"; type: "int" }
  325.         Property { name: "implicitWidth"; type: "int"; isReadonly: true }
  326.         Property { name: "implicitHeight"; type: "int"; isReadonly: true }
  327.         Property { name: "contentWidth"; type: "int" }
  328.         Property { name: "contentHeight"; type: "int" }
  329.         Property { name: "fontFamily"; type: "string"; isReadonly: true }
  330.         Property { name: "fontPointSize"; type: "double"; isReadonly: true }
  331.         Property { name: "fontHeight"; type: "int"; isReadonly: true }
  332.         Signal { name: "elementTypeChanged" }
  333.         Signal { name: "textChanged" }
  334.         Signal { name: "sunkenChanged" }
  335.         Signal { name: "raisedChanged" }
  336.         Signal { name: "activeChanged" }
  337.         Signal { name: "selectedChanged" }
  338.         Signal { name: "hasFocusChanged" }
  339.         Signal { name: "onChanged" }
  340.         Signal { name: "hoverChanged" }
  341.         Signal { name: "horizontalChanged" }
  342.         Signal { name: "minimumChanged" }
  343.         Signal { name: "maximumChanged" }
  344.         Signal { name: "stepChanged" }
  345.         Signal { name: "valueChanged" }
  346.         Signal { name: "activeControlChanged" }
  347.         Signal { name: "infoChanged" }
  348.         Signal { name: "styleChanged" }
  349.         Signal { name: "paintMarginsChanged" }
  350.         Signal { name: "hintChanged" }
  351.         Signal { name: "fontHeightChanged" }
  352.         Signal {
  353.             name: "implicitHeightChanged"
  354.             Parameter { name: "arg"; type: "int" }
  355.         }
  356.         Signal {
  357.             name: "implicitWidthChanged"
  358.             Parameter { name: "arg"; type: "int" }
  359.         }
  360.         Signal {
  361.             name: "contentWidthChanged"
  362.             Parameter { name: "arg"; type: "int" }
  363.         }
  364.         Signal {
  365.             name: "contentHeightChanged"
  366.             Parameter { name: "arg"; type: "int" }
  367.         }
  368.         Method {
  369.             name: "pixelMetric"
  370.             type: "int"
  371.             Parameter { type: "string" }
  372.         }
  373.         Method {
  374.             name: "styleHint"
  375.             type: "QVariant"
  376.             Parameter { type: "string" }
  377.         }
  378.         Method { name: "updateSizeHint" }
  379.         Method { name: "updateItem" }
  380.         Method {
  381.             name: "hitTest"
  382.             type: "string"
  383.             Parameter { name: "x"; type: "int" }
  384.             Parameter { name: "y"; type: "int" }
  385.         }
  386.         Method {
  387.             name: "subControlRect"
  388.             type: "QRect"
  389.             Parameter { name: "subcontrolString"; type: "string" }
  390.         }
  391.         Method {
  392.             name: "elidedText"
  393.             type: "string"
  394.             Parameter { name: "text"; type: "string" }
  395.             Parameter { name: "elideMode"; type: "int" }
  396.             Parameter { name: "width"; type: "int" }
  397.         }
  398.         Method {
  399.             name: "textWidth"
  400.             type: "int"
  401.             Parameter { type: "string" }
  402.         }
  403.         Method {
  404.             name: "hasThemeIcon"
  405.             type: "bool"
  406.             Parameter { type: "string" }
  407.         }
  408.         Method {
  409.             name: "setContentWidth"
  410.             Parameter { name: "arg"; type: "int" }
  411.         }
  412.         Method {
  413.             name: "setContentHeight"
  414.             Parameter { name: "arg"; type: "int" }
  415.         }
  416.     }
  417.     Component {
  418.         name: "QTooltipArea"
  419.         defaultProperty: "data"
  420.         prototype: "QDeclarativeItem"
  421.         exports: [
  422.             "TooltipArea 0.1"
  423.         ]
  424.         Property { name: "text"; type: "string" }
  425.         Property { name: "containsMouse"; type: "bool"; isReadonly: true }
  426.         Signal { name: "textChanged" }
  427.         Signal { name: "containsMouseChanged" }
  428.         Method { name: "timeout" }
  429.     }
  430.     Component {
  431.         name: "QWheelArea"
  432.         defaultProperty: "data"
  433.         prototype: "QDeclarativeItem"
  434.         exports: [
  435.             "WheelArea 0.1"
  436.         ]
  437.         Property { name: "verticalDelta"; type: "qreal" }
  438.         Property { name: "horizontalDelta"; type: "qreal" }
  439.         Property { name: "horizontalMinimumValue"; type: "qreal" }
  440.         Property { name: "horizontalMaximumValue"; type: "qreal" }
  441.         Property { name: "verticalMinimumValue"; type: "qreal" }
  442.         Property { name: "verticalMaximumValue"; type: "qreal" }
  443.         Property { name: "horizontalValue"; type: "qreal" }
  444.         Property { name: "verticalValue"; type: "qreal" }
  445.         Property { name: "scrollSpeed"; type: "qreal" }
  446.         Signal { name: "verticalValueChanged" }
  447.         Signal { name: "horizontalValueChanged" }
  448.         Signal { name: "verticalWheelMoved" }
  449.         Signal { name: "horizontalWheelMoved" }
  450.         Signal { name: "scrollSpeedChanged" }
  451.     }
  452.     Component {
  453.         name: "QWindowItem"
  454.         defaultProperty: "data"
  455.         prototype: "QDeclarativeItem"
  456.         exports: [
  457.             "QtQuick/Window 0.1"
  458.         ]
  459.         Property { name: "x"; type: "int" }
  460.         Property { name: "y"; type: "int" }
  461.         Property { name: "height"; type: "int" }
  462.         Property { name: "width"; type: "int" }
  463.         Property { name: "minimumHeight"; type: "int" }
  464.         Property { name: "maximumHeight"; type: "int" }
  465.         Property { name: "minimumWidth"; type: "int" }
  466.         Property { name: "maximumWidth"; type: "int" }
  467.         Property { name: "visible"; type: "bool" }
  468.         Property { name: "windowDecoration"; type: "bool" }
  469.         Property { name: "modal"; type: "bool" }
  470.         Property { name: "deleteOnClose"; type: "bool" }
  471.         Property { name: "windowState"; type: "Qt::WindowState" }
  472.         Property { name: "title"; type: "string" }
  473.         Signal { name: "sizeChanged" }
  474.         Signal { name: "xChanged" }
  475.         Signal { name: "yChanged" }
  476.         Signal { name: "visibleChanged" }
  477.         Signal { name: "windowDecorationChanged" }
  478.         Signal { name: "windowStateChanged" }
  479.         Signal { name: "minimumHeightChanged" }
  480.         Signal { name: "minimumWidthChanged" }
  481.         Signal { name: "maximumHeightChanged" }
  482.         Signal { name: "maximumWidthChanged" }
  483.         Signal { name: "titleChanged" }
  484.         Signal { name: "modalityChanged" }
  485.         Signal { name: "deleteOnCloseChanged" }
  486.         Method { name: "close" }
  487.     }
  488.     Component {
  489.         name: "QtMenu"
  490.         defaultProperty: "menuItems"
  491.         prototype: "QtMenuBase"
  492.         exports: [
  493.             "Menu 0.1"
  494.         ]
  495.         Property { name: "text"; type: "string" }
  496.         Property { name: "model"; type: "QVariant" }
  497.         Property { name: "selectedIndex"; type: "int" }
  498.         Property { name: "hoveredIndex"; type: "int" }
  499.         Property { name: "menuItems"; type: "QtMenuBase"; isList: true; isReadonly: true }
  500.         Signal { name: "menuClosed" }
  501.         Signal { name: "selectedIndexChanged" }
  502.         Signal { name: "hoveredIndexChanged" }
  503.         Signal {
  504.             name: "modelChanged"
  505.             Parameter { name: "newModel"; type: "QVariant" }
  506.         }
  507.         Signal { name: "rebuldMenu" }
  508.         Method {
  509.             name: "setModel"
  510.             Parameter { name: "newModel"; type: "QVariant" }
  511.         }
  512.         Method { name: "minimumWidth"; type: "int" }
  513.         Method {
  514.             name: "setMinimumWidth"
  515.             Parameter { name: "w"; type: "int" }
  516.         }
  517.         Method {
  518.             name: "showPopup"
  519.             Parameter { name: "x"; type: "qreal" }
  520.             Parameter { name: "y"; type: "qreal" }
  521.             Parameter { name: "atActionIndex"; type: "int" }
  522.         }
  523.         Method {
  524.             name: "showPopup"
  525.             Parameter { name: "x"; type: "qreal" }
  526.             Parameter { name: "y"; type: "qreal" }
  527.         }
  528.         Method { name: "hidePopup" }
  529.         Method { name: "clearMenuItems" }
  530.         Method {
  531.             name: "addMenuItem"
  532.             Parameter { name: "text"; type: "string" }
  533.         }
  534.         Method {
  535.             name: "itemTextAt"
  536.             type: "string"
  537.             Parameter { name: "index"; type: "int" }
  538.         }
  539.         Method {
  540.             name: "modelTextAt"
  541.             type: "string"
  542.             Parameter { name: "index"; type: "int" }
  543.         }
  544.         Method { name: "modelCount"; type: "int" }
  545.         Method { name: "hasNativeModel"; type: "bool" }
  546.     }
  547.     Component {
  548.         name: "QtMenuBar"
  549.         defaultProperty: "menus"
  550.         prototype: "QDeclarativeItem"
  551.         exports: [
  552.             "MenuBar 0.1"
  553.         ]
  554.         Property { name: "menus"; type: "QtMenu"; isList: true; isReadonly: true }
  555.     }
  556.     Component {
  557.         name: "QtMenuBase"
  558.         prototype: "QObject"
  559.         exports: [
  560.             "uri/NativeMenuBase 0.1"
  561.         ]
  562.         Property { name: "iconSource"; type: "QUrl" }
  563.         Property { name: "iconName"; type: "string" }
  564.         Signal { name: "iconSourceChanged" }
  565.         Signal { name: "iconNameChanged" }
  566.     }
  567.     Component {
  568.         name: "QtMenuItem"
  569.         prototype: "QtMenuBase"
  570.         exports: [
  571.             "MenuItem 0.1"
  572.         ]
  573.         Property { name: "text"; type: "string" }
  574.         Property { name: "shortcut"; type: "string" }
  575.         Property { name: "checkable"; type: "bool" }
  576.         Property { name: "checked"; type: "bool" }
  577.         Property { name: "enabled"; type: "bool" }
  578.         Signal { name: "triggered" }
  579.         Signal { name: "textChanged" }
  580.         Signal { name: "shortcutChanged" }
  581.         Signal {
  582.             name: "toggled"
  583.             Parameter { type: "bool" }
  584.         }
  585.         Signal { name: "enabledChanged" }
  586.     }
  587.     Component {
  588.         name: "QtMenuSeparator"
  589.         prototype: "QtMenuBase"
  590.         exports: [
  591.             "Separator 0.1"
  592.         ]
  593.     }
  594.     Component {
  595.         name: "QtSplitterAttached"
  596.         prototype: "QObject"
  597.         Property { name: "minimumWidth"; type: "qreal" }
  598.         Property { name: "maximumWidth"; type: "qreal" }
  599.         Property { name: "minimumHeight"; type: "qreal" }
  600.         Property { name: "maximumHeight"; type: "qreal" }
  601.         Property { name: "percentageSize"; type: "qreal" }
  602.         Property { name: "expanding"; type: "bool" }
  603.         Property { name: "itemIndex"; type: "int" }
  604.         Signal {
  605.             name: "minimumWidthChanged"
  606.             Parameter { name: "arg"; type: "qreal" }
  607.         }
  608.         Signal {
  609.             name: "maximumWidthChanged"
  610.             Parameter { name: "arg"; type: "qreal" }
  611.         }
  612.         Signal {
  613.             name: "minimumHeightChanged"
  614.             Parameter { name: "arg"; type: "qreal" }
  615.         }
  616.         Signal {
  617.             name: "maximumHeightChanged"
  618.             Parameter { name: "arg"; type: "qreal" }
  619.         }
  620.         Signal {
  621.             name: "expandingChanged"
  622.             Parameter { name: "arg"; type: "bool" }
  623.         }
  624.         Signal {
  625.             name: "percentageWidthSize"
  626.             Parameter { name: "arg"; type: "qreal" }
  627.         }
  628.         Signal {
  629.             name: "itemIndexChanged"
  630.             Parameter { name: "arg"; type: "int" }
  631.         }
  632.     }
  633.     Component {
  634.         name: "QtSplitterBase"
  635.         defaultProperty: "data"
  636.         prototype: "QDeclarativeItem"
  637.         exports: [
  638.             "Splitter 0.1"
  639.         ]
  640.     }
  641.     attachedType: "QtSplitterAttached"
  642.     Component {
  643.         name: "Settings"
  644.         prototype: "QObject"
  645.         exports: [
  646.             "Settings 0.1"
  647.         ]
  648.         Property { name: "group"; type: "string" }
  649.         Method { name: "propertyChanged" }
  650.     }
  651. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement