Implement getTextWidth for display classes

- Added getTextWidth method to DisplayDriver interface
- Implemented getTextWidth in all display classes
- Updated examples to use getTextWidth directly
This commit is contained in:
JQ
2025-05-04 18:17:18 -07:00
parent e442e94e3d
commit 678f36a57b
10 changed files with 32 additions and 8 deletions

View File

@@ -47,5 +47,6 @@ public:
void fillRect(int x, int y, int w, int h) override;
void drawRect(int x, int y, int w, int h) override;
void drawXbm(int x, int y, const uint8_t* bits, int w, int h) override;
uint16_t getTextWidth(const char* str) override;
void endFrame() override;
};