This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import QtQuick 2.3 | |
| Item { | |
| id: resizer | |
| property var resizeSource: parent | |
| property rect minimumGeometry: Qt.rect(0, 0, 0, 0) | |
| property rect maximumGeometry: Qt.rect(16777215, 16777215, 16777215, 16777215) // from QtWidgets | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import QtQuick 2.3 | |
| QtObject { | |
| readonly property bool canUndo: __canUndo() | |
| readonly property bool canRedo: __canRedo() | |
| readonly property string undoText: __undoText() | |
| readonly property string redoText: __redoText() |