123456789101112131415161718192021222324 |
- /**
- * Copyright (c) 2012 Nokia Corporation.
- */
- import QtQuick 1.1
- import com.nokia.symbian 1.1
- ToolBarLayout {
- property bool itemsEnabled
- ToolButton {
- visible: false
- }
- ToolButton {
- platformInverted: window.platformInverted
- text: "Send"
- }
- ToolButton {
- visible: false
- }
- }
|