/[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 1513 by capela, Fri Nov 23 09:32:06 2007 UTC revision 1558 by capela, Thu Dec 6 09:35:33 2007 UTC
# Line 34  Line 34 
34  // Needed for lroundf()  // Needed for lroundf()
35  #include <math.h>  #include <math.h>
36    
 namespace QSampler {  
   
37  #ifndef CONFIG_ROUND  #ifndef CONFIG_ROUND
38  static inline long lroundf ( float x )  static inline long lroundf ( float x )
39  {  {
# Line 46  static inline long lroundf ( float x ) Line 44  static inline long lroundf ( float x )
44  }  }
45  #endif  #endif
46    
47    
48    namespace QSampler {
49    
50    //-------------------------------------------------------------------------
51    // QSampler::ChannelStrip -- Channel strip form implementation.
52    //
53    
54    // Channel strip activation/selection.
55    ChannelStrip *ChannelStrip::g_pSelectedStrip = NULL;
56    
57  ChannelStrip::ChannelStrip ( QWidget* pParent, Qt::WindowFlags wflags )  ChannelStrip::ChannelStrip ( QWidget* pParent, Qt::WindowFlags wflags )
58          : QWidget(pParent, wflags)          : QWidget(pParent, wflags)
59  {  {
# Line 77  ChannelStrip::ChannelStrip ( QWidget* pP Line 85  ChannelStrip::ChannelStrip ( QWidget* pP
85          QObject::connect(m_ui.ChannelEditPushButton,          QObject::connect(m_ui.ChannelEditPushButton,
86                  SIGNAL(clicked()),                  SIGNAL(clicked()),
87                  SLOT(channelEdit()));                  SLOT(channelEdit()));
88    
89            setSelected(false);
90  }  }
91    
92    
93  ChannelStrip::~ChannelStrip (void)  ChannelStrip::~ChannelStrip (void)
94  {  {
95            setSelected(false);
96    
97          // Destroy existing channel descriptor.          // Destroy existing channel descriptor.
98          if (m_pChannel)          if (m_pChannel)
99                  delete m_pChannel;                  delete m_pChannel;
# Line 104  void ChannelStrip::dragEnterEvent ( QDra Line 116  void ChannelStrip::dragEnterEvent ( QDra
116                          while (iter.hasNext()) {                          while (iter.hasNext()) {
117                                  const QString& sFilename = iter.next().toLocalFile();                                  const QString& sFilename = iter.next().toLocalFile();
118                                  if (!sFilename.isEmpty()) {                                  if (!sFilename.isEmpty()) {
119                                          bAccept = qsamplerChannel::isInstrumentFile(sFilename);                                          bAccept = Channel::isInstrumentFile(sFilename);
120                                          break;                                          break;
121                                  }                                  }
122                          }                          }
# Line 145  void ChannelStrip::dropEvent ( QDropEven Line 157  void ChannelStrip::dropEvent ( QDropEven
157    
158    
159  // Channel strip setup formal initializer.  // Channel strip setup formal initializer.
160  void ChannelStrip::setup ( qsamplerChannel *pChannel )  void ChannelStrip::setup ( Channel *pChannel )
161  {  {
162          // Destroy any previous channel descriptor;          // Destroy any previous channel descriptor;
163          // (remember that once setup we own it!)          // (remember that once setup we own it!)
# Line 165  void ChannelStrip::setup ( qsamplerChann Line 177  void ChannelStrip::setup ( qsamplerChann
177    
178    
179  // Channel secriptor accessor.  // Channel secriptor accessor.
180  qsamplerChannel *ChannelStrip::channel (void) const  Channel *ChannelStrip::channel (void) const
181  {  {
182          return m_pChannel;          return m_pChannel;
183  }  }
# Line 303  bool ChannelStrip::updateInstrumentName Line 315  bool ChannelStrip::updateInstrumentName
315          if (m_pChannel->instrumentName().isEmpty()) {          if (m_pChannel->instrumentName().isEmpty()) {
316                  if (m_pChannel->instrumentStatus() >= 0) {                  if (m_pChannel->instrumentStatus() >= 0) {
317                          m_ui.InstrumentNameTextLabel->setText(                          m_ui.InstrumentNameTextLabel->setText(
318                                  ' ' + qsamplerChannel::loadingInstrument());                                  ' ' + Channel::loadingInstrument());
319                  } else {                  } else {
320                          m_ui.InstrumentNameTextLabel->setText(                          m_ui.InstrumentNameTextLabel->setText(
321                                  ' ' + qsamplerChannel::noInstrumentName());                                  ' ' + Channel::noInstrumentName());
322                  }                  }
323          } else {          } else {
324                  m_ui.InstrumentNameTextLabel->setText(                  m_ui.InstrumentNameTextLabel->setText(
# Line 365  bool ChannelStrip::updateChannelInfo (vo Line 377  bool ChannelStrip::updateChannelInfo (vo
377          // Engine name...          // Engine name...
378          if (m_pChannel->engineName().isEmpty()) {          if (m_pChannel->engineName().isEmpty()) {
379                  m_ui.EngineNameTextLabel->setText(                  m_ui.EngineNameTextLabel->setText(
380                          ' ' + qsamplerChannel::noEngineName());                          ' ' + Channel::noEngineName());
381          } else {          } else {
382                  m_ui.EngineNameTextLabel->setText(                  m_ui.EngineNameTextLabel->setText(
383                          ' ' + m_pChannel->engineName());                          ' ' + m_pChannel->engineName());
# Line 503  void ChannelStrip::resetErrorCount (void Line 515  void ChannelStrip::resetErrorCount (void
515          m_iErrorCount = 0;          m_iErrorCount = 0;
516  }  }
517    
518    
519    // Channel strip activation/selection.
520    void ChannelStrip::setSelected ( bool bSelected )
521    {
522            if (bSelected) {
523                    if (g_pSelectedStrip == this)
524                            return;
525                    if (g_pSelectedStrip)
526                            g_pSelectedStrip->setSelected(false);
527                    g_pSelectedStrip = this;
528            } else {
529                    if (g_pSelectedStrip == this)
530                            g_pSelectedStrip = NULL;
531            }
532    
533            QPalette pal;
534            if (bSelected) {
535                    const QColor& color = pal.midlight().color();
536                    pal.setColor(QPalette::Background, color.dark(150));
537                    pal.setColor(QPalette::Foreground, color.light(150));
538            }
539            QWidget::setPalette(pal);
540    }
541    
542    
543    bool ChannelStrip::isSelected (void) const
544    {
545            return (this == g_pSelectedStrip);
546    }
547    
548    
549  } // namespace QSampler  } // namespace QSampler
550    
551    

Legend:
Removed from v.1513  
changed lines
  Added in v.1558

  ViewVC Help
Powered by ViewVC