Creating Skins

Skins can change the look and feel of Mixxx. Some skins merely make the program more aesthetically pleasing while others rearrange elements of the interface, potentially making the program easier to use.

Getting started

A skin for Mixxx is basically a folder with various images and one text file named skin.xml. The skin.xml defines all the elements (widgets) of the skin, what the images are used for and and where they are placed on screen.

Reading this page helps to understand how skins work in Mixxx‚ it will save you time eventually.

You can download the ShadeDark skin used in the following example here .

To start a new skin, copy the “ShadeDark” directory, rename it to something else and use that as the starting point for your new skin.Look at how things were done in ShadeDark's skin.xml and try to work from there. If you're familiar with HTML, then you should pretty comfortable editing the skin.xml.

Keep in mind the Mixxx Skinning Guidelines

Things to know

Images are in the .png format and Mixxx does support png transparency. Element colors are defined in hexadecimal values.
Element positions are defined with X,Y coordinates (from upper left ). Element sizes are defined with W,H values (width,heigh).

General structure of the skin.xml. More in-depth informations for each element and their attributes defined in the skin.xml can be found here

syntaxInfo
<!--Comment-->
<!DOCTYPE skin>           
<skin>
<elementname>
<position>X,Y</position>
<size>W,H</size>
<options>values(depends)</options>
<tooltips>helpful text</tooltips>
</elementname>           
</skin>
Optional comments (i.e. skin license or changelog)
Doctype declaration so Mixxx "know"
Skin opening tag
Elements opening tag
Position on the screen
Size (depending on the element)
Options(depending on the element)
Tooltips to display on mouse-over
Elements closing tag
Skin closing tag 

Tools

Free Text editors - Online (Piratepad, Google Docs), Windows (Pspad), Mac OSX (Textwrangler), Linux (Kate, Gedit)
Free Images editors - Online (Phoenix, Pixlr), Windows (Paint.net, Gimp ) Mac OSX (Pixelmator -trial-), Linux (Gimp, Inkscape)
Free color tools - Online (Color Palette Generator, Colorblender , Color Scheme Designer)
Free knob tools - Windows only, MacOSX & Linux via Wine (Knobman, Knob Render)

Skin 101

Lets have a look at the Mixxx user interface (with ShadeDark skin applied). The various elements of the skin are marked and explained below.

1.General

  • Skin Colour Scheme - not used in our example, this advance technique allows the creation of different colour schemes for skins
  • Background picture - Image file which all elements will be displayed on
  • Library display - Widget holds all your music information, playlists, search bar etc.

2.Visual

  • Waveform - shows the loaded tracks waveforms near the playback position
  • Waveform overview - shows a waveform visualisation of the whole song
  • Volume level display - shows the playback volume of the song / master
  • Peak indicator‚ shows if a songs / master volume is too high

3.Text

  • Track information - shows some ID3 information of the song ( Name, Artist )
  • BPM Information - shows the tempo of the song
  • Playing position / Time remaining‚ shows current playback position or remaining tome (can be selected im preferences)
  • Pitch rate information- shows how much the song is speed up / slowed down (in percent)

4.Slider

  • Channel Volume - controls the volume of the selected channel
  • Crossfader - fade between the channels
  • Pitch control - changes the tempo of a song

5.Buttons

  • Play - plays / pauses a song
  • Cue - places a Cue-point at the current position
  • Hotcue - places a Hotcue-point at the current playback position
  • Looping - places start- and endpoint of a loop , enables the loops playback
  • Reverse play - toggles reverse playback during regular playback
  • Fast forward/rewind - seeks trough a song fast in both directions
  • Beat sync - automatically match the tempo between two songs
  • Pitch adjustment - apply fine adjustment to the tempo of a song
  • Pitch bend - apply a temporary pitch-bend to the tempo of a song
  • Pre-listen - sends the channel's audio to the Headphones
  • End-of-track-mode - defines behaviour when playback reaches the end of a track
  • FX (Flanger) - enables a effect on the selected channel
  • Frequency Kill - cuts the high, mid and low frequencies

6.Knobs (Rotary fader)

  • Master Volume - controls the volume and of the master output
  • Balance - controls the balance (stereo distribution) of the master output
  • FX (Flanger) settings - controls the different flanger effect parameter
  • Headphone volume - controls the volume of the headphone output
  • Headphone mix - controls what you hear on the headphone output
  • Gain - apply extra amplification to a song
  • Channel filter - perform equalization on the high, mid and low frequencies

Skin licensing & copyright

FIXME

The principles on licensing found on the Creative Common Wiki apply for other licences too.

If you are going to make a skin from scratch , think about which license to choose for your work. Make sure you have the rights to apply the license.
Popular choices are GPL and Creative Common licence.

If you are going to make a skin based on others work, make sure you comply with their licence terms. If you are unsure, why not ask the original author?

It is a good idea to put the license terms of your skin as a comment on top of the skin.xml (see examples).

Example CC by-nc-sa 3.0 licensed skinExample GPL licensed skin
<!--Name / Version of your skin, Skin for Mixxx 1.8.x
www.mixxx.org
Copyright (C) 2010 you name , your@email.adress
    
based on the "Name of the original skin"
Copyright (C) 2010 name of the original author, authors@email.adress
  
This file is part of the "Name of your skin" Skin for Mixxx 1.8.x
"Name of your skin" is licensed under the Attribution-Noncommercial-Share Alike 3.0 licence.
http://creativecommons.org/licenses/by-nc-sa/3.0/us/
     
You are free:
to Share - to copy, distribute and transmit the work
to Remix - to adapt the work
		
Under the following conditions:
Attribution - You must attribute the work in the manner specified by the author or licensor 
(but not in any way that suggests that they endorse you or your use of the work).
What does "Attribute this work" mean?
You must attribute the work in the manner specified by the author or licensor 
(but not in any way that suggests that they endorse you or your use of the work).

Noncommercial - You may not use this work for commercial purposes. 
Share Alike - If you alter, transform, or build upon this work, you may distribute 
the resulting work only under the same or similar license to this one.-->
<!--
Name / Version of your skin, Skin for Mixxx 1.8.x
www.mixxx.org
Copyright (C) 2010 you name , your@email.adress

based on the "Name of the original skin"
Copyright (C) 2010 name of the original author, authors@email.adress

This file is part of "Name of your skin".
"Name of your skin" 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.

http://www.gnu.org/licenses/gpl.html
-->

Further reads:

Skin FAQ

How to install a skin

Additional skins for Mixxx can be downloaded in the forum.

In this example we are going to install the file "Shade.zip"

1. Close Mixxx.
2. Download & unzip "Shade.zip" and copy the whole unzipped folder "Shade" to the corresponding path:

Linux
*************
/usr/share/mixxx/skins/
so you get 
/usr/share/mixxx/skins/Shade

Note that you may get permission error while copying, 
make sure you have root privileges

Windows
*************
C:\Program Files\Mixxx\skins
so you get 
C:\Program Files\Mixxx\skins\Shade

Mac OSX
*************
-  In the Finder, go to the Applications folder and select Mixxx.
-  Right Click and choose "Show Package Contents" from the Action menu.
-  goto Contents/Resources/skins

or straight via Terminal 
/Applications/Mixxx.app/Contents/Resources/skins
so you get
/Applications/Mixxx.app/Contents/Resources/skins/Shade

3. Start Mixxx , goto "Preferences-->Interface" and select "Skin-->Shade"
   Make sure you have "Waveform Display-->Waveform" selected
   Save preferences with OK.   

4. The new skin should now be displayed.

5. Restart Mixxx. Done.

How to resize a skin

As of Mixxx 1.8 it is not possible to resize a skin automatically, Mixx can not handle skins resolution independent. Every skin needs to be redrawn by hand.
Example: Your skin is 1024×768 but your screen is 1280×1024. When going into fullscreen Mixxx will fill your screen around the 1024×768 used by the skin with the skin`s background color. This background color is defined in skin.xml using the <Horizontal> key . See example.
So if you would like to have your skin fill the whole screen ( i.e. to have more space for the library), you need another variant of your skin for 1280×1024.
Also see the Skin guidelines .

How to change the size of the library

Same thing as with resizing a skin , as of Mixxx 1.8 it is not possible to resize the library automatically. You need another variant of your skin
Also see the Skin guidelines .

How to change the players orientation (vertical or horizontal)

As of Mixxx 1.8 this is not possible. You can change the orientation of Volume level display & Fader using the <Horizontal> key. See example.

How to change the font size or color for the text (i.e. artist)

The text attributes are defined skin.xml using the <Style> key. Use CSS syntax. See example.

How to change the font size or font color for the playlist

As of Mixxx 1.8 it is not possible to chage these values. The font size is fixed, the font color inverts the library background colors from the<BgColorRowEven> key. See example

How to change the size or color of the waveform

The values are defined in skin.xml using the <Pos> and <SignalColor> key. See example.

How to use a custom symbol for markers ( i.e. Hotcues)

Custom symbols for markers can be defined for Hotcues, Cues , LoopIn and LoopOut in skin.xml using the <Pixmap> key. See example.
Notice that your custom markers only show up in the big waveforms.

How to use sliders instead of knobs ( i.e. for eq`s )

All elements that are sliders could be knobs an vis a vis. Think of some house hardware mixers , sometimes you have no channel line fader (slider) but rather rotary fader (knobs).
Same for EQ`s , they could be slider instead knobs.
Is that really possible?FIXME

Skin.xml in-depth review

In this section all elements and the values of their keys are explained on the example of ShadeDark skin.xml.
So open up the skin.xml with your favorite text editor and get started :-)

Section: General

Skin Colour Scheme

advanced technique not used in this example, see colour schemes for details

Main background

<Background>
	<Path>background.png</Path>
	<BgColor>#</BgColor>
</Background>
The size of this image defines the skins overall size, see Guidelines
Defines the background picture all the elements will displayed on
Defines a background color ( Example: # = #000000) 
#00000 is hex value for black

Library display

<TableView>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<BgColor>#</BgColor>
	<FgColor>#</FgColor>
	<BgColorRowEven>#</BgColorRowEven>
	<BgColorRowUneven>#</BgColorRowUneven>
</TableView>

Defines the elements position
Defines the elements size
Background color library widget (i.e. background color search widget)
Foreground color library widget (i.e. text in "Analyze" widget)
Background color even line right library pane 
Background color uneven lines right library pane

Section: Visual

Waveform

<Visual>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<BgColor>#</BgColor>
	<HfcColor>#</HfcColor>
	<SignalColor>#</SignalColor>
	<BeatColor>#</BeatColor>		
	<BeatHighlightColor>#</BeatHighlightColor>
	<MarkerColor>#</MarkerColor>
	<CueColor>#</CueColor>
	<!--<FisheyeColor>#</FisheyeColor>-->
	<Zoom>true</Zoom>
<Visual>

Tooltip to be displayed on mouse-over 
Defines which channel the settings are connected to (X = 1 or 2 )  

 
Color of waveform background (default gradient added , not for #000000)
Color of horizontal line 
Color of waveform  
Color of beatgrid (multiple vertical lines) 
Highlight color when beatgrid is near playback position 
Default color center marker (single vertical line)
Default color of Cuepoint marker 
? 
?

<Mark>
    	<Control>cue_point</Control>
        <Pixmap>custom_marker.png</Pixmap>
    	<Text>CUEPOINT</Text>
	<Align>Y</Align>
	<Color>#</Color>
	<TextColor>#</TextColor>
</Mark> 

Defines the Cuepoint , max. one cuepoint per channel 
Optional: Defines a custom marker for given element, if available it overrides the default triangle
Text visible when Cuepoint is set (and no custom marker is defined)
Defines where text is positioned (Y=top or center or bottom) 
Defines text background color 
Defines text color

<Mark>
    	<Control>hotcue_X_position</Control>
        <Pixmap>custom_marker.png</Pixmap>
    	<Text>HOTCUE X</Text>
	<Align>Y</Align>
	<Color>#</Color>
	<TextColor>#</TextColor>
</Mark>

max. 32 Hotcues(X=1-32), define every Hotcue for its own 
Optional: Defines a custom marker for given element, if available it overrides the default triangle
Text visible when Hotcue point is set (and no custom marker is defined)
Defines where text is positioned (Y= top or center or bottom) 
Defines text background color 
Defines text color

<Mark>
    	<Control>loop_start_position</Control>
        <Pixmap>custom_marker.png</Pixmap>
    	<Text>LOOP IN</Text>	
	<Align>Y</Align>
	<Color>#</Color>
	<TextColor>#</TextColor>
</Mark>

Defines a loops starting point
Optional: Defines a custom marker for given element, if available it overrides the default triangle
Text visible when starting point is set (and no custom marker is defined)
Defines where text is positioned (Y= top or center or bottom)
Defines text background color
Defines text color

<Mark>
    	<Control>loop_end_position</Control>
        <Pixmap>custom_marker.png</Pixmap>
   	<Text>LOOP OUT</Text>
	<Align>Y</Align>
	<Color>#</Color>
	<TextColor>#</TextColor>
</Mark>

Defines a loops end point
Optional: Defines a custom marker for given element, if available it overrides the default triangle
Text visible when end point is set (and no custom marker is defined)
Defines where text is positioned (Y= top or center or bottom)
Defines text background color
Defines text color

<MarkRange>
    	<StartControl>loop_start_position</StartControl>
    	<EndControl>loop_end_position</EndControl>
    	<EnabledControl>loop_enabled</EnabledControl>
	<Color>#</Color>	
	<DisabledColor>#</DisabledColor>
  </MarkRange>
Draws a color overlay between loop-in & loop-out



Defines overlay color when loop is active
Defines overlay color when loop is in-active

Waveform overview

<Overview>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<BgColor>#</BgColor>
	<SignalColor>#</SignalColor>
	<MarkerColor>#</MarkerColor>
	<Connection>
	<ConfigKey>[ChannelX],playposition</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	</Connection>
</Overview>


Which channel the settings are connected to (X= 1 or 2)


Background color
Color of waveform overview
Color of vertical line (playing position indicator)

Must be same value as under <Channel> above, (X = 1 or 2)
Defines if action is performed on click on element ( true or false)


Volume level display

<VuMeter>
	<Tooltip>Helpful text</Tooltip>
	<PathVu>active.png</PathVu>
	<PathBack>default.png</PathBack>
	<Pos>X,Y</Pos>
	<Horizontal>false</Horizontal>
	<PeakHoldSize>5</PeakHoldSize>
	<PeakHoldTime>400</PeakHoldTime>
	<PeakFallTime>80</PeakFallTime>
  	<PeakFallStep>5</PeakFallStep>
	<Connection>
		<ConfigKey>[X],Y</ConfigKey>
	</Connection>
</VuMeter>


Graphics displayed when active
Default  graphics displayed

Orientation (false or true, means vertical or horizontal)
Size of peak cropped from top of <PathVu> grafik (in pixel)
Time a peak  is displayed (in ms)
Time a peak falls down (in ms)
Number of steps a peaks falls down in <PeakFallTime>

Defines connected Channel & Stereo-balance (X = Channel1 or Channel2 or Master),
(Y= VuMeter or VuMeterL or VuMeterR)

Volume peak indicator

<StatusLight>
	<Tooltip>Helpful text</Tooltip>
	<PathVu>active.png</PathVu>
	<PathBack>default.png</PathBack>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[X],PeakIndicator</ConfigKey>
	</Connection>
</StatusLight>






Defines connected Channel (X = Channel1 or Channel2 or Master)


Section: Text

Track information

<Text>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<Style>font; bg-color; color; text-align; padding;
	</Style>
</Text>


Defines connected Channel (X = 1 or 2)


Uses CSS. Example=font: bold 13px/15px Lucida Grande, Lucida Sans Unicode, 
Arial, Verdana, sans-serif; background-color: transparent; color: #0099FF; 
text-align: left; padding-left: 1%;

BPM number display

<NumberBpm>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<Style>font; bg-color; color; text-align; (padding);
	</Style>
	<NumberOfDigits>6</NumberOfDigits>
	<Connection>
	<ConfigKey>[ChannelX],bpm</ConfigKey>
	</Connection>
</NumberBpm>


Defines connected Channel (X = 1 or 2)




?

Must be same value as under <Channel> above, (X = 1 or 2)


Playing position / Time remaining

<NumberPos>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<Style>font; bg-color; color; text-align; (padding);
	</Style>
	<NumberOfDigits>6</NumberOfDigits>
	<Connection>
	<ConfigKey>[ChannelX],playposition</ConfigKey>
	</Connection>
</NumberPos>


Defines connected Channel (X = 1 or 2)




?

Must be same value as under <Channel> above, (X = 1 or 2)


Pitch rate display

<NumberPos>
	<Tooltip>Helpful text</Tooltip>
	<Channel>X</Channel>
	<Pos>X,Y</Pos>
	<Size>W,H</Size>
	<Style>font; background-color; color; text-align; (padding);
	</Style>
	<NumberOfDigits>6</NumberOfDigits>
	<Connection>
	<ConfigKey>[ChannelX],rate</ConfigKey>
	</Connection>
</NumberPos>


Defines connected Channel (X = 1 or 2)




?

Must be same value as under <Channel> above, (X = 1 or 2)


Section: Slider

Channel Volume

<SliderComposed>
	<Tooltip>Helpful text</Tooltip>
	<Handle>handle.png</Handle>
	<Slider>slider.png</Slider>
	<Pos>X,Y</Pos>
	<Horizontal>false</Horizontal>
	<Connection>
	<ConfigKey>[ChannelX],volume</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	</Connection>
</SliderComposed>


Slider image (knob) which can de dragged with mouse
Slider background image the <Handle> moves up and down on

Orientation (false or true, means vertical or horizontal)

Defines connected Channel (X = 1 or 2 )



Crossfader

<SliderComposed>
	<Tooltip>Helpful text</Tooltip>
	<Handle>handle.png</Handle>
	<Slider>slider.png</Slider>
	<Pos>X,Y</Pos>
	<Horizontal>true</Horizontal>
	<Connection>
	<ConfigKey>[Master],crossfader</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	</Connection>
</SliderComposed>


Slider image (knob) which can de dragged with mouse
Slider background image the <Handle> moves left  and righ on

Orientation (false or true, means vertical or horizontal)

Use always default value



Pitch control

<SliderComposed>
	<Tooltip>Helpful text</Tooltip>
	<Handle>handle.png</Handle>
	<Slider>slider.png</Slider>
	<Pos>X,Y</Pos>
	<Horizontal>false</Horizontal>
	<Connection>
	<ConfigKey>[ChannelX],rate</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	</Connection>
</SliderComposed>


Slider image (knob) which can de dragged with mouse
Slider background image the <Handle> moves up and down on

Orientation (false or true, means vertical or horizontal)

Defines connected Channel (X = 1 or 2 )



Section: Buttons

Hint:
The <NumberStates> tag means “number of states” for the respective element (Buttons or Knobs/Rotary Fader).
For example a End of track mode Indicator is a 3-state button (Stop/Next/Loop).

The <Number> tag identifies the index of the <State> block. Each time you click on one of these multi-state buttons, it flips to the next state.

The <EmitOnDownPress> tag tells Mixxx to trigger the button's connection as soon as you press your mouse button down.
If you compare that with a regular push button in Windows, Mac OS X, or GNOME, the action of the button only occurs when you _release_ your mouse button (not when you press it).

The <ButtonState> tag tells Mixxx that the given connection should be triggered when that particular mouse button (left or right) is down.

Play

<PushButton>
	<Tooltip>Helpful text for both states</Tooltip>
	<NumberStates>2</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<State>
	<Number>1</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],play</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],cue_set</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>

Left Click: Pause/Play, Right Click: Set cue point
Overall quantity of states the button have

First state
Default image displayed
Image displayed on mouse-down


Second state
Default image displayed
Image displayed on mouse-down


First states action
Defines connected Channel (X = 1 or 2) , performed action (play)
Defines if action is performed on down-click on element (true or false)
Which mouse button must be clicked so the action is performed 

Second states action
Defines connected Channel (X = 1 or 2) , performed action (cue_set)
Defines if action is performed on down-click on element (true or false)
Which mouse button must be clicked so the action is performed
 

Cue

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],cue_default</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],cue_gotoandstop</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>

Go to and play (while playing), Set cue point (while stopped), Go to and stop (right-click)









Defines connected Channel (X = 1 or 2) , performed action (cue_default)
Defines if action is performed on down-click on element (true or false)
Which mouse button must be clicked so the action is performed 
Hint: Default cue behavior can be changed in Mixxx preferences

Defines connected Channel (X = 1 or 2) , performed action (cue_gotoandstop)
Defines if action is performed on down-click on element (true or false)
Which mouse button must be clicked so the action is performed 


Hotcue

Hint: Hotcues can utilize more functions in the <ConfigKey> then shown in this example. See MIDI Controller Mapping File Format for details

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],hotcue_Y_activate</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],hotcue_Y_activate</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],hotcue_Y_clear</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>

Set and play Hotcue (while playing), 
play Hotcue (while stopped), delete Hotcue (right-click)







Channel (X=1 or 2), Hotcue # (Y=1-32) & performed action (activate), 
depends on  # of Hotcues defined , see hotcue_X_position
Action is performed while playing (true) on click on element


Action is performed while down pressing the element and playback is stopped (false) 
Playback from Hotcue X position when the player is stopped (aka Hotcue preview )
Which mouse button must be clicked so the action is performed


Channel (X=1 or 2), Hotcue # (Y=1-32) & performed action (clear)

Which mouse button must be clicked so the action is performed


Looping

<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],loop_in</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],loop_in</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
</PushButton>

Click on button sets a "Loop-In" point. The point can not be cleared.
It is instead overwritten by a new "Loop-In" point by clicking the button again.







Channel (X=1 or 2), performed action (loop_in)
Action is performed when clicking on element
Works when playback has stopped too







<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressd.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],loop_out</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],loop_out</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
</PushButton>

Click on button sets a "Loop-Out" point. The point can not be cleared.
It is instead overwritten by a new "Loop-Out" point by clicking the button again.

The "Loop-Out" point can not be set if:
* No "Loop-In" point has been set before
* The "Loop-In" point has been set before but the current playback position is prior to the "Loop-In" point



Channel (X=1 or 2), performed action (loop_out)
Action is performed when clicking on element
Works when playback has stopped too







<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],reloop_exit</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],reloop_exit</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
 </PushButton>

Click on button activate the "Looping" feature. 
The playback jumps to "Loop-In" point and loop from there until "Loop-Out" point.
Click on button while "Looping" is activated will de-activate the Looping and ignore "Loop-Out" point.

The "Looping" feature can not be activated if:
* No "Loop-In" point has been set before
* No "Loop-Out" point has been set before


Channel (X=1 or 2), performed action (reloop_exit)
Action is performed when clicking on element








Reverse playback

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],reverse</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],reverse</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
</PushButton>

Reverse playback Channel X while playing








Defines connected Channel (X = 1 or 2) , performed action (reverse)









Fast forward (or rewind)

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>

Fast forward (rewind),  Right-click: Jump to end (start) of track








Defines connected Channel (X = 1 or 2) , performed action (Y=fwd or back)




Defines connected Channel (X = 1 or 2) , performed action (Y=fwd or back)




Defines connected Channel (X = 1 or 2) , performed action jump to (Y=end or start)




Beat sync

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],beatsync</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
</PushButton>

Synchronize tempo with other channel








Defines connected Channel (X = 1 or 2) , performed action (beatsync)




Pitch control (up and down)

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>
Left Click: Temporary increase (decrease) pitch,
Right Click: Temporary increase (decrease) pitch in small step








Defines connected Channel (X = 1 or 2),
performed action (Y= rate_temp_up or rate_temp_down)



Defines connected Channel (X = 1 or 2),
performed action (Y= rate_temp_up_small or rate_temp_down_small)



Pitch bend (Nudge)

<PushButton>
	<Tooltip>Helpful text for all states</Tooltip>
	<NumberStates>1</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>false</EmitOnDownPress>
	<ButtonState>RightButton</ButtonState>
	</Connection>
</PushButton>
Left Click: Temporary increase (decrease) pitch, 
Right Click: Temporary increase (decrease) pitch in small step








Defines connected Channel (X = 1 or 2) , 
performed action (Y= rate_temp_up or rate_temp_down)








Defines connected Channel (X = 1 or 2) , 
performed action (Y= rate_temp_up_small or rate_temp_down_small)








Prelisten / Monitoring

<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>2</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<State>
	<Number>1</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],pfl</ConfigKey>
	</Connection>
</PushButton>

Headphone prelisten for Channel X



Default button visible




Button visible when active




Defines connected Channel (X = 1 or 2) , performed action (beatsync)


End of track mode

<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>3</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>stop.png</Pressed>
	<Unpressed>stop.png</Unpressed>
	</State>
	<State>
	<Number>1</Number>
	<Pressed>next.png</Pressed>
	<Unpressed>next.png</Unpressed>
	</State>
	<State>
	<Number>2</Number>
	<Pressed>loop.png</Pressed>
	<Unpressed>loop.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],TrackEndMode</ConfigKey>
	</Connection>
</PushButton>

End of track mode control (see manual)



Button visible in STOP mode




Button visible in NEXT mode




Button visible in LOOP mode




Defines connected Channel (X = 1 or 2) , performed action (TrackEndMode)


FX (Flanger)

<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>2</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<State>
	<Number>1</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],flanger</ConfigKey>
	</Connection>
</PushButton>

Apply flanger effect to Channel X



Default button visible




Button visible when active




Defines connected Channel (X = 1 or 2) , performed action (flanger)


Frequency Kill

<PushButton>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>2</NumberStates>
	<State>
	<Number>0</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<State>
	<Number>1</Number>
	<Pressed>pressed.png</Pressed>
	<Unpressed>unpressed.png</Unpressed>
	</State>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[ChannelX],Y</ConfigKey>
	<EmitOnDownPress>true</EmitOnDownPress>
	<ButtonState>LeftButton</ButtonState>
	</Connection>
</PushButton>

Cuts the high, mid and low frequencies on Channel X



Default button visible




Button visible when active




Defines connected Channel (X = 1 or 2), 
performed action (Y= filterHighKill or filterMidKill or filterLowKill)



Section: Knobs (RotaryFader)

Master volume & balance

<Knob>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>X</NumberStates>
	<Path>knob_rotary_s%1.png</Path>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[Master],Y</ConfigKey>
	</Connection>
</Knob>

You need X single knobs where #(X/2)+1 is the 0-state. 
Example: X=41 states (270 degree rotation / 40 knobs + the 0-state) . 
You need 20 knobs rotate from -135 degree to 0 degree, one knob 0 degree (default knob visible) ,  
20 knobs rotate from -135 degree to 0 degree

Defines connected Channel (Master) , performed action (Y=volume or balance)


Flanger (FX) setting

<Knob>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>X</NumberStates>
	<Path>knob_rotary_s%1.png</Path>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[Flanger],Y</ConfigKey>
	</Connection>
</Knob>






Defines connected Channel (Flanger),
performed action (Y=lfoDelay or lfoDepth or lfoPeriod)

Headphone volume and mix

<Knob>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>X</NumberStates>
	<Path>knob_rotary_s%1.png</Path>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[Flanger],Y</ConfigKey>
	</Connection>
</Knob>






Defines connected Channel (Master), performed action (Y=headVolume or headMix)


Channel filter and gain

<Knob>
	<Tooltip>Helpful text</Tooltip>
	<NumberStates>X</NumberStates>
	<Path>knob_rotary_s%1.png</Path>
	<Pos>X,Y</Pos>
	<Connection>
	<ConfigKey>[X],Y</ConfigKey>
	</Connection>
</Knob>






Defines connected Channel (X = 1 or 2), 
performed action (Y= pregain or filterHigh or filterMid or filterLow)

Skin.xsl

The skin.xsl file (contributed by Dave Jarvis) in the “skins” directory allows you to do XSL transform which converts a Mixxx skin.xml into HTML, to be viewed with a web browser. In plain English: it lets you preview a skin in your web browser so you don't have to restart Mixxx every time you make a change. Very useful if you're creating a skin.

The XSL file can be used by running xsltproc like so:

  xsltproc skin.xsl skin.xml > skin.html

This is what the output looks like:

Useful Links

 
creating_skins.txt · Last modified: 2010/07/15 05:36 by jus
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki