-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2298 from ronso0/latenight-facelift
LateNight :: 3D facelift
- Loading branch information
Showing
321 changed files
with
16,891 additions
and
3,110 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<!DOCTYPE template> | ||
<!-- | ||
Description: | ||
A row of three buttons which set the deck's crossfader | ||
orientation directly: L | M | R | ||
Variables: | ||
group: | ||
xfaderLeft, xfaderRight: default | warning | off | ||
Picks a colored icon for L,M,R depending on wether | ||
the deck's orientation is the default, set to Master | ||
or to the opposite side | ||
--> | ||
<Template> | ||
<WidgetGroup> | ||
<ObjectName>CrossfaderButtonContainerAux</ObjectName> | ||
<Layout>horizontal</Layout> | ||
<SizePolicy>max,min</SizePolicy> | ||
<Children> | ||
<!-- L --> | ||
<PushButton> | ||
<ObjectName>CrossfaderButton</ObjectName> | ||
<TooltipId>orientation</TooltipId> | ||
<Size>11f,13f</Size> | ||
<NumberStates>2</NumberStates> | ||
<RightClickIsPushButton>false</RightClickIsPushButton> | ||
<State> | ||
<Number>0</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_left.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_left.svg</Unpressed> | ||
</State> | ||
<State> | ||
<Number>1</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_left.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_left.svg</Unpressed> | ||
</State> | ||
<Connection> | ||
<ConfigKey><Variable name="group"/>,orientation</ConfigKey> | ||
<Transform> | ||
<IsEqual>0</IsEqual> | ||
</Transform> | ||
<ButtonState>LeftButton</ButtonState> | ||
</Connection> | ||
</PushButton> | ||
<!-- M --> | ||
<PushButton> | ||
<ObjectName>CrossfaderButton</ObjectName> | ||
<TooltipId>orientation</TooltipId> | ||
<Size>11f,13f</Size> | ||
<NumberStates>2</NumberStates> | ||
<RightClickIsPushButton>false</RightClickIsPushButton> | ||
<State> | ||
<Number>0</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_mid.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_mid.svg</Unpressed> | ||
</State> | ||
<State> | ||
<Number>1</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_mid.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_mid.svg</Unpressed> | ||
</State> | ||
<Connection> | ||
<ConfigKey><Variable name="group"/>,orientation</ConfigKey> | ||
<Transform> | ||
<Add>-1</Add> | ||
<IsEqual>0</IsEqual> | ||
</Transform> | ||
<ButtonState>LeftButton</ButtonState> | ||
</Connection> | ||
</PushButton> | ||
<!-- R --> | ||
<PushButton> | ||
<ObjectName>CrossfaderButton</ObjectName> | ||
<TooltipId>orientation</TooltipId> | ||
<Size>11f,13f</Size> | ||
<NumberStates>2</NumberStates> | ||
<RightClickIsPushButton>false</RightClickIsPushButton> | ||
<State> | ||
<Number>0</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_right.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_right.svg</Unpressed> | ||
</State> | ||
<State> | ||
<Number>1</Number> | ||
<Pressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_right.svg</Pressed> | ||
<Unpressed scalemode="STRETCH_ASPECT">skin:/buttons/btn_xfader_aux_right.svg</Unpressed> | ||
</State> | ||
<Connection> | ||
<ConfigKey><Variable name="group"/>,orientation</ConfigKey> | ||
<Transform> | ||
<Add>-2</Add> | ||
<IsEqual>0</IsEqual> | ||
</Transform> | ||
<ButtonState>LeftButton</ButtonState> | ||
</Connection> | ||
</PushButton> | ||
</Children> | ||
</WidgetGroup> | ||
</Template> |
This file contains 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
Oops, something went wrong.