ESPHome 2026.10.0-dev
Loading...
Searching...
No Matches
graphical_display_menu.cpp
Go to the documentation of this file.
2#include "esphome/core/hal.h"
4#include "esphome/core/log.h"
5#include <cstdlib>
7
9
10static const char *const TAG = "graphical_display_menu";
11
13 if (this->display_ != nullptr) {
14 display::display_writer_t writer = [this](display::Display &it) { this->draw_menu(); };
15 this->display_page_ = make_unique<display::DisplayPage>(writer);
16 }
17
18 if (!this->menu_item_value_.has_value()) {
19 this->menu_item_value_ = [](const MenuItemValueArguments *it) {
20 std::string label = " ";
21 if (it->is_item_selected && it->is_menu_editing) {
22 label.append(">");
23 label.append(it->item->get_value_text());
24 label.append("<");
25 } else {
26 label.append("(");
27 label.append(it->item->get_value_text());
28 label.append(")");
29 }
30 return label;
31 };
32 }
33
35}
36
38 ESP_LOGCONFIG(
39 TAG,
40 "Graphical Display Menu\n"
41 " Has Display: %s\n"
42 " Popup Mode: %s\n"
43 " Advanced Drawing Mode: %s\n"
44 " Has Font: %s\n"
45 " Mode: %s\n"
46 " Active: %s\n"
47 " Menu items:",
48 YESNO(this->display_ != nullptr), YESNO(this->display_ != nullptr), YESNO(this->display_ == nullptr),
49 YESNO(this->font_ != nullptr),
50 this->mode_ == display_menu_base::MENU_MODE_ROTARY ? LOG_STR_LITERAL("Rotary") : LOG_STR_LITERAL("Joystick"),
51 YESNO(this->active_));
52 for (size_t i = 0; i < this->displayed_item_->items_size(); i++) {
53 auto *item = this->displayed_item_->get_item(i);
54 ESP_LOGCONFIG(TAG, " %i: %s (Type: %s, Immediate Edit: %s)", i, item->get_text().c_str(),
55 LOG_STR_ARG(display_menu_base::menu_item_type_to_string(item->get_type())),
56 YESNO(item->get_immediate_edit()));
57 }
58}
59
61
63
64void GraphicalDisplayMenu::set_foreground_color(Color foreground_color) { this->foreground_color_ = foreground_color; }
65void GraphicalDisplayMenu::set_background_color(Color background_color) { this->background_color_ = background_color; }
66
68 if (this->display_ != nullptr) {
70 this->display_->show_page(this->display_page_.get());
71 this->display_->clear();
72 } else {
73 this->update();
74 }
75}
76
78 if (this->previous_display_page_ != nullptr) {
80 this->display_->clear();
81 this->update();
82 this->previous_display_page_ = nullptr;
83 } else {
84 this->update();
85 }
86}
87
89 this->update();
90
91 // If we're in advanced drawing mode we won't have a display and will instead require the update callback to do
92 // our drawing
93 if (this->display_ != nullptr) {
94 draw_menu();
95 }
96}
97
99 if (this->display_ == nullptr) {
100 ESP_LOGE(TAG, "draw_menu() called without a display_. This is only available when using the menu in pop up mode");
101 return;
102 }
103 display::Rect bounds(0, 0, this->display_->get_width(), this->display_->get_height());
104 this->draw_menu_internal_(this->display_, &bounds);
105}
106
108 this->draw_menu_internal_(display, bounds);
109}
110
112 int16_t total_height = 0;
113 int16_t max_width = 0;
114 int y_padding = 2;
115 bool scroll_menu_items = false;
116 std::vector<display::Rect> menu_dimensions;
117 int number_items_fit_to_screen = 0;
118 const int max_item_index = this->displayed_item_->items_size() - 1;
119
120 for (size_t i = 0; max_item_index >= 0 && i <= static_cast<size_t>(max_item_index); i++) {
121 const auto *item = this->displayed_item_->get_item(i);
122 const bool selected = i == this->cursor_index_;
123 const display::Rect item_dimensions = this->measure_item_(display, item, bounds, selected);
124
125 menu_dimensions.push_back(item_dimensions);
126 total_height += item_dimensions.h + (i == 0 ? 0 : y_padding);
127 max_width = std::max(max_width, item_dimensions.w);
128
129 if (total_height <= bounds->h) {
130 number_items_fit_to_screen++;
131 } else {
132 // Scroll the display if the selected item or the item immediately after it overflows
133 if ((selected) || (i == this->cursor_index_ + 1)) {
134 scroll_menu_items = true;
135 }
136 }
137 }
138
139 // Determine what items to draw
140 int first_item_index = 0;
141 int last_item_index = max_item_index;
142
143 if (number_items_fit_to_screen <= 1) {
144 // If only one item can fit to the bounds draw the current cursor item
145 last_item_index = std::min(last_item_index, this->cursor_index_ + 1);
146 first_item_index = this->cursor_index_;
147 } else {
148 if (scroll_menu_items) {
149 // Attempt to draw the item after the current item (+1 for equality check in the draw loop)
150 last_item_index = std::min(last_item_index, this->cursor_index_ + 1);
151
152 // Go back through the measurements to determine how many prior items we can fit
153 int height_left_to_use = bounds->h;
154 for (int i = last_item_index; i >= 0; i--) {
155 const display::Rect item_dimensions = menu_dimensions[i];
156 height_left_to_use -= (item_dimensions.h + y_padding);
157
158 if (height_left_to_use <= 0) {
159 // Ran out of space - this is our first item to draw
160 first_item_index = i;
161 break;
162 }
163 }
164 const int items_to_draw = last_item_index - first_item_index;
165 // Dont't draw last item partially if it is the selected item
166 if ((this->cursor_index_ == last_item_index) && (number_items_fit_to_screen <= items_to_draw) &&
167 (first_item_index < max_item_index)) {
168 first_item_index++;
169 }
170 }
171 }
172
173 // Render the items into the view port
174 display->start_clipping(*bounds);
175
176 display->filled_rectangle(bounds->x, bounds->y, max_width, total_height, this->background_color_);
177 auto y_offset = bounds->y;
178 for (size_t i = static_cast<size_t>(first_item_index);
179 last_item_index >= 0 && i <= static_cast<size_t>(last_item_index); i++) {
180 const auto *item = this->displayed_item_->get_item(i);
181 const bool selected = i == this->cursor_index_;
182 display::Rect dimensions = menu_dimensions[i];
183
184 dimensions.y = y_offset;
185 dimensions.x = bounds->x;
186 this->draw_item_(display, item, &dimensions, selected);
187
188 y_offset += dimensions.h + y_padding;
189 }
190
191 display->end_clipping();
192}
193
195 const display::Rect *bounds, const bool selected) {
196 display::Rect dimensions(0, 0, 0, 0);
197
198 if (selected) {
199 // TODO: Support selection glyph
200 dimensions.w += 0;
201 dimensions.h += 0;
202 }
203
204 std::string label = item->get_text();
205 if (item->has_value()) {
206 // Append to label
207 MenuItemValueArguments args(item, selected, this->editing_);
208 label.append(this->menu_item_value_.value(&args));
209 }
210
211 int x1;
212 int y1;
213 int width;
214 int height;
215 display->get_text_bounds(0, 0, label.c_str(), this->font_, display::TextAlign::TOP_LEFT, &x1, &y1, &width, &height);
216
217 dimensions.w = std::min((int16_t) width, bounds->w);
218 dimensions.h = std::min((int16_t) height, bounds->h);
219
220 return dimensions;
221}
222
224 const display::Rect *bounds, const bool selected) {
225 const auto background_color = selected ? this->foreground_color_ : this->background_color_;
226 const auto foreground_color = selected ? this->background_color_ : this->foreground_color_;
227
228 // int background_width = std::max(bounds->width, available_width);
229 int background_width = bounds->w;
230
231 display->filled_rectangle(bounds->x, bounds->y, background_width, bounds->h, background_color);
232
233 std::string label = item->get_text();
234 if (item->has_value()) {
235 MenuItemValueArguments args(item, selected, this->editing_);
236 label.append(this->menu_item_value_.value(&args));
237 }
238
239 display->print(bounds->x, bounds->y, this->font_, foreground_color, display::TextAlign::TOP_LEFT, label.c_str(),
240 background_color);
241}
242
243void GraphicalDisplayMenu::draw_item(const display_menu_base::MenuItem *item, const uint8_t row, const bool selected) {
244 ESP_LOGE(TAG, "draw_item(MenuItem *item, uint8_t row, bool selected) called. The graphical_display_menu specific "
245 "draw_item should be called.");
246}
247
249
250} // namespace esphome::graphical_display_menu
uint8_t h
Definition bl0906.h:2
virtual void setup()
Where the component's initialization should happen.
Definition component.cpp:84
void show_page(DisplayPage *page)
Definition display.cpp:679
virtual void clear()
Clear the entire screen by filling it with OFF pixels.
Definition display.cpp:15
void end_clipping()
Reset the invalidation region.
Definition display.cpp:739
void start_clipping(Rect rect)
Set the clipping rectangle for further drawing.
Definition display.cpp:731
const DisplayPage * get_active_page() const
Definition display.h:701
virtual int get_width()
Get the calculated width of the display in pixels with rotation applied.
Definition display.h:325
void print(int x, int y, BaseFont *font, Color color, TextAlign align, const char *text, Color background=COLOR_OFF)
Print text with the anchor point at [x,y] with font.
Definition display.cpp:506
void get_text_bounds(int x, int y, const char *text, BaseFont *font, TextAlign align, int *x1, int *y1, int *width, int *height)
Get the text bounds of the given string.
Definition display.cpp:574
void filled_rectangle(int x1, int y1, int width, int height, Color color=COLOR_ON)
Fill a rectangle with the top left point at [x1,y1] and the bottom right point at [x1+width,...
Definition display.cpp:107
int16_t x
X coordinate of corner.
Definition rect.h:11
int16_t h
Height of region.
Definition rect.h:14
int16_t y
Y coordinate of corner.
Definition rect.h:12
int16_t w
Width of region.
Definition rect.h:13
virtual bool has_value() const
Definition menu_item.h:52
std::unique_ptr< display::DisplayPage > display_page_
display::Rect measure_item_(display::Display *display, const display_menu_base::MenuItem *item, const display::Rect *bounds, bool selected)
TemplatableValue< std::string, const MenuItemValueArguments * > menu_item_value_
void draw_item(const display_menu_base::MenuItem *item, uint8_t row, bool selected) override
void draw_item_(display::Display *display, const display_menu_base::MenuItem *item, const display::Rect *bounds, bool selected)
void draw_menu_internal_(display::Display *display, const display::Rect *bounds)
const LogString * menu_item_type_to_string(MenuItemType type)
Returns a string representation of a menu item type suitable for logging.
Definition menu_item.cpp:7