mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 15:29:02 +00:00
Fixed: #1301 Fixed "full cycle" flag with empty list and added comments in list_zones_widget.
This commit is contained in:
parent
777c00f270
commit
eacb41e5b2
2 changed files with 15 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue