Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SeeedStudioTFTv2 TFT_fonts mbed
Fork of Seeed_TFT_Touch_Shield by
Button.h
00001 #pragma once 00002 #include "Panel.h" 00003 00004 class Button:public Panel { 00005 public: 00006 //constructor to create 1x1 button 00007 Button(char* label, int p_color, int bd_color); 00008 //constructor to create wxh button 00009 Button(char* label, int p_color, int bd_color, int w, int h); 00010 virtual void paint(); 00011 00012 virtual void trigger_action(ActionType type, ActionEvent evnt, void* target); 00013 00014 private: 00015 char* lbl; 00016 };
Generated on Sat Jul 16 2022 02:44:00 by
1.7.2
