package com.boldsofts.stickerspipe.widgets;

import android.content.Context;
import android.util.AttributeSet;

import com.facebook.react.uimanager.ReactCompoundView;

import vc908.stickerfactory.ui.view.BadgedButton;

/**
 * Created by juicycleff on 6/24/2017.
 */

public class RNBadgedStickerButton extends BadgedButton implements ReactCompoundView {
    public RNBadgedStickerButton(Context context) {
        super(context);
    }

    public RNBadgedStickerButton(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public RNBadgedStickerButton(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    public RNBadgedStickerButton(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }

    @Override
    public int reactTagForTouch(float touchX, float touchY) {
        return 0;
    }

    protected int getDrawableMarker() {
        return vc908.stickerfactory.R.drawable.sp_button_badge;
    }
}
