/[svn]/qsampler/trunk/src/qsamplerChannelStrip.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerChannelStrip.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1464 by capela, Thu Nov 1 17:14:21 2007 UTC revision 1474 by schoenebeck, Mon Nov 5 20:47:38 2007 UTC
# Line 45  ChannelStrip::ChannelStrip(QWidget* pare Line 45  ChannelStrip::ChannelStrip(QWidget* pare
45    
46      // Try to restore normal window positioning.      // Try to restore normal window positioning.
47      adjustSize();      adjustSize();
48    
49            QObject::connect(ui.ChannelSetupPushButton,
50                    SIGNAL(clicked()),
51                    SLOT(channelSetup()));
52            QObject::connect(ui.ChannelMutePushButton,
53                    SIGNAL(toggled(bool)),
54                    SLOT(channelMute(bool)));
55            QObject::connect(ui.ChannelSoloPushButton,
56                    SIGNAL(toggled(bool)),
57                    SLOT(channelSolo(bool)));
58            QObject::connect(ui.VolumeSlider,
59                    SIGNAL(valueChanged(int)),
60                    SLOT(volumeChanged(int)));
61            QObject::connect(ui.VolumeSpinBox,
62                    SIGNAL(valueChanged(int)),
63                    SLOT(volumeChanged(int)));
64            QObject::connect(ui.ChannelEditPushButton,
65                    SIGNAL(clicked()),
66                    SLOT(channelEdit()));
67  }  }
68    
69  ChannelStrip::~ChannelStrip() {  ChannelStrip::~ChannelStrip() {
# Line 145  void ChannelStrip::setDisplayEffect ( bo Line 164  void ChannelStrip::setDisplayEffect ( bo
164  {  {
165      QPixmap pm =      QPixmap pm =
166          (bDisplayEffect) ?          (bDisplayEffect) ?
167              QPixmap(":/qsampler/pixmaps/displaybg1.png") : QPixmap();              QPixmap(":/icons/displaybg1.png") : QPixmap();
168      setDisplayBackground(pm);      setDisplayBackground(pm);
169  }  }
170    

Legend:
Removed from v.1464  
changed lines
  Added in v.1474

  ViewVC Help
Powered by ViewVC