/[svn]/qsampler/trunk/src/qsamplerChannelStrip.ui.h
ViewVC logotype

Annotation of /qsampler/trunk/src/qsamplerChannelStrip.ui.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 296 - (hide annotations) (download) (as text)
Wed Nov 17 11:51:49 2004 UTC (19 years, 4 months ago) by capela
File MIME type: text/x-c++hdr
File size: 9095 byte(s)
Deferred channel info updates.

1 capela 109 // qsamplerChannelStrip.ui.h
2     //
3     // ui.h extension file, included from the uic-generated form implementation.
4     /****************************************************************************
5     Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved.
6    
7     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License
9     as published by the Free Software Foundation; either version 2
10     of the License, or (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License
18     along with this program; if not, write to the Free Software
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20    
21     *****************************************************************************/
22    
23     #include <qvalidator.h>
24     #include <qmessagebox.h>
25     #include <qfileinfo.h>
26     #include <qtooltip.h>
27 capela 118 #include <qpopupmenu.h>
28 capela 267 #include <qobjectlist.h>
29 capela 109
30     #include <math.h>
31    
32     #include "qsamplerMainForm.h"
33     #include "qsamplerChannelForm.h"
34    
35     #include "config.h"
36    
37    
38     // Kind of constructor.
39     void qsamplerChannelStrip::init (void)
40     {
41     // Initialize locals.
42 capela 264 m_pMainForm = NULL;
43     m_pChannel = NULL;
44 capela 109 m_iDirtyChange = 0;
45    
46     // Try to restore normal window positioning.
47     adjustSize();
48     }
49    
50    
51     // Kind of destructor.
52     void qsamplerChannelStrip::destroy (void)
53     {
54 capela 264 // Destroy existing channel descriptor.
55     if (m_pChannel)
56     delete m_pChannel;
57     m_pChannel = NULL;
58 capela 109 }
59    
60    
61     // Channel strip setup formal initializer.
62     void qsamplerChannelStrip::setup ( qsamplerMainForm *pMainForm, int iChannelID )
63     {
64 capela 264 // Set main form reference.
65 capela 109 m_pMainForm = pMainForm;
66 capela 145
67 capela 264 // Destroy any previous channel descriptor.
68     if (m_pChannel)
69     delete m_pChannel;
70 capela 109
71 capela 264 // Create a new one...
72     m_pChannel = new qsamplerChannel(pMainForm);
73     // And set appropriate settings.
74 capela 295 if (m_pChannel && iChannelID >= 0) {
75 capela 264 m_pChannel->setChannelID(iChannelID);
76     m_iDirtyChange = 0;
77 capela 109 }
78 capela 265
79     // Stabilize this around.
80     updateChannelInfo();
81 capela 109 }
82    
83 capela 264 // Channel secriptor accessor.
84     qsamplerChannel *qsamplerChannelStrip::channel (void)
85 capela 109 {
86 capela 264 return m_pChannel;
87 capela 109 }
88    
89    
90     // Messages view font accessors.
91     QFont qsamplerChannelStrip::displayFont (void)
92     {
93     return EngineNameTextLabel->font();
94     }
95    
96     void qsamplerChannelStrip::setDisplayFont ( const QFont & font )
97     {
98     EngineNameTextLabel->setFont(font);
99 capela 145 MidiPortChannelTextLabel->setFont(font);
100 capela 109 InstrumentNameTextLabel->setFont(font);
101 capela 145 InstrumentStatusTextLabel->setFont(font);
102 capela 109 }
103    
104 capela 263
105 capela 267 // Channel display background effect.
106     void qsamplerChannelStrip::setDisplayEffect ( bool bDisplayEffect )
107     {
108     QPixmap pm;
109     if (bDisplayEffect)
110     pm = QPixmap::fromMimeSource("displaybg1.png");
111     setDisplayBackground(pm);
112     }
113    
114    
115     // Update main display background pixmap.
116     void qsamplerChannelStrip::setDisplayBackground ( const QPixmap& pm )
117     {
118     // Set the main origin...
119     ChannelInfoFrame->setPaletteBackgroundPixmap(pm);
120    
121     // Iterate for every child text label...
122     QObjectList *pList = ChannelInfoFrame->queryList("QLabel");
123     if (pList) {
124     for (QLabel *pLabel = (QLabel *) pList->first(); pLabel; pLabel = (QLabel *) pList->next())
125     pLabel->setPaletteBackgroundPixmap(pm);
126     delete pList;
127     }
128    
129     // And this standalone too.
130     StreamVoiceCountTextLabel->setPaletteBackgroundPixmap(pm);
131     }
132    
133    
134 capela 263 // Channel setup dialog slot.
135 capela 295 bool qsamplerChannelStrip::channelSetup (void)
136 capela 263 {
137 capela 295 bool bResult = false;
138 capela 263
139 capela 109 qsamplerChannelForm *pChannelForm = new qsamplerChannelForm(this);
140     if (pChannelForm) {
141 capela 295 pChannelForm->setup(m_pChannel);
142     bResult = pChannelForm->exec();
143 capela 109 delete pChannelForm;
144     }
145 capela 295
146 capela 296 if (bResult)
147 capela 295 emit channelChanged(this);
148    
149     return bResult;
150 capela 109 }
151    
152    
153     // Update whole channel info state.
154     void qsamplerChannelStrip::updateChannelInfo (void)
155     {
156 capela 264 if (m_pChannel == NULL)
157     return;
158    
159 capela 109 // Update strip caption.
160 capela 295 QString sText = m_pChannel->channelName();
161 capela 109 setCaption(sText);
162     ChannelSetupPushButton->setText(sText);
163    
164     // Check if we're up and connected.
165 capela 264 if (m_pChannel->client() == NULL)
166 capela 109 return;
167    
168 capela 264 // Read actual channel information.
169     m_pChannel->updateChannelInfo();
170 capela 109
171     // Set some proper display values.
172 capela 261 const QString sIndent = " ";
173 capela 109
174     // Engine name...
175 capela 264 if (m_pChannel->engineName().isEmpty())
176 capela 261 EngineNameTextLabel->setText(sIndent + tr("(No engine)"));
177 capela 109 else
178 capela 264 EngineNameTextLabel->setText(sIndent + m_pChannel->engineName());
179 capela 109
180     // Instrument name...
181 capela 264 if (m_pChannel->instrumentFile().isEmpty())
182 capela 261 InstrumentNameTextLabel->setText(sIndent + tr("(No instrument)"));
183 capela 109 else
184 capela 261 InstrumentNameTextLabel->setText(sIndent + QString("%1 [%2]")
185 capela 264 .arg(QFileInfo(m_pChannel->instrumentFile()).fileName()).arg(m_pChannel->instrumentNr()));
186 capela 109
187 capela 145 // Instrument status...
188 capela 264 int iInstrumentStatus = m_pChannel->instrumentStatus();
189     if (iInstrumentStatus < 0) {
190 capela 145 InstrumentStatusTextLabel->setPaletteForegroundColor(Qt::red);
191 capela 264 InstrumentStatusTextLabel->setText(tr("ERR%1").arg(iInstrumentStatus));
192 capela 145 } else {
193 capela 264 InstrumentStatusTextLabel->setPaletteForegroundColor(iInstrumentStatus < 100 ? Qt::yellow : Qt::green);
194     InstrumentStatusTextLabel->setText(QString::number(iInstrumentStatus) + "%");
195 capela 145 }
196    
197 capela 109 // MIDI Port/Channel...
198 capela 280 if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)
199     MidiPortChannelTextLabel->setText(QString("%1 / *").arg(m_pChannel->midiPort()));
200 capela 261 else
201 capela 280 MidiPortChannelTextLabel->setText(QString("%1 / %2").arg(m_pChannel->midiPort()).arg(m_pChannel->midiChannel() + 1));
202 capela 261
203 capela 109 // And update the both GUI volume elements.
204     updateChannelVolume();
205     }
206    
207    
208     // Do the dirty volume change.
209     void qsamplerChannelStrip::updateChannelVolume (void)
210     {
211 capela 264 if (m_pChannel == NULL)
212     return;
213    
214 capela 109 // Convert...
215     #ifdef CONFIG_ROUND
216 capela 264 int iVolume = (int) ::round(100.0 * m_pChannel->volume());
217 capela 109 #else
218     double fIPart = 0.0;
219 capela 264 double fFPart = ::modf(100.0 * m_pChannel->volume(), &fIPart);
220 capela 109 int iVolume = (int) fIPart;
221     if (fFPart >= +0.5)
222     iVolume++;
223     else
224     if (fFPart <= -0.5)
225     iVolume--;
226     #endif
227    
228     // And clip...
229 capela 119 if (iVolume < 0)
230 capela 109 iVolume = 0;
231    
232     // Flag it here, to avoid infinite recursion.
233     m_iDirtyChange++;
234     VolumeSlider->setValue(iVolume);
235     VolumeSpinBox->setValue(iVolume);
236     m_iDirtyChange--;
237     }
238    
239    
240     // Update whole channel usage state.
241     void qsamplerChannelStrip::updateChannelUsage (void)
242     {
243 capela 264 if (m_pChannel == NULL)
244 capela 109 return;
245 capela 264 if (m_pChannel->client() == NULL)
246     return;
247 capela 109
248 capela 145 // Conditionally update whole channel status info.
249 capela 264 if (m_pChannel->instrumentStatus() >= 0 && m_pChannel->instrumentStatus() < 100) {
250 capela 145 updateChannelInfo();
251 capela 176 // Once we get a complete instrument load, try a implied reset channel....
252 capela 264 if (m_pChannel->instrumentStatus() == 100)
253     m_pChannel->resetChannel();
254 capela 176 }
255 capela 152 // Leave, if we still have an erroneus or incomplete instrument load.
256 capela 264 if (m_pChannel->instrumentStatus() < 100)
257 capela 152 return;
258 capela 145
259 capela 109 // Get current channel voice count.
260 capela 264 int iVoiceCount = ::lscp_get_channel_voice_count(m_pChannel->client(), m_pChannel->channelID());
261 capela 109 // Get current stream count.
262 capela 264 int iStreamCount = ::lscp_get_channel_stream_count(m_pChannel->client(), m_pChannel->channelID());
263 capela 109 // Get current channel buffer fill usage.
264     // As benno has suggested this is the percentage usage
265     // of the least filled buffer stream...
266 capela 264 int iStreamUsage = ::lscp_get_channel_stream_usage(m_pChannel->client(), m_pChannel->channelID());;
267 capela 176
268 capela 109 // Update the GUI elements...
269     StreamUsageProgressBar->setProgress(iStreamUsage);
270     StreamVoiceCountTextLabel->setText(QString("%1 / %2").arg(iStreamCount).arg(iVoiceCount));
271     }
272    
273    
274     // Volume change slot.
275     void qsamplerChannelStrip::volumeChanged ( int iVolume )
276     {
277 capela 264 if (m_pChannel == NULL)
278     return;
279    
280 capela 109 // Avoid recursion.
281     if (m_iDirtyChange > 0)
282     return;
283    
284     // Convert and clip.
285     float fVolume = (float) iVolume / 100.0;
286 capela 119 if (fVolume < 0.001)
287 capela 109 fVolume = 0.0;
288    
289     // Update the GUI elements.
290 capela 264 if (m_pChannel->setVolume(fVolume)) {
291 capela 109 updateChannelVolume();
292     emit channelChanged(this);
293     }
294     }
295    
296    
297 capela 118 // Context menu event handler.
298     void qsamplerChannelStrip::contextMenuEvent( QContextMenuEvent *pEvent )
299     {
300 capela 264 if (m_pMainForm == NULL)
301     return;
302    
303 capela 118 // We'll just show up the main form's edit menu.
304 capela 127 m_pMainForm->contextMenuEvent(pEvent);
305 capela 118 }
306    
307    
308 capela 119 // Maximum volume slider accessors.
309     void qsamplerChannelStrip::setMaxVolume ( int iMaxVolume )
310     {
311     m_iDirtyChange++;
312     VolumeSlider->setRange(0, iMaxVolume);
313     VolumeSpinBox->setRange(0, iMaxVolume);
314     m_iDirtyChange--;
315     }
316    
317    
318 capela 109 // end of qsamplerChannelStrip.ui.h

  ViewVC Help
Powered by ViewVC