diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-23 15:22:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 15:22:16 +0200 |
commit | 1968f0129c12b1ae1085b8b57d16b2dd7cea34f4 (patch) | |
tree | ee6555e7707f9d30c4ea4216e51b282f2f75156d /platform/android/export/export.cpp | |
parent | 8c3a5057c54230677b864c0cb157a249f8825f62 (diff) | |
parent | ab1e809426d2a301193ef5d67c38cd9560670080 (diff) |
Merge pull request #33001 from Faless/js/http_run_server
Implement HTTP server for HTML5 "run" export
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index a43f195b84..6d021ad33a 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1345,7 +1345,7 @@ public: return logo; } - virtual bool poll_devices() { + virtual bool poll_export() { bool dc = devices_changed; if (dc) { @@ -1355,7 +1355,7 @@ public: return dc; } - virtual int get_device_count() const { + virtual int get_options_count() const { device_lock->lock(); int dc = devices.size(); @@ -1364,20 +1364,31 @@ public: return dc; } - virtual String get_device_name(int p_device) const { + virtual String get_options_tooltip() const { - ERR_FAIL_INDEX_V(p_device, devices.size(), ""); + return TTR("Select device from the list"); + } + + virtual String get_option_label(int p_index) const { + + ERR_FAIL_INDEX_V(p_index, devices.size(), ""); device_lock->lock(); - String s = devices[p_device].name; + String s = devices[p_index].name; device_lock->unlock(); return s; } - virtual String get_device_info(int p_device) const { + virtual String get_option_tooltip(int p_index) const { - ERR_FAIL_INDEX_V(p_device, devices.size(), ""); + ERR_FAIL_INDEX_V(p_index, devices.size(), ""); device_lock->lock(); - String s = devices[p_device].description; + String s = devices[p_index].description; + if (devices.size() == 1) { + // Tooltip will be: + // Name + // Description + s = devices[p_index].name + "\n\n" + s; + } device_lock->unlock(); return s; } |