├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── backend │ ├── common.cmake │ └── emscripten.cmake ├── common.cmake ├── compiler_warnings.cmake ├── dependencies │ ├── binaryen.cmake │ ├── boost.cmake │ ├── boostpp.cmake │ ├── describe.cmake │ ├── emscripten.cmake │ ├── fmt.cmake │ ├── gtest.cmake │ ├── interval_tree.cmake │ ├── mp11.cmake │ ├── mplex.cmake │ ├── nlohmann_json.cmake │ ├── nui_traits.cmake │ ├── portable_file_dialog.cmake │ ├── roar.cmake │ ├── utfcpp.cmake │ └── webview.cmake ├── fetcher.cmake ├── frontend │ └── emscripten.cmake ├── inline_extractor.cmake ├── options.cmake └── static_analyzers.cmake ├── doxyfile ├── examples ├── CMakeLists.txt ├── basic │ ├── .gitignore │ ├── .parcelrc │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── _cmake │ │ └── common_options.cmake │ ├── backend │ │ └── source │ │ │ └── backend │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── frontend │ │ ├── include │ │ │ └── frontend │ │ │ │ └── main_page.hpp │ │ └── source │ │ │ └── frontend │ │ │ ├── CMakeLists.txt │ │ │ ├── js │ │ │ └── module.js │ │ │ ├── main.cpp │ │ │ └── main_page.cpp │ ├── package.json │ ├── static │ │ ├── assets │ │ │ └── README.md │ │ ├── index.html │ │ ├── source │ │ │ └── index.js │ │ └── styles │ │ │ └── main.css │ └── vcpkg.json └── custom_schemes │ ├── .gitignore │ ├── .parcelrc │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── _cmake │ └── common_options.cmake │ ├── backend │ └── source │ │ └── backend │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── frontend │ ├── include │ │ └── frontend │ │ │ └── main_page.hpp │ └── source │ │ └── frontend │ │ ├── CMakeLists.txt │ │ ├── js │ │ └── module.js │ │ ├── main.cpp │ │ └── main_page.cpp │ ├── package.json │ ├── static │ ├── assets │ │ └── README.md │ ├── index.html │ ├── source │ │ └── index.js │ └── styles │ │ └── main.css │ └── vcpkg.json ├── nui ├── include │ └── nui │ │ ├── backend │ │ ├── backend.hpp │ │ ├── filesystem │ │ │ ├── file_dialog.hpp │ │ │ └── special_paths.hpp │ │ ├── rpc_hub.hpp │ │ └── url.hpp │ │ ├── concepts.hpp │ │ ├── core.hpp │ │ ├── data_structures │ │ └── selectables_registry.hpp │ │ ├── environment_variables.hpp │ │ ├── event_system │ │ ├── event.hpp │ │ ├── event_context.hpp │ │ ├── event_registry.hpp │ │ ├── listen.hpp │ │ ├── observed_value.hpp │ │ ├── observed_value_combinator.hpp │ │ ├── range.hpp │ │ └── range_event_context.hpp │ │ ├── feature_test.hpp │ │ ├── filesystem │ │ └── file_dialog_options.hpp │ │ ├── frontend.hpp │ │ ├── frontend │ │ ├── api │ │ │ ├── console.hpp │ │ │ ├── fetch.hpp │ │ │ ├── json.hpp │ │ │ ├── throttle.hpp │ │ │ └── timer.hpp │ │ ├── attributes.hpp │ │ ├── attributes │ │ │ ├── accept.hpp │ │ │ ├── accept_charset.hpp │ │ │ ├── access_key.hpp │ │ │ ├── action.hpp │ │ │ ├── align.hpp │ │ │ ├── allow.hpp │ │ │ ├── alt.hpp │ │ │ ├── async.hpp │ │ │ ├── auto_capitalize.hpp │ │ │ ├── auto_complete.hpp │ │ │ ├── auto_focus.hpp │ │ │ ├── auto_play.hpp │ │ │ ├── buffered.hpp │ │ │ ├── capture.hpp │ │ │ ├── challenge.hpp │ │ │ ├── char_set.hpp │ │ │ ├── checked.hpp │ │ │ ├── cite.hpp │ │ │ ├── class.hpp │ │ │ ├── code.hpp │ │ │ ├── code_base.hpp │ │ │ ├── col_span.hpp │ │ │ ├── cols.hpp │ │ │ ├── content.hpp │ │ │ ├── content_editable.hpp │ │ │ ├── context_menu.hpp │ │ │ ├── controls.hpp │ │ │ ├── coords.hpp │ │ │ ├── cross_origin.hpp │ │ │ ├── csp.hpp │ │ │ ├── data.hpp │ │ │ ├── date_time.hpp │ │ │ ├── decoding.hpp │ │ │ ├── default.hpp │ │ │ ├── defer.hpp │ │ │ ├── dir.hpp │ │ │ ├── dir_name.hpp │ │ │ ├── disabled.hpp │ │ │ ├── download.hpp │ │ │ ├── draggable.hpp │ │ │ ├── enctype.hpp │ │ │ ├── enter_key_hint.hpp │ │ │ ├── for.hpp │ │ │ ├── form.hpp │ │ │ ├── form_action.hpp │ │ │ ├── form_enc_type.hpp │ │ │ ├── form_method.hpp │ │ │ ├── form_no_validate.hpp │ │ │ ├── form_target.hpp │ │ │ ├── headers.hpp │ │ │ ├── height.hpp │ │ │ ├── hidden.hpp │ │ │ ├── high.hpp │ │ │ ├── href.hpp │ │ │ ├── href_lang.hpp │ │ │ ├── http_equiv.hpp │ │ │ ├── icon.hpp │ │ │ ├── id.hpp │ │ │ ├── impl │ │ │ │ ├── attribute.hpp │ │ │ │ └── attribute_factory.hpp │ │ │ ├── importance.hpp │ │ │ ├── input_mode.hpp │ │ │ ├── integrity.hpp │ │ │ ├── ismap.hpp │ │ │ ├── item_prop.hpp │ │ │ ├── key_type.hpp │ │ │ ├── kind.hpp │ │ │ ├── label.hpp │ │ │ ├── lang.hpp │ │ │ ├── list.hpp │ │ │ ├── loading.hpp │ │ │ ├── loop.hpp │ │ │ ├── low.hpp │ │ │ ├── max.hpp │ │ │ ├── max_length.hpp │ │ │ ├── media.hpp │ │ │ ├── method.hpp │ │ │ ├── min.hpp │ │ │ ├── min_length.hpp │ │ │ ├── mouse_events.hpp │ │ │ ├── multiple.hpp │ │ │ ├── muted.hpp │ │ │ ├── name.hpp │ │ │ ├── no_validate.hpp │ │ │ ├── on_abort.hpp │ │ │ ├── on_after_print.hpp │ │ │ ├── on_before_print.hpp │ │ │ ├── on_before_unload.hpp │ │ │ ├── on_blur.hpp │ │ │ ├── on_can_play.hpp │ │ │ ├── on_can_play_through.hpp │ │ │ ├── on_change.hpp │ │ │ ├── on_click.hpp │ │ │ ├── on_context_menu.hpp │ │ │ ├── on_copy.hpp │ │ │ ├── on_cue_change.hpp │ │ │ ├── on_cut.hpp │ │ │ ├── on_dbl_click.hpp │ │ │ ├── on_drag.hpp │ │ │ ├── on_drag_end.hpp │ │ │ ├── on_drag_enter.hpp │ │ │ ├── on_drag_leave.hpp │ │ │ ├── on_drag_over.hpp │ │ │ ├── on_drag_start.hpp │ │ │ ├── on_drop.hpp │ │ │ ├── on_duration_change.hpp │ │ │ ├── on_emptied.hpp │ │ │ ├── on_ended.hpp │ │ │ ├── on_error.hpp │ │ │ ├── on_focus.hpp │ │ │ ├── on_hash_change.hpp │ │ │ ├── on_input.hpp │ │ │ ├── on_invalid.hpp │ │ │ ├── on_key_down.hpp │ │ │ ├── on_key_press.hpp │ │ │ ├── on_key_up.hpp │ │ │ ├── on_load.hpp │ │ │ ├── on_load_start.hpp │ │ │ ├── on_loaded_data.hpp │ │ │ ├── on_loaded_meta_data.hpp │ │ │ ├── on_mouse_down.hpp │ │ │ ├── on_mouse_enter.hpp │ │ │ ├── on_mouse_leave.hpp │ │ │ ├── on_mouse_move.hpp │ │ │ ├── on_mouse_out.hpp │ │ │ ├── on_mouse_over.hpp │ │ │ ├── on_mouse_up.hpp │ │ │ ├── on_mouse_wheel.hpp │ │ │ ├── on_offline.hpp │ │ │ ├── on_online.hpp │ │ │ ├── on_page_hide.hpp │ │ │ ├── on_page_show.hpp │ │ │ ├── on_paste.hpp │ │ │ ├── on_pause.hpp │ │ │ ├── on_play.hpp │ │ │ ├── on_playing.hpp │ │ │ ├── on_pop_state.hpp │ │ │ ├── on_progress.hpp │ │ │ ├── on_rate_change.hpp │ │ │ ├── on_reset.hpp │ │ │ ├── on_resize.hpp │ │ │ ├── on_scroll.hpp │ │ │ ├── on_search.hpp │ │ │ ├── on_seeked.hpp │ │ │ ├── on_seeking.hpp │ │ │ ├── on_select.hpp │ │ │ ├── on_stalled.hpp │ │ │ ├── on_storage.hpp │ │ │ ├── on_submit.hpp │ │ │ ├── on_suspend.hpp │ │ │ ├── on_time_update.hpp │ │ │ ├── on_toggle.hpp │ │ │ ├── on_unload.hpp │ │ │ ├── on_volume_change.hpp │ │ │ ├── on_waiting.hpp │ │ │ ├── on_wheel.hpp │ │ │ ├── open.hpp │ │ │ ├── optimum.hpp │ │ │ ├── pattern.hpp │ │ │ ├── ping.hpp │ │ │ ├── place_holder.hpp │ │ │ ├── poster.hpp │ │ │ ├── preload.hpp │ │ │ ├── read_only.hpp │ │ │ ├── reference.hpp │ │ │ ├── referrer_policy.hpp │ │ │ ├── rel.hpp │ │ │ ├── required.hpp │ │ │ ├── reversed.hpp │ │ │ ├── role.hpp │ │ │ ├── row_span.hpp │ │ │ ├── rows.hpp │ │ │ ├── sandbox.hpp │ │ │ ├── scope.hpp │ │ │ ├── selected.hpp │ │ │ ├── shape.hpp │ │ │ ├── size.hpp │ │ │ ├── sizes.hpp │ │ │ ├── slot.hpp │ │ │ ├── span.hpp │ │ │ ├── spell_check.hpp │ │ │ ├── src.hpp │ │ │ ├── src_doc.hpp │ │ │ ├── src_lang.hpp │ │ │ ├── src_set.hpp │ │ │ ├── start.hpp │ │ │ ├── step.hpp │ │ │ ├── style.hpp │ │ │ ├── svg │ │ │ │ ├── accent_height.hpp │ │ │ │ ├── accumulate.hpp │ │ │ │ ├── additive.hpp │ │ │ │ ├── alignment_baseline.hpp │ │ │ │ ├── alphabetic.hpp │ │ │ │ ├── amplitude.hpp │ │ │ │ ├── arabic_form.hpp │ │ │ │ ├── ascent.hpp │ │ │ │ ├── attribute_name.hpp │ │ │ │ ├── attribute_type.hpp │ │ │ │ ├── azimuth.hpp │ │ │ │ ├── base_frequency.hpp │ │ │ │ ├── base_profile.hpp │ │ │ │ ├── baseline_shift.hpp │ │ │ │ ├── bbox.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── bias.hpp │ │ │ │ ├── by.hpp │ │ │ │ ├── calc_mode.hpp │ │ │ │ ├── cap_height.hpp │ │ │ │ ├── class.hpp │ │ │ │ ├── clip.hpp │ │ │ │ ├── clip_path.hpp │ │ │ │ ├── clip_path_units.hpp │ │ │ │ ├── clip_rule.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── color_interpolation.hpp │ │ │ │ ├── color_interpolation_filters.hpp │ │ │ │ ├── color_profile.hpp │ │ │ │ ├── color_rendering.hpp │ │ │ │ ├── content_script_type.hpp │ │ │ │ ├── content_style_type.hpp │ │ │ │ ├── crossorigin.hpp │ │ │ │ ├── cursor.hpp │ │ │ │ ├── cx.hpp │ │ │ │ ├── cy.hpp │ │ │ │ ├── d.hpp │ │ │ │ ├── descelerate.hpp │ │ │ │ ├── descent.hpp │ │ │ │ ├── diffuse_constant.hpp │ │ │ │ ├── direction.hpp │ │ │ │ ├── display.hpp │ │ │ │ ├── divisor.hpp │ │ │ │ ├── dominant_baseline.hpp │ │ │ │ ├── dur.hpp │ │ │ │ ├── dx.hpp │ │ │ │ ├── dy.hpp │ │ │ │ ├── edge_mode.hpp │ │ │ │ ├── elevation.hpp │ │ │ │ ├── enable_background.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── exponent.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── fill_opacity.hpp │ │ │ │ ├── fill_rule.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── filter_res.hpp │ │ │ │ ├── filter_units.hpp │ │ │ │ ├── flood_color.hpp │ │ │ │ ├── font_family.hpp │ │ │ │ ├── font_size.hpp │ │ │ │ ├── font_size_adjust.hpp │ │ │ │ ├── font_stretch.hpp │ │ │ │ ├── font_style.hpp │ │ │ │ ├── font_variant.hpp │ │ │ │ ├── font_weight.hpp │ │ │ │ ├── format.hpp │ │ │ │ ├── fr.hpp │ │ │ │ ├── from.hpp │ │ │ │ ├── fx.hpp │ │ │ │ ├── fy.hpp │ │ │ │ ├── g.hpp │ │ │ │ ├── glyph_name.hpp │ │ │ │ ├── glyph_orientation_horizontal.hpp │ │ │ │ ├── glyph_ref.hpp │ │ │ │ ├── gradient_transform.hpp │ │ │ │ ├── gradient_units.hpp │ │ │ │ ├── hanging.hpp │ │ │ │ ├── height.hpp │ │ │ │ ├── horiz_adv_x.hpp │ │ │ │ ├── horiz_origin_x.hpp │ │ │ │ ├── href.hpp │ │ │ │ ├── hreflang.hpp │ │ │ │ ├── id.hpp │ │ │ │ ├── ideographic.hpp │ │ │ │ ├── image_rendering.hpp │ │ │ │ ├── impl │ │ │ │ │ └── svg_attribute_factory.hpp │ │ │ │ ├── in.hpp │ │ │ │ ├── intercept.hpp │ │ │ │ ├── k.hpp │ │ │ │ ├── kernel_matrix.hpp │ │ │ │ ├── kernel_unit_length.hpp │ │ │ │ ├── kerning.hpp │ │ │ │ ├── key_points.hpp │ │ │ │ ├── key_splines.hpp │ │ │ │ ├── key_times.hpp │ │ │ │ ├── lang.hpp │ │ │ │ ├── length_adjust.hpp │ │ │ │ ├── letter_spacing.hpp │ │ │ │ ├── ligthing_color.hpp │ │ │ │ ├── limiting_cone_angle.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── marker_end.hpp │ │ │ │ ├── marker_height.hpp │ │ │ │ ├── marker_mid.hpp │ │ │ │ ├── marker_start.hpp │ │ │ │ ├── marker_units.hpp │ │ │ │ ├── marker_width.hpp │ │ │ │ ├── mask.hpp │ │ │ │ ├── mask_content_units.hpp │ │ │ │ ├── mask_units.hpp │ │ │ │ ├── mathematical.hpp │ │ │ │ ├── max.hpp │ │ │ │ ├── media.hpp │ │ │ │ ├── method.hpp │ │ │ │ ├── min.hpp │ │ │ │ ├── mode.hpp │ │ │ │ ├── name.hpp │ │ │ │ ├── num_octaves.hpp │ │ │ │ ├── offset.hpp │ │ │ │ ├── on_begin.hpp │ │ │ │ ├── on_end.hpp │ │ │ │ ├── on_repeat.hpp │ │ │ │ ├── opacity.hpp │ │ │ │ ├── operator.hpp │ │ │ │ ├── order.hpp │ │ │ │ ├── orient.hpp │ │ │ │ ├── orientation.hpp │ │ │ │ ├── origin.hpp │ │ │ │ ├── overflow.hpp │ │ │ │ ├── overline_position.hpp │ │ │ │ ├── overline_thickness.hpp │ │ │ │ ├── paint_order.hpp │ │ │ │ ├── panose.hpp │ │ │ │ ├── path.hpp │ │ │ │ ├── path_length.hpp │ │ │ │ ├── pattern_content_units.hpp │ │ │ │ ├── pattern_transform.hpp │ │ │ │ ├── pattern_units.hpp │ │ │ │ ├── ping.hpp │ │ │ │ ├── pointer_events.hpp │ │ │ │ ├── points.hpp │ │ │ │ ├── points_at_x.hpp │ │ │ │ ├── points_at_y.hpp │ │ │ │ ├── points_at_z.hpp │ │ │ │ ├── preserve_alpha.hpp │ │ │ │ ├── preserve_aspect_ratio.hpp │ │ │ │ ├── primitive_units.hpp │ │ │ │ ├── r.hpp │ │ │ │ ├── radius.hpp │ │ │ │ ├── ref_x.hpp │ │ │ │ ├── ref_y.hpp │ │ │ │ ├── referrer_policy.hpp │ │ │ │ ├── rel.hpp │ │ │ │ ├── rendering_intent.hpp │ │ │ │ ├── repeat_count.hpp │ │ │ │ ├── repeat_dur.hpp │ │ │ │ ├── required_extensions.hpp │ │ │ │ ├── required_features.hpp │ │ │ │ ├── restart.hpp │ │ │ │ ├── result.hpp │ │ │ │ ├── rotate.hpp │ │ │ │ ├── rx.hpp │ │ │ │ ├── ry.hpp │ │ │ │ ├── scale.hpp │ │ │ │ ├── seed.hpp │ │ │ │ ├── shape_rendering.hpp │ │ │ │ ├── slope.hpp │ │ │ │ ├── spacing.hpp │ │ │ │ ├── specular_constant.hpp │ │ │ │ ├── specular_exponent.hpp │ │ │ │ ├── speed.hpp │ │ │ │ ├── spread_method.hpp │ │ │ │ ├── start_offset.hpp │ │ │ │ ├── std_deviation.hpp │ │ │ │ ├── stemh.hpp │ │ │ │ ├── stemv.hpp │ │ │ │ ├── stitch_tiles.hpp │ │ │ │ ├── stop_color.hpp │ │ │ │ ├── stop_opacity.hpp │ │ │ │ ├── strikethrough_position.hpp │ │ │ │ ├── strikethrough_thickness.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── stroke.hpp │ │ │ │ ├── stroke_dasharray.hpp │ │ │ │ ├── stroke_dashoffset.hpp │ │ │ │ ├── stroke_linecap.hpp │ │ │ │ ├── stroke_linejoin.hpp │ │ │ │ ├── stroke_miterlimit.hpp │ │ │ │ ├── stroke_opacity.hpp │ │ │ │ ├── stroke_width.hpp │ │ │ │ ├── style.hpp │ │ │ │ ├── surface_scale.hpp │ │ │ │ ├── system_language.hpp │ │ │ │ ├── tabindex.hpp │ │ │ │ ├── table_values.hpp │ │ │ │ ├── target.hpp │ │ │ │ ├── target_x.hpp │ │ │ │ ├── target_y.hpp │ │ │ │ ├── text_anchor.hpp │ │ │ │ ├── text_decoration.hpp │ │ │ │ ├── text_length.hpp │ │ │ │ ├── text_rendering.hpp │ │ │ │ ├── to.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform_origin.hpp │ │ │ │ ├── type.hpp │ │ │ │ ├── u.hpp │ │ │ │ ├── underline_position.hpp │ │ │ │ ├── underline_thickness.hpp │ │ │ │ ├── unicode.hpp │ │ │ │ ├── unicode_bidi.hpp │ │ │ │ ├── unicode_range.hpp │ │ │ │ ├── units_per_em.hpp │ │ │ │ ├── v_alphabetic.hpp │ │ │ │ ├── v_hanging.hpp │ │ │ │ ├── v_ideographic.hpp │ │ │ │ ├── v_mathemtical.hpp │ │ │ │ ├── values.hpp │ │ │ │ ├── vector_offset.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── vert_adv_y.hpp │ │ │ │ ├── vert_origin_x.hpp │ │ │ │ ├── vert_origin_y.hpp │ │ │ │ ├── view_box.hpp │ │ │ │ ├── view_target.hpp │ │ │ │ ├── visibility.hpp │ │ │ │ ├── width.hpp │ │ │ │ ├── widths.hpp │ │ │ │ ├── word_spacing.hpp │ │ │ │ ├── writing_mode.hpp │ │ │ │ ├── x.hpp │ │ │ │ ├── x_channel_selector.hpp │ │ │ │ ├── x_height.hpp │ │ │ │ ├── y.hpp │ │ │ │ ├── y_channel_selector.hpp │ │ │ │ ├── z.hpp │ │ │ │ └── zoom_and_pan.hpp │ │ │ ├── tab_index.hpp │ │ │ ├── target.hpp │ │ │ ├── title.hpp │ │ │ ├── translate.hpp │ │ │ ├── type.hpp │ │ │ ├── use_map.hpp │ │ │ ├── value.hpp │ │ │ ├── width.hpp │ │ │ └── wrap.hpp │ │ ├── bindings.hpp │ │ ├── components.hpp │ │ ├── components │ │ │ ├── dialog.hpp │ │ │ ├── model │ │ │ │ └── select.hpp │ │ │ ├── select.hpp │ │ │ ├── table.hpp │ │ │ └── text_input.hpp │ │ ├── dom.hpp │ │ ├── dom │ │ │ ├── basic_element.hpp │ │ │ ├── childless_element.hpp │ │ │ ├── dom.hpp │ │ │ ├── element.hpp │ │ │ ├── element_fwd.hpp │ │ │ └── reference.hpp │ │ ├── element_renderer.hpp │ │ ├── elements.hpp │ │ ├── elements │ │ │ ├── a.hpp │ │ │ ├── abbr.hpp │ │ │ ├── address.hpp │ │ │ ├── area.hpp │ │ │ ├── article.hpp │ │ │ ├── aside.hpp │ │ │ ├── audio.hpp │ │ │ ├── b.hpp │ │ │ ├── base.hpp │ │ │ ├── bdi.hpp │ │ │ ├── bdo.hpp │ │ │ ├── blockquote.hpp │ │ │ ├── body.hpp │ │ │ ├── br.hpp │ │ │ ├── button.hpp │ │ │ ├── canvas.hpp │ │ │ ├── caption.hpp │ │ │ ├── cite.hpp │ │ │ ├── code.hpp │ │ │ ├── col.hpp │ │ │ ├── colgroup.hpp │ │ │ ├── comment.hpp │ │ │ ├── data.hpp │ │ │ ├── datalist.hpp │ │ │ ├── dd.hpp │ │ │ ├── del.hpp │ │ │ ├── detail │ │ │ │ └── fragment_context.hpp │ │ │ ├── details.hpp │ │ │ ├── dfn.hpp │ │ │ ├── dialog.hpp │ │ │ ├── div.hpp │ │ │ ├── dl.hpp │ │ │ ├── dt.hpp │ │ │ ├── em.hpp │ │ │ ├── embed.hpp │ │ │ ├── fieldset.hpp │ │ │ ├── figcaption.hpp │ │ │ ├── figure.hpp │ │ │ ├── footer.hpp │ │ │ ├── form.hpp │ │ │ ├── fragment.hpp │ │ │ ├── h1.hpp │ │ │ ├── h2.hpp │ │ │ ├── h3.hpp │ │ │ ├── h4.hpp │ │ │ ├── h5.hpp │ │ │ ├── h6.hpp │ │ │ ├── head.hpp │ │ │ ├── header.hpp │ │ │ ├── heading.hpp │ │ │ ├── hr.hpp │ │ │ ├── i.hpp │ │ │ ├── iframe.hpp │ │ │ ├── img.hpp │ │ │ ├── impl │ │ │ │ ├── html_element.hpp │ │ │ │ ├── html_element.tpp │ │ │ │ ├── html_element_bridge.hpp │ │ │ │ ├── html_element_bridges.hpp │ │ │ │ ├── html_element_incl.hpp │ │ │ │ ├── make_children_update_event.hpp │ │ │ │ ├── materialize.hpp │ │ │ │ ├── range_renderer.hpp │ │ │ │ └── range_renderer.tpp │ │ │ ├── input.hpp │ │ │ ├── ins.hpp │ │ │ ├── kbd.hpp │ │ │ ├── label.hpp │ │ │ ├── legend.hpp │ │ │ ├── li.hpp │ │ │ ├── link.hpp │ │ │ ├── main.hpp │ │ │ ├── map.hpp │ │ │ ├── mark.hpp │ │ │ ├── menu.hpp │ │ │ ├── meta.hpp │ │ │ ├── meter.hpp │ │ │ ├── nav.hpp │ │ │ ├── nil.hpp │ │ │ ├── noscript.hpp │ │ │ ├── object.hpp │ │ │ ├── ol.hpp │ │ │ ├── optgroup.hpp │ │ │ ├── option.hpp │ │ │ ├── output.hpp │ │ │ ├── p.hpp │ │ │ ├── param.hpp │ │ │ ├── picture.hpp │ │ │ ├── pre.hpp │ │ │ ├── progress.hpp │ │ │ ├── q.hpp │ │ │ ├── rp.hpp │ │ │ ├── rt.hpp │ │ │ ├── ruby.hpp │ │ │ ├── s.hpp │ │ │ ├── samp.hpp │ │ │ ├── script.hpp │ │ │ ├── section.hpp │ │ │ ├── select.hpp │ │ │ ├── small.hpp │ │ │ ├── source.hpp │ │ │ ├── span.hpp │ │ │ ├── strong.hpp │ │ │ ├── sub.hpp │ │ │ ├── summary.hpp │ │ │ ├── sup.hpp │ │ │ ├── svg │ │ │ │ ├── a.hpp │ │ │ │ ├── animate.hpp │ │ │ │ ├── animate_motion.hpp │ │ │ │ ├── animate_transform.hpp │ │ │ │ ├── circle.hpp │ │ │ │ ├── clipPath.hpp │ │ │ │ ├── defs.hpp │ │ │ │ ├── desc.hpp │ │ │ │ ├── ellipse.hpp │ │ │ │ ├── fe_blend.hpp │ │ │ │ ├── fe_color_matrix.hpp │ │ │ │ ├── fe_component_transfer.hpp │ │ │ │ ├── fe_composite.hpp │ │ │ │ ├── fe_convolve_matrix.hpp │ │ │ │ ├── fe_diffuse_lighting.hpp │ │ │ │ ├── fe_displacement_map.hpp │ │ │ │ ├── fe_distant_light.hpp │ │ │ │ ├── fe_drop_shadow.hpp │ │ │ │ ├── fe_flood.hpp │ │ │ │ ├── fe_func.hpp │ │ │ │ ├── fe_func_a.hpp │ │ │ │ ├── fe_func_b.hpp │ │ │ │ ├── fe_func_g.hpp │ │ │ │ ├── fe_func_r.hpp │ │ │ │ ├── fe_gaussian_blur.hpp │ │ │ │ ├── fe_image.hpp │ │ │ │ ├── fe_merge.hpp │ │ │ │ ├── fe_merge_node.hpp │ │ │ │ ├── fe_morphology.hpp │ │ │ │ ├── fe_offset.hpp │ │ │ │ ├── fe_point_light.hpp │ │ │ │ ├── fe_specular_lighting.hpp │ │ │ │ ├── fe_spot_light.hpp │ │ │ │ ├── fe_tile.hpp │ │ │ │ ├── fe_turbulence.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── foreign_object.hpp │ │ │ │ ├── g.hpp │ │ │ │ ├── hatch.hpp │ │ │ │ ├── hatchpath.hpp │ │ │ │ ├── image.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── svg_element.hpp │ │ │ │ │ └── svg_element_incl.hpp │ │ │ │ ├── line.hpp │ │ │ │ ├── linear_gradient.hpp │ │ │ │ ├── marker.hpp │ │ │ │ ├── mask.hpp │ │ │ │ ├── metadata.hpp │ │ │ │ ├── mpath.hpp │ │ │ │ ├── path.hpp │ │ │ │ ├── pattern.hpp │ │ │ │ ├── polygon.hpp │ │ │ │ ├── polyline.hpp │ │ │ │ ├── radial_gradient.hpp │ │ │ │ ├── rect.hpp │ │ │ │ ├── script.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── stop.hpp │ │ │ │ ├── style.hpp │ │ │ │ ├── svg.hpp │ │ │ │ ├── switch.hpp │ │ │ │ ├── symbol.hpp │ │ │ │ ├── text.hpp │ │ │ │ ├── textPath.hpp │ │ │ │ ├── title.hpp │ │ │ │ ├── tspan.hpp │ │ │ │ ├── use.hpp │ │ │ │ └── view.hpp │ │ │ ├── switch.hpp │ │ │ ├── table.hpp │ │ │ ├── tbody.hpp │ │ │ ├── td.hpp │ │ │ ├── template.hpp │ │ │ ├── text.hpp │ │ │ ├── textarea.hpp │ │ │ ├── tfoot.hpp │ │ │ ├── th.hpp │ │ │ ├── thead.hpp │ │ │ ├── time.hpp │ │ │ ├── title.hpp │ │ │ ├── tr.hpp │ │ │ ├── track.hpp │ │ │ ├── u.hpp │ │ │ ├── ul.hpp │ │ │ ├── var.hpp │ │ │ ├── video.hpp │ │ │ └── wbr.hpp │ │ ├── event_system │ │ │ ├── event.hpp │ │ │ ├── event_context.hpp │ │ │ ├── event_registry.hpp │ │ │ ├── observed_value.hpp │ │ │ ├── observed_value_combinator.hpp │ │ │ ├── range.hpp │ │ │ └── range_event_context.hpp │ │ ├── extensions │ │ │ └── make_resizeable.hpp │ │ ├── filesystem │ │ │ ├── file.hpp │ │ │ └── file_dialog.hpp │ │ ├── frontend.hpp │ │ ├── property.hpp │ │ ├── rpc_client.hpp │ │ ├── svg.hpp │ │ ├── svg_attributes.hpp │ │ ├── svg_elements.hpp │ │ ├── utility │ │ │ ├── delocalized.hpp │ │ │ ├── fragment_listener.hpp │ │ │ ├── functions.hpp │ │ │ ├── stabilize.hpp │ │ │ └── val_conversion.hpp │ │ └── val.hpp │ │ ├── rpc.hpp │ │ ├── screen.hpp │ │ ├── shared │ │ ├── api │ │ │ └── fetch_options.hpp │ │ └── on_destroy.hpp │ │ ├── utility │ │ ├── assert.hpp │ │ ├── fixed_string.hpp │ │ ├── iterator_accessor.hpp │ │ ├── lazy.hpp │ │ ├── meta │ │ │ ├── extract_value_type.hpp │ │ │ ├── is_tuple.hpp │ │ │ ├── pick_first.hpp │ │ │ ├── tuple_filter.hpp │ │ │ ├── tuple_push_front.hpp │ │ │ └── tuple_transform.hpp │ │ ├── move_detector.hpp │ │ ├── overloaded.hpp │ │ ├── reverse_view.hpp │ │ ├── scope_exit.hpp │ │ ├── tuple_for_each.hpp │ │ ├── unique_identifier.hpp │ │ ├── utf.hpp │ │ └── visit_overloaded.hpp │ │ └── window.hpp ├── js │ ├── make_resizeable.ts │ └── rpc.ts ├── src │ └── nui │ │ ├── CMakeLists.txt │ │ ├── backend │ │ ├── CMakeLists.txt │ │ ├── environment_options_from_window_options.ipp │ │ ├── environment_variables_nix.cpp │ │ ├── environment_variables_win.cpp │ │ ├── filesystem │ │ │ ├── file_dialog.cpp │ │ │ ├── file_dialog_options.cpp │ │ │ └── special_paths.cpp │ │ ├── gobject.hpp │ │ ├── load_file.cpp │ │ ├── load_file.hpp │ │ ├── mac_helpers │ │ │ ├── class.hpp │ │ │ ├── helpers.hpp │ │ │ ├── mac_includes.hpp │ │ │ └── type_encodings.hpp │ │ ├── mac_webview_config_from_window_options.ipp │ │ ├── rpc_addons │ │ │ ├── environment_variables.cpp │ │ │ ├── environment_variables.hpp │ │ │ ├── fetch.cpp │ │ │ ├── fetch.hpp │ │ │ ├── file.cpp │ │ │ ├── file.hpp │ │ │ ├── screen.cpp │ │ │ ├── screen.hpp │ │ │ ├── throttle.cpp │ │ │ ├── throttle.hpp │ │ │ ├── timer.cpp │ │ │ └── timer.hpp │ │ ├── rpc_hub.cpp │ │ ├── screen_mac.cpp │ │ ├── screen_nix.cpp │ │ ├── screen_win.cpp │ │ ├── window.cpp │ │ ├── window_impl_linux.ipp │ │ ├── window_impl_mac.ipp │ │ └── window_impl_win.ipp │ │ ├── event_system │ │ ├── CMakeLists.txt │ │ └── event_context.cpp │ │ └── frontend │ │ ├── CMakeLists.txt │ │ ├── api │ │ ├── fetch.cpp │ │ ├── throttle.cpp │ │ └── timer.cpp │ │ ├── attributes │ │ └── impl │ │ │ └── attribute.cpp │ │ ├── components │ │ └── dialog.cpp │ │ ├── dom │ │ └── dom.cpp │ │ ├── environment_variables.cpp │ │ ├── extensions │ │ └── make_resizeable.cpp │ │ ├── filesystem │ │ ├── file.cpp │ │ └── file_dialog.cpp │ │ ├── frontend_sources.cmake │ │ ├── screen.cpp │ │ ├── utility │ │ ├── fragment_listener.cpp │ │ ├── functions.cpp │ │ └── stabilize.cpp │ │ └── window.cpp ├── test │ └── nui │ │ ├── CMakeLists.txt │ │ ├── common_test_fixture.hpp │ │ ├── components │ │ ├── test_dialog.hpp │ │ ├── test_select.hpp │ │ └── test_table.hpp │ │ ├── emscripten_mock │ │ ├── emscripten.h │ │ └── emscripten │ │ │ ├── bind.h │ │ │ └── val.h │ │ ├── engine │ │ ├── array.cpp │ │ ├── array.hpp │ │ ├── document.cpp │ │ ├── document.hpp │ │ ├── function.hpp │ │ ├── function.tpp │ │ ├── global_object.cpp │ │ ├── global_object.hpp │ │ ├── object.cpp │ │ ├── object.hpp │ │ ├── print.hpp │ │ ├── reference_type.hpp │ │ ├── value.cpp │ │ ├── value.hpp │ │ ├── warn.cpp │ │ └── warn.hpp │ │ ├── test_attributes.hpp │ │ ├── test_delocalized.hpp │ │ ├── test_elements.hpp │ │ ├── test_events.hpp │ │ ├── test_observed.hpp │ │ ├── test_properties.hpp │ │ ├── test_ranges.hpp │ │ ├── test_render.hpp │ │ ├── test_selectables_registry.hpp │ │ ├── test_switch.hpp │ │ └── tests.cpp └── windows │ ├── eventtoken.h │ ├── weakreference.h │ ├── webview2_environment_options.hpp │ └── wrl │ ├── client.h │ ├── def.h │ ├── event.h │ ├── implements.h │ ├── internal.h │ ├── module.h │ ├── patch.h │ └── wrappers │ └── corewrappers.h └── tools ├── bin2hpp ├── CMakeLists.txt ├── base64_encoder.cpp ├── base64_encoder.hpp ├── compressed_encoder.cpp ├── compressed_encoder.hpp ├── constants.hpp ├── encoder.hpp ├── main.cpp ├── raw_encoder.cpp └── raw_encoder.hpp ├── inline_injector ├── CMakeLists.txt └── main.cpp ├── inline_parser ├── CMakeLists.txt ├── include │ └── inline_parser │ │ ├── constants.hpp │ │ ├── inline_extractor.hpp │ │ ├── parser.hpp │ │ └── section_cache.hpp ├── src │ └── inline_parser │ │ ├── CMakeLists.txt │ │ ├── inline_extractor.cpp │ │ ├── main.cpp │ │ └── section_cache.cpp └── test │ ├── CMakeLists.txt │ ├── temp_dir.cpp │ ├── temp_dir.hpp │ ├── test_inline_extractor.hpp │ └── tests.cpp ├── parcel_adapter ├── CMakeLists.txt └── main.cpp ├── patch_dotenv ├── CMakeLists.txt └── main.cpp └── webview_uuid ├── CMakeLists.txt └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/README.md -------------------------------------------------------------------------------- /cmake/backend/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/backend/common.cmake -------------------------------------------------------------------------------- /cmake/backend/emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/backend/emscripten.cmake -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/compiler_warnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/compiler_warnings.cmake -------------------------------------------------------------------------------- /cmake/dependencies/binaryen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/binaryen.cmake -------------------------------------------------------------------------------- /cmake/dependencies/boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/boost.cmake -------------------------------------------------------------------------------- /cmake/dependencies/boostpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/boostpp.cmake -------------------------------------------------------------------------------- /cmake/dependencies/describe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/describe.cmake -------------------------------------------------------------------------------- /cmake/dependencies/emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/emscripten.cmake -------------------------------------------------------------------------------- /cmake/dependencies/fmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/fmt.cmake -------------------------------------------------------------------------------- /cmake/dependencies/gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/gtest.cmake -------------------------------------------------------------------------------- /cmake/dependencies/interval_tree.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/interval_tree.cmake -------------------------------------------------------------------------------- /cmake/dependencies/mp11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/mp11.cmake -------------------------------------------------------------------------------- /cmake/dependencies/mplex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/mplex.cmake -------------------------------------------------------------------------------- /cmake/dependencies/nlohmann_json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/nlohmann_json.cmake -------------------------------------------------------------------------------- /cmake/dependencies/nui_traits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/nui_traits.cmake -------------------------------------------------------------------------------- /cmake/dependencies/portable_file_dialog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/portable_file_dialog.cmake -------------------------------------------------------------------------------- /cmake/dependencies/roar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/roar.cmake -------------------------------------------------------------------------------- /cmake/dependencies/utfcpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/utfcpp.cmake -------------------------------------------------------------------------------- /cmake/dependencies/webview.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/dependencies/webview.cmake -------------------------------------------------------------------------------- /cmake/fetcher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/fetcher.cmake -------------------------------------------------------------------------------- /cmake/frontend/emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/frontend/emscripten.cmake -------------------------------------------------------------------------------- /cmake/inline_extractor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/inline_extractor.cmake -------------------------------------------------------------------------------- /cmake/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/options.cmake -------------------------------------------------------------------------------- /cmake/static_analyzers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/cmake/static_analyzers.cmake -------------------------------------------------------------------------------- /doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/doxyfile -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/.gitignore -------------------------------------------------------------------------------- /examples/basic/.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/.parcelrc -------------------------------------------------------------------------------- /examples/basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/LICENSE -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/_cmake/common_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/_cmake/common_options.cmake -------------------------------------------------------------------------------- /examples/basic/backend/source/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/backend/source/backend/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic/backend/source/backend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/backend/source/backend/main.cpp -------------------------------------------------------------------------------- /examples/basic/frontend/include/frontend/main_page.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/frontend/include/frontend/main_page.hpp -------------------------------------------------------------------------------- /examples/basic/frontend/source/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/frontend/source/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic/frontend/source/frontend/js/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/frontend/source/frontend/js/module.js -------------------------------------------------------------------------------- /examples/basic/frontend/source/frontend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/frontend/source/frontend/main.cpp -------------------------------------------------------------------------------- /examples/basic/frontend/source/frontend/main_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/frontend/source/frontend/main_page.cpp -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/static/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/static/assets/README.md -------------------------------------------------------------------------------- /examples/basic/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/static/index.html -------------------------------------------------------------------------------- /examples/basic/static/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/static/source/index.js -------------------------------------------------------------------------------- /examples/basic/static/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/basic/vcpkg.json -------------------------------------------------------------------------------- /examples/custom_schemes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/.gitignore -------------------------------------------------------------------------------- /examples/custom_schemes/.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/.parcelrc -------------------------------------------------------------------------------- /examples/custom_schemes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_schemes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/LICENSE -------------------------------------------------------------------------------- /examples/custom_schemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/README.md -------------------------------------------------------------------------------- /examples/custom_schemes/_cmake/common_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/_cmake/common_options.cmake -------------------------------------------------------------------------------- /examples/custom_schemes/backend/source/backend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/backend/source/backend/main.cpp -------------------------------------------------------------------------------- /examples/custom_schemes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/package.json -------------------------------------------------------------------------------- /examples/custom_schemes/static/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/static/assets/README.md -------------------------------------------------------------------------------- /examples/custom_schemes/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/static/index.html -------------------------------------------------------------------------------- /examples/custom_schemes/static/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/static/source/index.js -------------------------------------------------------------------------------- /examples/custom_schemes/static/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/custom_schemes/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/examples/custom_schemes/vcpkg.json -------------------------------------------------------------------------------- /nui/include/nui/backend/backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/backend/backend.hpp -------------------------------------------------------------------------------- /nui/include/nui/backend/filesystem/file_dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/backend/filesystem/file_dialog.hpp -------------------------------------------------------------------------------- /nui/include/nui/backend/filesystem/special_paths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/backend/filesystem/special_paths.hpp -------------------------------------------------------------------------------- /nui/include/nui/backend/rpc_hub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/backend/rpc_hub.hpp -------------------------------------------------------------------------------- /nui/include/nui/backend/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/backend/url.hpp -------------------------------------------------------------------------------- /nui/include/nui/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/concepts.hpp -------------------------------------------------------------------------------- /nui/include/nui/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/core.hpp -------------------------------------------------------------------------------- /nui/include/nui/data_structures/selectables_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/data_structures/selectables_registry.hpp -------------------------------------------------------------------------------- /nui/include/nui/environment_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/environment_variables.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/event.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/event_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/event_context.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/event_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/event_registry.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/listen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/listen.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/observed_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/observed_value.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/range.hpp -------------------------------------------------------------------------------- /nui/include/nui/event_system/range_event_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/event_system/range_event_context.hpp -------------------------------------------------------------------------------- /nui/include/nui/feature_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/feature_test.hpp -------------------------------------------------------------------------------- /nui/include/nui/filesystem/file_dialog_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/filesystem/file_dialog_options.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/api/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/api/console.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/api/fetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/api/fetch.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/api/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/api/json.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/api/throttle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/api/throttle.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/api/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/api/timer.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/accept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/accept.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/accept_charset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/accept_charset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/access_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/access_key.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/action.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/align.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/allow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/allow.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/alt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/alt.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/async.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/auto_capitalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/auto_capitalize.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/auto_complete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/auto_complete.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/auto_focus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/auto_focus.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/auto_play.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/auto_play.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/buffered.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/capture.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/challenge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/challenge.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/char_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/char_set.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/checked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/checked.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/cite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/cite.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/class.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/code.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/code_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/code_base.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/col_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/col_span.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/cols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/cols.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/content.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/content.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/content_editable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/content_editable.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/context_menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/context_menu.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/controls.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/coords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/coords.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/cross_origin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/cross_origin.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/csp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/csp.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/data.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/date_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/date_time.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/decoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/decoding.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/default.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/defer.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/dir.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/dir_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/dir_name.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/disabled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/disabled.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/download.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/download.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/draggable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/draggable.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/enctype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/enctype.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/enter_key_hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/enter_key_hint.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/for.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form_action.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form_enc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form_enc_type.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form_method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form_method.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form_no_validate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form_no_validate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/form_target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/form_target.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/headers.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/height.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/height.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/hidden.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/hidden.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/high.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/high.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/href.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/href.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/href_lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/href_lang.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/http_equiv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/http_equiv.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/icon.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/id.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/impl/attribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/impl/attribute.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/importance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/importance.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/input_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/input_mode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/integrity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/integrity.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/ismap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/ismap.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/item_prop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/item_prop.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/key_type.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/kind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/kind.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/label.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/lang.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/list.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/loading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/loading.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/loop.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/low.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/low.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/max.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/max_length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/max_length.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/media.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/method.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/min.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/min_length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/min_length.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/mouse_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/mouse_events.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/multiple.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/muted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/muted.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/name.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/no_validate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/no_validate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_abort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_abort.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_after_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_after_print.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_before_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_before_print.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_before_unload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_before_unload.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_blur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_blur.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_can_play.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_can_play.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_change.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_click.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_click.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_context_menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_context_menu.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_copy.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_cue_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_cue_change.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_cut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_cut.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_dbl_click.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_dbl_click.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag_end.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag_enter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag_enter.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag_leave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag_leave.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag_over.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag_over.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drag_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drag_start.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_drop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_drop.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_emptied.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_emptied.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_ended.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_ended.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_error.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_focus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_focus.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_hash_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_hash_change.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_input.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_invalid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_invalid.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_key_down.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_key_down.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_key_press.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_key_press.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_key_up.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_key_up.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_load.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_load_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_load_start.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_loaded_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_loaded_data.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_down.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_down.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_enter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_enter.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_leave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_leave.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_move.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_out.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_out.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_over.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_over.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_up.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_up.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_mouse_wheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_mouse_wheel.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_offline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_offline.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_online.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_online.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_page_hide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_page_hide.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_page_show.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_page_show.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_paste.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_paste.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_pause.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_pause.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_play.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_play.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_playing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_playing.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_pop_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_pop_state.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_progress.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_rate_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_rate_change.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_reset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_reset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_resize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_resize.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_scroll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_scroll.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_search.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_seeked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_seeked.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_seeking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_seeking.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_select.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_stalled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_stalled.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_storage.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_submit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_submit.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_suspend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_suspend.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_time_update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_time_update.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_toggle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_toggle.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_unload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_unload.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_volume_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_volume_change.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_waiting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_waiting.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/on_wheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/on_wheel.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/open.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/open.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/optimum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/optimum.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/pattern.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/ping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/ping.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/place_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/place_holder.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/poster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/poster.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/preload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/preload.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/read_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/read_only.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/reference.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/referrer_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/referrer_policy.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/rel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/rel.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/required.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/required.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/reversed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/reversed.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/role.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/role.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/row_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/row_span.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/rows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/rows.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/sandbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/sandbox.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/scope.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/selected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/selected.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/shape.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/size.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/sizes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/sizes.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/slot.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/span.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/spell_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/spell_check.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/src.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/src_doc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/src_doc.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/src_lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/src_lang.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/src_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/src_set.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/start.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/step.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/step.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/style.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/accumulate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/accumulate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/additive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/additive.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/alphabetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/alphabetic.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/amplitude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/amplitude.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/arabic_form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/arabic_form.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ascent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ascent.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/azimuth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/azimuth.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/base_profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/base_profile.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/bbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/bbox.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/begin.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/bias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/bias.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/by.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/calc_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/calc_mode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/cap_height.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/cap_height.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/class.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/clip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/clip.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/clip_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/clip_path.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/clip_rule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/clip_rule.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/color.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/crossorigin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/crossorigin.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/cursor.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/cx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/cx.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/cy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/cy.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/d.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/descelerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/descelerate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/descent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/descent.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/direction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/direction.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/display.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/divisor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/divisor.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/dur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/dur.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/dx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/dx.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/dy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/dy.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/edge_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/edge_mode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/elevation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/elevation.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/end.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/exponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/exponent.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fill.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fill_opacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fill_opacity.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fill_rule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fill_rule.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/filter.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/filter_res.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/filter_res.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/filter_units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/filter_units.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/flood_color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/flood_color.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_family.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_family.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_size.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_stretch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_stretch.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_style.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_variant.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/font_weight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/font_weight.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/format.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fr.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/from.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fx.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/fy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/fy.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/g.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/g.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/glyph_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/glyph_name.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/glyph_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/glyph_ref.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/hanging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/hanging.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/height.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/height.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/horiz_adv_x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/horiz_adv_x.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/href.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/href.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/hreflang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/hreflang.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/id.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ideographic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ideographic.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/in.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/intercept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/intercept.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/k.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/kerning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/kerning.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/key_points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/key_points.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/key_splines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/key_splines.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/key_times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/key_times.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/lang.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/local.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/marker_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/marker_end.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/marker_mid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/marker_mid.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/marker_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/marker_start.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/marker_units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/marker_units.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/marker_width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/marker_width.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/mask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/mask.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/mask_units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/mask_units.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/mathematical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/mathematical.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/max.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/media.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/method.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/min.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/mode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/name.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/num_octaves.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/num_octaves.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/offset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/on_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/on_begin.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/on_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/on_end.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/on_repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/on_repeat.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/opacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/opacity.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/operator.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/order.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/orient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/orient.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/orientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/orientation.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/origin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/origin.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/overflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/overflow.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/paint_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/paint_order.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/panose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/panose.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/path.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/path_length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/path_length.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ping.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/points.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/points_at_x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/points_at_x.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/points_at_y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/points_at_y.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/points_at_z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/points_at_z.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/r.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/r.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/radius.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/radius.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ref_x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ref_x.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ref_y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ref_y.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/rel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/rel.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/repeat_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/repeat_count.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/repeat_dur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/repeat_dur.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/restart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/restart.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/result.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/rotate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/rotate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/rx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/rx.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/ry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/ry.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/scale.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/seed.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/slope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/slope.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/spacing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/spacing.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/speed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/speed.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/start_offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/start_offset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stemh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stemh.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stemv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stemv.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stitch_tiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stitch_tiles.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stop_color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stop_color.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stop_opacity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stop_opacity.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/string.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stroke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stroke.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/stroke_width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/stroke_width.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/style.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/tabindex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/tabindex.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/table_values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/table_values.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/target.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/target_x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/target_x.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/target_y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/target_y.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/text_anchor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/text_anchor.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/text_length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/text_length.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/to.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/transform.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/type.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/u.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/u.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/unicode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/unicode_bidi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/unicode_bidi.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/units_per_em.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/units_per_em.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/v_alphabetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/v_alphabetic.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/v_hanging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/v_hanging.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/values.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/version.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/vert_adv_y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/vert_adv_y.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/view_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/view_box.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/view_target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/view_target.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/visibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/visibility.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/width.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/widths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/widths.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/word_spacing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/word_spacing.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/writing_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/writing_mode.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/x.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/x_height.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/x_height.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/y.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/y.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/z.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/svg/zoom_and_pan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/svg/zoom_and_pan.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/tab_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/tab_index.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/target.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/title.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/translate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/translate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/type.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/use_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/use_map.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/value.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/width.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/attributes/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/attributes/wrap.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/bindings.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components/dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components/dialog.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components/model/select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components/model/select.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components/select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components/select.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components/table.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/components/text_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/components/text_input.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/basic_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/basic_element.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/childless_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/childless_element.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/dom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/dom.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/element.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/element_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/element_fwd.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/dom/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/dom/reference.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/element_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/element_renderer.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/a.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/a.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/abbr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/abbr.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/address.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/area.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/article.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/article.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/aside.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/aside.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/audio.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/b.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/b.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/base.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/bdi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/bdi.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/bdo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/bdo.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/blockquote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/blockquote.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/body.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/body.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/br.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/br.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/button.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/canvas.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/caption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/caption.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/cite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/cite.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/code.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/col.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/col.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/colgroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/colgroup.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/comment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/comment.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/data.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/datalist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/datalist.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/dd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/dd.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/del.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/del.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/details.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/dfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/dfn.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/dialog.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/div.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/dl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/dl.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/dt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/dt.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/em.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/em.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/embed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/embed.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/fieldset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/fieldset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/figcaption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/figcaption.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/figure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/figure.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/footer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/footer.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/form.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/fragment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/fragment.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h1.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h2.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h3.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h4.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h5.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/h6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/h6.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/head.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/head.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/header.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/heading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/heading.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/hr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/hr.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/i.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/iframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/iframe.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/img.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/img.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/impl/html_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/impl/html_element.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/impl/html_element.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/impl/html_element.tpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/impl/materialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/impl/materialize.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/input.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/ins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/ins.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/kbd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/kbd.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/label.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/legend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/legend.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/li.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/li.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/link.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/main.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/map.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/mark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/mark.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/menu.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/meta.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/meter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/meter.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/nav.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/nav.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/nil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/nil.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/noscript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/noscript.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/object.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/ol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/ol.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/optgroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/optgroup.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/option.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/output.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/p.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/param.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/picture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/picture.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/pre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/pre.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/progress.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/q.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/q.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/rp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/rp.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/rt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/rt.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/ruby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/ruby.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/s.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/samp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/samp.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/script.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/section.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/select.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/small.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/source.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/span.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/strong.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/strong.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/sub.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/summary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/summary.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/sup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/sup.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/a.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/a.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/animate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/animate.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/animate_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/animate_motion.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/circle.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/clipPath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/clipPath.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/defs.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/desc.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/ellipse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/ellipse.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_blend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_blend.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_composite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_composite.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_drop_shadow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_drop_shadow.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_flood.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_flood.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_func.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_func_a.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_func_b.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_func_g.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_func_r.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_image.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_merge.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_merge_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_merge_node.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_morphology.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_morphology.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_offset.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_point_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_point_light.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_spot_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_spot_light.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_tile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_tile.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/fe_turbulence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/fe_turbulence.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/filter.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/foreign_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/foreign_object.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/g.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/g.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/hatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/hatch.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/hatchpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/hatchpath.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/image.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/line.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/marker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/marker.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/mask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/mask.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/metadata.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/mpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/mpath.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/path.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/pattern.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/polygon.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/polyline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/polyline.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/rect.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/script.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/set.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/stop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/stop.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/style.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/svg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/svg.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/switch.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/symbol.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/text.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/textPath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/textPath.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/title.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/tspan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/tspan.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/use.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/use.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/svg/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/svg/view.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/switch.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/table.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/tbody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/tbody.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/td.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/td.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/template.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/text.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/textarea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/textarea.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/tfoot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/tfoot.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/th.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/th.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/thead.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/thead.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/time.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/title.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/tr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/tr.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/track.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/u.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/u.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/ul.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/ul.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/var.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/video.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/elements/wbr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/elements/wbr.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/event_system/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/event_system/event.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/event_system/event_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/event_system/event_context.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/event_system/event_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/event_system/event_registry.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/event_system/observed_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/event_system/observed_value.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/event_system/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/event_system/range.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/extensions/make_resizeable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/extensions/make_resizeable.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/filesystem/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/filesystem/file.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/filesystem/file_dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/filesystem/file_dialog.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/frontend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/frontend.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/property.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/rpc_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/rpc_client.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/svg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/svg.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/svg_attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/svg_attributes.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/svg_elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/svg_elements.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/utility/delocalized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/utility/delocalized.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/utility/fragment_listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/utility/fragment_listener.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/utility/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/utility/functions.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/utility/stabilize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/utility/stabilize.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/utility/val_conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/utility/val_conversion.hpp -------------------------------------------------------------------------------- /nui/include/nui/frontend/val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/frontend/val.hpp -------------------------------------------------------------------------------- /nui/include/nui/rpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/rpc.hpp -------------------------------------------------------------------------------- /nui/include/nui/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/screen.hpp -------------------------------------------------------------------------------- /nui/include/nui/shared/api/fetch_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/shared/api/fetch_options.hpp -------------------------------------------------------------------------------- /nui/include/nui/shared/on_destroy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/shared/on_destroy.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/assert.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/fixed_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/fixed_string.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/iterator_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/iterator_accessor.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/lazy.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/extract_value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/extract_value_type.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/is_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/is_tuple.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/pick_first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/pick_first.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/tuple_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/tuple_filter.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/tuple_push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/tuple_push_front.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/meta/tuple_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/meta/tuple_transform.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/move_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/move_detector.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/overloaded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/overloaded.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/reverse_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/reverse_view.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/scope_exit.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/tuple_for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/tuple_for_each.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/unique_identifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/unique_identifier.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/utf.hpp -------------------------------------------------------------------------------- /nui/include/nui/utility/visit_overloaded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/utility/visit_overloaded.hpp -------------------------------------------------------------------------------- /nui/include/nui/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/include/nui/window.hpp -------------------------------------------------------------------------------- /nui/js/make_resizeable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/js/make_resizeable.ts -------------------------------------------------------------------------------- /nui/js/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/js/rpc.ts -------------------------------------------------------------------------------- /nui/src/nui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/CMakeLists.txt -------------------------------------------------------------------------------- /nui/src/nui/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/CMakeLists.txt -------------------------------------------------------------------------------- /nui/src/nui/backend/environment_variables_nix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/environment_variables_nix.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/environment_variables_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/environment_variables_win.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/filesystem/file_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/filesystem/file_dialog.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/filesystem/file_dialog_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/filesystem/file_dialog_options.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/filesystem/special_paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/filesystem/special_paths.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/gobject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/gobject.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/load_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/load_file.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/load_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/load_file.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/mac_helpers/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/mac_helpers/class.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/mac_helpers/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/mac_helpers/helpers.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/mac_helpers/mac_includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/mac_helpers/mac_includes.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/mac_helpers/type_encodings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/mac_helpers/type_encodings.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/environment_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/environment_variables.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/environment_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/environment_variables.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/fetch.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/fetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/fetch.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/file.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/file.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/screen.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/screen.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/throttle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/throttle.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/throttle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/throttle.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/timer.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_addons/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_addons/timer.hpp -------------------------------------------------------------------------------- /nui/src/nui/backend/rpc_hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/rpc_hub.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/screen_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/screen_mac.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/screen_nix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/screen_nix.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/screen_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/screen_win.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/window.cpp -------------------------------------------------------------------------------- /nui/src/nui/backend/window_impl_linux.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/window_impl_linux.ipp -------------------------------------------------------------------------------- /nui/src/nui/backend/window_impl_mac.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/window_impl_mac.ipp -------------------------------------------------------------------------------- /nui/src/nui/backend/window_impl_win.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/backend/window_impl_win.ipp -------------------------------------------------------------------------------- /nui/src/nui/event_system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/event_system/CMakeLists.txt -------------------------------------------------------------------------------- /nui/src/nui/event_system/event_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/event_system/event_context.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /nui/src/nui/frontend/api/fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/api/fetch.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/api/throttle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/api/throttle.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/api/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/api/timer.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/attributes/impl/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/attributes/impl/attribute.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/components/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/components/dialog.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/dom/dom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/dom/dom.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/environment_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/environment_variables.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/extensions/make_resizeable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/extensions/make_resizeable.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/filesystem/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/filesystem/file.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/filesystem/file_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/filesystem/file_dialog.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/frontend_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/frontend_sources.cmake -------------------------------------------------------------------------------- /nui/src/nui/frontend/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/screen.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/utility/fragment_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/utility/fragment_listener.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/utility/functions.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /nui/src/nui/frontend/utility/stabilize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/utility/stabilize.cpp -------------------------------------------------------------------------------- /nui/src/nui/frontend/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/src/nui/frontend/window.cpp -------------------------------------------------------------------------------- /nui/test/nui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/CMakeLists.txt -------------------------------------------------------------------------------- /nui/test/nui/common_test_fixture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/common_test_fixture.hpp -------------------------------------------------------------------------------- /nui/test/nui/components/test_dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/components/test_dialog.hpp -------------------------------------------------------------------------------- /nui/test/nui/components/test_select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/components/test_select.hpp -------------------------------------------------------------------------------- /nui/test/nui/components/test_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/components/test_table.hpp -------------------------------------------------------------------------------- /nui/test/nui/emscripten_mock/emscripten.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /nui/test/nui/emscripten_mock/emscripten/bind.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace emscripten 4 | { 5 | } -------------------------------------------------------------------------------- /nui/test/nui/emscripten_mock/emscripten/val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/emscripten_mock/emscripten/val.h -------------------------------------------------------------------------------- /nui/test/nui/engine/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/array.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/array.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/document.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/document.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/document.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/function.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/function.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/function.tpp -------------------------------------------------------------------------------- /nui/test/nui/engine/global_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/global_object.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/global_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/global_object.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/object.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/object.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/print.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/reference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/reference_type.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/value.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/value.hpp -------------------------------------------------------------------------------- /nui/test/nui/engine/warn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/warn.cpp -------------------------------------------------------------------------------- /nui/test/nui/engine/warn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/engine/warn.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_attributes.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_delocalized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_delocalized.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_elements.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_events.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_observed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_observed.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_properties.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_ranges.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_render.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_selectables_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_selectables_registry.hpp -------------------------------------------------------------------------------- /nui/test/nui/test_switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/test_switch.hpp -------------------------------------------------------------------------------- /nui/test/nui/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/test/nui/tests.cpp -------------------------------------------------------------------------------- /nui/windows/eventtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/eventtoken.h -------------------------------------------------------------------------------- /nui/windows/weakreference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/weakreference.h -------------------------------------------------------------------------------- /nui/windows/webview2_environment_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/webview2_environment_options.hpp -------------------------------------------------------------------------------- /nui/windows/wrl/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/client.h -------------------------------------------------------------------------------- /nui/windows/wrl/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/def.h -------------------------------------------------------------------------------- /nui/windows/wrl/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/event.h -------------------------------------------------------------------------------- /nui/windows/wrl/implements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/implements.h -------------------------------------------------------------------------------- /nui/windows/wrl/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/internal.h -------------------------------------------------------------------------------- /nui/windows/wrl/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/module.h -------------------------------------------------------------------------------- /nui/windows/wrl/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/patch.h -------------------------------------------------------------------------------- /nui/windows/wrl/wrappers/corewrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/nui/windows/wrl/wrappers/corewrappers.h -------------------------------------------------------------------------------- /tools/bin2hpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bin2hpp/base64_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/base64_encoder.cpp -------------------------------------------------------------------------------- /tools/bin2hpp/base64_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/base64_encoder.hpp -------------------------------------------------------------------------------- /tools/bin2hpp/compressed_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/compressed_encoder.cpp -------------------------------------------------------------------------------- /tools/bin2hpp/compressed_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/compressed_encoder.hpp -------------------------------------------------------------------------------- /tools/bin2hpp/constants.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | constexpr std::size_t lineWidth = 120; -------------------------------------------------------------------------------- /tools/bin2hpp/encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/encoder.hpp -------------------------------------------------------------------------------- /tools/bin2hpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/main.cpp -------------------------------------------------------------------------------- /tools/bin2hpp/raw_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/raw_encoder.cpp -------------------------------------------------------------------------------- /tools/bin2hpp/raw_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/bin2hpp/raw_encoder.hpp -------------------------------------------------------------------------------- /tools/inline_injector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_injector/CMakeLists.txt -------------------------------------------------------------------------------- /tools/inline_injector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_injector/main.cpp -------------------------------------------------------------------------------- /tools/inline_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/CMakeLists.txt -------------------------------------------------------------------------------- /tools/inline_parser/include/inline_parser/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/include/inline_parser/constants.hpp -------------------------------------------------------------------------------- /tools/inline_parser/include/inline_parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/include/inline_parser/parser.hpp -------------------------------------------------------------------------------- /tools/inline_parser/src/inline_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/src/inline_parser/CMakeLists.txt -------------------------------------------------------------------------------- /tools/inline_parser/src/inline_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/src/inline_parser/main.cpp -------------------------------------------------------------------------------- /tools/inline_parser/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/test/CMakeLists.txt -------------------------------------------------------------------------------- /tools/inline_parser/test/temp_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/test/temp_dir.cpp -------------------------------------------------------------------------------- /tools/inline_parser/test/temp_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/test/temp_dir.hpp -------------------------------------------------------------------------------- /tools/inline_parser/test/test_inline_extractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/test/test_inline_extractor.hpp -------------------------------------------------------------------------------- /tools/inline_parser/test/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/inline_parser/test/tests.cpp -------------------------------------------------------------------------------- /tools/parcel_adapter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/parcel_adapter/CMakeLists.txt -------------------------------------------------------------------------------- /tools/parcel_adapter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/parcel_adapter/main.cpp -------------------------------------------------------------------------------- /tools/patch_dotenv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/patch_dotenv/CMakeLists.txt -------------------------------------------------------------------------------- /tools/patch_dotenv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/patch_dotenv/main.cpp -------------------------------------------------------------------------------- /tools/webview_uuid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/webview_uuid/CMakeLists.txt -------------------------------------------------------------------------------- /tools/webview_uuid/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuiCpp/Nui/HEAD/tools/webview_uuid/main.cpp --------------------------------------------------------------------------------