Class library: Button class and ButtonGroup class for DISCO-F746NG. クラスライブラリ: DISCO-F746NG 用の,Button クラス,ButtonGroup クラス.

Dependents:   F746_SpectralAnalysis_NoPhoto F746_Fourier_series_of_square_wave_01 F746_ButtonGroup_Demo F746_Mandelbrot ... more

Committer:
MikamiUitOpen
Date:
Mon Feb 22 13:39:32 2016 +0000
Revision:
13:af578b53ff0e
Parent:
11:204bc17f59cc
14

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MikamiUitOpen 0:d3038879fed6 1 //-----------------------------------------------------------
MikamiUitOpen 0:d3038879fed6 2 // Button group class -- Header
MikamiUitOpen 0:d3038879fed6 3 //
MikamiUitOpen 13:af578b53ff0e 4 // 2016/02/22, Copyright (c) 2016 MIKAMI, Naoki
MikamiUitOpen 0:d3038879fed6 5 //-----------------------------------------------------------
MikamiUitOpen 0:d3038879fed6 6
MikamiUitOpen 0:d3038879fed6 7 #ifndef F746_BUTTON_GROUP_HPP
MikamiUitOpen 0:d3038879fed6 8 #define F746_BUTTON_GROUP_HPP
MikamiUitOpen 0:d3038879fed6 9
MikamiUitOpen 0:d3038879fed6 10 #include "button.hpp"
MikamiUitOpen 0:d3038879fed6 11 #include <string>
MikamiUitOpen 0:d3038879fed6 12
MikamiUitOpen 0:d3038879fed6 13 namespace Mikami
MikamiUitOpen 0:d3038879fed6 14 {
MikamiUitOpen 0:d3038879fed6 15 class ButtonGroup
MikamiUitOpen 0:d3038879fed6 16 {
MikamiUitOpen 0:d3038879fed6 17 public:
MikamiUitOpen 0:d3038879fed6 18 // Constructor
MikamiUitOpen 0:d3038879fed6 19 ButtonGroup(LCD_DISCO_F746NG &lcd, TS_DISCO_F746NG &ts,
MikamiUitOpen 0:d3038879fed6 20 uint16_t x0, uint16_t y0,
MikamiUitOpen 0:d3038879fed6 21 uint16_t width, uint16_t height,
MikamiUitOpen 0:d3038879fed6 22 uint32_t color, uint32_t backColor,
MikamiUitOpen 3:d99d9c0324b7 23 uint16_t number, const string str[],
MikamiUitOpen 0:d3038879fed6 24 uint16_t spaceX = 0, uint16_t spaceY = 0,
MikamiUitOpen 0:d3038879fed6 25 uint16_t column = 1,
MikamiUitOpen 0:d3038879fed6 26 sFONT &fonts = Font12,
MikamiUitOpen 0:d3038879fed6 27 uint32_t textColor = LCD_COLOR_WHITE);
MikamiUitOpen 10:5ca60e724a76 28
MikamiUitOpen 0:d3038879fed6 29 // Destructor
MikamiUitOpen 0:d3038879fed6 30 ~ButtonGroup();
MikamiUitOpen 10:5ca60e724a76 31
MikamiUitOpen 0:d3038879fed6 32 // Draw button
MikamiUitOpen 13:af578b53ff0e 33 bool Draw(int num, uint32_t color,
MikamiUitOpen 13:af578b53ff0e 34 uint32_t textColor = LCD_COLOR_WHITE);
MikamiUitOpen 0:d3038879fed6 35
MikamiUitOpen 10:5ca60e724a76 36 // Draw all buttons
MikamiUitOpen 6:d268555e2f50 37 void DrawAll(uint32_t color,
MikamiUitOpen 6:d268555e2f50 38 uint32_t textColor = LCD_COLOR_WHITE)
MikamiUitOpen 4:543ec60c2814 39 {
MikamiUitOpen 4:543ec60c2814 40 for (int n=0; n<numberOfButtons_; n++)
MikamiUitOpen 4:543ec60c2814 41 buttons_[n]->Draw(color, textColor);
MikamiUitOpen 4:543ec60c2814 42 }
MikamiUitOpen 4:543ec60c2814 43
MikamiUitOpen 0:d3038879fed6 44 // Redraw button with original color
MikamiUitOpen 11:204bc17f59cc 45 bool Redraw(int num, uint32_t textColor = LCD_COLOR_WHITE);
MikamiUitOpen 0:d3038879fed6 46
MikamiUitOpen 0:d3038879fed6 47 // Erase button with selected color
MikamiUitOpen 11:204bc17f59cc 48 bool Erase(int num, uint32_t color);
MikamiUitOpen 0:d3038879fed6 49
MikamiUitOpen 0:d3038879fed6 50 // Check touch detected for specified button
MikamiUitOpen 11:204bc17f59cc 51 bool Touched(int num);
MikamiUitOpen 10:5ca60e724a76 52
MikamiUitOpen 6:d268555e2f50 53 // Check touch detected for specified button and redraw
MikamiUitOpen 6:d268555e2f50 54 bool Touched(int num, uint32_t color,
MikamiUitOpen 6:d268555e2f50 55 uint32_t textColor = LCD_COLOR_WHITE);
MikamiUitOpen 0:d3038879fed6 56
MikamiUitOpen 0:d3038879fed6 57 // Get touched number
MikamiUitOpen 0:d3038879fed6 58 bool GetTouchedNumber(int &num);
MikamiUitOpen 0:d3038879fed6 59
MikamiUitOpen 0:d3038879fed6 60 // Get touched number and redraw button if touched
MikamiUitOpen 1:57fe493e8db2 61 bool GetTouchedNumber(int &num, uint32_t color);
MikamiUitOpen 0:d3038879fed6 62
MikamiUitOpen 0:d3038879fed6 63 private:
MikamiUitOpen 0:d3038879fed6 64 Button **buttons_;
MikamiUitOpen 0:d3038879fed6 65 int numberOfButtons_;
MikamiUitOpen 13:af578b53ff0e 66 int touchedNum_;
MikamiUitOpen 0:d3038879fed6 67
MikamiUitOpen 11:204bc17f59cc 68 // Check range of argument
MikamiUitOpen 13:af578b53ff0e 69 bool Range(int n)
MikamiUitOpen 13:af578b53ff0e 70 { return ((n >= 0) && (n < numberOfButtons_)); }
MikamiUitOpen 11:204bc17f59cc 71
MikamiUitOpen 0:d3038879fed6 72 // disallow copy constructor and assignment operator
MikamiUitOpen 0:d3038879fed6 73 ButtonGroup(const ButtonGroup&);
MikamiUitOpen 0:d3038879fed6 74 ButtonGroup& operator=(const ButtonGroup&);
MikamiUitOpen 0:d3038879fed6 75 };
MikamiUitOpen 0:d3038879fed6 76 }
MikamiUitOpen 0:d3038879fed6 77 #endif // F746_BUTTON_GROUP_HPP