29#include "../lib/part.h"
31#define PART_FIXEDV_Name "Fixed Voltage"
35 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
36 cpart_fixedv(
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;
44 unsigned short GetInputId(
char* name)
override;
49 unsigned char output_pins[1];
Board class.
Definition board.h:111
Definition input_fixedv.h:33
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition input_fixedv.cc:115
void PostProcess(void) override
Called every end of CPU process.
Definition input_fixedv.cc:109
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition input_fixedv.cc:62
void RegisterRemoteControl(void) override
Register remote control variables.
Definition input_fixedv.cc:54
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition input_fixedv.cc:156
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition input_fixedv.cc:136
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition input_fixedv.cc:148
std::string GetAboutInfo(void) override
Return the about information of part.
Definition input_fixedv.h:35
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition input_fixedv.cc:144
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition input_fixedv.cc:120
PART class.
Definition part.h:49