summaryrefslogtreecommitdiff
path: root/libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h
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 /libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h
parent572caa74ed824fefa02eb81adc7639a783f243c7 (diff)
working on invoice form
Diffstat (limited to 'libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h')
-rw-r--r--libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h b/libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h
new file mode 100644
index 0000000..07bfea8
--- /dev/null
+++ b/libs/tinyfiledialogs/more_dialogs/tinyfd_moredialogs.h
@@ -0,0 +1,48 @@
+/* SPDX-License-Identifier: ZLIB
+Copyright (c) 2014 - 2023 Guillaume Vareille http://ysengrin.com
+ _________
+ / \ tinyfiledialogs v3.9.0 [Nov 3, 2022]
+ |tiny file|
+ | dialogs |
+ \____ ___/ http://tinyfiledialogs.sourceforge.net
+ \| git clone http://git.code.sf.net/p/tinyfiledialogs/code tinyfd
+
+If you like tinyfiledialogs, please upvote my stackoverflow answer
+https://stackoverflow.com/a/47651444
+
+ - License -
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+*/
+
+/* not cross platform - unix zenity only */
+/* contributed by Attila Dusnoki */
+#ifndef _WIN32
+char * tinyfd_arrayDialog(
+ char const * aTitle , /* NULL or "" */
+ int aNumOfColumns , /* 2 */
+ char const * const * aColumns, /* {"Column 1","Column 2"} */
+ int aNumOfRows, /* 2 */
+ char const * const * aCells);
+ /* {"Row1 Col1","Row1 Col2","Row2 Col1","Row2 Col2"} */
+#endif /*_WIN32 */
+
+/* not cross platform - UNIX and OSX only */
+/* contributed by srikanth http://sourceforge.net/u/cr1vct/profile */
+#ifndef _WIN32
+char * tinyfd_checklistDialog(
+ char const * aTitle ,
+ int aNumOfOptions ,
+ char const * const * aOptions);
+#endif /*_WIN32 */