Removing fieldWidth from spinbox create function
This commit is contained in:
parent
ae1c3ef59f
commit
6097a2120f
2 changed files with 10 additions and 13 deletions
|
@ -177,7 +177,7 @@ static const gwidgetVMT SpinboxVMT = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, const char** textArray, uint8_t numEntries, short fieldWidth)
|
GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, const char** textArray, uint8_t numEntries)
|
||||||
{
|
{
|
||||||
// Create the widget
|
// Create the widget
|
||||||
if (!(wt = (GSpinboxObject*)_gwidgetCreate(g, &wt->w, pInit, &SpinboxVMT))) {
|
if (!(wt = (GSpinboxObject*)_gwidgetCreate(g, &wt->w, pInit, &SpinboxVMT))) {
|
||||||
|
@ -190,7 +190,6 @@ GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pIni
|
||||||
wt->maxval = numEntries-1; // Set maxval to last text item index
|
wt->maxval = numEntries-1; // Set maxval to last text item index
|
||||||
wt->increment = 1;
|
wt->increment = 1;
|
||||||
wt->txtArray = textArray;
|
wt->txtArray = textArray;
|
||||||
wt->fieldwidth = fieldWidth;
|
|
||||||
wt->w.g.flags |= GSPINBOX_TXT; // Set flag for text spinbox
|
wt->w.g.flags |= GSPINBOX_TXT; // Set flag for text spinbox
|
||||||
gwinSetVisible(&wt->w.g, pInit->g.show);
|
gwinSetVisible(&wt->w.g, pInit->g.show);
|
||||||
|
|
||||||
|
@ -199,7 +198,7 @@ GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pIni
|
||||||
|
|
||||||
GHandle gwinGSpinboxNumCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit,
|
GHandle gwinGSpinboxNumCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit,
|
||||||
int init, int min, int max, int step, const char* mark,
|
int init, int min, int max, int step, const char* mark,
|
||||||
short places, const char* units, short fieldWidth) {
|
short places, const char* units) {
|
||||||
|
|
||||||
// Create the widget
|
// Create the widget
|
||||||
if (!(wt = (GSpinboxObject*) _gwidgetCreate(g, &wt->w, pInit, &SpinboxVMT))) {
|
if (!(wt = (GSpinboxObject*) _gwidgetCreate(g, &wt->w, pInit, &SpinboxVMT))) {
|
||||||
|
@ -214,7 +213,6 @@ GHandle gwinGSpinboxNumCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pIni
|
||||||
wt->decimalmark = mark;
|
wt->decimalmark = mark;
|
||||||
wt->placesOrTxtlen = places;
|
wt->placesOrTxtlen = places;
|
||||||
wt->strData = units;
|
wt->strData = units;
|
||||||
wt->fieldwidth = fieldWidth;
|
|
||||||
wt->w.g.flags |= GSPINBOX_NUM; // Set flag for numeric spinbox
|
wt->w.g.flags |= GSPINBOX_NUM; // Set flag for numeric spinbox
|
||||||
gwinSetVisible(&wt->w.g, pInit->g.show);
|
gwinSetVisible(&wt->w.g, pInit->g.show);
|
||||||
|
|
||||||
|
@ -266,7 +264,7 @@ void gwinSpinboxDefaultDraw(GWidgetObject* gw, void* param)
|
||||||
|
|
||||||
// Fill the stringbox with value - justifyRight
|
// Fill the stringbox with value - justifyRight
|
||||||
gdispGFillStringBox(gw->g.display, gw->g.x + gw2ButtonSize + 1 + TEXTPADDING,
|
gdispGFillStringBox(gw->g.display, gw->g.x + gw2ButtonSize + 1 + TEXTPADDING,
|
||||||
gw->g.y + 1, gsw->fieldwidth, gw->g.height - 2, ptr,
|
gw->g.y + 1, gw->g.width - 2 * gw2ButtonSize - gdispGetStringWidth(gsw->strData, gw->g.font) - 6, gw->g.height - 2, ptr,
|
||||||
gw->g.font, ps->text, gw->pstyle->background, justifyRight);
|
gw->g.font, ps->text, gw->pstyle->background, justifyRight);
|
||||||
gw->g.flags &= ~GSPINBOX_NUM_REDRAW; // Reset flag
|
gw->g.flags &= ~GSPINBOX_NUM_REDRAW; // Reset flag
|
||||||
|
|
||||||
|
@ -338,15 +336,15 @@ void gwinSpinboxDefaultDraw(GWidgetObject* gw, void* param)
|
||||||
|
|
||||||
if ((gw->g.flags & GSPINBOX_NUM)) {
|
if ((gw->g.flags & GSPINBOX_NUM)) {
|
||||||
// Fill the stringbox with units - justifyRight
|
// Fill the stringbox with units - justifyRight
|
||||||
gdispGFillStringBox(gw->g.display, gw->g.x + gw2ButtonSize + gsw->fieldwidth - TEXTPADDING,
|
gdispGFillStringBox(gw->g.display, gw->g.x + gw->g.width - gw2ButtonSize - gdispGetStringWidth(gsw->strData, gw->g.font) - TEXTPADDING,
|
||||||
gw->g.y + 1, gw->g.width - gsw->fieldwidth - gw2ButtonSize * 2,
|
gw->g.y + 1, gdispGetStringWidth(gsw->strData, gw->g.font),
|
||||||
gw->g.height - 2, gsw->strData, gw->g.font, ps->text,
|
gw->g.height - 2, gsw->strData, gw->g.font, ps->text,
|
||||||
gw->pstyle->background, justifyRight);
|
gw->pstyle->background, justifyRight);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fill the stringbox with value - justifyRight
|
// Fill the stringbox with value - justifyRight
|
||||||
gdispGFillStringBox(gw->g.display, gw->g.x + gw2ButtonSize + 1 + TEXTPADDING,
|
gdispGFillStringBox(gw->g.display, gw->g.x + gw2ButtonSize + 1 + TEXTPADDING,
|
||||||
gw->g.y + 1, gsw->fieldwidth, gw->g.height - 2, ptr, gw->g.font, ps->text, gw->pstyle->background, justifyRight);
|
gw->g.y + 1, gw->g.width - 2 * gw2ButtonSize - gdispGetStringWidth(gsw->strData, gw->g.font) - 6, gw->g.height - 2, ptr, gw->g.font, ps->text, gw->pstyle->background, justifyRight);
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef gsw
|
#undef gsw
|
||||||
|
|
|
@ -80,7 +80,6 @@ typedef struct GSpinboxObject {
|
||||||
short placesOrTxtlen; // Number of digits after decimal point or the length of the text string
|
short placesOrTxtlen; // Number of digits after decimal point or the length of the text string
|
||||||
const char* strData; // Inits for numeric spinbox
|
const char* strData; // Inits for numeric spinbox
|
||||||
const char** txtArray; // Pointer to array of pointers for spinbox text data
|
const char** txtArray; // Pointer to array of pointers for spinbox text data
|
||||||
short fieldwidth; // Text field width in Text Spinbox,Value field width in Numeric Spinbox
|
|
||||||
} GSpinboxObject;
|
} GSpinboxObject;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -104,8 +103,8 @@ extern "C" {
|
||||||
* @note If the initial text set is larger than maxSize then the text is truncated at maxSize characters.
|
* @note If the initial text set is larger than maxSize then the text is truncated at maxSize characters.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, const char** textArray, uint8_t numEntries,short fieldWidth);
|
GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, const char** textArray, uint8_t numEntries);
|
||||||
#define gwinSpinboxTxtCreate(wt, pInit, textArray, numEntries, fieldWidth) gwinGSpinboxTxtCreate(GDISP, wt, pInit, textArray, numEntries, fieldWidth)
|
#define gwinSpinboxTxtCreate(wt, pInit, textArray, numEntries) gwinGSpinboxTxtCreate(GDISP, wt, pInit, textArray, numEntries)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -129,8 +128,8 @@ GHandle gwinGSpinboxTxtCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pIni
|
||||||
* @note If the initial text set is larger than maxSize then the text is truncated at maxSize characters.
|
* @note If the initial text set is larger than maxSize then the text is truncated at maxSize characters.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
GHandle gwinGSpinboxNumCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, int init, int min, int max, int step, const char* mark, short places, const char* units, short fieldWidth);
|
GHandle gwinGSpinboxNumCreate(GDisplay* g, GSpinboxObject* wt, GWidgetInit* pInit, int init, int min, int max, int step, const char* mark, short places, const char* units);
|
||||||
#define gwinSpinboxNumCreate(wt, pInit, init, min, max, step, mark, places, units, fieldWidth) gwinGSpinboxNumCreate(GDISP, wt, pInit, init, min, max, step, mark, places, units, fieldWidth)
|
#define gwinSpinboxNumCreate(wt, pInit, init, min, max, step, mark, places, units) gwinGSpinboxNumCreate(GDISP, wt, pInit, init, min, max, step, mark, places, units)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the spinbox minimum and maximum values.
|
* @brief Set the spinbox minimum and maximum values.
|
||||||
|
|
Loading…
Add table
Reference in a new issue