2012-07-27 08:03:22 +00:00
|
|
|
/********************************************************************
|
|
|
|
Copyright (C) 2012 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
import QtQuick 1.1
|
|
|
|
|
|
|
|
Item {
|
|
|
|
function createButtons() {
|
|
|
|
for (var i=0; i<buttons.length; i++) {
|
|
|
|
var component = undefined;
|
|
|
|
switch (buttons.charAt(i)) {
|
|
|
|
case "_":
|
2012-09-27 15:08:47 +00:00
|
|
|
component = explicitSpacerComponent;
|
2012-07-27 08:03:22 +00:00
|
|
|
break;
|
|
|
|
case "A":
|
|
|
|
component = group.maximizeButton;
|
|
|
|
break;
|
|
|
|
case "B":
|
|
|
|
component = group.keepBelowButton;
|
|
|
|
break;
|
|
|
|
case "F":
|
|
|
|
component = group.keepAboveButton;
|
|
|
|
break;
|
|
|
|
case "H":
|
|
|
|
component = group.helpButton;
|
|
|
|
break;
|
|
|
|
case "I":
|
|
|
|
component = group.minimizeButton;
|
|
|
|
break;
|
|
|
|
case "L":
|
|
|
|
component = group.shadeButton;
|
|
|
|
break;
|
|
|
|
case "M":
|
|
|
|
component = group.menuButton;
|
|
|
|
break;
|
|
|
|
case "S":
|
|
|
|
component = group.allDesktopsButton;
|
|
|
|
break;
|
|
|
|
case "X":
|
|
|
|
component = group.closeButton;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!component) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var button = Qt.createQmlObject("import QtQuick 1.1; Loader{}", groupRow, "dynamicGroup_" + buttons + i);
|
|
|
|
button.sourceComponent = component;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
id: group
|
|
|
|
property string buttons
|
|
|
|
property int explicitSpacer
|
|
|
|
property alias spacing: groupRow.spacing
|
|
|
|
|
|
|
|
property variant closeButton
|
|
|
|
property variant helpButton
|
|
|
|
property variant keepAboveButton
|
|
|
|
property variant keepBelowButton
|
|
|
|
property variant maximizeButton
|
|
|
|
property variant menuButton
|
|
|
|
property variant minimizeButton
|
|
|
|
property variant allDesktopsButton
|
|
|
|
property variant shadeButton
|
|
|
|
|
|
|
|
width: childrenRect.width
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: groupRow
|
|
|
|
}
|
|
|
|
onButtonsChanged: {
|
|
|
|
for (var i = 0; i < groupRow.children.length; i++) {
|
|
|
|
groupRow.children[i].destroy();
|
|
|
|
}
|
|
|
|
createButtons();
|
|
|
|
}
|
2012-09-27 15:08:47 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: explicitSpacerComponent
|
|
|
|
Item {
|
|
|
|
width: group.explicitSpacer
|
|
|
|
height: groupRow.height
|
|
|
|
}
|
|
|
|
}
|
2012-07-27 08:03:22 +00:00
|
|
|
}
|