Browse Source

Artwork update

tags/1.9.4
falkTX 11 years ago
parent
commit
30c6a6fe0e
7 changed files with 1001 additions and 9122 deletions
  1. +2
    -2
      source/backend/native/3bandeq/DistrhoUI3BandEQ.cpp
  2. +2
    -2
      source/backend/native/3bandsplitter/DistrhoUI3BandSplitter.cpp
  3. +991
    -9114
      source/backend/native/pingpongpan/DistrhoArtworkPingPongPan.cpp
  4. +2
    -2
      source/backend/native/pingpongpan/DistrhoArtworkPingPongPan.hpp
  5. +4
    -2
      source/backend/native/pingpongpan/DistrhoUIPingPongPan.cpp
  6. BIN
      source/backend/native/pingpongpan/artwork/background.png
  7. BIN
      source/backend/native/pingpongpan/artwork/knob.png

+ 2
- 2
source/backend/native/3bandeq/DistrhoUI3BandEQ.cpp View File

@@ -70,7 +70,7 @@ DistrhoUI3BandEQ::DistrhoUI3BandEQ()

// knob Low-Mid
fKnobLowMid = new ImageKnob(this, knobImage);
fKnobLowMid->setPos(64, 270);
fKnobLowMid->setPos(65, 269);
fKnobLowMid->setRange(0.0f, 1000.0f);
fKnobLowMid->setValue(220.0f);
fKnobLowMid->setRotationAngle(270);
@@ -78,7 +78,7 @@ DistrhoUI3BandEQ::DistrhoUI3BandEQ()

// knob Mid-High
fKnobMidHigh = new ImageKnob(this, knobImage);
fKnobMidHigh->setPos(158, 270);
fKnobMidHigh->setPos(159, 269);
fKnobMidHigh->setRange(1000.0f, 20000.0f);
fKnobMidHigh->setValue(2000.0f);
fKnobMidHigh->setRotationAngle(270);


+ 2
- 2
source/backend/native/3bandsplitter/DistrhoUI3BandSplitter.cpp View File

@@ -70,7 +70,7 @@ DistrhoUI3BandSplitter::DistrhoUI3BandSplitter()

// knob Low-Mid
fKnobLowMid = new ImageKnob(this, knobImage);
fKnobLowMid->setPos(64, 270);
fKnobLowMid->setPos(65, 269);
fKnobLowMid->setRange(0.0f, 1000.0f);
fKnobLowMid->setValue(220.0f);
fKnobLowMid->setRotationAngle(270);
@@ -78,7 +78,7 @@ DistrhoUI3BandSplitter::DistrhoUI3BandSplitter()

// knob Mid-High
fKnobMidHigh = new ImageKnob(this, knobImage);
fKnobMidHigh->setPos(158, 270);
fKnobMidHigh->setPos(159, 269);
fKnobMidHigh->setRange(1000.0f, 20000.0f);
fKnobMidHigh->setValue(2000.0f);
fKnobMidHigh->setRotationAngle(270);


+ 991
- 9114
source/backend/native/pingpongpan/DistrhoArtworkPingPongPan.cpp
File diff suppressed because it is too large
View File


+ 2
- 2
source/backend/native/pingpongpan/DistrhoArtworkPingPongPan.hpp View File

@@ -26,9 +26,9 @@ namespace DistrhoArtworkPingPongPan
const unsigned int backgroundHeight = 170;

extern const char* knobData;
const unsigned int knobDataSize = 700284;
const unsigned int knobDataSize = 17956;
const unsigned int knobWidth = 67;
const unsigned int knobHeight = 2613;
const unsigned int knobHeight = 67;
}

#endif // BINARY_DISTRHOARTWORKPINGPONGPAN_HPP


+ 4
- 2
source/backend/native/pingpongpan/DistrhoUIPingPongPan.cpp View File

@@ -37,16 +37,18 @@ DistrhoUIPingPongPan::DistrhoUIPingPongPan()

// knob Low-Mid
fKnobFreq = new ImageKnob(this, knobImage);
fKnobFreq->setPos(61, 59);
fKnobFreq->setPos(60, 58);
fKnobFreq->setRange(0.0f, 100.0f);
fKnobFreq->setValue(50.0f);
fKnobFreq->setRotationAngle(270);
fKnobFreq->setCallback(this);

// knob Mid-High
fKnobWidth = new ImageKnob(this, knobImage);
fKnobWidth->setPos(183, 59);
fKnobWidth->setPos(182, 58);
fKnobWidth->setRange(0.0f, 100.0f);
fKnobWidth->setValue(75.0f);
fKnobWidth->setRotationAngle(270);
fKnobWidth->setCallback(this);

// about button


BIN
source/backend/native/pingpongpan/artwork/background.png View File

Before After
Width: 308  |  Height: 170  |  Size: 69KB Width: 308  |  Height: 170  |  Size: 68KB

BIN
source/backend/native/pingpongpan/artwork/knob.png View File

Before After
Width: 67  |  Height: 2613  |  Size: 172KB Width: 67  |  Height: 67  |  Size: 3.4KB

Loading…
Cancel
Save