1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 17:25:13 +03:00

[Horus] New model selection menu started

This commit is contained in:
Bertrand Songis 2016-06-25 19:39:29 +02:00
parent 4cc49d0d30
commit b0f9d69f7c
14 changed files with 122 additions and 140 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 773 B

After

Width:  |  Height:  |  Size: 773 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 653 B

After

Width:  |  Height:  |  Size: 653 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 756 B

After

Width:  |  Height:  |  Size: 756 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 534 B

After

Width:  |  Height:  |  Size: 534 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 B

View file

@ -100,10 +100,6 @@ const uint8_t LBM_ACTIVE_MODEL[] = {
#include "mask_library_active_model.lbm" #include "mask_library_active_model.lbm"
}; };
const uint8_t LBM_LIBRARY_CURSOR[] = {
#include "mask_library_category_index.lbm"
};
const uint8_t LBM_SCORE0[] = { const uint8_t LBM_SCORE0[] = {
#include "mask_library_score_0.lbm" #include "mask_library_score_0.lbm"
}; };
@ -183,3 +179,5 @@ const uint8_t LBM_SWIPE_LEFT[] = {
const uint8_t LBM_SWIPE_RIGHT[] = { const uint8_t LBM_SWIPE_RIGHT[] = {
#include "mask_swipe_right.lbm" #include "mask_swipe_right.lbm"
}; };
BitmapBuffer * modelselIconBitmap = NULL;

View file

@ -43,7 +43,6 @@ extern const uint8_t LBM_RSCALE[];
// Model selection icons // Model selection icons
extern const uint8_t LBM_LIBRARY_SLOT[]; extern const uint8_t LBM_LIBRARY_SLOT[];
extern const uint8_t LBM_ACTIVE_MODEL[]; extern const uint8_t LBM_ACTIVE_MODEL[];
extern const uint8_t LBM_LIBRARY_CURSOR[];
extern const uint8_t LBM_SCORE0[]; extern const uint8_t LBM_SCORE0[];
extern const uint8_t LBM_SCORE1[]; extern const uint8_t LBM_SCORE1[];
extern const uint8_t LBM_STAR0[]; extern const uint8_t LBM_STAR0[];
@ -72,4 +71,6 @@ extern const uint8_t LBM_SWIPE_CIRCLE[];
extern const uint8_t LBM_SWIPE_LEFT[]; extern const uint8_t LBM_SWIPE_LEFT[];
extern const uint8_t LBM_SWIPE_RIGHT[]; extern const uint8_t LBM_SWIPE_RIGHT[];
extern BitmapBuffer * modelselIconBitmap;
#endif // _BITMAPS_H_ #endif // _BITMAPS_H_

View file

@ -21,10 +21,11 @@
#include "opentx.h" #include "opentx.h"
#include "storage/modelslist.h" #include "storage/modelslist.h"
#define CATEGORIES_WIDTH 140 #define CATEGORIES_WIDTH 127
#define MODELS_LEFT 147
#define MODELS_COLUMN_WIDTH 162
enum ModelSelectMode { enum ModelSelectMode {
MODE_SELECT_CATEGORY,
MODE_SELECT_MODEL, MODE_SELECT_MODEL,
MODE_RENAME_CATEGORY, MODE_RENAME_CATEGORY,
}; };
@ -39,13 +40,12 @@ ModelCell * currentModel;
void drawCategory(coord_t y, const char * name, bool selected) void drawCategory(coord_t y, const char * name, bool selected)
{ {
if (selected) { if (selected) {
lcdDrawSolidFilledRect(0, y-INVERT_VERT_MARGIN, CATEGORIES_WIDTH-1, INVERT_LINE_HEIGHT+2, HEADER_BGCOLOR); lcdDrawSolidFilledRect(5, y-INVERT_VERT_MARGIN, CATEGORIES_WIDTH-10, INVERT_LINE_HEIGHT+2, TEXT_INVERTED_BGCOLOR);
lcdDrawBitmapPattern(CATEGORIES_WIDTH-14, y+2, LBM_LIBRARY_CURSOR, MENU_TITLE_COLOR); lcdDrawText(10, y, name, TEXT_COLOR | INVERS);
if (selectMode == MODE_SELECT_CATEGORY) { }
drawShadow(0, y-INVERT_VERT_MARGIN, CATEGORIES_WIDTH-2, INVERT_LINE_HEIGHT+2); else {
} lcdDrawText(10, y, name, TEXT_COLOR);
} }
lcdDrawText(MENUS_MARGIN_LEFT, y, name, MENU_TITLE_COLOR);
} }
void drawModel(coord_t x, coord_t y, ModelCell * model, bool current, bool selected) void drawModel(coord_t x, coord_t y, ModelCell * model, bool current, bool selected)
@ -62,10 +62,17 @@ void drawModel(coord_t x, coord_t y, ModelCell * model, bool current, bool selec
uint16_t categoriesVerticalOffset = 0; uint16_t categoriesVerticalOffset = 0;
uint16_t categoriesVerticalPosition = 0; uint16_t categoriesVerticalPosition = 0;
uint16_t modelsVerticalOffset = 0; #define MODEL_INDEX() (menuVerticalPosition*2+menuHorizontalPosition)
uint16_t modelsVerticalPosition = 0;
uint16_t modelsHorizontalPosition = 0; void setCurrentModel(unsigned int index)
#define MODEL_INDEX() (modelsVerticalPosition*2+modelsHorizontalPosition) {
std::list<ModelCell *>::iterator it = currentCategory->begin();
std::advance(it, index);
currentModel = *it;
menuVerticalPosition = index / 2;
menuHorizontalPosition = index & 1;
menuVerticalOffset = limit<int>(menuVerticalPosition-2, menuVerticalOffset, min<int>(menuVerticalPosition, max<int>(0, (currentCategory->size()-7)/2)));
}
void setCurrentCategory(unsigned int index) void setCurrentCategory(unsigned int index)
{ {
@ -74,41 +81,11 @@ void setCurrentCategory(unsigned int index)
std::advance(it, index); std::advance(it, index);
currentCategory = *it; currentCategory = *it;
categoriesVerticalPosition = index; categoriesVerticalPosition = index;
categoriesVerticalOffset = limit<int>(categoriesVerticalPosition-9, categoriesVerticalOffset, min<int>(categoriesVerticalPosition, max<int>(0, modelslist.categories.size()-10))); categoriesVerticalOffset = limit<int>(categoriesVerticalPosition-4, categoriesVerticalOffset, min<int>(categoriesVerticalPosition, max<int>(0, modelslist.categories.size()-10)));
} if (currentCategory->size() > 0)
setCurrentModel(0);
void setCurrentModel(unsigned int index) else
{ currentModel = NULL;
std::list<ModelCell *>::iterator it = currentCategory->begin();
std::advance(it, index);
currentModel = *it;
modelsVerticalPosition = index / 2;
modelsHorizontalPosition = index & 1;
modelsVerticalOffset = limit<int>(modelsVerticalPosition-2, modelsVerticalOffset, min<int>(modelsVerticalPosition, max<int>(0, (currentCategory->size()-5)/2)));
}
void onCategorySelectMenu(const char * result)
{
if (result == STR_CREATE_MODEL) {
storageCheck(true);
currentModel = modelslist.addModel(currentCategory, createModel());
selectMode = MODE_SELECT_MODEL;
setCurrentModel(currentCategory->size() - 1);
}
else if (result == STR_CREATE_CATEGORY) {
currentCategory = modelslist.createCategory();
setCurrentCategory(modelslist.categories.size() - 1);
}
else if (result == STR_RENAME_CATEGORY) {
selectMode = MODE_RENAME_CATEGORY;
s_editMode = EDIT_MODIFY_STRING;
editNameCursorPos = 0;
}
else if (result == STR_DELETE_CATEGORY) {
modelslist.removeCategory(currentCategory);
modelslist.save();
setCurrentCategory(currentCategoryIndex-1);
}
} }
void onModelSelectMenu(const char * result) void onModelSelectMenu(const char * result)
@ -145,6 +122,20 @@ void onModelSelectMenu(const char * result)
POPUP_WARNING("Invalid File"); POPUP_WARNING("Invalid File");
} }
} }
else if (result == STR_CREATE_CATEGORY) {
currentCategory = modelslist.createCategory();
setCurrentCategory(modelslist.categories.size() - 1);
}
else if (result == STR_RENAME_CATEGORY) {
selectMode = MODE_RENAME_CATEGORY;
s_editMode = EDIT_MODIFY_STRING;
editNameCursorPos = 0;
}
else if (result == STR_DELETE_CATEGORY) {
modelslist.removeCategory(currentCategory);
modelslist.save();
setCurrentCategory(currentCategoryIndex-1);
}
} }
void initModelsList() void initModelsList()
@ -165,7 +156,7 @@ void initModelsList()
setCurrentCategory(0); setCurrentCategory(0);
} }
modelsVerticalOffset = 0; menuVerticalOffset = 0;
found = false; found = false;
index = 0; index = 0;
for (ModelsCategory::iterator it = currentCategory->begin(); it != currentCategory->end(); ++it, ++index) { for (ModelsCategory::iterator it = currentCategory->begin(); it != currentCategory->end(); ++it, ++index) {
@ -206,144 +197,121 @@ bool menuModelSelect(evt_t event)
case EVT_KEY_FIRST(KEY_EXIT): case EVT_KEY_FIRST(KEY_EXIT):
switch (selectMode) { switch (selectMode) {
case MODE_SELECT_CATEGORY: case MODE_SELECT_MODEL:
chainMenu(menuMainView); chainMenu(menuMainView);
return false; return false;
case MODE_SELECT_MODEL:
selectMode = MODE_SELECT_CATEGORY;
break;
} }
break; break;
case EVT_KEY_BREAK(KEY_ENTER): case EVT_KEY_FIRST(KEY_PGUP):
case EVT_KEY_FIRST(KEY_RIGHT): if (categoriesVerticalPosition == 0)
if (selectMode == MODE_SELECT_CATEGORY && currentCategory->size() > 0) { categoriesVerticalPosition = modelslist.categories.size() - 1;
selectMode = MODE_SELECT_MODEL; else
setCurrentModel(0); categoriesVerticalPosition -= 1;
} setCurrentCategory(categoriesVerticalPosition);
putEvent(EVT_REFRESH);
break; break;
case EVT_KEY_FIRST(KEY_LEFT): case EVT_KEY_FIRST(KEY_PGDN):
if (selectMode == MODE_SELECT_MODEL) { categoriesVerticalPosition += 1;
selectMode = MODE_SELECT_CATEGORY; if (categoriesVerticalPosition >= modelslist.categories.size())
} categoriesVerticalPosition = 0;
setCurrentCategory(categoriesVerticalPosition);
putEvent(EVT_REFRESH);
break; break;
/*if (selectMode == MODE_SELECT_CATEGORY) {
menuVerticalPosition = categoriesVerticalPosition;
menuVerticalOffset = categoriesVerticalOffset;
if (navigate(event, modelslist.categories.size(), 10)) {
categoriesVerticalPosition = menuVerticalPosition;
categoriesVerticalOffset = menuVerticalOffset;
putEvent(EVT_REFRESH);
setCurrentCategory(categoriesVerticalPosition);
}
}*/
case EVT_KEY_LONG(KEY_ENTER): case EVT_KEY_LONG(KEY_ENTER):
if (selectMode == MODE_SELECT_CATEGORY) { if (selectMode == MODE_SELECT_MODEL) {
killEvents(event); killEvents(event);
if (currentModel && currentModel != modelslist.currentModel) {
POPUP_MENU_ADD_ITEM(STR_SELECT_MODEL);
}
POPUP_MENU_ADD_ITEM(STR_CREATE_MODEL); POPUP_MENU_ADD_ITEM(STR_CREATE_MODEL);
if (currentModel) {
POPUP_MENU_ADD_ITEM(STR_DUPLICATE_MODEL);
}
POPUP_MENU_ADD_ITEM(STR_CREATE_CATEGORY); POPUP_MENU_ADD_ITEM(STR_CREATE_CATEGORY);
POPUP_MENU_ADD_ITEM(STR_RENAME_CATEGORY); POPUP_MENU_ADD_ITEM(STR_RENAME_CATEGORY);
if (currentCategoryIndex > 0) { if (modelslist.categories.size() > 1) {
POPUP_MENU_ADD_ITEM(STR_DELETE_CATEGORY); POPUP_MENU_ADD_ITEM(STR_DELETE_CATEGORY);
} }
POPUP_MENU_START(onCategorySelectMenu);
}
else if (selectMode == MODE_SELECT_MODEL) {
killEvents(event);
ModelHeader header;
const char * error = readModel(currentModel->name, (uint8_t *)&header, sizeof(header));
if (!error) {
if (currentModel != modelslist.currentModel) {
POPUP_MENU_ADD_ITEM(STR_SELECT_MODEL);
}
POPUP_MENU_ADD_ITEM(STR_CREATE_MODEL);
POPUP_MENU_ADD_ITEM(STR_DUPLICATE_MODEL);
}
// POPUP_MENU_ADD_SD_ITEM(STR_BACKUP_MODEL); // POPUP_MENU_ADD_SD_ITEM(STR_BACKUP_MODEL);
// POPUP_MENU_ADD_ITEM(STR_MOVE_MODEL); // POPUP_MENU_ADD_ITEM(STR_MOVE_MODEL);
// POPUP_MENU_ADD_ITEM(STR_CHANGE_CATEGORY); // POPUP_MENU_ADD_ITEM(STR_CHANGE_CATEGORY);
if (currentModel != modelslist.currentModel) { if (currentModel && currentModel != modelslist.currentModel) {
POPUP_MENU_ADD_ITEM(STR_DELETE_MODEL); POPUP_MENU_ADD_ITEM(STR_DELETE_MODEL);
} }
// POPUP_MENU_ADD_ITEM(STR_RESTORE_MODEL); // POPUP_MENU_ADD_ITEM(STR_RESTORE_MODEL);
POPUP_MENU_START(onModelSelectMenu); POPUP_MENU_START(onModelSelectMenu);
} }
break; break;
} }
if (currentCategory && currentCategory->size() == 0) { lcdDrawSolidFilledRect(0, 0, LCD_W, LCD_H, TEXT_BGCOLOR);
selectMode = MODE_SELECT_CATEGORY; lcd->drawBitmap(0, 0, modelselIconBitmap);
currentModel = NULL;
}
// Header
theme->drawTopbarBackground(ICON_LIBRARY);
// Body
lcdDrawSolidFilledRect(0, MENU_HEADER_HEIGHT, CATEGORIES_WIDTH, LCD_H-MENU_HEADER_HEIGHT-MENU_FOOTER_HEIGHT, TEXT_DISABLE_COLOR);
lcdDrawSolidFilledRect(CATEGORIES_WIDTH, MENU_HEADER_HEIGHT, LCD_W-CATEGORIES_WIDTH, LCD_H-MENU_HEADER_HEIGHT-MENU_FOOTER_HEIGHT, TEXT_BGCOLOR);
// Footer
lcdDrawSolidFilledRect(0, MENU_FOOTER_TOP, LCD_W, MENU_FOOTER_HEIGHT, HEADER_BGCOLOR);
// Categories // Categories
int index = 0; int index = 0;
coord_t y = MENU_HEADER_HEIGHT+3; coord_t y = 97;
drawVerticalScrollbar(CATEGORIES_WIDTH-1, MENU_HEADER_HEIGHT, MENU_FOOTER_TOP-MENU_HEADER_HEIGHT, categoriesVerticalOffset, modelslist.categories.size(), 10); drawVerticalScrollbar(CATEGORIES_WIDTH-1, MENU_HEADER_HEIGHT, MENU_FOOTER_TOP-MENU_HEADER_HEIGHT, categoriesVerticalOffset, modelslist.categories.size(), 5);
for (std::list<ModelsCategory *>::iterator it = modelslist.categories.begin(); it != modelslist.categories.end(); ++it, ++index) { for (std::list<ModelsCategory *>::iterator it = modelslist.categories.begin(); it != modelslist.categories.end(); ++it, ++index) {
if (index >= categoriesVerticalOffset && index < categoriesVerticalOffset+10) { if (index >= categoriesVerticalOffset && index < categoriesVerticalOffset+5) {
if (selectMode == MODE_RENAME_CATEGORY && currentCategory == *it) { if (selectMode == MODE_RENAME_CATEGORY && currentCategory == *it) {
lcdDrawSolidFilledRect(0, y-INVERT_VERT_MARGIN+1, CATEGORIES_WIDTH-2, INVERT_LINE_HEIGHT, TEXT_BGCOLOR); lcdDrawSolidFilledRect(0, y-INVERT_VERT_MARGIN+1, CATEGORIES_WIDTH-2, INVERT_LINE_HEIGHT, TEXT_BGCOLOR);
editName(MENUS_MARGIN_LEFT, y, currentCategory->name, LEN_MODEL_FILENAME, event, 1, 0); editName(MENUS_MARGIN_LEFT, y, currentCategory->name, LEN_MODEL_FILENAME, event, 1, 0);
if (s_editMode == 0 || event == EVT_KEY_BREAK(KEY_EXIT)) { if (s_editMode == 0 || event == EVT_KEY_BREAK(KEY_EXIT)) {
modelslist.save(); modelslist.save();
selectMode = MODE_SELECT_CATEGORY; selectMode = MODE_SELECT_MODEL;
putEvent(EVT_REFRESH); putEvent(EVT_REFRESH);
} }
} }
else { else {
drawCategory(y, (*it)->name, currentCategory==*it); drawCategory(y, (*it)->name, currentCategory==*it);
} }
y += FH; lcdDrawSolidHorizontalLine(5, y+FH+3, CATEGORIES_WIDTH-10, LINE_COLOR);
} y += FH+7;
}
if (selectMode == MODE_SELECT_CATEGORY) {
menuVerticalPosition = categoriesVerticalPosition;
menuVerticalOffset = categoriesVerticalOffset;
if (navigate(event, modelslist.categories.size(), 10)) {
categoriesVerticalPosition = menuVerticalPosition;
categoriesVerticalOffset = menuVerticalOffset;
putEvent(EVT_REFRESH);
setCurrentCategory(categoriesVerticalPosition);
} }
} }
// Models // Models
index = 0; index = 0;
y = MENU_HEADER_HEIGHT+7; y = 5;
for (ModelsCategory::iterator it = currentCategory->begin(); it != currentCategory->end(); ++it, ++index) { for (ModelsCategory::iterator it = currentCategory->begin(); it != currentCategory->end(); ++it, ++index) {
if (index >= modelsVerticalOffset*2 && index < (modelsVerticalOffset+3)*2) { if (index >= menuVerticalOffset*2 && index < (menuVerticalOffset+4)*2) {
bool selected = (selectMode==MODE_SELECT_MODEL && index==modelsVerticalPosition*2+modelsHorizontalPosition); bool selected = (selectMode==MODE_SELECT_MODEL && index==menuVerticalPosition*2+menuHorizontalPosition);
bool current = !strncmp((*it)->name, g_eeGeneral.currModelFilename, LEN_MODEL_FILENAME); bool current = !strncmp((*it)->name, g_eeGeneral.currModelFilename, LEN_MODEL_FILENAME);
if (index & 1) { if (index & 1) {
drawModel(CATEGORIES_WIDTH+MENUS_MARGIN_LEFT+162, y, *it, current, selected); drawModel(MODELS_LEFT + MODELS_COLUMN_WIDTH, y, *it, current, selected);
y += 66; y += 66;
} }
else { else {
drawModel(CATEGORIES_WIDTH+MENUS_MARGIN_LEFT+1, y, *it, current, selected); drawModel(MODELS_LEFT, y, *it, current, selected);
} }
} }
} }
if (selectMode == MODE_SELECT_MODEL) {
menuVerticalPosition = modelsVerticalPosition; // Navigation
menuHorizontalPosition = modelsHorizontalPosition; if (selectMode == MODE_SELECT_MODEL && currentModel) {
menuVerticalOffset = modelsVerticalOffset; if (navigate(event, index, 4, 2)) {
if (navigate(event, index, 3, 2)) {
modelsVerticalPosition = menuVerticalPosition;
modelsHorizontalPosition = menuHorizontalPosition;
modelsVerticalOffset = menuVerticalOffset;
putEvent(EVT_REFRESH); putEvent(EVT_REFRESH);
setCurrentModel(MODEL_INDEX()); setCurrentModel(MODEL_INDEX());
} }
if (currentModel) {
lcd->drawText(CATEGORIES_WIDTH+MENUS_MARGIN_LEFT, MENU_FOOTER_TOP+2, currentModel->name, TEXT_INVERTED_COLOR);
}
} }
drawVerticalScrollbar(DEFAULT_SCROLLBAR_X, MENU_HEADER_HEIGHT+7, MENU_FOOTER_TOP-MENU_HEADER_HEIGHT-15, modelsVerticalOffset, (index+1)/2, 3); drawVerticalScrollbar(DEFAULT_SCROLLBAR_X, 7, LCD_H-15, menuVerticalOffset, (index+1)/2, 4);
return true; return true;
} }

View file

@ -81,7 +81,6 @@ enum MenuIcons {
ICON_MODEL_SPECIAL_FUNCTIONS, ICON_MODEL_SPECIAL_FUNCTIONS,
ICON_MODEL_LUA_SCRIPTS, ICON_MODEL_LUA_SCRIPTS,
ICON_MODEL_TELEMETRY, ICON_MODEL_TELEMETRY,
ICON_LIBRARY,
ICON_THEME, ICON_THEME,
ICON_THEME_SETUP, ICON_THEME_SETUP,
ICON_THEME_VIEW1, ICON_THEME_VIEW1,

View file

@ -125,7 +125,6 @@ class DefaultTheme: public Theme
loadMenuIcon(ICON_THEME_VIEW4, "mask_theme_view4.png"); loadMenuIcon(ICON_THEME_VIEW4, "mask_theme_view4.png");
loadMenuIcon(ICON_THEME_VIEW5, "mask_theme_view5.png"); loadMenuIcon(ICON_THEME_VIEW5, "mask_theme_view5.png");
loadMenuIcon(ICON_THEME_ADD_VIEW, "mask_theme_add_view.png"); loadMenuIcon(ICON_THEME_ADD_VIEW, "mask_theme_add_view.png");
loadMenuIcon(ICON_LIBRARY, "mask_library.png");
loadMenuIcon(ICON_MONITOR, "mask_monitor.png"); loadMenuIcon(ICON_MONITOR, "mask_monitor.png");
loadMenuIcon(ICON_MONITOR_CHANNELS1, "mask_monitor_channels1.png"); loadMenuIcon(ICON_MONITOR_CHANNELS1, "mask_monitor_channels1.png");
loadMenuIcon(ICON_MONITOR_CHANNELS2, "mask_monitor_channels2.png"); loadMenuIcon(ICON_MONITOR_CHANNELS2, "mask_monitor_channels2.png");
@ -145,14 +144,31 @@ class DefaultTheme: public Theme
currentMenuBackground->drawMask(0, 0, shadow, TRIM_SHADOW_COLOR); currentMenuBackground->drawMask(0, 0, shadow, TRIM_SHADOW_COLOR);
currentMenuBackground->drawMask(10, 39, dot, MENU_TITLE_COLOR); currentMenuBackground->drawMask(10, 39, dot, MENU_TITLE_COLOR);
delete topleftBitmap; {
topleftBitmap = NULL; delete topleftBitmap;
BitmapBuffer * mask = BitmapBuffer::loadMask(getThemePath("topleft.png")); topleftBitmap = NULL;
if (mask) { BitmapBuffer * mask = BitmapBuffer::loadMask(getThemePath("topleft.png"));
topleftBitmap = new BitmapBuffer(BMP_RGB565, mask->getWidth(), MENU_HEADER_HEIGHT); if (mask) {
topleftBitmap->clear(HEADER_BGCOLOR); topleftBitmap = new BitmapBuffer(BMP_RGB565, mask->getWidth(), MENU_HEADER_HEIGHT);
topleftBitmap->drawMask(0, 0, mask, TITLE_BGCOLOR); topleftBitmap->clear(HEADER_BGCOLOR);
delete mask; topleftBitmap->drawMask(0, 0, mask, TITLE_BGCOLOR);
delete mask;
}
}
{
delete modelselIconBitmap;
modelselIconBitmap = NULL;
BitmapBuffer * mask = BitmapBuffer::loadMask(getThemePath("modelsel/mask_iconback.png"));
if (mask) {
modelselIconBitmap = new BitmapBuffer(BMP_RGB565, mask->getWidth(), mask->getHeight());
modelselIconBitmap->clear(TEXT_BGCOLOR);
modelselIconBitmap->drawMask(0, 0, mask, TITLE_BGCOLOR);
BitmapBuffer * bitmap = BitmapBuffer::load(getThemePath("modelsel/icon_default.png"));
modelselIconBitmap->drawBitmap(25, 8, bitmap);
delete bitmap;
delete mask;
}
} }
delete background; delete background;