/*
* AndFHEM - Open Source Android application to control a FHEM home automation
* server.
*
* Copyright (c) 2011, Matthias Klass or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU GENERAL PUBLIC LICENSE, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GENERAL PUBLIC LICENSE
* for more details.
*
* You should have received a copy of the GNU GENERAL PUBLIC LICENSE
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package li.klass.fhem.adapter.devices.genericui.onoff;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.TableRow;
import com.google.common.base.Optional;
import li.klass.fhem.adapter.devices.hook.ButtonHook;
import li.klass.fhem.adapter.devices.hook.DeviceHookProvider;
import li.klass.fhem.adapter.devices.toggle.OnOffBehavior;
import li.klass.fhem.domain.core.FhemDevice;
public class OnOffActionRowForToggleables extends OnOffStateActionRow {
private final DeviceHookProvider hookProvider;
private final OnOffBehavior onOffBehavior;
public OnOffActionRowForToggleables(int layoutId, DeviceHookProvider hookProvider, OnOffBehavior onOffBehavior, Optional<Integer> text, String connectionId) {
super(layoutId, text, connectionId);
this.hookProvider = hookProvider;
this.onOffBehavior = onOffBehavior;
}
public TableRow createRow(LayoutInflater inflater, final FhemDevice device, Context context) {
TableRow tableRow = super.createRow(inflater, device, context);
Button onButton = findOnButton(tableRow);
Button offButton = findOffButton(tableRow);
ButtonHook buttonHook = hookProvider.buttonHookFor(device);
switch (buttonHook) {
case ON_DEVICE:
offButton.setVisibility(View.GONE);
onButton.setVisibility(View.VISIBLE);
break;
case OFF_DEVICE:
onButton.setVisibility(View.GONE);
offButton.setVisibility(View.VISIBLE);
break;
}
return tableRow;
}
@Override
protected String getOnStateName(FhemDevice device, Context context) {
return hookProvider.getOnStateName(device);
}
@Override
protected String getOffStateName(FhemDevice device, Context context) {
return hookProvider.getOffStateName(device);
}
@Override
protected boolean isOn(FhemDevice device, Context context) {
return onOffBehavior.isOn(device);
}
}