aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/plugins.qmltypes
Commit message (Collapse)AuthorAgeFilesLines
* Remove RangeSlider::track in favor of Control::backgroundJ-P Nurmi2016-03-211-1/+0
| | | | | | | In the series of minimalizing the delegate APIs. Change-Id: I11e519f5226bf44d18b42fd31276c5528b18ec46 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Remove Slider::track in favor of Control::backgroundJ-P Nurmi2016-03-211-1/+0
| | | | | | | In the series of minimalizing the delegate APIs. Change-Id: I664f4227ff55876be2594c8855dacc7c92eddc94 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* ProgressBar: use contentItem instead of indicatorJ-P Nurmi2016-03-211-1/+0
| | | | | Change-Id: I8bd21b32b6f3d333c119d77b629b46fe411c06eb Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* ScrollBar: add increase(), decrease() and stepSizeJ-P Nurmi2016-03-211-0/+3
| | | | | Change-Id: I052b650fee7ae94cc826446d285d653a41bd1e75 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* ScrollBar: use contentItem instead of handleJ-P Nurmi2016-03-211-1/+0
| | | | | | | | Thanks to virtual resizeContent() we can finally use contentItem like everywhere else, and cleanup the special handle item. Change-Id: I9e52ec3ff327d19cda3d85d2e2d9b73d80442bbc Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* ScrollIndicator: use contentItem instead of indicatorJ-P Nurmi2016-03-211-1/+0
| | | | | | | | Thanks to virtual resizeContent() we can finally use contentItem like everywhere else, and cleanup the special indicator item. Change-Id: Ia2bd62684d49a05c199e490750a31c13d2c22182 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Add ApplicationWindow::backgroundJ-P Nurmi2016-02-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Convenient for setting a stylish background that covers the whole window, that is, goes below the header and footer. The same already works with Page, since it inherits Control. import QtQuick 2.6 import Qt.labs.controls 1.0 ApplicationWindow { visible: true width: 400; height: 400 header: ToolBar { opacity: 0.5 } footer: ToolBar { opacity: 0.5 } background: Rectangle { gradient: Gradient { GradientStop { position: 0.0; color: "lightsalmon" } GradientStop { position: 1.0; color: "salmon" } } } } Change-Id: I57219779913c178cacfe4cbc4bf3a524b213d2c0 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Control: add hoverEnabled and hovered propertiesJ-P Nurmi2016-02-251-0/+2
| | | | | | Change-Id: I35946b9f13ef78ce7bdfbad9706de3e96bd48ea4 Task-number: QTBUG-50003 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Add Control::wheelEnabledJ-P Nurmi2016-02-241-0/+1
| | | | | | | | Change-Id: I1ea2c93e908c98119ba25e3e40e02ab96eca8dd2 Task-number: QTBUG-50220 Task-number: QTBUG-50221 Task-number: QTBUG-50222 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Add SpinBox::editable propertyJ-P Nurmi2016-02-231-0/+1
| | | | | | | | | | The default value is false, which is more mobile/embedded/touch friendly choice, and will be also in line with ComboBox::editable when it gets introduced sometime in the future. Change-Id: Iaaad8f5533100c2d5c4b49d1ef8ee849cf31feff Task-number: QTBUG-51114 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2016-02-221-1/+23
| | | | | | Change-Id: I54d19667a4f72c34174b8235f9ae24b533be2209 Task-number: QTBUG-51278 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Merge remote-tracking branch 'origin/5.6' into devLiang Qi2016-02-121-0/+1
|\ | | | | | | | | | | | | Conflicts: src/templates/qquickabstractbutton.cpp Change-Id: Icfd472451a150524dded704b4be5d286da21a6da
| * Add AbstractButton::pressAndHold() signalJ-P Nurmi2016-02-071-0/+1
| | | | | | | | | | Change-Id: I41e96a61bfb25b81bad748f559894bf8e2984427 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* | Merge remote-tracking branch 'origin/5.6' into devJ-P Nurmi2016-02-071-0/+5
|\| | | | | | | | | | | | | Conflicts: src/imports/controls/universal/ToolButton.qml Change-Id: Ib9f1e7d83fb824d9e6a13a2bc429d1a5642fe4f6
| * QQuickPopup: add some missing propertiesJ-P Nurmi2016-02-061-0/+5
| | | | | | | | | | Change-Id: I7df64587bf3ba289ba027f6dbe9872362532ec41 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* | Remove AbstractButton::label in favor of contentItemJ-P Nurmi2016-02-061-1/+0
|/ | | | | | | | | | | | | | | | This has been on the TODO list for a long time and should have been done earlier. It's time to cleanup the API and remove all the delegate properties that became redundant when Control::contentItem was introduced. The biggest benefit of using Control::contentItem is that it is resized and positioned automatically, so we save a few QML bindings. Furthemore, contentItem is a common naming pattern in Qt Quick (Window, Flickable) and therefore less likely to conflict with IDs in user code (a thing that always bothered me with "label"). Change-Id: I8143a9f08d726db31cf4618670af48bd37f80b89 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2016-01-301-3/+10
| | | | | Change-Id: I1b7c15c57ca491561bf082ab53967455a6299529 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* AbstractButton: remove the mouse params from signalsJ-P Nurmi2016-01-281-16/+4
| | | | | | | | If we ever want to expose these, the name would be something else than "mouse"... :) Change-Id: Ie9dad16e84708059fd0b43d4764925db7b014d64 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Replace Popup::pressed|releasedOutside with close policy flagsJ-P Nurmi2016-01-281-3/+0
| | | | | Change-Id: I3e09c4e2b6cbbe39bdf9e943905664e5dc1fe954 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Add Popup::closePolicyJ-P Nurmi2016-01-281-0/+10
| | | | | Change-Id: Ie3d0f50a59aeaab36ec388af897cbf2596269ce3 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2016-01-251-6/+79
| | | | | Change-Id: I26a8ae03e57df79fa87e26c3b650a49f2b89aeac Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Fix plugins.qmltypes for designerThomas Hartmann2016-01-071-154/+0
| | | | | | | | | Multiple definitions of "QQuickItem" break the inheritance hierarchy required for Qt Quick Designer. Change-Id: I867a2fa7cdbb0054518c566ae31d8d9dc859b7a1 Reviewed-by: Marco Benelli <marco.benelli@theqtcompany.com> Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Rename Popup transitionsJ-P Nurmi2015-12-191-2/+2
| | | | | | | | | Use Android-inspired enter & exit, which eliminates the need of using a "transition" suffix, and also less prone to appear in auto-completion when new users try to open/show/close/hide popups. Change-Id: I3a448d3e9be33fbfffbf08488858aa63a70233f2 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2015-12-171-3/+1575
| | | | | | | | | The contents of templates/plugins.qmltypes has been manually copied to controls/plugins.qmltypes as suggested in the linked bug report. Change-Id: I6b71af2aa85f6e87f42689018f7814e5c139b7c8 Task-number: QTCREATORBUG-15137 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Update plugins.qmltypesMitch Curtis2015-11-271-45/+40
| | | | | Change-Id: I9cdb652f20deb3c0e7b1705d37f69ff4f954e233 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Repurpose ExclusiveGroup to ButtonGroupMitch Curtis2015-11-061-17/+11
| | | | | | | | | | This is another way of solving the naming clash with Qt Quick Controls, and narrows our focus to the types of controls that actually make sense to have in an "exclusive" group; buttons (Android calls them "selection controls"). Change-Id: Icf6efe583fe784c3594de8635be84bbf757a55cd Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2015-10-291-0/+13
| | | | | Change-Id: I195aa7e2a6146298159f3364f7f651aa3e3996ba Reviewed-by: Liang Qi <liang.qi@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2015-10-161-0/+8
| | | | | | Change-Id: Ide6a6166398f82e93f42ca830b074284c5127c8c Task-number: QTBUG-48808 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
* Update plugins.qmltypesJ-P Nurmi2015-10-011-342/+164
| | | | | Change-Id: I6ab27aec6ac86203a64d42482a7327b69b075554 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
* Add plugins.qmltypesJ-P Nurmi2015-06-181-0/+434
Change-Id: Ic8f29953a7198664ec4be051abc2fc42b92a4435 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>