summaryrefslogtreecommitdiff
path: root/include/ui.hpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-08-15 17:28:00 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-08-15 17:28:00 +0200
commitf67e92f55b6223f2806c3d5ef1cbe2a638920562 (patch)
treef567321e40d03e6f1e6d31338ef3db2eff988e91 /include/ui.hpp
parent572caa74ed824fefa02eb81adc7639a783f243c7 (diff)
working on invoice form
Diffstat (limited to 'include/ui.hpp')
-rw-r--r--include/ui.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/ui.hpp b/include/ui.hpp
index 5c5b6fc..c482eb7 100644
--- a/include/ui.hpp
+++ b/include/ui.hpp
@@ -11,7 +11,7 @@ typedef enum
void ui_helper_draw_required_tag();
void ui_helper_show_toast(const char* msg);
void ui_helper_draw_toasts();
-int ui_helper_TextInputWithAutocomplete(const char* label, const char* hint, char* buffer, size_t buf_size, char** suggestions, int suggestion_count);
+
void ui_draw_main();
void ui_draw_contacts();
@@ -22,4 +22,7 @@ void ui_draw_settings();
void ui_setup_invoices();
void ui_setup_contacts();
void ui_setup_projects();
-void ui_setup_settings(); \ No newline at end of file
+void ui_setup_settings();
+
+// Custom imgui widgets.
+int ui_helper_TextInputWithAutocomplete(const char* label, const char* hint, char* buffer, size_t buf_size, char** suggestions, int suggestion_count); \ No newline at end of file