Merge pull request #2516 from BaraMGB/SubwindowDecoration

Add a new window decoration to MDISubWindows
This commit is contained in:
Umcaruje
2016-05-03 17:17:12 +02:00
7 changed files with 300 additions and 25 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

View File

@@ -576,6 +576,40 @@ BBTCOView {
background-color: rgb( 128, 182, 175 ); /* default colour for bb-tracks */
}
/* Subwindows in MDI-Area */
SubWindow {
color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #4b525c, stop: 1.0 #31363d);
qproperty-activeColor: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #33383e, stop: 1.0 #1a1c20);
qproperty-textShadowColor: rgb( 0, 0, 0 );
qproperty-borderColor: rgb( 0, 0, 0 );
}
/* Subwindow title text */
SubWindow > QLabel {
color: rgb( 255, 255, 255 );
font-size: 12px;
font-style: normal;
}
/* SubWindow titlebar button */
SubWindow > QPushButton {
background-color: rgba( 255, 255, 255, 0% );
border-width: 0px;
border-color: none;
border-style: none;
}
SubWindow > QPushButton:hover{
background-color: rgba( 255, 255, 255, 15% );
border-width: 1px;
border-color: rgba( 0, 0, 0, 20% );
border-style: solid;
border-radius: 2px;
}
/* Plugins */
TripleOscillatorView Knob {