P542-Labs / Mbed 2 deprecated Lab4

Dependencies:   SeeedStudioTFTv2 TFT_fonts mbed

Fork of Seeed_TFT_Touch_Shield by Shields

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Button.h Source File

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 };