Skip to content

File evabInputButtonPx.h

File List > src > evabInputButtonPx.h

Go to the documentation of this file

#pragma once

#include <evabElementBase.h>

namespace evab
{

  class InputButtonPx : public ElementBase
  {
  public:
    InputButtonPx(const unsigned char *aPictogram);

  protected:
    void drawer(Screen *aScreen, Coor aPos, Coor aSize, unsigned char aIsFocused) override;

  private:
    const unsigned char *mPictogram; 
  };

}