mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 00:29:41 +02:00
Remove GetLink(ed) in various other places
This commit is contained in:
parent
c107fb298b
commit
4aa990e835
@ -1891,20 +1891,17 @@ int AudioIO::StartStream(const TransportTracks &tracks,
|
||||
// group determination should mimic what is done in audacityAudioCallback()
|
||||
// when calling RealtimeProcess().
|
||||
int group = 0;
|
||||
for (size_t i = 0, cnt = mPlaybackTracks.size(); i < cnt; i++)
|
||||
for (size_t i = 0, cnt = mPlaybackTracks.size(); i < cnt;)
|
||||
{
|
||||
const WaveTrack *vt = mPlaybackTracks[i].get();
|
||||
|
||||
unsigned chanCnt = 1;
|
||||
if (vt->GetLinked())
|
||||
{
|
||||
i++;
|
||||
chanCnt++;
|
||||
}
|
||||
// TODO: more-than-two-channels
|
||||
unsigned chanCnt = TrackList::Channels(vt).size();
|
||||
i += chanCnt;
|
||||
|
||||
// Setup for realtime playback at the rate of the realtime
|
||||
// stream, not the rate of the track.
|
||||
em.RealtimeAddProcessor(group++, chanCnt, mRate);
|
||||
em.RealtimeAddProcessor(group++, std::min(2u, chanCnt), mRate);
|
||||
}
|
||||
}
|
||||
|
||||
@ -4992,26 +4989,38 @@ int AudioIO::AudioCallback(const void *inputBuffer, void *outputBuffer,
|
||||
|
||||
bool drop = false;
|
||||
bool dropQuickly = false;
|
||||
bool linkFlag = false;
|
||||
for (unsigned t = 0; t < numPlaybackTracks; t++)
|
||||
{
|
||||
WaveTrack *vt = mPlaybackTracks[t].get();
|
||||
|
||||
chans[chanCnt] = vt;
|
||||
|
||||
if ( linkFlag ) {
|
||||
linkFlag = false;
|
||||
// TODO: more-than-two-channels
|
||||
auto nextTrack =
|
||||
t + 1 < numPlaybackTracks
|
||||
? mPlaybackTracks[t + 1].get()
|
||||
: nullptr;
|
||||
bool firstChannel = vt->IsLeader();
|
||||
bool lastChannel = !nextTrack || nextTrack->IsLeader();
|
||||
|
||||
if ( ! firstChannel )
|
||||
dropQuickly = dropQuickly && doneMicrofading( *vt );
|
||||
}
|
||||
else {
|
||||
drop = dropTrack( *vt );
|
||||
|
||||
linkFlag = vt->GetLinked();
|
||||
selected = vt->GetSelected();
|
||||
|
||||
// If we have a mono track, clear the right channel
|
||||
if (!linkFlag)
|
||||
if ( lastChannel ) {
|
||||
// TODO: more-than-two-channels
|
||||
#if 1
|
||||
// If we have a mono track, clear the right channel
|
||||
memset(tempBufs[1], 0, framesPerBuffer * sizeof(float));
|
||||
#else
|
||||
// clear any other channels
|
||||
for ( size_t c = chanCnt + 1; c < numPlaybackChannels; ++c )
|
||||
memset(tempBufs[c], 0, framesPerBuffer * sizeof(float));
|
||||
#endif
|
||||
}
|
||||
|
||||
dropQuickly = drop && doneMicrofading( *vt );
|
||||
}
|
||||
@ -5055,7 +5064,7 @@ int AudioIO::AudioCallback(const void *inputBuffer, void *outputBuffer,
|
||||
maxLen = std::max(maxLen, len);
|
||||
|
||||
|
||||
if (linkFlag)
|
||||
if ( ! lastChannel )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
@ -2318,13 +2318,12 @@ CommandFlag MenuCommandHandler::GetUpdateFlags
|
||||
flags |= PlayableTracksExistFlag;
|
||||
if (t->GetSelected()) {
|
||||
flags |= TracksSelectedFlag;
|
||||
if (t->GetLinked()) {
|
||||
// TODO: more-than-two-channels
|
||||
if (TrackList::Channels(t).size() > 1) {
|
||||
flags |= StereoRequiredFlag;
|
||||
}
|
||||
else {
|
||||
flags |= WaveTracksSelectedFlag;
|
||||
flags |= AudioTracksSelectedFlag;
|
||||
}
|
||||
flags |= WaveTracksSelectedFlag;
|
||||
flags |= AudioTracksSelectedFlag;
|
||||
}
|
||||
if( t->GetEndTime() > t->GetStartTime() )
|
||||
flags |= HasWaveDataFlag;
|
||||
|
75
src/Mix.cpp
75
src/Mix.cpp
@ -49,28 +49,23 @@ void MixAndRender(TrackList *tracks, TrackFactory *trackFactory,
|
||||
uLeft.reset(), uRight.reset();
|
||||
|
||||
// This function was formerly known as "Quick Mix".
|
||||
const Track *t;
|
||||
bool mono = false; /* flag if output can be mono without loosing anything*/
|
||||
bool oneinput = false; /* flag set to true if there is only one input track
|
||||
(mono or stereo) */
|
||||
|
||||
TrackListIterator iter(tracks);
|
||||
SelectedTrackListOfKindIterator usefulIter(Track::Wave, tracks);
|
||||
const auto trackRange = tracks->Selected< const WaveTrack >();
|
||||
auto first = *trackRange.begin();
|
||||
// this only iterates tracks which are relevant to this function, i.e.
|
||||
// selected WaveTracks. The tracklist is (confusingly) the list of all
|
||||
// tracks in the project
|
||||
|
||||
int numWaves = 0; /* number of wave tracks in the selection */
|
||||
int numMono = 0; /* number of mono, centre-panned wave tracks in selection*/
|
||||
t = iter.First();
|
||||
while (t) {
|
||||
if (t->GetSelected() && t->GetKind() == Track::Wave) {
|
||||
numWaves++;
|
||||
float pan = ((WaveTrack*)t)->GetPan();
|
||||
if (t->GetChannel() == Track::MonoChannel && pan == 0)
|
||||
numMono++;
|
||||
}
|
||||
t = iter.Next();
|
||||
for(auto wt : trackRange) {
|
||||
numWaves++;
|
||||
float pan = wt->GetPan();
|
||||
if (wt->GetChannel() == Track::MonoChannel && pan == 0)
|
||||
numMono++;
|
||||
}
|
||||
|
||||
if (numMono == numWaves)
|
||||
@ -88,45 +83,42 @@ void MixAndRender(TrackList *tracks, TrackFactory *trackFactory,
|
||||
double tstart, tend; // start and end times for one track.
|
||||
|
||||
WaveTrackConstArray waveArray;
|
||||
t = iter.First();
|
||||
|
||||
while (t) {
|
||||
if (t->GetSelected() && t->GetKind() == Track::Wave) {
|
||||
waveArray.push_back(Track::Pointer<const WaveTrack>(t));
|
||||
tstart = t->GetStartTime();
|
||||
tend = t->GetEndTime();
|
||||
if (tend > mixEndTime)
|
||||
mixEndTime = tend;
|
||||
// try and get the start time. If the track is empty we will get 0,
|
||||
// which is ambiguous because it could just mean the track starts at
|
||||
// the beginning of the project, as well as empty track. The give-away
|
||||
// is that an empty track also ends at zero.
|
||||
for(auto wt : trackRange) {
|
||||
waveArray.push_back( Track::Pointer< const WaveTrack >( wt ) );
|
||||
tstart = wt->GetStartTime();
|
||||
tend = wt->GetEndTime();
|
||||
if (tend > mixEndTime)
|
||||
mixEndTime = tend;
|
||||
// try and get the start time. If the track is empty we will get 0,
|
||||
// which is ambiguous because it could just mean the track starts at
|
||||
// the beginning of the project, as well as empty track. The give-away
|
||||
// is that an empty track also ends at zero.
|
||||
|
||||
if (tstart != tend) {
|
||||
// we don't get empty tracks here
|
||||
if (!gotstart) {
|
||||
// no previous start, use this one unconditionally
|
||||
mixStartTime = tstart;
|
||||
gotstart = true;
|
||||
} else if (tstart < mixStartTime)
|
||||
mixStartTime = tstart; // have a start, only make it smaller
|
||||
} // end if start and end are different
|
||||
} // end if track is a selected WaveTrack.
|
||||
/** @TODO: could we not use a SelectedTrackListOfKindIterator here? */
|
||||
t = iter.Next();
|
||||
if (tstart != tend) {
|
||||
// we don't get empty tracks here
|
||||
if (!gotstart) {
|
||||
// no previous start, use this one unconditionally
|
||||
mixStartTime = tstart;
|
||||
gotstart = true;
|
||||
} else if (tstart < mixStartTime)
|
||||
mixStartTime = tstart; // have a start, only make it smaller
|
||||
} // end if start and end are different
|
||||
}
|
||||
|
||||
/* create the destination track (NEW track) */
|
||||
if ((numWaves == 1) || ((numWaves == 2) && (usefulIter.First()->GetLink() != NULL)))
|
||||
if (numWaves == TrackList::Channels(first).size())
|
||||
oneinput = true;
|
||||
// only one input track (either 1 mono or one linked stereo pair)
|
||||
|
||||
auto mixLeft = trackFactory->NewWaveTrack(format, rate);
|
||||
if (oneinput)
|
||||
mixLeft->SetName(usefulIter.First()->GetName()); /* set name of output track to be the same as the sole input track */
|
||||
mixLeft->SetName(first->GetName()); /* set name of output track to be the same as the sole input track */
|
||||
else
|
||||
mixLeft->SetName(_("Mix"));
|
||||
mixLeft->SetOffset(mixStartTime);
|
||||
|
||||
// TODO: more-than-two-channels
|
||||
decltype(mixLeft) mixRight{};
|
||||
if (mono) {
|
||||
mixLeft->SetChannel(Track::MonoChannel);
|
||||
@ -134,10 +126,11 @@ void MixAndRender(TrackList *tracks, TrackFactory *trackFactory,
|
||||
else {
|
||||
mixRight = trackFactory->NewWaveTrack(format, rate);
|
||||
if (oneinput) {
|
||||
if (usefulIter.First()->GetLink() != NULL) // we have linked track
|
||||
mixRight->SetName(usefulIter.First()->GetLink()->GetName()); /* set name to match input track's right channel!*/
|
||||
auto channels = TrackList::Channels(first);
|
||||
if (channels.size() > 1)
|
||||
mixRight->SetName((*channels.begin().advance(1))->GetName()); /* set name to match input track's right channel!*/
|
||||
else
|
||||
mixRight->SetName(usefulIter.First()->GetName()); /* set name to that of sole input channel */
|
||||
mixRight->SetName(first->GetName()); /* set name to that of sole input channel */
|
||||
}
|
||||
else
|
||||
mixRight->SetName(_("Mix"));
|
||||
|
@ -334,9 +334,10 @@ WaveTrack *MixerTrackCluster::GetWave() const
|
||||
|
||||
WaveTrack *MixerTrackCluster::GetRight() const
|
||||
{
|
||||
// TODO: more-than-two-channels
|
||||
auto left = GetWave();
|
||||
if (left)
|
||||
return static_cast<WaveTrack*>(left->GetLink());
|
||||
return * ++ TrackList::Channels(left).begin();
|
||||
else
|
||||
return nullptr;
|
||||
}
|
||||
@ -981,9 +982,9 @@ void MixerBoard::UpdateTrackClusters()
|
||||
size_t nClusterCount = mMixerTrackClusters.size();
|
||||
unsigned int nClusterIndex = 0;
|
||||
MixerTrackCluster* pMixerTrackCluster = NULL;
|
||||
Track* pTrack;
|
||||
|
||||
for (auto pPlayableTrack: mTracks->Leaders<PlayableTrack>()) {
|
||||
// TODO: more-than-two-channels
|
||||
auto spTrack = Track::Pointer<PlayableTrack>( pPlayableTrack );
|
||||
if (nClusterIndex < nClusterCount)
|
||||
{
|
||||
|
@ -703,16 +703,20 @@ void ScreenFrame::OnOneHour(wxCommandEvent & WXUNUSED(event))
|
||||
|
||||
void ScreenFrame::SizeTracks(int h)
|
||||
{
|
||||
TrackListIterator iter(mContext.GetProject()->GetTracks());
|
||||
for (Track * t = iter.First(); t; t = iter.Next()) {
|
||||
if (t->GetKind() == Track::Wave) {
|
||||
if (t->GetLink()) {
|
||||
t->SetHeight(h);
|
||||
}
|
||||
else {
|
||||
t->SetHeight(h*2);
|
||||
}
|
||||
}
|
||||
// h is the height for a channel
|
||||
// Set the height of a mono track twice as high
|
||||
|
||||
// TODO: more-than-two-channels
|
||||
// If there should be more-than-stereo tracks, this makes
|
||||
// each channel as high as for a stereo channel
|
||||
|
||||
auto tracks = mContext.GetProject()->GetTracks();
|
||||
for (auto t : tracks->Leaders<WaveTrack>()) {
|
||||
auto channels = TrackList::Channels(t);
|
||||
auto nChannels = channels.size();
|
||||
auto height = nChannels == 1 ? 2 * h : h;
|
||||
for (auto channel : channels)
|
||||
channel->SetHeight(height);
|
||||
}
|
||||
mContext.GetProject()->RedrawProject();
|
||||
}
|
||||
|
@ -1359,10 +1359,9 @@ bool Effect::ProcessPass()
|
||||
if (!left->GetSelected())
|
||||
return fallthrough();
|
||||
|
||||
WaveTrack *right;
|
||||
sampleCount len;
|
||||
sampleCount leftStart;
|
||||
sampleCount rightStart;
|
||||
sampleCount rightStart = 0;
|
||||
|
||||
if (!isGenerator)
|
||||
{
|
||||
@ -1376,48 +1375,37 @@ bool Effect::ProcessPass()
|
||||
mSampleCnt = left->TimeToLongSamples(mDuration);
|
||||
}
|
||||
|
||||
mNumChannels = 1;
|
||||
mNumChannels = 0;
|
||||
WaveTrack *right{};
|
||||
|
||||
if (left->GetChannel() == Track::LeftChannel)
|
||||
{
|
||||
map[0] = ChannelNameFrontLeft;
|
||||
}
|
||||
else if (left->GetChannel() == Track::RightChannel)
|
||||
{
|
||||
map[0] = ChannelNameFrontRight;
|
||||
}
|
||||
else
|
||||
{
|
||||
map[0] = ChannelNameMono;
|
||||
}
|
||||
map[1] = ChannelNameEOL;
|
||||
|
||||
right = NULL;
|
||||
rightStart = 0;
|
||||
if (left->GetLinked() && multichannel)
|
||||
{
|
||||
// Assume linked track is wave
|
||||
right = static_cast<WaveTrack *>(left->GetLink());
|
||||
if (!isGenerator)
|
||||
{
|
||||
GetSamples(right, &rightStart, &len);
|
||||
}
|
||||
clear = false;
|
||||
mNumChannels = 2;
|
||||
|
||||
if (right->GetChannel() == Track::LeftChannel)
|
||||
{
|
||||
map[1] = ChannelNameFrontLeft;
|
||||
}
|
||||
else if (right->GetChannel() == Track::RightChannel)
|
||||
{
|
||||
map[1] = ChannelNameFrontRight;
|
||||
}
|
||||
// Iterate either over one track which could be any channel,
|
||||
// or if multichannel, then over all channels of left,
|
||||
// which is a leader.
|
||||
for (auto channel :
|
||||
TrackList::Channels(left).StartingWith(left)) {
|
||||
if (channel->GetChannel() == Track::LeftChannel)
|
||||
map[mNumChannels] = ChannelNameFrontLeft;
|
||||
else if (channel->GetChannel() == Track::RightChannel)
|
||||
map[mNumChannels] = ChannelNameFrontRight;
|
||||
else
|
||||
{
|
||||
map[1] = ChannelNameMono;
|
||||
map[mNumChannels] = ChannelNameMono;
|
||||
|
||||
++ mNumChannels;
|
||||
map[mNumChannels] = ChannelNameEOL;
|
||||
|
||||
if (! multichannel)
|
||||
break;
|
||||
|
||||
if (mNumChannels == 2) {
|
||||
// TODO: more-than-two-channels
|
||||
right = channel;
|
||||
clear = false;
|
||||
if (!isGenerator)
|
||||
GetSamples(right, &rightStart, &len);
|
||||
|
||||
// Ignore other channels
|
||||
break;
|
||||
}
|
||||
map[2] = ChannelNameEOL;
|
||||
}
|
||||
|
||||
// Let the client know the sample rate
|
||||
|
@ -75,47 +75,40 @@ bool EffectStereoToMono::Process()
|
||||
this->CopyInputTracks(); // Set up mOutputTracks.
|
||||
bool bGoodResult = true;
|
||||
|
||||
auto trackRange = mOutputTracks->Selected< WaveTrack >();
|
||||
mLeftTrack = *trackRange.first;
|
||||
auto trackRange = mOutputTracks->SelectedLeaders< WaveTrack >();
|
||||
bool refreshIter = false;
|
||||
|
||||
if(mLeftTrack)
|
||||
{
|
||||
// create a NEW WaveTrack to hold all of the output
|
||||
AudacityProject *p = GetActiveProject();
|
||||
mOutTrack = p->GetTrackFactory()->NewWaveTrack(floatSample, mLeftTrack->GetRate());
|
||||
}
|
||||
|
||||
int count = 0;
|
||||
while ( trackRange.first != trackRange.second ) {
|
||||
mLeftTrack = *trackRange.first;
|
||||
if (mLeftTrack->GetLinked()) {
|
||||
auto channels = TrackList::Channels( mLeftTrack );
|
||||
if (channels.size() != 2) {
|
||||
// TODO: more-than-two-channels
|
||||
++ trackRange.first;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Assume linked track is wave
|
||||
mRightTrack = * ++ trackRange.first;
|
||||
mRightTrack = * channels.rbegin();
|
||||
|
||||
if ((mLeftTrack->GetRate() == mRightTrack->GetRate())) {
|
||||
auto leftTrackStart = mLeftTrack->TimeToLongSamples(mLeftTrack->GetStartTime());
|
||||
auto rightTrackStart = mRightTrack->TimeToLongSamples(mRightTrack->GetStartTime());
|
||||
mStart = wxMin(leftTrackStart, rightTrackStart);
|
||||
if ((mLeftTrack->GetRate() == mRightTrack->GetRate())) {
|
||||
auto leftTrackStart = mLeftTrack->TimeToLongSamples(mLeftTrack->GetStartTime());
|
||||
auto rightTrackStart = mRightTrack->TimeToLongSamples(mRightTrack->GetStartTime());
|
||||
mStart = wxMin(leftTrackStart, rightTrackStart);
|
||||
|
||||
auto leftTrackEnd = mLeftTrack->TimeToLongSamples(mLeftTrack->GetEndTime());
|
||||
auto rightTrackEnd = mRightTrack->TimeToLongSamples(mRightTrack->GetEndTime());
|
||||
mEnd = wxMax(leftTrackEnd, rightTrackEnd);
|
||||
auto leftTrackEnd = mLeftTrack->TimeToLongSamples(mLeftTrack->GetEndTime());
|
||||
auto rightTrackEnd = mRightTrack->TimeToLongSamples(mRightTrack->GetEndTime());
|
||||
mEnd = wxMax(leftTrackEnd, rightTrackEnd);
|
||||
|
||||
bGoodResult = ProcessOne(count);
|
||||
if (!bGoodResult)
|
||||
break;
|
||||
bGoodResult = ProcessOne(count);
|
||||
if (!bGoodResult)
|
||||
break;
|
||||
|
||||
mOutTrack->Clear(mOutTrack->GetStartTime(), mOutTrack->GetEndTime());
|
||||
|
||||
// The right channel has been deleted, so we must restart from the beginning
|
||||
refreshIter = true;
|
||||
}
|
||||
// The right channel has been deleted, so we must restart from the beginning
|
||||
refreshIter = true;
|
||||
}
|
||||
|
||||
if (refreshIter) {
|
||||
trackRange = mOutputTracks->Selected< WaveTrack >();
|
||||
trackRange = mOutputTracks->SelectedLeaders< WaveTrack >();
|
||||
refreshIter = false;
|
||||
}
|
||||
else
|
||||
@ -128,11 +121,6 @@ bool EffectStereoToMono::Process()
|
||||
return bGoodResult;
|
||||
}
|
||||
|
||||
void EffectStereoToMono::End()
|
||||
{
|
||||
mOutTrack.reset();
|
||||
}
|
||||
|
||||
bool EffectStereoToMono::ProcessOne(int count)
|
||||
{
|
||||
float curLeftFrame;
|
||||
@ -145,6 +133,10 @@ bool EffectStereoToMono::ProcessOne(int count)
|
||||
Floats rightBuffer{ idealBlockLen };
|
||||
bool bResult = true;
|
||||
|
||||
AudacityProject *p = GetActiveProject();
|
||||
auto outTrack =
|
||||
p->GetTrackFactory()->NewWaveTrack(floatSample, mLeftTrack->GetRate());
|
||||
|
||||
while (index < mEnd) {
|
||||
bResult &= mLeftTrack->Get((samplePtr)leftBuffer.get(), floatSample, index, idealBlockLen);
|
||||
bResult &= mRightTrack->Get((samplePtr)rightBuffer.get(), floatSample, index, idealBlockLen);
|
||||
@ -156,15 +148,15 @@ bool EffectStereoToMono::ProcessOne(int count)
|
||||
curMonoFrame = (curLeftFrame + curRightFrame) / 2.0;
|
||||
leftBuffer[i] = curMonoFrame;
|
||||
}
|
||||
mOutTrack->Append((samplePtr)leftBuffer.get(), floatSample, limit);
|
||||
outTrack->Append((samplePtr)leftBuffer.get(), floatSample, limit);
|
||||
if (TrackProgress(count, 2.*(index.as_double() / (mEnd - mStart).as_double())))
|
||||
return false;
|
||||
}
|
||||
|
||||
double minStart = wxMin(mLeftTrack->GetStartTime(), mRightTrack->GetStartTime());
|
||||
mLeftTrack->Clear(mLeftTrack->GetStartTime(), mLeftTrack->GetEndTime());
|
||||
mOutTrack->Flush();
|
||||
mLeftTrack->Paste(minStart, mOutTrack.get());
|
||||
outTrack->Flush();
|
||||
mLeftTrack->Paste(minStart, outTrack.get());
|
||||
mLeftTrack->SetLinked(false);
|
||||
mRightTrack->SetLinked(false);
|
||||
mLeftTrack->SetChannel(Track::MonoChannel);
|
||||
|
@ -41,7 +41,6 @@ public:
|
||||
// Effect implementation
|
||||
|
||||
bool Process() override;
|
||||
void End() override;
|
||||
bool IsHidden() override;
|
||||
|
||||
private:
|
||||
@ -54,7 +53,6 @@ private:
|
||||
sampleCount mEnd;
|
||||
WaveTrack *mLeftTrack;
|
||||
WaveTrack *mRightTrack;
|
||||
std::unique_ptr<WaveTrack> mOutTrack;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -769,7 +769,7 @@ bool NyquistEffect::Process()
|
||||
Effect::MessageBox(message, wxOK | wxCENTRE | wxICON_EXCLAMATION, _("Nyquist Error"));
|
||||
}
|
||||
|
||||
auto trackRange = mOutputTracks->Selected< WaveTrack >();
|
||||
auto trackRange = mOutputTracks->Selected< WaveTrack >() + &Track::IsLeader;
|
||||
|
||||
// Keep track of whether the current track is first selected in its sync-lock group
|
||||
// (we have no idea what the length of the returned audio will be, so we have
|
||||
@ -785,10 +785,14 @@ bool NyquistEffect::Process()
|
||||
if (bOnePassTool) {
|
||||
}
|
||||
else {
|
||||
if (mCurTrack[0]->GetLinked()) {
|
||||
auto channels = TrackList::Channels(mCurTrack[0]);
|
||||
if (channels.size() > 1) {
|
||||
// TODO: more-than-two-channels
|
||||
// Pay attention to consistency of mNumSelectedChannels
|
||||
// with the running tally made by this loop!
|
||||
mCurNumChannels = 2;
|
||||
|
||||
mCurTrack[1] = * ++ iter;
|
||||
mCurTrack[1] = * ++ channels.first;
|
||||
if (mCurTrack[1]->GetRate() != mCurTrack[0]->GetRate()) {
|
||||
Effect::MessageBox(_("Sorry, cannot apply effect on stereo tracks where the tracks don't match."),
|
||||
wxOK | wxCENTRE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user