29#include "../lib/part.h"
31#define PART_FM50_Name "FM50 (Temperature)"
33class cpart_fm50 :
public part {
35 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
36 cpart_fm50(
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;
40 void OnMouseButtonPress(
unsigned int inputId,
unsigned int button,
unsigned int x,
unsigned int y,
41 unsigned int state)
override;
42 void OnMouseButtonRelease(
unsigned int inputId,
unsigned int button,
unsigned int x,
unsigned int y,
43 unsigned int state)
override;
44 void OnMouseMove(
unsigned int inputId,
unsigned int button,
unsigned int x,
unsigned int y,
45 unsigned int state)
override;
51 unsigned short GetInputId(
char* name)
override;
56 unsigned char output_pins[1];
Board class.
Definition board.h:114
Definition input_fm50.h:33
void OnMouseMove(unsigned int inputId, unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event handler on the part.
Definition input_fm50.cc:143
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition input_fm50.cc:168
void RegisterRemoteControl(void) override
Register remote control variables.
Definition input_fm50.cc:56
std::string GetAboutInfo(void) override
Return the about information of part.
Definition input_fm50.h:35
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition input_fm50.cc:200
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition input_fm50.cc:160
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition input_fm50.cc:184
int PreferencesNumberFields(void) override
Return the number of fields in preferences.
Definition input_fm50.h:48
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition input_fm50.cc:66
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_fm50.cc:120
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition input_fm50.cc:196
int ReadPreferences(std::string value) override
Called whe configuration file load preferences, return the number of preferences processed.
Definition input_fm50.cc:192
void PostProcess(void) override
Called every end of CPU process.
Definition input_fm50.cc:114
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_fm50.cc:133
part(const unsigned x, const unsigned y, const char *name, const char *type, board *pboard_, const int id_, const int fsize=8)
Called once on part creation.
Definition part.cc:30