mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* Guition JC3248W535C Files app fix alert dialog and selection dialog fixes symbol export * Update Axs15231bDisplay.cpp * Update Axs15231bDisplay.cpp
19 lines
574 B
C++
19 lines
574 B
C++
#include "tt_app_alertdialog.h"
|
|
#include <Tactility/app/alertdialog/AlertDialog.h>
|
|
|
|
extern "C" {
|
|
|
|
AppLaunchId tt_app_alertdialog_start(const char* title, const char* message, const char* buttonLabels[], uint32_t buttonLabelCount) {
|
|
std::vector<std::string> list;
|
|
for (int i = 0; i < buttonLabelCount; i++) {
|
|
list.emplace_back(buttonLabels[i]);
|
|
}
|
|
return tt::app::alertdialog::start(title, message, list);
|
|
}
|
|
|
|
int32_t tt_app_alertdialog_get_result_index(BundleHandle handle) {
|
|
return tt::app::alertdialog::getResultIndex(*(tt::Bundle*)handle);
|
|
}
|
|
|
|
}
|