mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#ifndef HOME_APP_CELL_H
|
|
#define HOME_APP_CELL_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Home {
|
|
|
|
class AppCell : public HighlightCell {
|
|
public:
|
|
AppCell();
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews(bool force = false) override;
|
|
|
|
void setVisible(bool visible);
|
|
void setBackgroundView(const BackgroundView * backgroundView);
|
|
void reloadCell() override;
|
|
void setAppDescriptor(::App::Descriptor * appDescriptor);
|
|
void setExtAppDescriptor(const char* name, const Image* icon);
|
|
void setExtAppDescriptor(const char* name, const uint8_t *icon, size_t iconLength);
|
|
private:
|
|
static constexpr KDCoordinate k_iconMargin = 22;
|
|
static constexpr KDCoordinate k_iconWidth = 55;
|
|
static constexpr KDCoordinate k_iconHeight = 56;
|
|
static constexpr KDCoordinate k_nameWidthMargin = 4;
|
|
static constexpr KDCoordinate k_nameHeightMargin = 1;
|
|
IconView m_iconView;
|
|
MessageTextView m_nameView;
|
|
const BackgroundView * m_backgroundView;
|
|
bool m_visible;
|
|
bool m_external_app;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|