-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
Platformio/src/devices/AVreceiver/device_yamahaAmp/gui_yamahaAmp.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#include <lvgl.h> | ||
#include "applicationInternal/gui/guiBase.h" | ||
#include "applicationInternal/gui/guiRegistry.h" | ||
#include "applicationInternal/commandHandler.h" | ||
#include "devices/AVreceiver/device_yamahaAmp/device_yamahaAmp.h" | ||
#include "devices/AVreceiver/device_yamahaAmp/gui_yamahaAmp.h" | ||
|
||
static void button_clicked_event_cb(lv_event_t* e) { | ||
int user_data = (intptr_t)(e->user_data); | ||
|
||
if (user_data == 0) { | ||
executeCommand(YAMAHA_STANDARD); | ||
} | ||
|
||
} | ||
|
||
void create_tab_content_yamahaAmp(lv_obj_t* tab) { | ||
|
||
// Add content to the sceneSelection tab | ||
|
||
lv_obj_set_layout(tab, LV_LAYOUT_FLEX); | ||
lv_obj_set_flex_flow(tab, LV_FLEX_FLOW_COLUMN); | ||
lv_obj_set_scrollbar_mode(tab, LV_SCROLLBAR_MODE_ACTIVE); | ||
|
||
// -- create a button for "standard" ---------------------------------------- | ||
lv_obj_t* button = lv_btn_create(tab); | ||
lv_obj_set_size(button, 80, 40); | ||
lv_obj_set_style_radius(button, 10, LV_PART_MAIN); | ||
lv_obj_set_style_bg_color(button, color_primary, LV_PART_MAIN); | ||
lv_obj_add_event_cb(button, button_clicked_event_cb, LV_EVENT_CLICKED, (void *)(intptr_t) 0); | ||
|
||
lv_obj_t* label = lv_label_create(button); | ||
lv_label_set_text(label, "Standard"); | ||
lv_obj_center(label); | ||
|
||
} | ||
|
||
void notify_tab_before_delete_yamahaAmp(void) { | ||
// remember to set all pointers to lvgl objects to NULL if they might be accessed from outside. | ||
// They must check if object is NULL and must not use it if so | ||
|
||
} | ||
|
||
void register_gui_yamahaAmp(void){ | ||
register_gui(std::string(tabName_yamahaAmp), & create_tab_content_yamahaAmp, & notify_tab_before_delete_yamahaAmp); | ||
} |
4 changes: 4 additions & 0 deletions
4
Platformio/src/devices/AVreceiver/device_yamahaAmp/gui_yamahaAmp.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#pragma once | ||
|
||
const char * const tabName_yamahaAmp = "Yamaha Amp"; | ||
void register_gui_yamahaAmp(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters