Sun, 07 Dec 2025 12:09:04 +0100
add webview width/height args and add gtk function for widget size requests
| 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 | ||
|
875
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
39 | /* |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
40 | * WebView type string used by UiGeneric |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
41 | */ |
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
42 | #define UI_WEBVIEW_OBJECT_TYPE "webview" |
|
875
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
43 | |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
44 | /* |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
45 | * UiWebViewData* is returned by a webviews UiGeneric->get function |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
46 | */ |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
47 | typedef struct UiWebViewData UiWebViewData; |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
48 | |
| 463 | 49 | 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
|
50 | UiBool fill; |
| 463 | 51 | UiBool hexpand; |
| 52 | UiBool vexpand; | |
| 53 | UiBool hfill; | |
| 54 | UiBool vfill; | |
|
464
e06714e6fa12
add override_defaults layout arg
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
463
diff
changeset
|
55 | 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
|
56 | 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
|
57 | 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
|
58 | 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
|
59 | 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
|
60 | int margin_bottom; |
| 463 | 61 | int colspan; |
| 62 | int rowspan; | |
|
962
7016bcb8d38b
add webview width/height args and add gtk function for widget size requests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
875
diff
changeset
|
63 | int width; |
|
7016bcb8d38b
add webview width/height args and add gtk function for widget size requests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
875
diff
changeset
|
64 | int height; |
| 463 | 65 | const char *name; |
| 66 | const char *style_class; | |
| 67 | ||
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
68 | UiGeneric *value; |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
69 | const char *varname; |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
70 | |
| 463 | 71 | const int* groups; |
| 72 | } UiWebviewArgs; | |
| 73 | ||
|
594
fc854e0ab924
pass Args structs per pointer (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
469
diff
changeset
|
74 | #define ui_webview(obj, ...) ui_webview_create(obj, &(UiWebviewArgs){ __VA_ARGS__ } ) |
| 463 | 75 | |
|
874
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
76 | UIEXPORT UIWIDGET ui_webview_create(UiObject *obj, UiWebviewArgs *args); |
| 463 | 77 | |
|
874
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
78 | UIEXPORT void ui_webview_load_url(UiGeneric *g, const char *url); |
| 463 | 79 | |
|
874
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
80 | UIEXPORT void ui_webview_load_content( |
|
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
81 | UiGeneric *g, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
82 | const char *uri, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
83 | const char *content, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
84 | size_t contentlength, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
85 | const char *mimetype, |
|
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
86 | const char *encoding); |
| 463 | 87 | |
|
875
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
88 | /* |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
89 | * Frees a UiWebViewData object returned by a webviews UiGeneric->get function |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
90 | */ |
|
0575ca45f1bb
add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
874
diff
changeset
|
91 | UIEXPORT void ui_webview_data_free(UiWebViewData *data); |
| 463 | 92 | |
|
874
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
93 | UIEXPORT void ui_webview_reload(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
94 | UIEXPORT UiBool ui_webview_can_go_back(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
95 | UIEXPORT UiBool ui_webview_can_go_forward(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
96 | UIEXPORT void ui_webview_go_back(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
97 | UIEXPORT void ui_webview_go_forward(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
98 | UIEXPORT const char * ui_webview_get_uri(UiGeneric *g); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
99 | UIEXPORT void ui_webview_enable_javascript(UiGeneric *g, UiBool enable); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
100 | UIEXPORT void ui_webview_set_zoom(UiGeneric *g, double zoom); |
|
33618ae398bd
add webview (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
800
diff
changeset
|
101 | UIEXPORT double ui_webview_get_zoom(UiGeneric *g); |
|
469
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
102 | |
|
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
103 | |
| 463 | 104 | #ifdef __cplusplus |
| 105 | } | |
| 106 | #endif | |
| 107 | ||
| 108 | #endif /* UI_WEBVIEW_H */ | |
| 109 |