4 weeks ago
remove old Qt code
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 { |
42 | UiTri fill; | |
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; |
463 | 48 | int colspan; |
49 | int rowspan; | |
50 | const char *name; | |
51 | const char *style_class; | |
52 | ||
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
53 | UiGeneric *value; |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
54 | const char *varname; |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
55 | |
463 | 56 | const int* groups; |
57 | } UiWebviewArgs; | |
58 | ||
59 | #define ui_webview(obj, ...) ui_webview_create(obj, (UiWebviewArgs){ __VA_ARGS__ } ) | |
60 | ||
61 | UIWIDGET ui_webview_create(UiObject *obj, UiWebviewArgs args); | |
62 | ||
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
63 | void ui_webview_load_url(UiGeneric *g, const char *url); |
463 | 64 | |
468
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
65 | void ui_webview_load_content( |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
66 | UiGeneric *g, |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
67 | const char *uri, |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
68 | const char *content, |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
69 | size_t contentlength, |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
70 | const char *mimetype, |
1f251c462f74
use UiGeneric for WebView
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
464
diff
changeset
|
71 | const char *encoding); |
463 | 72 | |
73 | ||
469
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
74 | void ui_webview_reload(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
75 | UiBool ui_webview_can_go_back(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
76 | UiBool ui_webview_can_go_forward(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
77 | void ui_webview_go_back(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
78 | void ui_webview_go_forward(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
79 | const char * ui_webview_get_uri(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
80 | void ui_webview_enable_javascript(UiGeneric *g, UiBool enable); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
81 | void ui_webview_set_zoom(UiGeneric *g, double zoom); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
82 | double ui_webview_get_zoom(UiGeneric *g); |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
83 | |
3f6142271f58
add more webview API
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
468
diff
changeset
|
84 | |
463 | 85 | #ifdef __cplusplus |
86 | } | |
87 | #endif | |
88 | ||
89 | #endif /* UI_WEBVIEW_H */ | |
90 |