29#include "../lib/part.h"
31#define PART_KEYPAD_Name "Keypad"
35 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
36 cpart_keypad(
const unsigned x,
const unsigned y,
const char* name,
const char* type,
board* pboard_,
const int id_);
38 void DrawOutput(
const unsigned int index)
override;
42 void OnMouseButtonPress(
unsigned int inputId,
unsigned int button,
unsigned int x,
unsigned int y,
43 unsigned int state)
override;
44 void OnMouseButtonRelease(
unsigned int inputId,
unsigned int button,
unsigned int x,
unsigned int y,
45 unsigned int state)
override;
50 unsigned short GetInputId(
char* name)
override;
52 void ComboChange(
const char* controlname, std::string value)
override;
55 void ChangeType(
unsigned char tp);
59 unsigned char output_pins[8];
60 unsigned char keys[4][4];
61 unsigned char keys2[2][5];
Board class.
Definition board.h:111
Definition input_keypad.h:33
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition input_keypad.cc:621
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition input_keypad.cc:690
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition input_keypad.cc:612
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition input_keypad.cc:511
std::string GetPictureFileName(void) override
Return the filename of part picture.
Definition input_keypad.cc:80
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition input_keypad.cc:631
void ComboChange(const char *controlname, std::string value) override
Used by properties window combos.
Definition input_keypad.cc:713
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition input_keypad.cc:226
void RegisterRemoteControl(void) override
Register remote control variables.
Definition input_keypad.cc:139
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition input_keypad.cc:552
void Process(void) override
Called every CPU step.
Definition input_keypad.cc:275
void OnMouseButtonPress(unsigned int inputId, unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event handler on the part.
Definition input_keypad.cc:319
void OnMouseButtonRelease(unsigned int inputId, unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event handler on the part.
Definition input_keypad.cc:415
std::string GetAboutInfo(void) override
Return the about information of part.
Definition input_keypad.h:35
std::string GetMapFile(void) override
Return the filename of part picture map.
Definition input_keypad.cc:95
PART class.
Definition part.h:49