Fixed: #1301 Fixed "full cycle" flag with empty list and added comments in list_zones_widget.

--HG--
branch : gsoc2011-worldeditorqt
This commit is contained in:
dnk-88 2011-07-06 03:34:30 +03:00
parent e487fac6c7
commit bdda6ac1c6
2 changed files with 15 additions and 4 deletions

View file

@ -122,9 +122,12 @@ QString ListZonesWidget::currentZoneName()
else if (m_ui.zoneSelectComboBox->currentIndex() == 2)
{
// Full cycle
zoneName = m_listSelection[m_zoneNameCycle];
m_zoneNameCycle++;
m_zoneNameCycle = m_zoneNameCycle % m_listSelection.size();
if (m_listSelection.size() > 0)
{
zoneName = m_listSelection[m_zoneNameCycle];
m_zoneNameCycle++;
m_zoneNameCycle = m_zoneNameCycle % m_listSelection.size();
}
}
return zoneName;
}

View file

@ -44,14 +44,22 @@ public:
~ListZonesWidget();
void updateUi();
// Set zone builder, call this method before using this class
void setZoneBuilder(ZoneBuilder *zoneBuilder);
// Get current zone name which user selected from list.
QString currentZoneName();
// Get current rotation value which user selected (Rot 0-0deg, 1-90deg, 2-180deg, 3-270deg).
int currentRot();
// Get current flip value which user selected (Flip 0-false, 1-true).
int currentFlip();
bool isNotPropogate() const;
bool isForce() const;
Q_SIGNALS:
private Q_SLOTS:
void updateFilters_1(const QString &value);
void updateFilters_2(const QString &value);