/[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 1466 by capela, Thu Nov 1 19:25:10 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() {

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

  ViewVC Help
Powered by ViewVC