Tue, 21 Oct 2025 12:34:17 +0200
add some missing functions (Cocoa)
| 463 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2025 Olaf Wintermann. All rights reserved. | |
| 5 | * | |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | ||
| 29 | #ifndef UI_WEBVIEW_H | |
| 30 | #define UI_WEBVIEW_H | |
| 31 | ||
| 32 | #include "toolkit.h" | |
| 33 | ||
| 34 | ||
| 35 | #ifdef __cplusplus | |
| 36 | extern "C" { | |
| 37 | #endif | |
| 38 | ||
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
39 | #define UI_WEBVIEW_OBJECT_TYPE "webview" |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
40 | |
| 463 | 41 | typedef struct UiWebviewArgs { |
|
800
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
42 | UiBool fill; |
| 463 | 43 | UiBool hexpand; |
| 44 | UiBool vexpand; | |
| 45 | UiBool hfill; | |
| 46 | UiBool vfill; | |
|
464
e06714e6fa12
add override_defaults layout arg
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
463
diff
changeset
|
47 | UiBool override_defaults; |
|
800
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
48 | int margin; |
|
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
49 | int margin_left; |
|
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
50 | int margin_right; |
|
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
51 | int margin_top; |
|
814d374fb689
add new margin widget args and implement margin in the cocoa gridlayout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
594
diff
changeset
|
52 | int margin_bottom; |
| 463 | 53 | int colspan; |
| 54 | int rowspan; | |
| 55 | const char *name; | |
| 56 | const char *style_class; | |
| 57 | ||
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
58 | UiGeneric *value; |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
59 | const char *varname; |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
60 | |
| 463 | 61 | const int* groups; |
| 62 | } UiWebviewArgs; | |
| 63 | ||
|
594
fc854e0ab924
pass Args structs per pointer (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
469
diff
changeset
|
64 | #define ui_webview(obj, ...) ui_webview_create(obj, &(UiWebviewArgs){ __VA_ARGS__ } ) |
| 463 | 65 | |
|
594
fc854e0ab924
pass Args structs per pointer (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
469
diff
changeset
|
66 | UIWIDGET ui_webview_create(UiObject *obj, UiWebviewArgs *args); |
| 463 | 67 | |
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
68 | void ui_webview_load_url(UiGeneric *g, const char *url); |
| 463 | 69 | |
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
70 | void ui_webview_load_content( |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
71 | UiGeneric *g, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
72 | const char *uri, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
73 | const char *content, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
74 | size_t contentlength, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
75 | const char *mimetype, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
76 | const char *encoding); |
| 463 | 77 | |
| 78 | ||
|
469
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
79 | void ui_webview_reload(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
80 | UiBool ui_webview_can_go_back(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
81 | UiBool ui_webview_can_go_forward(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
82 | void ui_webview_go_back(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
83 | void ui_webview_go_forward(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
84 | const char * ui_webview_get_uri(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
85 | void ui_webview_enable_javascript(UiGeneric *g, UiBool enable); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
86 | void ui_webview_set_zoom(UiGeneric *g, double zoom); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
87 | double ui_webview_get_zoom(UiGeneric *g); |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
88 | |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
89 | |
| 463 | 90 | #ifdef __cplusplus |
| 91 | } | |
| 92 | #endif | |
| 93 | ||
| 94 | #endif /* UI_WEBVIEW_H */ | |
| 95 |