diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..a2a5818d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,45 @@ +name: Zola on GitHub Pages + +on: + push: + branches: + - main + +jobs: + build: + permissions: + contents: read + pages: write + id-token: write + name: Publish site + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/main' + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build and Deploy + uses: shalzz/zola-deploy-action@v0.19.2 + env: + BUILD_ONLY: true + - name: Move Documentation + run: | + rm public/docs/developer/libical + mv public/apidocs public/docs/developer/libical + rm public/docs/developer/libical-glib + mv public/libical-glib public/docs/developer/libical-glib + - name: Upload Artifact + uses: actions/upload-pages-artifact@v2 + with: + # upload entire directory + path: 'public' + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: github-pages + url: ${{steps.deployment.outputs.page_url}} + steps: + - name: Deploy artifact + id: deployment + uses: actions/deploy-pages@v1 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..4948ce4b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/adidoks"] + path = themes/adidoks + url = https://github.com/aaranxu/adidoks.git diff --git a/config.toml b/config.toml new file mode 100644 index 00000000..075b6667 --- /dev/null +++ b/config.toml @@ -0,0 +1,33 @@ +# The URL the site will be built for +base_url = "https://libical.github.io" +title = "libical" +description = "Open Source implementation of the iCalendar protocols and protocol data units." + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = true + +theme = "adidoks" + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here +edit_page = false +docs_repo = "https://github.com/libical/io.github.libical" +repo_branch = "main" + +[extra.footer] +info = 'Powered by Zola, and AdiDoks' + +[[extra.menu.social]] +name = "GitHub" +pre = '' +url = "https://github.com/libical/libical" +post = "v0.1.0" +weight = 20 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 00000000..2b4e4dd5 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,29 @@ ++++ +title = "The iCalendar library" + + +# The homepage contents +[extra] +lead = 'libical is an Open Source implementation of the iCalendar protocols and protocol data units.' +url = "/docs/getting-started/introduction/" +url_button = "Get started" +repo_version = "v3.0.18" +repo_license = "MPL v2.0 or LGPL v2.1 —" +repo_url = "https://github.com/aaranxu/adidoks" + +# Menu items +[[extra.menu.main]] +name = "Docs" +section = "docs" +url = "/docs/getting-started/introduction/" +weight = 10 + +[[extra.list]] +title = "Based on Standards" +content = 'Implements RFC2445, RFC2446 and some of RFC2447 the CalDav scheduling extensions in RFC6638 and RFC7986; plus the iCalendar iMIP protocol in RFC6047.' + +[[extra.list]] +title = "Used by many" +content = 'libical is at the base of the Cyrus Server, KDE's KContact Suite, GNOME's Evolution Data Server, syncEvolution and Fantastical.' + ++++ diff --git a/content/docs/_index.md b/content/docs/_index.md new file mode 100644 index 00000000..e2f094de --- /dev/null +++ b/content/docs/_index.md @@ -0,0 +1,7 @@ ++++ +title = "Docs" +description = "The documents of the AdiDoks theme." +sort_by = "weight" +weight = 1 +template = "docs/section.html" ++++ diff --git a/content/docs/contributing/_index.md b/content/docs/contributing/_index.md new file mode 100644 index 00000000..75453146 --- /dev/null +++ b/content/docs/contributing/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Contributing" +description = "Find out how to contribute." +template = "docs/section.html" +sort_by = "weight" +weight = 4 +draft = false ++++ diff --git a/content/docs/contributing/code-quality.md b/content/docs/contributing/code-quality.md new file mode 100644 index 00000000..ddfaff0c --- /dev/null +++ b/content/docs/contributing/code-quality.md @@ -0,0 +1,68 @@ ++++ +title = "Code Quality" +description = "Ensuring good overall code quality." +date = 2021-05-01T18:20:00+00:00 +updated = 2021-05-01T18:20:00+00:00 +draft = false +weight = 420 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Ensuring good overall code quality." +toc = true +top = false ++++ +### Introduction ### + +> I insist on code quality — Allen + +This means: + +1. No build failures on supported platforms (obviously including our [Continuous Integration ("CI") systems](https://travis-ci.org/libical/libical)) +2. No compiler warnings allowed using "strict" (strict being a relative term) compiler warning options +3. No [splint](http://www.splint.org) issues using -weak checking +4. No serious [Coverity Scan](http://scan.coverity.com) issues +5. No serious [scan-build](http://clang-analyzer.llvm.org/scan-build.html) issues +6. No [Krazy](https://github.com/Krazy-collection/krazy) issues +7. No failed regression tests +8. Coding Style is very strictly enforced +9. (A goal) API documentation must be complete +10. Each source file must have a proper license and copyright header (Krazy tests for this) +11. Other stuff as I think of it + +We want to be as portable as possible. We welcome ports to platforms we haven't encountered previously. + +#### Compiler Warnings #### + +See the top-level CMakeLists.txt for the options we use for each compiler. Expect those options to get stricter over time. Feel free to suggest compiler options that increase our code quality. + +#### Continuous Integration #### + +We use [Travis](https://travis-ci.org/libical/libical) to perform CI for libical on Linux and OSX. +For Windows we use the [Appveyor](https://ci.appveyor.com/project/winterz/libical) CI + +#### Lint Checking #### + +We use [Splint](https://www.splint.org) for lint checking our source code. I'd love to have lint-checking as part of the CI reporting, but until then we run it by hand and fix the issues as part of the pre-release checklist. + +#### Static Analysis #### + +We're grateful to the good folks at [Coverity](https://coverity.com) for giving the FOSS world free access to their wonderful static analysis tool, Coverity Scan. As a goal, I'd like to get the number of Coverity Scan issues down to zero. It might take a few major releases to get there. + +[scan-build](http://clang-analyzer.llvm.org/scan-build.html) is also good for static analysis checking but I've seen quite some false positives. Good for a free tool, however. + +By the way, [cppcheck](http://cppcheck.sourceforge.net) is another tool I like for static code analysis. Occasionally we should run cppcheck as well. + +#### Krazy Analysis #### + +[Krazy](https://github.com/Krazy-collection/krazy) is another static analysis tool, but it checks mostly for non-C specific stuff, like it ensures Copyrights and License headers, looks for spelling mistakes and also coding style problems. We must be 100% "Krazy clean". + +#### Coding Style #### + +[Coding Style](@/docs/contributing/coding-style.md) is enforced. + +#### API Documentation #### + +We use [Doxygen](http://www.doxygen.org) to generate our [API Documentation](@/docs/developer/libical.md) and put the result on our [GitHub provided webspace](http://libical.github.io). At this time our API Documentation is horrible and needs a lot of attention (see [libical#175](https://github.com/libical/libical/issues/175)), so one of our long term goals is to get the API Documentation into shape with full coverage. + diff --git a/content/docs/contributing/coding-style.md b/content/docs/contributing/coding-style.md new file mode 100644 index 00000000..0f18d6be --- /dev/null +++ b/content/docs/contributing/coding-style.md @@ -0,0 +1,38 @@ ++++ +title = "Coding Style Rules" +description = "Rules for the style used the codebase." +date = 2021-05-01T18:20:00+00:00 +updated = 2021-05-01T18:20:00+00:00 +draft = false +weight = 420 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Follow these Coding Style Rules. Strictly Enforced. The relevant GNU indent options are in parens." +toc = true +top = false ++++ + +* Use spaces for indenting. No tabs (-nut) +* Indent level is 4 spaces (-i4) +* Maximum line length is 100 characters (-l100 -lc100) +* Do not put a space after every ’(’ and before every ’)’ (-nprs) +* Do not put space after the function in function calls (-npcs) +* Do not put a space after cast operators (-ncs) +* Do not put a space between '#' and preprocessor directives (-nlps) +* Put braces on line with if, etc. (-br) +* Cuddle else and preceding ‘}’ (-ce) +* Put the type of a procedure on the same line as its name (-npsl) +* Put braces on line following function definition line (-blf) +* Put braces on the line after struct declaration lines (-bls) +* Do not force newlines after commas in declarations (-nbc) +* Zero width indentation for parameters (-nip) +* Do not indent parameter types (-ip0) +* Do not indent case labels (-cli0) +* Line up continued lines at parentheses (-lp) +* Do not prefer to break long lines before boolean operators (-nbbo) +* Force blank lines after procedure bodies (-bap) +* Force blank lines after the declarations (-bad) +* Swallow optional blank lines (-sob) + diff --git a/content/docs/contributing/get-involved.md b/content/docs/contributing/get-involved.md new file mode 100644 index 00000000..ddee3f7d --- /dev/null +++ b/content/docs/contributing/get-involved.md @@ -0,0 +1,23 @@ ++++ +title = "Get Involved" +description = "Follow the project and contribute." +date = 2021-05-01T18:10:00+00:00 +updated = 2021-05-01T18:10:00+00:00 +draft = false +weight = 410 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Follow the project and contribute." +toc = true +top = false ++++ + +Subscribe to our mailing lists: + + * For developer discussions [libical-devel](http://lists.infradead.org/mailman/listinfo/libical-devel) + + * For general discussions about libical and related projects [libical-interest](http://lists.infradead.org/mailman/listinfo/libical-interest) + +Report bugs to [our issue tracker in GitHub](https://github.com/libical/libical/issues) diff --git a/content/docs/developer/_index.md b/content/docs/developer/_index.md new file mode 100644 index 00000000..ef517838 --- /dev/null +++ b/content/docs/developer/_index.md @@ -0,0 +1,8 @@ ++++ +title = "References" +description = "Developer documentation." +template = "docs/section.html" +sort_by = "weight" +weight = 7 +draft = false ++++ diff --git a/content/docs/developer/libical-glib.md b/content/docs/developer/libical-glib.md new file mode 100644 index 00000000..8d5122ac --- /dev/null +++ b/content/docs/developer/libical-glib.md @@ -0,0 +1,11 @@ ++++ +title = "libical-glib" +description = "Developer documentation." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 40 +sort_by = "weight" +template = "docs/page.html" ++++ + diff --git a/content/docs/developer/libical.md b/content/docs/developer/libical.md new file mode 100644 index 00000000..004ee9ad --- /dev/null +++ b/content/docs/developer/libical.md @@ -0,0 +1,11 @@ ++++ +title = "libical" +description = "Developer documentation." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 30 +sort_by = "weight" +template = "docs/page.html" ++++ + diff --git a/content/docs/getting-started/_index.md b/content/docs/getting-started/_index.md new file mode 100644 index 00000000..bcd94faa --- /dev/null +++ b/content/docs/getting-started/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Getting Started" +description = "Quick start and guides for installing the AdiDoks theme on your preferred operating system." +template = "docs/section.html" +sort_by = "weight" +weight = 1 +draft = false ++++ diff --git a/content/docs/getting-started/for-different-platform.md b/content/docs/getting-started/for-different-platform.md new file mode 100644 index 00000000..de854b49 --- /dev/null +++ b/content/docs/getting-started/for-different-platform.md @@ -0,0 +1,59 @@ ++++ +title = "Build for Different Platforms" +description = "Help to build libical for various platforms and compilers." +date = 2021-05-01T08:20:00+00:00 +updated = 2021-05-01T08:20:00+00:00 +draft = false +weight = 31 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Help to build libical for various platforms and compilers." +toc = true +top = false ++++ + +## Cross-compiling + +When cross-compiling, executables built for the host architecture cannot be run on the build architecture. CMake doesn't provide something like `CC_FOR_BUILD` from autotools, and recommended way to handle this case is the export the required binary from the native build for use by the cross-compiled build. + +See the "Searching and finding external software" section of [CMake cross-compiling guide](https://gitlab.kitware.com/cmake/community/-/wikis/doc/cmake/CrossCompiling#using-executables-in-the-build-created-during-the-build) + +Libical can cross-compile ok if you disable building libical-glib by passing `-DICAL_GLIB=False` to CMake. + +If you want/need libical-glib for your cross-compile then: + + - build and install a native build of libical into (for example) `/usr/local` + - then pass `-DIMPORT_ICAL_GLIB_SRC_GENERATOR=/usr/local/lib64/cmake/LibIcal/IcalGlibSrcGenerator.cmake` to CMake for the cross-compile build. + +Read the cmake-toolchains documentation to help you write your own Toolchain file if needed. + +Look in the libical/cmake folder for some Toolchain files that may or may not work out-of-the-box. + +## iOS arm7, arm64, x386 + +Add the following inside CMakeList.txt: + +```cmake +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -arch armv7") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -arch armv7") +``` + +Then run `cmake ..` + +Modify the following line from the build/CMakeCache.txt that's generated by cmake command: + +```bash +// The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk +``` + +(Change it into iPhoneOS.sdk or iPhoneOS8.4.sdk) + +run `make`, and `make install` as noted in the installation from libical. + +use `lipo -info` to check the generated lib .a files, it will say it is armv7. + +Use the same method to generate .a for arm64 and also i386 (for different simulators, etc), and use `lipo -create` to combine all of the into one FAT. diff --git a/content/docs/getting-started/introduction.md b/content/docs/getting-started/introduction.md new file mode 100644 index 00000000..224fc5e7 --- /dev/null +++ b/content/docs/getting-started/introduction.md @@ -0,0 +1,29 @@ ++++ +title = "Introduction" +description = "Libical is an Open Source implementation of the iCalendar protocols and protocol data units." +date = 2021-05-01T08:00:00+00:00 +updated = 2021-05-01T08:00:00+00:00 +draft = false +weight = 10 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = 'Libical is an Open Source implementation of the iCalendar protocols and protocol data units. The iCalendar specification describes how calendar clients can communicate with calendar servers so users can store their calendar data and arrange meetings with other users. ' +toc = true +top = false ++++ + +## Quick Start + +One page summary of how to start with the library. [Quick Start →](@/docs/getting-started/quick-start.md) + +## Contributing + +Find out how to contribute to. [Contributing →](@docs/contributing/get-involved.md) + +## Developer references + +[libical Reference Documentation →](../../developer/libical/) + +[libical-glib Reference Documentation →](../../developer/libical-glib/) diff --git a/content/docs/getting-started/quick-start.md b/content/docs/getting-started/quick-start.md new file mode 100644 index 00000000..e42c9fdb --- /dev/null +++ b/content/docs/getting-started/quick-start.md @@ -0,0 +1,112 @@ ++++ +title = "Quick Start" +description = "One page summary of how to start." +date = 2021-05-01T08:20:00+00:00 +updated = 2021-05-01T08:20:00+00:00 +draft = false +weight = 20 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "One page summary of how to start." +toc = true +top = false ++++ + +Please see the comments at the top of CMakeLists.txt for +the available configuration options you can pass to cmake. + +The installation directory defaults to `/usr/local` on UNIX +and `C:/Program Files` on Windows. You can change this by +passing `-DCMAKE_INSTALL_PREFIX=/install/path` to cmake. + +To build a debug version pass `-DCMAKE_BUILD_TYPE=Debug` to cmake. + +## Requirements + +To build libical you will need: + - a C99-compliant C compiler (let us know if the build fails with your C compiler) + - a C11-compliant C compiler for libical-glib + - a C++11 compliant compiler for C++ bindings + - CMake version 3.20.0 or higher + - Perl + - libicu (not required but strongly recommended) + +## Building + +### On Unix with gcc or clang + +``` +mkdir build +cd build +cmake .. +make +make install +``` + +### On Windows with MicroSoft Visual Studio + +From a command prompt for the version of MSVC you want to use +```bash +mkdir build +cd build +cmake -G "NMake Makefiles" .. +nmake +nmake install +``` + +NOTE: Some MSVC 32bit compilers (like MSVC2005) use a 64bit version of time_t. +In these cases you must pass `-DUSE_32BIT_TIME_T=true` to cmake to make sure +the 32bit version of time_t is used instead. + +### On Windows with mingw +Make sure you have the path to the MinGW programs in %PATH% first, for example: +```bash +set "PATH=c:\MinGW\mingw64\bin;%PATH%" +mkdir build +cd build +cmake -G "MinGW Makefiles" .. +mingw32-make +mingw32-make install +``` + +### On Windows under Cygwin +```bash +mkdir build +cd build +cmake .. +make +make install +``` + +### On MSYS with mingw +```bash +mkdir build +cd build +cmake -G "MSYS Makefiles" .. +nmake +nmake install +``` + +To run the test suite, from inside the build directory +run `make test` (or `nmake test` or `mingw32-make test`) + +To run the test suite in verbose mode, pass `ARGS="-V"` to the make command +For example: `nmake test ARGS="-V"` + +By default, the buildsystem creates shared(dynamic) and static versions +of the libraries, but that behavior can be modified at CMake time: + - To build the static libraries only, pass `-DSTATIC_ONLY=True` to CMake. + - To build the shared libraries only, pass `-DSHARED_ONLY=True` to CMake. + +## Dealing with Dependencies + +You can force CMake to ignore an optional dependencies passing the option as defined in CMakeLists.txt like `-DCMAKE_DISABLE_FIND_PACKAGE_{PACKAGE}=True`. + +For instance: + +```bash +# tell cmake to ignore ICU +cmake -DCMAKE_DISABLE_FIND_PACKAGE_ICU=True +``` diff --git a/content/docs/maintainers/_index.md b/content/docs/maintainers/_index.md new file mode 100644 index 00000000..98d18c74 --- /dev/null +++ b/content/docs/maintainers/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Maintainers" +description = "Maintainers corner." +template = "docs/section.html" +sort_by = "weight" +weight = 6 +draft = false ++++ diff --git a/content/docs/maintainers/abi-compliance.md b/content/docs/maintainers/abi-compliance.md new file mode 100644 index 00000000..1ce579c9 --- /dev/null +++ b/content/docs/maintainers/abi-compliance.md @@ -0,0 +1,45 @@ ++++ +title = "ABI Compliance" +description = "Ensure ABI Compliance." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 30 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Ensure ABI Compliance." +toc = true +top = false ++++ + +Install [abi-compliance-checker](https://github.com/lvc/abi-compliance-checker) and [abi-dumper](https://github.com/lvc/abi-dumper) + +my script to generate the ABI dumps is `gen-abi-data-libical-stable.sh` +make sure to have tagged the new release, call it `v3.0.5` + +1. create the ABI dumps from the stable version, + +```bash +gen-abi-data-libical-stable.sh v3.0.0 +``` + +2. create the ABI dumps from the new release + +```bash +gen-abi-data-libical-stable.sh v3.0.5 +``` + +my script to compare the ABI dumps is `cmp-abi-data-libical.sh` + +3. compare the ABI dumps + +```bash + cmp-abi-data-libical.sh v3.0.5 +``` + +the standard output will show compatibility and you can look at the web pages reported there as well. + +the comparison is stored in the compat_reports directory. + diff --git a/content/docs/maintainers/release.md b/content/docs/maintainers/release.md new file mode 100644 index 00000000..75f42791 --- /dev/null +++ b/content/docs/maintainers/release.md @@ -0,0 +1,109 @@ ++++ +title = "Tag and Release Instructions" +description = "How to create a new release." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 20 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "How to create a new release." +toc = true +top = false ++++ + +### Preparations Checklist +* [[update zoneinfo|For-the-Maintainers:-Update-Zoneinfo]], if needed +* Builds ok on all supported platforms (no [Github Actions](https://github.com/libical/libical/actions) failures) +* Passes all regression tests +* Fix all compile warnings +* Fix all Krazy, splint, cppcheck, and clang-tidy warnings +* Do a [Coverity Scan](https://scan.coverity.com/projects/libical-libical) +* Any [Fuzzer problems](https://oss-fuzz.com/testcases?project=libical)? +* Fix all problems found by Clang-analyzer (scan-build) +* Compile with `-DADDRESS_SANITIZER` and run make test and fix any memory problems found +* Make sure ReleaseNotes.txt is up-to-date. Double-check the release date. +* Make sure the `LIBICAL_LIB_*_VERSION` values in the top-level CMakeLists.txt is up-to-date + +### Branch +If a major or minor release make sure to branch. + +### Create the Tag +```bash +git tag -m "Libical X.Y.Z" vX.Y.Z +``` + +Do an [ABI Compliance Check](@/docs/maintainers/abi-compliance.md) (may not be needed for major releases, but useful nonetheless) + +if all ok then go ahead and: +```bash +git push --tags +``` + +### Make a Release on Github +Go to [GitHub releases section](https://github.com/libical/libical/releases) and make an official release. Push the "Draft a new release" button. + +Create a new tarball using git archive and add this the release (at the bottom of the page you will see a legend: "Attach images by dragging & dropping, selecting them, or pasting from the clipboard.") + +```bash +git archive --format=tar --prefix=libical-2.0.0/ v2.0.0 | gzip > libical-2.0.0.tar.gz +``` + +### New APIDOX + +Follow the instructions for the [API Documentation](@/docs/maintainers/update-zoneinfo.md) + +### New vcpkg port + +The vcpkg libical port should follow a new version. + +Create an issue on [vcpkg in GitHub](https://github.com/microsoft/vcpkg/issues/new?assignees=&labels=port+feature&template=request-an-update-to-an-existing-port.md&title=%5B%3Cport+name%3E%5D+update+to+%3Cversion%3E) + +(also looks easy enough to make our own PR from a vcpkg fork, if we want to help out) + +### New Conan package + +TODO: document how to update the libical Conan package + +Note that there is no conan package yet: +[we are working on it](https://github.com/conan-io/conan-center-index/issues/13268) + +### Announcing +Open [Git Discussions](https://github.com/libical/libical/discussions) and make the announcement there. + +Here's a sample announcement +```md +Announcing Libical 1.0.1 +This is the first bugfix release for Libical 1.0.0 + +Highlights of this Release: + * highlight1 + * highlight2 + * highlight3 + +The source code can be found on GitHub at: +https://github.com/libical/libical + +Tarballs and zipballs for v1.0.1 are available from: +https://github.com/libical/libical/releases + +Libical is an Open Source implementation of the iCalendar protocols +and protocol data units. The iCalendar specification describes how +calendar clients can communicate with calendar servers so users can +store their calendar data and arrange meetings with other users. + +Libical implements RFC2445, RFC2446 and some of RFC2447. + +For more information about Libical, please visit +[https://libical.github.io/](https://libical.github.io/) +``` + +### Prepare for Next Release + +#### If a patch-level release + +Increase the `LIBICAL_LIB_PATCH_VERSION` value in the top-level CMakeLists.txt + +Add an "UNRELEASED" section at the top of ReleaseNotes.txt diff --git a/content/docs/maintainers/update-api-documentation.md b/content/docs/maintainers/update-api-documentation.md new file mode 100644 index 00000000..2b7f7340 --- /dev/null +++ b/content/docs/maintainers/update-api-documentation.md @@ -0,0 +1,33 @@ ++++ +title = "Updating the API Documentation" +description = "Update the public API documentation." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 30 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "Update the public API documentation." +toc = true +top = false ++++ + +Make sure you have Doxygen installed; else this will fail. + +Like so: + +```bash +git checkout 3.0 #your stable branch +mkdir build-apidox; cd build-apidox +cmake -G Ninja .. && ninja docs +git checkout gh-pages +cd ..; rm -rf apidocs; cp -dpr build-apidox/apidocs/html apidocs +git add apidocs #make sure to include any newly generated files +git commit -m "update apidox" --no-verify . && git push +``` + +view it on [https://libical.github.io/docs/developer/libical/](@/docs/developer/libical.md) (might take a couple minutes to update) + +add the generated `build-apidox/libical.tag` file to the github release diff --git a/content/docs/maintainers/update-zoneinfo.md b/content/docs/maintainers/update-zoneinfo.md new file mode 100644 index 00000000..f4a8d96d --- /dev/null +++ b/content/docs/maintainers/update-zoneinfo.md @@ -0,0 +1,73 @@ ++++ +title = "Update Zoneinfo" +description = "How to use the vzic program to update the libical builtin zoneinfo database." +date = 2021-05-01T19:30:00+00:00 +updated = 2021-05-01T19:30:00+00:00 +draft = false +weight = 30 +sort_by = "weight" +template = "docs/page.html" + +[extra] +lead = "How to use the vzic program to update the libical builtin zoneinfo database." +toc = true +top = false ++++ + +### Preparations ### + +1. clone vzic some place + +```bash +git clone git@github.com:libical/vzic.git +``` + +2. Retrieve the most recent tzdata from IANA from [http://www.iana.org/time-zones](http://www.iana.org/time-zones)
+ Look for a gzip-compressed tar file (a "tarball") named tzdata2024b.tar.gz, for example.
+ Save the tarball into your Downloads folder. + +3. Uncompress and untar the "tarball" file into the vzic folder: + +```bash +cd vzic +mkdir tzdata2024b +cd tzdata2024b; tar xvfz ~/Downloads/tzdata202ba.tar.gz; cd .. +``` + +### Building vzic ### + +```bash +cd vzic +make -B OLSON_DIR=tzdata2024b CREATE_SYMLINK=0 IGNORE_TOP_LEVEL_LINK=0 +``` + +pass `PRODUCT_ID` and `TZID_PREFIX` as necessary (shouldn't be) or you could edit the top-level Makefile + +### Running vzic ### + +```bash +./vzic +``` + +The output is placed in the zoneinfo subdirectory by default, but you can use the `--output-dir` options to set another toplevel output directory. + +You'll probably see some warning messages but not sure what to do about those. The "Modifying RRULE to be compatible with Outlook" warnings are normal and can be ignored. + +### Merging Changes to the Master Set of VTIMEZONES ### + +1. Run `./vzic-merge.pl --master-zoneinfo-dir=/home/allen/projects/libical/libical/zoneinfo --new-zoneinfo-dir=/home/allen/projects/libical/vzic/zoneinfo` + +2. _**You must add the new timezones in the zones.tab file by hand.**_ + + cd to the libical git repo (eg. `/home/allen/projects/libical/libical/zoneinfo`)
+ run `git status`
+ look for new .ics files to be added (i.e untracked files in the zoneinfo directory) + +3. diff the new from `vzic/zoneinfo/zones.tab` versus the updated zones.tab in the libical git repo + + copy lines from the new `vzic/zoneinfo/zones.tab` that are new (or differ) from the git repo version + +### Testing ### + +1. run `make test-vzic` and then run `./test-vzic` (make sure libical is installed to /usr/local) +2. run the libical test-suite (`./scripts/buildtests.sh`) diff --git a/sass/main.scss b/sass/main.scss new file mode 100644 index 00000000..2c6e9e7b --- /dev/null +++ b/sass/main.scss @@ -0,0 +1,39 @@ +/** Import Bootstrap functions */ +@import "../themes/adidoks/sass/bootstrap/scss/functions"; + +/** Import theme variables */ +@import "../themes/adidoks/sass/common/variables"; +$primary: $gray-700; +$navbar-light-hover-color: $primary; +$navbar-light-active-color: $primary; +$link-color: $primary; +$link-decoration: "underline"; + +/** Import Bootstrap */ +@import "../themes/adidoks/sass/bootstrap/scss/bootstrap"; + +/** Import theme styles */ +@import "../themes/adidoks/sass/common/fonts"; +@import "../themes/adidoks/sass/common/global"; +@import "../themes/adidoks/sass/common/dark"; +@import "../themes/adidoks/sass/components/doks"; + +// @import "../themes/adidoks/sass/components/syntax"; +@import "../themes/adidoks/sass/components/code"; +@import "../themes/adidoks/sass/components/alerts"; +@import "../themes/adidoks/sass/components/buttons"; +@import "../themes/adidoks/sass/components/comments"; +@import "../themes/adidoks/sass/components/footnote"; +@import "../themes/adidoks/sass/components/forms"; +@import "../themes/adidoks/sass/components/images"; +@import "../themes/adidoks/sass/components/search"; +@import "../themes/adidoks/sass/components/tables"; +@import "../themes/adidoks/sass/layouts/footer"; +@import "../themes/adidoks/sass/layouts/header"; +@import "../themes/adidoks/sass/layouts/pages"; +@import "../themes/adidoks/sass/layouts/posts"; +@import "../themes/adidoks/sass/layouts/sidebar"; + +.header-bar { + border-image-source: linear-gradient(90deg, $primary, $gray-200 50%, $gray-900); +} diff --git a/static/apidocs/annotated.html b/static/apidocs/annotated.html new file mode 100644 index 00000000..102244bc --- /dev/null +++ b/static/apidocs/annotated.html @@ -0,0 +1,187 @@ + + + + + + + +Libical API Documentation: Data Structures + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Data Structures
+
+
+
Here are the data structures with brief descriptions:
+
[detail level 12]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 NLibICal
 C_compat_tzids
 C_icalarray
 C_icaltimezone
 C_icaltimezonechange
 C_icalvcal_defaults
 Cbuffer_ring
 Cconversion_table_struct
 Cencoding_map
 Cexpand_split_map_struct
 Cfreq_map
 Cicalattach_impl
 Cicalbdbset_id
 Cicalbdbset_impl
 Cicalbdbset_options
 Cicalcalendar_impl
 Cicalclassify_map
 Cicalclassify_parts
 Cicalcluster_impl
 Cicalcompiter
 Cicalcomponent_impl
 Cicalcomponent_kind_map
 Cicaldatetimeperiodtype
 Cicaldirset_impl
 Cicaldirset_options
 CicaldurationtypeA struct representing a duration
 Cicalerror_state
 Cicalerror_string_map
 Cicalfileset_id
 Cicalfileset_impl
 Cicalfileset_optionsOptions for opening an icalfileset
 Cicalgauge_impl
 Cicalgauge_where
 Cicalgeotype
 Cicalparameter_impl
 Cicalparser_impl
 CicalperiodtypeStruct to represent a period in time
 Cicalproperty_impl
 Cicalrecur_iterator_impl
 Cicalrecur_parser
 Cicalrecurrencetype
 Cicalreqstattype
 Cicalset_impl
 Cicalsetiter
 Cicalspanlist_impl
 Cicaltime_span
 Cicaltimetype
 Cicaltimezonephase
 Cicaltimezonetype
 Cicaltriggertype
 Cicalvalue_impl
 CICPointerHolder
 Cleap
 CLexBuf
 Cmajor_content_type_map
 Cmime_impl
 Cminor_content_type_map
 Cobservance
 COFile
 CPreDefProp
 Cpvl_elem_t
 Cpvl_list_t
 Crdate
 Crecur_map
 Cskip_map
 Cslg_data
 Csspm_action_map
 Csspm_buffer
 Csspm_header
 Csspm_part
 CStrItem
 Ctext_part
 Cttinfo
 Ctzinfo
 Cut_instant
 CValueItem
 CVObject
 CVObjectIterator
 Cwd_map
 Cyy_buffer_state
 Cyy_trans_info
 Cyyalloc
 CYYSTYPE
 Czone_context
+
+
+ + + + diff --git a/static/apidocs/astime_8h.html b/static/apidocs/astime_8h.html new file mode 100644 index 00000000..1ea1aa0e --- /dev/null +++ b/static/apidocs/astime_8h.html @@ -0,0 +1,122 @@ + + + + + + + +Libical API Documentation: astime.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Data Structures | +Typedefs | +Functions
+
astime.h File Reference
+
+
+ +

contains definitions of structures used for time calculations. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

struct  ut_instant
 
+ + + + + +

+Typedefs

+typedef struct ut_instant UTinstant
 
+typedef struct ut_instantUTinstantPtr
 
+ + + + + + + +

+Functions

+long caldat (UTinstantPtr)
 Converts Julian date to year,mo,da.
 
+double juldat (UTinstantPtr)
 Returns Julian day from year,mo,da.
 
+

Detailed Description

+

contains definitions of structures used for time calculations.

+
+ + + + diff --git a/static/apidocs/astime_8h_source.html b/static/apidocs/astime_8h_source.html new file mode 100644 index 00000000..23729f1d --- /dev/null +++ b/static/apidocs/astime_8h_source.html @@ -0,0 +1,164 @@ + + + + + + + +Libical API Documentation: astime.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
astime.h
+
+
+Go to the documentation of this file.
1/*
+
2 * Copyright (c) 1986-2000, Hiram Clawson
+
3 * All rights reserved.
+
4 *
+
5 * Redistribution and use in source and binary forms, with or
+
6 * without modification, are permitted provided that the following
+
7 * conditions are met:
+
8 *
+
9 * Redistributions of source code must retain the above
+
10 * copyright notice, this list of conditions and the
+
11 * following disclaimer.
+
12 *
+
13 * Redistributions in binary form must reproduce the
+
14 * above copyright notice, this list of conditions and
+
15 * the following disclaimer in the documentation and/or
+
16 * other materials provided with the distribution.
+
17 *
+
18 * Neither name of The Museum of Hiram nor the names of
+
19 * its contributors may be used to endorse or promote products
+
20 * derived from this software without specific prior
+
21 * written permission.
+
22 *
+
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+
24 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+
25 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+
27 * IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+
28 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
29 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
32 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+
33 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+
34 * THE POSSIBILITY OF SUCH DAMAGE.
+
35 */
+
36
+
42#ifndef ICAL_ASTIME_H
+
43#define ICAL_ASTIME_H
+
44
+
45#include "libical_ical_export.h"
+
46
+
47typedef struct ut_instant
+
48{
+
49 double j_date;
+
50 long year;
+
51 int month;
+
52 int day;
+
53 int i_hour;
+ + +
56 double d_hour;
+
57 double d_minute;
+
58 double d_second;
+
59 int weekday;
+ + +
62
+
63/* Functions in caldate.c */
+
64
+
66LIBICAL_ICAL_EXPORT long caldat(UTinstantPtr);
+
67
+
69LIBICAL_ICAL_EXPORT double juldat(UTinstantPtr);
+
70
+
71#endif
+
long caldat(UTinstantPtr)
Converts Julian date to year,mo,da.
+
double juldat(UTinstantPtr)
Returns Julian day from year,mo,da.
+
Definition astime.h:48
+
int month
Definition astime.h:51
+
int day
Definition astime.h:52
+
int weekday
Definition astime.h:59
+
int day_of_year
Definition astime.h:60
+
double d_hour
Definition astime.h:56
+
long year
Definition astime.h:50
+
double d_second
Definition astime.h:58
+
int i_minute
Definition astime.h:54
+
double d_minute
Definition astime.h:57
+
double j_date
Definition astime.h:49
+
int i_hour
Definition astime.h:53
+
int i_second
Definition astime.h:55
+
+ + + + diff --git a/static/apidocs/bc_s.png b/static/apidocs/bc_s.png new file mode 100644 index 00000000..224b29aa Binary files /dev/null and b/static/apidocs/bc_s.png differ diff --git a/static/apidocs/bc_sd.png b/static/apidocs/bc_sd.png new file mode 100644 index 00000000..31ca888d Binary files /dev/null and b/static/apidocs/bc_sd.png differ diff --git a/static/apidocs/classICPointerHolder.html b/static/apidocs/classICPointerHolder.html new file mode 100644 index 00000000..1c370781 --- /dev/null +++ b/static/apidocs/classICPointerHolder.html @@ -0,0 +1,117 @@ + + + + + + + +Libical API Documentation: ICPointerHolder< T > Class Template Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
+
+Public Member Functions
+
ICPointerHolder< T > Class Template Reference
+
+
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICPointerHolder (const ICPointerHolder &ip)
 
ICPointerHolder (T *p)
 
operator T* () const
 
+bool operator!= (T *p)
 
+T & operator* ()
 
+T * operator-> () const
 
+ICPointerHolderoperator= (ICPointerHolder &p)
 
+ICPointerHolderoperator= (T *p)
 
+bool operator== (T *p)
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1ICalBDBSet.html b/static/apidocs/classLibICal_1_1ICalBDBSet.html new file mode 100644 index 00000000..d7a1c569 --- /dev/null +++ b/static/apidocs/classLibICal_1_1ICalBDBSet.html @@ -0,0 +1,145 @@ + + + + + + + +Libical API Documentation: LibICal::ICalBDBSet Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::ICalBDBSet Class Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICalBDBSet (const ICalBDBSet &)
 
ICalBDBSet (const std::string &path, int flags)
 
+icalerrorenum add_component (VComponent *child)
 
+void clear ()
 
+int count_components (icalcomponent_kind kind)
 
+VComponentfetch (std::string &uid)
 
+VComponentfetch_match (icalcomponent *c)
 
+void free ()
 
+VComponentget_component ()
 
+VComponentget_current_component ()
 
+VComponentget_first_component ()
 
+VComponentget_next_component ()
 
+int has_uid (std::string &uid)
 
+ICalBDBSet operator= (const ICalBDBSet &)
 
+std::string path ()
 
+icalerrorenum remove_component (VComponent *child)
 
+icalerrorenum select (icalgauge *gauge)
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1ICalParameter.html b/static/apidocs/classLibICal_1_1ICalParameter.html new file mode 100644 index 00000000..b93ad5dd --- /dev/null +++ b/static/apidocs/classLibICal_1_1ICalParameter.html @@ -0,0 +1,290 @@ + + + + + + + +Libical API Documentation: LibICal::ICalParameter Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions | +Static Public Member Functions
+
LibICal::ICalParameter Class Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICalParameter (const ICalParameter &)
 
ICalParameter (const icalparameter_kind &kind)
 
ICalParameter (const icalparameter_kind &kind, const std::string &str)
 
ICalParameter (const std::string &str)
 
ICalParameter (icalparameter *v)
 
+std::string as_ical_string ()
 
+void detach ()
 
+std::string get_altrep () const
 
+std::string get_cn () const
 
+icalparameter_cutype get_cutype () const
 
+std::string get_delegatedfrom () const
 
+std::string get_delegatedto () const
 
+std::string get_dir () const
 
+icalparameter_encoding get_encoding () const
 
+icalparameter_fbtype get_fbtype () const
 
+std::string get_fmttype () const
 
+std::string get_language () const
 
+std::string get_member () const
 
+icalparameter_partstat get_partstat () const
 
+icalparameter_range get_range () const
 
+icalparameter_related get_related () const
 
+icalparameter_reltype get_reltype () const
 
+icalparameter_role get_role () const
 
+icalparameter_rsvp get_rsvp () const
 
+std::string get_sentby () const
 
+std::string get_tzid () const
 
+icalparameter_value get_value () const
 
+std::string get_x () const
 
+icalparameter_xliccomparetype get_xliccomparetype () const
 
+icalparameter_xlicerrortype get_xlicerrortype () const
 
+bool is_valid ()
 
+icalparameter_kind isa ()
 
+int isa_parameter (void *param)
 
operator icalparameter * ()
 
+ICalParameteroperator= (const ICalParameter &)
 
+void set_altrep (const std::string &v)
 
+void set_cn (const std::string &v)
 
+void set_cutype (const icalparameter_cutype &v)
 
+void set_delegatedfrom (const std::string &v)
 
+void set_delegatedto (const std::string &v)
 
+void set_dir (const std::string &v)
 
+void set_encoding (const icalparameter_encoding &v)
 
+void set_fbtype (const icalparameter_fbtype &v)
 
+void set_fmttype (const std::string &v)
 
+void set_language (const std::string &v)
 
+void set_member (const std::string &v)
 
+void set_partstat (const icalparameter_partstat &v)
 
+void set_range (const icalparameter_range &v)
 
+void set_related (const icalparameter_related &v)
 
+void set_reltype (const icalparameter_reltype &v)
 
+void set_role (const icalparameter_role &v)
 
+void set_rsvp (const icalparameter_rsvp &v)
 
+void set_sentby (const std::string &v)
 
+void set_tzid (const std::string &v)
 
+void set_value (const icalparameter_value &v)
 
+void set_x (const std::string &v)
 
+void set_xliccomparetype (const icalparameter_xliccomparetype &v)
 
+void set_xlicerrortype (const icalparameter_xlicerrortype &v)
 
+ + + + + + + + + + + + + +

+Static Public Member Functions

+static std::string get_xname (ICalParameter &param)
 
+static std::string get_xvalue (ICalParameter &param)
 
+static std::string kind_to_string (const icalparameter_kind &kind)
 
+static void set_xname (ICalParameter &param, const std::string &v)
 
+static void set_xvalue (ICalParameter &param, const std::string &v)
 
+static icalparameter_kind string_to_kind (const std::string &str)
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1ICalProperty.html b/static/apidocs/classLibICal_1_1ICalProperty.html new file mode 100644 index 00000000..ce7c6827 --- /dev/null +++ b/static/apidocs/classLibICal_1_1ICalProperty.html @@ -0,0 +1,665 @@ + + + + + + + +Libical API Documentation: LibICal::ICalProperty Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions | +Static Public Member Functions
+
LibICal::ICalProperty Class Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICalProperty (const ICalProperty &)
 
ICalProperty (icalproperty *v)
 
ICalProperty (icalproperty_kind kind)
 
ICalProperty (icalproperty_kind kind, std::string str)
 
ICalProperty (std::string str)
 
+void add_parameter (ICalParameter &parameter)
 
+std::string as_ical_string ()
 
+int count_parameters ()
 
+void detach ()
 
+enum icalproperty_action get_action ()
 
+icalattachget_attach () const
 
+std::string get_attendee () const
 
+std::string get_calscale () const
 
+std::string get_categories () const
 
+enum icalproperty_class get_class () const
 
+std::string get_comment () const
 
+struct icaltimetype get_completed () const
 
+std::string get_contact () const
 
+struct icaltimetype get_created () const
 
+std::string get_description () const
 
+struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+struct icaltimetype get_exdate () const
 
+int get_expand () const
 
+struct icalrecurrencetype get_exrule () const
 
ICalParameterget_first_parameter (const icalparameter_kind &kind)
 
+struct icalperiodtype get_freebusy () const
 
+struct icalgeotype get_geo () const
 
+std::string get_grant () const
 
+struct icaltimetype get_lastmodified () const
 
+std::string get_location () const
 
+int get_maxresults () const
 
+int get_maxresultsize () const
 
+enum icalproperty_method get_method () const
 
std::string get_name () const
 
+ICalParameterget_next_parameter (const icalparameter_kind &kind)
 
+std::string get_organizer () const
 
+std::string get_owner () const
 
+std::string get_parameter_as_string (const std::string &name)
 
+int get_percentcomplete () const
 
+int get_priority () const
 
+std::string get_prodid () const
 
+std::string get_query () const
 
+std::string get_queryname () const
 
+struct icaldatetimeperiodtype get_rdate () const
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relatedto () const
 
+std::string get_relcalid () const
 
+int get_repeat () const
 
+std::string get_requeststatus () const
 
+std::string get_resources () const
 
+struct icalrecurrencetype get_rrule () const
 
+std::string get_scope () const
 
+int get_sequence () const
 
+enum icalproperty_status get_status () const
 
+std::string get_summary () const
 
+std::string get_target () const
 
+enum icalproperty_transp get_transp () const
 
+struct icaltriggertype get_trigger () const
 
+std::string get_tzid () const
 
+std::string get_tzname () const
 
+int get_tzoffsetfrom () const
 
+int get_tzoffsetto () const
 
+std::string get_tzurl () const
 
+std::string get_uid () const
 
+std::string get_url () const
 
+ICalValueget_value ()
 
+std::string get_value_as_string ()
 
+std::string get_version () const
 
+std::string get_x () const
 
+std::string get_xlicclustercount () const
 
+std::string get_xlicerror () const
 
+std::string get_xlicmimecharset () const
 
+std::string get_xlicmimecid () const
 
+std::string get_xlicmimecontenttype () const
 
+std::string get_xlicmimeencoding () const
 
+std::string get_xlicmimefilename () const
 
+std::string get_xlicmimeoptinfo () const
 
+icalproperty_kind isa ()
 
+int isa_property (void *property)
 
operator icalproperty * ()
 
+ICalPropertyoperator= (const ICalProperty &)
 
+int operator== (ICalProperty &rhs)
 
+void remove_parameter_by_kind (const icalparameter_kind &kind)
 
+void set_action (const enum icalproperty_action &val)
 
+void set_attach (icalattach *val)
 
+void set_attendee (const std::string &val)
 
+void set_calscale (const std::string &val)
 
+void set_categories (const std::string &val)
 
+void set_class (const enum icalproperty_class &val)
 
+void set_comment (const std::string &val)
 
+void set_completed (const struct icaltimetype &val)
 
+void set_contact (const std::string &val)
 
+void set_created (const struct icaltimetype &val)
 
+void set_description (const std::string &val)
 
+void set_dtend (const struct icaltimetype &val)
 
+void set_dtstamp (const struct icaltimetype &val)
 
+void set_dtstart (const struct icaltimetype &val)
 
+void set_due (const struct icaltimetype &val)
 
+void set_duration (const struct icaldurationtype &val)
 
+void set_exdate (const struct icaltimetype &val)
 
+void set_expand (const int &val)
 
+void set_exrule (const struct icalrecurrencetype &val)
 
+void set_freebusy (const struct icalperiodtype &val)
 
+void set_geo (const struct icalgeotype &val)
 
+void set_grant (const std::string &val)
 
+void set_lastmodified (const struct icaltimetype &val)
 
+void set_location (const std::string &val)
 
+void set_maxresults (const int &val)
 
+void set_maxresultsize (const int &val)
 
+void set_method (const enum icalproperty_method &val)
 
+void set_organizer (const std::string &val)
 
+void set_owner (const std::string &val)
 
+void set_parameter (ICalParameter &parameter)
 
+void set_parameter_from_string (const std::string &name, const std::string &val)
 
+void set_percentcomplete (const int &val)
 
+void set_priority (const int &val)
 
+void set_prodid (const std::string &val)
 
+void set_query (const std::string &val)
 
+void set_queryname (const std::string &val)
 
+void set_rdate (const struct icaldatetimeperiodtype &val)
 
+void set_recurrenceid (const struct icaltimetype &val)
 
+void set_relatedto (const std::string &val)
 
+void set_relcalid (const std::string &val)
 
+void set_repeat (const int &val)
 
+void set_requeststatus (const std::string &val)
 
+void set_resources (const std::string &val)
 
+void set_rrule (const struct icalrecurrencetype &val)
 
+void set_scope (const std::string &val)
 
+void set_sequence (const int &val)
 
+void set_status (const enum icalproperty_status &val)
 
+void set_summary (const std::string &val)
 
+void set_target (const std::string &val)
 
+void set_transp (const enum icalproperty_transp &val)
 
+void set_trigger (const struct icaltriggertype &val)
 
+void set_tzid (const std::string &val)
 
+void set_tzname (const std::string &val)
 
+void set_tzoffsetfrom (const int &val)
 
+void set_tzoffsetto (const int &val)
 
+void set_tzurl (const std::string &val)
 
+void set_uid (const std::string &val)
 
+void set_url (const std::string &val)
 
void set_value (const ICalValue &val)
 
+void set_value_from_string (const std::string &val, const std::string &kind)
 
+void set_version (const std::string &val)
 
+void set_x (const std::string &val)
 
+void set_xlicclustercount (const std::string &val)
 
+void set_xlicerror (const std::string &val)
 
+void set_xlicmimecharset (const std::string &val)
 
+void set_xlicmimecid (const std::string &val)
 
+void set_xlicmimecontenttype (const std::string &val)
 
+void set_xlicmimeencoding (const std::string &val)
 
+void set_xlicmimefilename (const std::string &val)
 
+void set_xlicmimeoptinfo (const std::string &val)
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Static Public Member Functions

+static int enum_belongs_to_property (const icalproperty_kind &kind, const int &e)
 
+static std::string enum_to_string (const int &e)
 
+static std::string get_x_name (ICalProperty &prop)
 
+static int kind_and_string_to_enum (const icalproperty_kind &kind, const std::string &str)
 
+static std::string kind_to_string (const icalproperty_kind &kind)
 
+static icalvalue_kind kind_to_value_kind (const icalproperty_kind &kind)
 
+static std::string method_to_string (const icalproperty_method &method)
 
+static void set_x_name (ICalProperty &prop, const std::string &name)
 
+static std::string status_to_string (const icalproperty_status &status)
 
+static icalproperty_kind string_to_kind (const std::string &str)
 
+static icalproperty_method string_to_method (const std::string &str)
 
+static icalproperty_status string_to_status (const std::string &str)
 
+static icalproperty_kind value_kind_to_kind (const icalvalue_kind &kind)
 
+static icalvalue_kind value_to_value_kind (const icalparameter_value &val)
 
+

Member Function Documentation

+ +

◆ get_first_parameter()

+ +
+
+ + + + + + + + +
ICalParameter * LibICal::ICalProperty::get_first_parameter (const icalparameter_kind & kind)
+
+

Iterate through the parameters

+ +
+
+ +

◆ get_name()

+ +
+
+ + + + + + + +
std::string LibICal::ICalProperty::get_name () const
+
+

Returns the name of the property – the type name converted to a string, or the value of get_x_name if the type is X property

+ +
+
+ +

◆ set_value()

+ +
+
+ + + + + + + + +
void LibICal::ICalProperty::set_value (const ICalValueval)
+
+

Access the value of the property

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1ICalSpanList.html b/static/apidocs/classLibICal_1_1ICalSpanList.html new file mode 100644 index 00000000..3c0fe086 --- /dev/null +++ b/static/apidocs/classLibICal_1_1ICalSpanList.html @@ -0,0 +1,322 @@ + + + + + + + +Libical API Documentation: LibICal::ICalSpanList Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::ICalSpanList Class Reference
+
+
+ +

#include <icalspanlist_cxx.h>

+ + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICalSpanList (const ICalSpanList &v)
 
 ICalSpanList (icalcomponent *comp)
 
 ICalSpanList (icalset *set, icaltimetype start, icaltimetype end)
 
 ICalSpanList (VComponent &comp)
 
 ~ICalSpanList ()
 
std::vector< int > as_vector (int delta_t)
 
void dump ()
 
VComponentget_vfreebusy (const char *organizer, const char *attendee)
 
 operator icalspanlist * ()
 
+ICalSpanListoperator= (const ICalSpanList &)
 
+

Detailed Description

+

This class wraps the icalspanlist routines in libicalss

+

Errors within libicalss are propagated via exceptions of type icalerrorenum. See icalerror.h for the complete list of exceptions that might be thrown.

+

Constructor & Destructor Documentation

+ +

◆ ICalSpanList() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
LibICal::ICalSpanList::ICalSpanList (icalsetset,
icaltimetype start,
icaltimetype end 
)
+
+

Constructs an ICalSpanList from an icalset

+ +
+
+ +

◆ ICalSpanList() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
LibICal::ICalSpanList::ICalSpanList (icalcomponentcomp)
+
+explicit
+
+

Constructs an ICalSpanList from the VFREEBUSY chunk of a icalcomponent

+ +
+
+ +

◆ ICalSpanList() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
LibICal::ICalSpanList::ICalSpanList (VComponentcomp)
+
+explicit
+
+

Constructs an ICalSpanList from the VFREEBUSY chunk of a vcomponent

+ +
+
+ +

◆ ~ICalSpanList()

+ +
+
+ + + + + + + +
LibICal::ICalSpanList::~ICalSpanList ()
+
+

Destructor

+ +
+
+

Member Function Documentation

+ +

◆ as_vector()

+ +
+
+ + + + + + + + +
std::vector< int > LibICal::ICalSpanList::as_vector (int delta_t)
+
+

Returns a vector of the number of events over delta t

+ +
+
+ +

◆ dump()

+ +
+
+ + + + + + + +
void LibICal::ICalSpanList::dump ()
+
+

Dumps the spanlist to STDOUT

+ +
+
+ +

◆ get_vfreebusy()

+ +
+
+ + + + + + + + + + + + + + + + + + +
VComponent * LibICal::ICalSpanList::get_vfreebusy (const char * organizer,
const char * attendee 
)
+
+

Returns a VFREEBUSY icalcomponent

+ +
+
+ +

◆ operator icalspanlist *()

+ +
+
+ + + + + +
+ + + + + + + +
LibICal::ICalSpanList::operator icalspanlist * ()
+
+inline
+
+

Returns the base data when casting

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1ICalValue.html b/static/apidocs/classLibICal_1_1ICalValue.html new file mode 100644 index 00000000..0f179176 --- /dev/null +++ b/static/apidocs/classLibICal_1_1ICalValue.html @@ -0,0 +1,284 @@ + + + + + + + +Libical API Documentation: LibICal::ICalValue Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions | +Static Public Member Functions
+
LibICal::ICalValue Class Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

ICalValue (const ICalValue &)
 
ICalValue (const icalvalue_kind &kind)
 
ICalValue (const icalvalue_kind &kind, const std::string &str)
 
ICalValue (icalvalue *)
 
+std::string as_ical_string ()
 
+void detach ()
 
+enum icalproperty_action get_action () const
 
+icalattachget_attach ()
 
+std::string get_binary () const
 
+int get_boolean () const
 
+std::string get_caladdress () const
 
+enum icalproperty_class get_class () const
 
+struct icaltimetype get_date () const
 
+struct icaltimetype get_datetime () const
 
+struct icaldatetimeperiodtype get_datetimeperiod ()
 
+struct icaldurationtype get_duration () const
 
+float get_float () const
 
+struct icalgeotype get_geo () const
 
+int get_integer () const
 
+enum icalproperty_method get_method () const
 
+struct icalperiodtype get_period () const
 
+std::string get_query () const
 
+struct icalrecurrencetype get_recur ()
 
+enum icalproperty_status get_status () const
 
+std::string get_string () const
 
+std::string get_text () const
 
+enum icalproperty_transp get_transp () const
 
+struct icaltriggertype get_trigger ()
 
+std::string get_uri () const
 
+int get_utcoffset () const
 
+bool is_valid ()
 
+icalvalue_kind isa ()
 
+int isa_value (void *)
 
+std::string kind_to_string (const icalvalue_kind &kind)
 
operator icalvalue * ()
 
+ICalValueoperator= (const ICalValue &)
 
+void set_action (const enum icalproperty_action &v)
 
+void set_attach (icalattach *v)
 
+void set_binary (const std::string &v)
 
+void set_boolean (const int &v)
 
+void set_caladdress (const std::string &v)
 
+void set_class (const enum icalproperty_class &v)
 
+void set_date (const struct icaltimetype &v)
 
+void set_datetime (const struct icaltimetype &v)
 
+void set_datetimeperiod (const struct icaldatetimeperiodtype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_float (const float &v)
 
+void set_geo (const struct icalgeotype &v)
 
+void set_integer (const int &v)
 
+void set_method (const enum icalproperty_method &v)
 
+void set_period (const struct icalperiodtype &v)
 
+void set_query (const std::string &v)
 
+void set_recur (const struct icalrecurrencetype &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_string (const std::string &v)
 
+void set_text (const std::string &v)
 
+void set_transp (const enum icalproperty_transp &v)
 
+void set_trigger (const struct icaltriggertype &v)
 
+void set_uri (const std::string &v)
 
+void set_utcoffset (const int &v)
 
+ + + + + +

+Static Public Member Functions

+static icalparameter_xliccomparetype compare (ICalValue &a, ICalValue &b)
 
+static icalvalue_kind string_to_kind (const std::string &str)
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VAgenda.html b/static/apidocs/classLibICal_1_1VAgenda.html new file mode 100644 index 00000000..a448ace7 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAgenda.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VAgenda Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VAgenda Class Reference
+
+
+
+Inheritance diagram for LibICal::VAgenda:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VAgenda (const std::string &str)
 
VAgenda (const VAgenda &)
 
VAgenda (icalcomponent *v)
 
+VAgendaoperator= (const VAgenda &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.map b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.map new file mode 100644 index 00000000..0bf5b9dc --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.md5 new file mode 100644 index 00000000..1b0ff538 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.md5 @@ -0,0 +1 @@ +4ee2535a4e761ccd9b4ad10486794053 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.png b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.png new file mode 100644 index 00000000..91b8810c Binary files /dev/null and b/static/apidocs/classLibICal_1_1VAgenda__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VAlarm.html b/static/apidocs/classLibICal_1_1VAlarm.html new file mode 100644 index 00000000..14ca7cfd --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAlarm.html @@ -0,0 +1,369 @@ + + + + + + + +Libical API Documentation: LibICal::VAlarm Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VAlarm Class Reference
+
+
+
+Inheritance diagram for LibICal::VAlarm:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VAlarm (const std::string &str)
 
VAlarm (const VAlarm &)
 
VAlarm (icalcomponent *v)
 
icalrequeststatus getTriggerTime (VComponent &c, struct icaltriggertype *tr)
 
+VAlarmoperator= (const VAlarm &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+

Member Function Documentation

+ +

◆ getTriggerTime()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalrequeststatus LibICal::VAlarm::getTriggerTime (VComponentc,
struct icaltriggertypetr 
)
+
+

compute the absolute trigger time for this alarm. trigger may be related to the containing component c. the result is populated in tr->time

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.map b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.map new file mode 100644 index 00000000..09ed825b --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.md5 new file mode 100644 index 00000000..cc8bcb5c --- /dev/null +++ b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.md5 @@ -0,0 +1 @@ +c3de714358dbe5f0b564a208846ab42b \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.png b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.png new file mode 100644 index 00000000..0c479bb6 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VAlarm__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VCalendar.html b/static/apidocs/classLibICal_1_1VCalendar.html new file mode 100644 index 00000000..d8456b2c --- /dev/null +++ b/static/apidocs/classLibICal_1_1VCalendar.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VCalendar Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VCalendar Class Reference
+
+
+
+Inheritance diagram for LibICal::VCalendar:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VCalendar (const std::string &str)
 
VCalendar (const VCalendar &)
 
VCalendar (icalcomponent *v)
 
+VCalendaroperator= (const VCalendar &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.map b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.map new file mode 100644 index 00000000..7df4f932 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.md5 new file mode 100644 index 00000000..48fcc1bc --- /dev/null +++ b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.md5 @@ -0,0 +1 @@ +3e2df20f0a5d7b3e9b015d0e9f3df3bb \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.png b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.png new file mode 100644 index 00000000..c20a6e70 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VCalendar__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VComponent.html b/static/apidocs/classLibICal_1_1VComponent.html new file mode 100644 index 00000000..489669de --- /dev/null +++ b/static/apidocs/classLibICal_1_1VComponent.html @@ -0,0 +1,458 @@ + + + + + + + +Libical API Documentation: LibICal::VComponent Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions | +Static Public Member Functions
+
LibICal::VComponent Class Reference
+
+
+ +

A class wrapping the libical icalcomponent functions. + More...

+ +

#include <vcomponent_cxx.h>

+
+Inheritance diagram for LibICal::VComponent:
+
+
Inheritance graph
+ + + + + + + + + + + + + + + + + + + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + +

+Static Public Member Functions

+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+

Detailed Description

+

A class wrapping the libical icalcomponent functions.

+
Exceptions
+ + +
icalerrorenumAny errors generated in libical are propagated via this exception type.
+
+
+

Member Function Documentation

+ +

◆ get_current_component()

+ +
+
+ + + + + + + +
VComponent * LibICal::VComponent::get_current_component ()
+
+ +

Iterate through components.

+

Iteration Routines. There are two forms of iterators, internal and external. The internal ones came first, and are almost completely sufficient, but they fail badly when you want to construct a loop that removes components from the container.

+ +
+
+ +

◆ get_dtend()

+ +
+
+ + + + + + + +
struct icaltimetype LibICal::VComponent::get_dtend () const
+
+

For the icalcomponent routines only, dtend and duration are tied together. If you call the set routine for one and the other exists, the routine will calculate the change to the other. That is, if there is a DTEND and you call set_duration, the routine will modify DTEND to be the sum of DTSTART and the duration. If you call a get routine for one and the other exists, the routine will calculate the return value. If you call a set routine and neither exists, the routine will create the appropriate property

+ +
+
+ +

◆ get_first_real_component()

+ +
+
+ + + + + + + +
VComponent * LibICal::VComponent::get_first_real_component ()
+
+

For VCOMPONENT: Return a reference to the first VEVENT, VTODO, or VJOURNAL

+ +
+
+ +

◆ get_inner()

+ +
+
+ + + + + + + +
VComponent * LibICal::VComponent::get_inner ()
+
+

Return the first VEVENT, VTODO or VJOURNAL sub-component if it is one of those types

+ +
+
+ +

◆ get_span()

+ +
+
+ + + + + +
+ + + + + + + +
virtual struct icaltime_span LibICal::VComponent::get_span ()
+
+virtual
+
+

For VEVENT, VTODO, VJOURNAL and VTIMEZONE: report the start and end times of an event in UTC

+ +
+
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VComponent__inherit__graph.map b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.map new file mode 100644 index 00000000..8a8c49fd --- /dev/null +++ b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.map @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/apidocs/classLibICal_1_1VComponent__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.md5 new file mode 100644 index 00000000..27983330 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.md5 @@ -0,0 +1 @@ +e3ca24cb1b6ca610e7c7c694043feb54 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VComponent__inherit__graph.png b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.png new file mode 100644 index 00000000..b2b3a05d Binary files /dev/null and b/static/apidocs/classLibICal_1_1VComponent__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VEvent.html b/static/apidocs/classLibICal_1_1VEvent.html new file mode 100644 index 00000000..88faec4c --- /dev/null +++ b/static/apidocs/classLibICal_1_1VEvent.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VEvent Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VEvent Class Reference
+
+
+
+Inheritance diagram for LibICal::VEvent:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VEvent (const std::string &str)
 
VEvent (const VEvent &)
 
VEvent (icalcomponent *v)
 
+VEventoperator= (const VEvent &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VEvent__inherit__graph.map b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.map new file mode 100644 index 00000000..5f1184d5 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VEvent__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.md5 new file mode 100644 index 00000000..29970da8 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.md5 @@ -0,0 +1 @@ +d85bda2b7c42b521d4307fcda7cfde6f \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VEvent__inherit__graph.png b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.png new file mode 100644 index 00000000..692cd726 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VEvent__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VFreeBusy.html b/static/apidocs/classLibICal_1_1VFreeBusy.html new file mode 100644 index 00000000..7fda37cc --- /dev/null +++ b/static/apidocs/classLibICal_1_1VFreeBusy.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VFreeBusy Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VFreeBusy Class Reference
+
+
+
+Inheritance diagram for LibICal::VFreeBusy:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VFreeBusy (const std::string &str)
 
VFreeBusy (const VFreeBusy &)
 
VFreeBusy (icalcomponent *v)
 
+VFreeBusyoperator= (const VFreeBusy &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.map b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.map new file mode 100644 index 00000000..cc07efec --- /dev/null +++ b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.md5 new file mode 100644 index 00000000..e239dab5 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.md5 @@ -0,0 +1 @@ +affd7ad5b2cf8a748b55ebdc5a0c3e17 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.png b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.png new file mode 100644 index 00000000..302a8958 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VFreeBusy__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VJournal.html b/static/apidocs/classLibICal_1_1VJournal.html new file mode 100644 index 00000000..cfb28746 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VJournal.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VJournal Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VJournal Class Reference
+
+
+
+Inheritance diagram for LibICal::VJournal:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VJournal (const std::string &str)
 
VJournal (const VJournal &)
 
VJournal (icalcomponent *v)
 
+VJournaloperator= (const VJournal &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VJournal__inherit__graph.map b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.map new file mode 100644 index 00000000..af97a4b4 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VJournal__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.md5 new file mode 100644 index 00000000..2a494f01 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.md5 @@ -0,0 +1 @@ +15734c8831d45d0ba76477af5d8dc7ad \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VJournal__inherit__graph.png b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.png new file mode 100644 index 00000000..de4111c7 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VJournal__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VQuery.html b/static/apidocs/classLibICal_1_1VQuery.html new file mode 100644 index 00000000..8123114c --- /dev/null +++ b/static/apidocs/classLibICal_1_1VQuery.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VQuery Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VQuery Class Reference
+
+
+
+Inheritance diagram for LibICal::VQuery:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VQuery (const std::string &str)
 
VQuery (const VQuery &)
 
VQuery (icalcomponent *v)
 
+VQueryoperator= (const VQuery &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VQuery__inherit__graph.map b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.map new file mode 100644 index 00000000..67ca0f45 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VQuery__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.md5 new file mode 100644 index 00000000..8ef8c2ba --- /dev/null +++ b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.md5 @@ -0,0 +1 @@ +0ae01ca0ad902d8ba5b98ec6abef0159 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VQuery__inherit__graph.png b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.png new file mode 100644 index 00000000..0db4a838 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VQuery__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VTimezone.html b/static/apidocs/classLibICal_1_1VTimezone.html new file mode 100644 index 00000000..bd5a1a67 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VTimezone.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VTimezone Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VTimezone Class Reference
+
+
+
+Inheritance diagram for LibICal::VTimezone:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VTimezone (const std::string &str)
 
VTimezone (const VTimezone &)
 
VTimezone (icalcomponent *v)
 
+VTimezoneoperator= (const VTimezone &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.map b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.map new file mode 100644 index 00000000..54af5b30 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.md5 new file mode 100644 index 00000000..e50ddfe6 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.md5 @@ -0,0 +1 @@ +07818126b3e3f2fb79662336ea917e5f \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.png b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.png new file mode 100644 index 00000000..77f160a1 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VTimezone__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1VToDo.html b/static/apidocs/classLibICal_1_1VToDo.html new file mode 100644 index 00000000..16c677d2 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VToDo.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::VToDo Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::VToDo Class Reference
+
+
+
+Inheritance diagram for LibICal::VToDo:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

VToDo (const std::string &str)
 
VToDo (const VToDo &)
 
VToDo (icalcomponent *v)
 
+VToDooperator= (const VToDo &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1VToDo__inherit__graph.map b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.map new file mode 100644 index 00000000..d0e4307a --- /dev/null +++ b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1VToDo__inherit__graph.md5 b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.md5 new file mode 100644 index 00000000..600671d3 --- /dev/null +++ b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.md5 @@ -0,0 +1 @@ +85baf562dc709a5de11738d36dd7c912 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1VToDo__inherit__graph.png b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.png new file mode 100644 index 00000000..117e24d4 Binary files /dev/null and b/static/apidocs/classLibICal_1_1VToDo__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1XDaylight.html b/static/apidocs/classLibICal_1_1XDaylight.html new file mode 100644 index 00000000..a4532198 --- /dev/null +++ b/static/apidocs/classLibICal_1_1XDaylight.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::XDaylight Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::XDaylight Class Reference
+
+
+
+Inheritance diagram for LibICal::XDaylight:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

XDaylight (const std::string &str)
 
XDaylight (const XDaylight &)
 
XDaylight (icalcomponent *v)
 
+XDaylightoperator= (const XDaylight &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.map b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.map new file mode 100644 index 00000000..f16ee608 --- /dev/null +++ b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.md5 b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.md5 new file mode 100644 index 00000000..6a03ecfb --- /dev/null +++ b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.md5 @@ -0,0 +1 @@ +eca3dc7d1bb3c94f45e4aa0b8bc01412 \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.png b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.png new file mode 100644 index 00000000..1c84a6d0 Binary files /dev/null and b/static/apidocs/classLibICal_1_1XDaylight__inherit__graph.png differ diff --git a/static/apidocs/classLibICal_1_1XStandard.html b/static/apidocs/classLibICal_1_1XStandard.html new file mode 100644 index 00000000..0e664ac6 --- /dev/null +++ b/static/apidocs/classLibICal_1_1XStandard.html @@ -0,0 +1,337 @@ + + + + + + + +Libical API Documentation: LibICal::XStandard Class Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
+Public Member Functions
+
LibICal::XStandard Class Reference
+
+
+
+Inheritance diagram for LibICal::XStandard:
+
+
Inheritance graph
+ + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

XStandard (const std::string &str)
 
XStandard (const XStandard &)
 
XStandard (icalcomponent *v)
 
+XStandardoperator= (const XStandard &)
 
- Public Member Functions inherited from LibICal::VComponent
VComponent (const icalcomponent_kind &kind)
 
VComponent (const std::string &str)
 
VComponent (const VComponent &)
 
VComponent (icalcomponent *v)
 
+bool add (VComponent &)
 
+void add_component (VComponent *child)
 
+void add_property (ICalProperty *property)
 Working with properties.
 
+std::string as_ical_string ()
 
+icalcompiter begin_component (const icalcomponent_kind &kind)
 Using external iterators.
 
+void convert_errors ()
 Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int count_components (const icalcomponent_kind &kind)
 
+int count_errors ()
 Working with embedded error properties.
 
+int count_properties (const icalproperty_kind &kind)
 
+VComponentcurrent (icalcompiter *i)
 
+void detach ()
 
+icalcompiter end_component (const icalcomponent_kind &kind)
 
+std::string get_comment () const
 
VComponentget_current_component ()
 Iterate through components.
 
+ICalPropertyget_current_property ()
 
+std::string get_description () const
 
struct icaltimetype get_dtend () const
 
+struct icaltimetype get_dtstamp () const
 
+struct icaltimetype get_dtstart () const
 
+struct icaltimetype get_due () const
 
+struct icaldurationtype get_duration () const
 
+VComponentget_first_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_first_property (const icalproperty_kind &kind)
 
VComponentget_first_real_component ()
 
VComponentget_inner ()
 
+std::string get_location () const
 
+icalproperty_method get_method () const
 
+VComponentget_next_component (const icalcomponent_kind &kind)
 
+ICalPropertyget_next_property (const icalproperty_kind &kind)
 
+struct icaltimetype get_recurrenceid () const
 
+std::string get_relcalid () const
 
+int get_sequence () const
 
virtual struct icaltime_span get_span ()
 
+int get_status () const
 
+std::string get_summary () const
 
+std::string get_uid () const
 
+bool is_valid ()
 
+icalcomponent_kind isa ()
 
+int isa_component (void *component)
 
+void new_from_string (const std::string &str)
 
+VComponentnext (icalcompiter *i)
 
operator icalcomponent * ()
 
+VComponentoperator= (const VComponent &)
 
+VComponentprev (icalcompiter *i)
 
+int recurrence_is_excluded (struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 
+bool remove (VComponent &, bool ignoreValue)
 Note: the VComponent kind have to be the same.
 
+void remove_component (VComponent *child)
 
+void remove_property (ICalProperty *property)
 
+void set_comment (const std::string &v)
 
+void set_description (const std::string &v)
 
+void set_dtend (const struct icaltimetype &v)
 
+void set_dtstamp (const struct icaltimetype &v)
 
+void set_dtstart (const struct icaltimetype &v)
 
+void set_due (const struct icaltimetype &v)
 
+void set_duration (const struct icaldurationtype &v)
 
+void set_location (const std::string &v)
 
+void set_method (const icalproperty_method &method)
 
+void set_recurrenceid (const struct icaltimetype &v)
 
+void set_relcalid (const std::string &v)
 
+void set_sequence (const int &v)
 
+void set_status (const enum icalproperty_status &v)
 
+void set_summary (const std::string &v)
 
+void set_uid (const std::string &v)
 
+void strip_errors ()
 Remove all X-LIC-ERROR properties.
 
+bool update (VComponent &, bool removeMissing)
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from LibICal::VComponent
+static std::string kind_to_string (const icalcomponent_kind &kind)
 
+static icalcomponent_kind string_to_kind (const std::string &str)
 Kind conversion routines.
 
+
The documentation for this class was generated from the following file: +
+ + + + diff --git a/static/apidocs/classLibICal_1_1XStandard__inherit__graph.map b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.map new file mode 100644 index 00000000..a57de8d6 --- /dev/null +++ b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/static/apidocs/classLibICal_1_1XStandard__inherit__graph.md5 b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.md5 new file mode 100644 index 00000000..69cde85d --- /dev/null +++ b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.md5 @@ -0,0 +1 @@ +6ce21633778157f88cf3081faf4d45ea \ No newline at end of file diff --git a/static/apidocs/classLibICal_1_1XStandard__inherit__graph.png b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.png new file mode 100644 index 00000000..0f5212af Binary files /dev/null and b/static/apidocs/classLibICal_1_1XStandard__inherit__graph.png differ diff --git a/static/apidocs/classes.html b/static/apidocs/classes.html new file mode 100644 index 00000000..51530560 --- /dev/null +++ b/static/apidocs/classes.html @@ -0,0 +1,144 @@ + + + + + + + +Libical API Documentation: Data Structure Index + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Data Structure Index
+
+
+
B | C | D | E | F | I | L | M | O | P | R | S | T | U | V | W | X | Y | Z | _
+
+
+
B
+
buffer_ring
+
+
C
+
conversion_table_struct
+
+
D
+
icalvalue_impl::data
+
+
E
+
encoding_map
expand_split_map_struct
+
+
F
+
freq_map
+
+
I
+
icalattach_impl
ICalBDBSet (LibICal)
icalbdbset_id
icalbdbset_impl
icalbdbset_options
icalcalendar_impl
icalclassify_map
icalclassify_parts
icalcluster_impl
icalcompiter
icalcomponent_impl
icalcomponent_kind_map
icaldatetimeperiodtype
icaldirset_impl
icaldirset_options
icaldurationtype
icalerror_state
icalerror_string_map
icalfileset_id
icalfileset_impl
icalfileset_options
icalgauge_impl
icalgauge_where
icalgeotype
ICalParameter (LibICal)
icalparameter_impl
icalparser_impl
icalperiodtype
ICalProperty (LibICal)
icalproperty_impl
icalrecur_iterator_impl
icalrecur_parser
icalrecurrencetype
icalreqstattype
icalset_impl
icalsetiter
ICalSpanList (LibICal)
icalspanlist_impl
icaltime_span
icaltimetype
icaltimezonephase
icaltimezonetype
icaltriggertype
ICalValue (LibICal)
icalvalue_impl
ICPointerHolder
+
+
L
+
leap
LexBuf
+
+
M
+
major_content_type_map
mime_impl
minor_content_type_map
+
+
O
+
observance
OFile
+
+
P
+
PreDefProp
pvl_elem_t
pvl_list_t
+
+
R
+
rdate
recur_map
+
+
S
+
skip_map
slg_data
sspm_action_map
sspm_buffer
sspm_header
sspm_part
StrItem
+
+
T
+
text_part
ttinfo
tzinfo
+
+
U
+
ut_instant
+
+
V
+
VAgenda (LibICal)
VAlarm (LibICal)
ValueItem
VCalendar (LibICal)
VComponent (LibICal)
VEvent (LibICal)
VFreeBusy (LibICal)
VJournal (LibICal)
VObject
VObjectIterator
VQuery (LibICal)
VTimezone (LibICal)
VToDo (LibICal)
+
+
W
+
wd_map
+
+
X
+
XDaylight (LibICal)
XStandard (LibICal)
+
+
Y
+
yy_buffer_state
yy_trans_info
yyalloc
YYSTYPE
+
+
Z
+
zone_context
+
+
_
+
_compat_tzids
_icalarray
_icaltimezone
_icaltimezonechange
_icalvcal_defaults
+
+
+ + + + diff --git a/static/apidocs/closed.png b/static/apidocs/closed.png new file mode 100644 index 00000000..98cc2c90 Binary files /dev/null and b/static/apidocs/closed.png differ diff --git a/static/apidocs/dir_000003_000002.html b/static/apidocs/dir_000003_000002.html new file mode 100644 index 00000000..15816ade --- /dev/null +++ b/static/apidocs/dir_000003_000002.html @@ -0,0 +1,82 @@ + + + + + + + +Libical API Documentation: libicalss -> libical Relation + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+

libicalss → libical Relation

File in src/libicalssIncludes file in src/libical
icalbdbset.cicalparser.h
icalbdbset.cicaltimezone.h
icalbdbset.cicalvalue.h
icalclassify.cicalmemory.h
icalclassify.hicalcomponent.h
icalcluster.hicalcomponent.h
icalcluster.hicalerror.h
icalfileset.cicalparser.h
icalfileset.cicalvalue.h
icalgauge.cicalerror.h
icalgauge.cicalvalue.h
icalgauge.hicalcomponent.h
icalgaugeimpl.hicalcomponent.h
icalmessage.cicalerror.h
icalmessage.cicalmemory.h
icalmessage.hicalcomponent.h
icalset.hicalcomponent.h
icalset.hicalerror.h
icalspanlist.cicaltimezone.h
icalspanlist_cxx.hicalcomponent.h
icalspanlist_cxx.hicaltime.h
icalsslexer.cicalmemory.h
icalssyacc.cicalerror.h
+ + + + diff --git a/static/apidocs/dir_000004_000002.html b/static/apidocs/dir_000004_000002.html new file mode 100644 index 00000000..caf5d1bc --- /dev/null +++ b/static/apidocs/dir_000004_000002.html @@ -0,0 +1,82 @@ + + + + + + + +Libical API Documentation: libicalvcal -> libical Relation + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+

libicalvcal → libical Relation

File in src/libicalvcalIncludes file in src/libical
icalvcal.cicalerror.h
icalvcal.cicaltimezone.h
icalvcal.cicalvalue.h
icalvcal.hicalcomponent.h
+ + + + diff --git a/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42.html b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42.html new file mode 100644 index 00000000..d54808b3 --- /dev/null +++ b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42.html @@ -0,0 +1,110 @@ + + + + + + + +Libical API Documentation: libicalvcal Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libicalvcal Directory Reference
+
+
+
+Directory dependency graph for libicalvcal:
+
+
libicalvcal
+ + + + + + +
+ + + + + + + + + + + + +

+Files

 icalvcal.h
 
 libical_vcal_export.h
 
 vcaltmp.h
 
 vcc.h
 
 vobject.h
 
+
+ + + + diff --git a/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.map b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.map new file mode 100644 index 00000000..b8b11a36 --- /dev/null +++ b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.map @@ -0,0 +1,6 @@ + + + + + + diff --git a/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.md5 b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.md5 new file mode 100644 index 00000000..6c2623ab --- /dev/null +++ b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.md5 @@ -0,0 +1 @@ +bf9ba518b2628ab3cbbe947c25975035 \ No newline at end of file diff --git a/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.png b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.png new file mode 100644 index 00000000..b81b4e55 Binary files /dev/null and b/static/apidocs/dir_3d1727d6b01241f7fe3ee38f31a35b42_dep.png differ diff --git a/static/apidocs/dir_5330c68354327086ecc8df050e51eedc.html b/static/apidocs/dir_5330c68354327086ecc8df050e51eedc.html new file mode 100644 index 00000000..aaeedd5c --- /dev/null +++ b/static/apidocs/dir_5330c68354327086ecc8df050e51eedc.html @@ -0,0 +1,91 @@ + + + + + + + +Libical API Documentation: src Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
src Directory Reference
+
+
+ + + + +

+Directories

 libical
 
+
+ + + + diff --git a/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba.html new file mode 100644 index 00000000..b44501a5 --- /dev/null +++ b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: src Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
src Directory Reference
+
+
+
+Directory dependency graph for src:
+
+
src
+ + + + + + + + +
+ + + + + + + + +

+Directories

 libical
 
 libicalss
 
 libicalvcal
 
+
+ + + + diff --git a/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.map b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.map new file mode 100644 index 00000000..bc81f5df --- /dev/null +++ b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.map @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.md5 b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.md5 new file mode 100644 index 00000000..9ce75483 --- /dev/null +++ b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.md5 @@ -0,0 +1 @@ +c76f0e7bede615ce5a8933cb6ec28f24 \ No newline at end of file diff --git a/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.png b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.png new file mode 100644 index 00000000..ab068303 Binary files /dev/null and b/static/apidocs/dir_68267d1309a1af8e8297ef4c3efbcdba_dep.png differ diff --git a/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194.html b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194.html new file mode 100644 index 00000000..887ab58a --- /dev/null +++ b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194.html @@ -0,0 +1,100 @@ + + + + + + + +Libical API Documentation: libical Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libical Directory Reference
+
+
+
+Directory dependency graph for libical:
+
+
libical
+ + + + +
+ + + + +

+Files

 icalversion.h
 
+
+ + + + diff --git a/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.map b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.map new file mode 100644 index 00000000..1adc0f5a --- /dev/null +++ b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.map @@ -0,0 +1,4 @@ + + + + diff --git a/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.md5 b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.md5 new file mode 100644 index 00000000..342faff0 --- /dev/null +++ b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.md5 @@ -0,0 +1 @@ +0678ce64fec90018caddd9fa4aa621a0 \ No newline at end of file diff --git a/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.png b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.png new file mode 100644 index 00000000..fc4e9aeb Binary files /dev/null and b/static/apidocs/dir_8e427daf5a9f830cf32cf5e679910194_dep.png differ diff --git a/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9.html b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9.html new file mode 100644 index 00000000..5877714b --- /dev/null +++ b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9.html @@ -0,0 +1,182 @@ + + + + + + + +Libical API Documentation: libical Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libical Directory Reference
+
+
+
+Directory dependency graph for libical:
+
+
libical
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

 astime.h
 contains definitions of structures used for time calculations.
 
 icalarray.h
 An array of arbitrarily-sized elements which grows dynamically as elements are added.
 
 icalattach.h
 A set of functions to handle iCal attachments.
 
 icalattachimpl.h
 
 icalcomponent.h
 
 icalduration.h
 Methods for working with durations in iCal.
 
 icalenums.h
 
 icalerror.h
 Error handling for libical.
 
 icallangbind.h
 
 icalmemory.h
 Common memory management routines.
 
 icalmime.h
 
 icalparameter.h
 
 icalparameter_cxx.h
 Definition of C++ Wrapper for icalparameter.c.
 
 icalparameterimpl.h
 
 icalparser.h
 Line-oriented parsing.
 
 icalperiod.h
 Functions for working with iCal periods (of time).
 
 icalproperty.h
 
 icalproperty_cxx.h
 Definition of C++ Wrapper for icalproperty.c.
 
 icalproperty_p.h
 
 icalrecur.h
 Routines for dealing with recurring time.
 
 icalrestriction.h
 Functions to check if an icalcomponent meets the restrictions imposed by the standard.
 
 icaltime.h
 struct icaltimetype is a pseudo-object that abstracts time handling.
 
 icaltimezone.h
 Timezone handling routines.
 
 icaltimezoneimpl.h
 
 icaltypes.h
 
 icaltz-util.h
 
 icalvalue.h
 
 icalvalue_cxx.h
 
 icalvalueimpl.h
 
 icptrholder_cxx.h
 C++ template classes for managing C++ pointers returned by VComponent::get_..._component, VComponent::get_..._property, ICalProperty::get_..._value.
 
 libical_ical_export.h
 
 pvl.h
 
 sspm.h
 
 vcomponent_cxx.h
 C++ classes for the icalcomponent wrapper (VToDo VEvent, etc..).
 
+
+ + + + diff --git a/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.map b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.map new file mode 100644 index 00000000..7eabf082 --- /dev/null +++ b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.map @@ -0,0 +1,4 @@ + + + + diff --git a/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.md5 b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.md5 new file mode 100644 index 00000000..e2f150a5 --- /dev/null +++ b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.md5 @@ -0,0 +1 @@ +2b4eb5564e05461a576018c28416904f \ No newline at end of file diff --git a/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.png b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.png new file mode 100644 index 00000000..fc4e9aeb Binary files /dev/null and b/static/apidocs/dir_b7a0ea939f6e83384f3c571d31a84be9_dep.png differ diff --git a/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20.html b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20.html new file mode 100644 index 00000000..631815b8 --- /dev/null +++ b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20.html @@ -0,0 +1,144 @@ + + + + + + + +Libical API Documentation: libicalss Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libicalss Directory Reference
+
+
+
+Directory dependency graph for libicalss:
+
+
libicalss
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

 icalbdbset.h
 
 icalbdbset_cxx.h
 Definition of C++ Wrapper for icalbdbset.c.
 
 icalbdbsetimpl.h
 
 icalcalendar.h
 Routines for storing calendar data in a file system.
 
 icalclassify.h
 
 icalcluster.h
 
 icalclusterimpl.h
 
 icaldirset.h
 icaldirset manages a database of ical components and offers interfaces for reading, writing and searching for components.
 
 icaldirsetimpl.h
 
 icalfileset.h
 
 icalfilesetimpl.h
 
 icalgauge.h
 Routines implementing a filter for ical components.
 
 icalgaugeimpl.h
 
 icalmessage.h
 
 icalset.h
 
 icalspanlist.h
 Code that supports collections of free/busy spans of time.
 
 icalspanlist_cxx.h
 C++ class wrapping the icalspanlist data structure.
 
 icalssyacc.h
 
 libical_icalss_export.h
 
+
+ + + + diff --git a/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.map b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.map new file mode 100644 index 00000000..cb2a02f9 --- /dev/null +++ b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.map @@ -0,0 +1,6 @@ + + + + + + diff --git a/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.md5 b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.md5 new file mode 100644 index 00000000..91bff250 --- /dev/null +++ b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.md5 @@ -0,0 +1 @@ +c0d375dacc326b40be8bc33728c5aff1 \ No newline at end of file diff --git a/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.png b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.png new file mode 100644 index 00000000..8edf35bf Binary files /dev/null and b/static/apidocs/dir_e5788c73bf8d77f47d4a3002d26bfd20_dep.png differ diff --git a/static/apidocs/dir_e68e8157741866f444e17edd764ebbae.html b/static/apidocs/dir_e68e8157741866f444e17edd764ebbae.html new file mode 100644 index 00000000..da09e488 --- /dev/null +++ b/static/apidocs/dir_e68e8157741866f444e17edd764ebbae.html @@ -0,0 +1,85 @@ + + + + + + + +Libical API Documentation: doc Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
doc Directory Reference
+
+
+
+ + + + diff --git a/static/apidocs/doc.svg b/static/apidocs/doc.svg new file mode 100644 index 00000000..0b928a53 --- /dev/null +++ b/static/apidocs/doc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/static/apidocs/docd.svg b/static/apidocs/docd.svg new file mode 100644 index 00000000..ac18b275 --- /dev/null +++ b/static/apidocs/docd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/static/apidocs/doxygen.css b/static/apidocs/doxygen.css new file mode 100644 index 00000000..0caa19b2 --- /dev/null +++ b/static/apidocs/doxygen.css @@ -0,0 +1,2017 @@ +/* The standard CSS for doxygen 1.9.7*/ + +html { +/* page base colors */ +--page-background-color: white; +--page-foreground-color: black; +--page-link-color: #3D578C; +--page-visited-link-color: #4665A2; + +/* index */ +--index-odd-item-bg-color: #F8F9FC; +--index-even-item-bg-color: white; +--index-header-color: black; +--index-separator-color: #A0A0A0; + +/* header */ +--header-background-color: #F9FAFC; +--header-separator-color: #C4CFE5; +--header-gradient-image: url('nav_h.png'); +--group-header-separator-color: #879ECB; +--group-header-color: #354C7B; +--inherit-header-color: gray; + +--footer-foreground-color: #2A3D61; +--footer-logo-width: 104px; +--citation-label-color: #334975; +--glow-color: cyan; + +--title-background-color: white; +--title-separator-color: #5373B4; +--directory-separator-color: #9CAFD4; +--separator-color: #4A6AAA; + +--blockquote-background-color: #F7F8FB; +--blockquote-border-color: #9CAFD4; + +--scrollbar-thumb-color: #9CAFD4; +--scrollbar-background-color: #F9FAFC; + +--icon-background-color: #728DC1; +--icon-foreground-color: white; +--icon-doc-image: url('doc.svg'); +--icon-folder-open-image: url('folderopen.svg'); +--icon-folder-closed-image: url('folderclosed.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #F9FAFC; +--memdecl-separator-color: #DEE4F0; +--memdecl-foreground-color: #555; +--memdecl-template-color: #4665A2; + +/* detailed member list */ +--memdef-border-color: #A8B8D9; +--memdef-title-background-color: #E2E8F2; +--memdef-title-gradient-image: url('nav_f.png'); +--memdef-proto-background-color: #DFE5F1; +--memdef-proto-text-color: #253555; +--memdef-proto-text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--memdef-doc-background-color: white; +--memdef-param-name-color: #602020; +--memdef-template-color: #4665A2; + +/* tables */ +--table-cell-border-color: #2D4068; +--table-header-background-color: #374F7F; +--table-header-foreground-color: #FFFFFF; + +/* labels */ +--label-background-color: #728DC1; +--label-left-top-border-color: #5373B4; +--label-right-bottom-border-color: #C4CFE5; +--label-foreground-color: white; + +/** navigation bar/tree/menu */ +--nav-background-color: #F9FAFC; +--nav-foreground-color: #364D7C; +--nav-gradient-image: url('tab_b.png'); +--nav-gradient-hover-image: url('tab_h.png'); +--nav-gradient-active-image: url('tab_a.png'); +--nav-gradient-active-image-parent: url("../tab_a.png"); +--nav-separator-image: url('tab_s.png'); +--nav-breadcrumb-image: url('bc_s.png'); +--nav-breadcrumb-border-color: #C2CDE4; +--nav-splitbar-image: url('splitbar.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #283A5D; +--nav-text-hover-color: white; +--nav-text-active-color: white; +--nav-text-normal-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #364D7C; +--nav-menu-background-color: white; +--nav-menu-foreground-color: #555555; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.5); +--nav-arrow-color: #9CAFD4; +--nav-arrow-selected-color: #9CAFD4; + +/* table of contents */ +--toc-background-color: #F4F6FA; +--toc-border-color: #D8DFEE; +--toc-header-color: #4665A2; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: white; +--search-foreground-color: #909090; +--search-magnification-image: url('mag.svg'); +--search-magnification-select-image: url('mag_sel.svg'); +--search-active-color: black; +--search-filter-background-color: #F9FAFC; +--search-filter-foreground-color: black; +--search-filter-border-color: #90A5CE; +--search-filter-highlight-text-color: white; +--search-filter-highlight-bg-color: #3D578C; +--search-results-foreground-color: #425E97; +--search-results-background-color: #EEF1F7; +--search-results-border-color: black; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #555; + +/** code fragments */ +--code-keyword-color: #008000; +--code-type-keyword-color: #604020; +--code-flow-keyword-color: #E08000; +--code-comment-color: #800000; +--code-preprocessor-color: #806020; +--code-string-literal-color: #002080; +--code-char-literal-color: #008080; +--code-xml-cdata-color: black; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #000000; +--code-vhdl-keyword-color: #700070; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #4665A2; +--code-external-link-color: #4665A2; +--fragment-foreground-color: black; +--fragment-background-color: #FBFCFD; +--fragment-border-color: #C4CFE5; +--fragment-lineno-border-color: #00FF00; +--fragment-lineno-background-color: #E8E8E8; +--fragment-lineno-foreground-color: black; +--fragment-lineno-link-fg-color: #4665A2; +--fragment-lineno-link-bg-color: #D8D8D8; +--fragment-lineno-link-hover-fg-color: #4665A2; +--fragment-lineno-link-hover-bg-color: #C8C8C8; +--tooltip-foreground-color: black; +--tooltip-background-color: white; +--tooltip-border-color: gray; +--tooltip-doc-color: grey; +--tooltip-declaration-color: #006318; +--tooltip-link-color: #4665A2; +--tooltip-shadow: 1px 1px 7px gray; + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +} + +@media (prefers-color-scheme: dark) { + html:not(.dark-mode) { + color-scheme: dark; + +/* page base colors */ +--page-background-color: black; +--page-foreground-color: #C9D1D9; +--page-link-color: #90A5CE; +--page-visited-link-color: #A3B4D7; + +/* index */ +--index-odd-item-bg-color: #0B101A; +--index-even-item-bg-color: black; +--index-header-color: #C4CFE5; +--index-separator-color: #334975; + +/* header */ +--header-background-color: #070B11; +--header-separator-color: #141C2E; +--header-gradient-image: url('nav_hd.png'); +--group-header-separator-color: #283A5D; +--group-header-color: #90A5CE; +--inherit-header-color: #A0A0A0; + +--footer-foreground-color: #5B7AB7; +--footer-logo-width: 60px; +--citation-label-color: #90A5CE; +--glow-color: cyan; + +--title-background-color: #090D16; +--title-separator-color: #354C79; +--directory-separator-color: #283A5D; +--separator-color: #283A5D; + +--blockquote-background-color: #101826; +--blockquote-border-color: #283A5D; + +--scrollbar-thumb-color: #283A5D; +--scrollbar-background-color: #070B11; + +--icon-background-color: #334975; +--icon-foreground-color: #C4CFE5; +--icon-doc-image: url('docd.svg'); +--icon-folder-open-image: url('folderopend.svg'); +--icon-folder-closed-image: url('folderclosedd.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #0B101A; +--memdecl-separator-color: #2C3F65; +--memdecl-foreground-color: #BBB; +--memdecl-template-color: #7C95C6; + +/* detailed member list */ +--memdef-border-color: #233250; +--memdef-title-background-color: #1B2840; +--memdef-title-gradient-image: url('nav_fd.png'); +--memdef-proto-background-color: #19243A; +--memdef-proto-text-color: #9DB0D4; +--memdef-proto-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9); +--memdef-doc-background-color: black; +--memdef-param-name-color: #D28757; +--memdef-template-color: #7C95C6; + +/* tables */ +--table-cell-border-color: #283A5D; +--table-header-background-color: #283A5D; +--table-header-foreground-color: #C4CFE5; + +/* labels */ +--label-background-color: #354C7B; +--label-left-top-border-color: #4665A2; +--label-right-bottom-border-color: #283A5D; +--label-foreground-color: #CCCCCC; + +/** navigation bar/tree/menu */ +--nav-background-color: #101826; +--nav-foreground-color: #364D7C; +--nav-gradient-image: url('tab_bd.png'); +--nav-gradient-hover-image: url('tab_hd.png'); +--nav-gradient-active-image: url('tab_ad.png'); +--nav-gradient-active-image-parent: url("../tab_ad.png"); +--nav-separator-image: url('tab_sd.png'); +--nav-breadcrumb-image: url('bc_sd.png'); +--nav-breadcrumb-border-color: #2A3D61; +--nav-splitbar-image: url('splitbard.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #B6C4DF; +--nav-text-hover-color: #DCE2EF; +--nav-text-active-color: #DCE2EF; +--nav-text-normal-shadow: 0px 1px 1px black; +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #B6C4DF; +--nav-menu-background-color: #05070C; +--nav-menu-foreground-color: #BBBBBB; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.2); +--nav-arrow-color: #334975; +--nav-arrow-selected-color: #90A5CE; + +/* table of contents */ +--toc-background-color: #151E30; +--toc-border-color: #202E4A; +--toc-header-color: #A3B4D7; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: black; +--search-foreground-color: #C5C5C5; +--search-magnification-image: url('mag_d.svg'); +--search-magnification-select-image: url('mag_seld.svg'); +--search-active-color: #C5C5C5; +--search-filter-background-color: #101826; +--search-filter-foreground-color: #90A5CE; +--search-filter-border-color: #7C95C6; +--search-filter-highlight-text-color: #BCC9E2; +--search-filter-highlight-bg-color: #283A5D; +--search-results-background-color: #101826; +--search-results-foreground-color: #90A5CE; +--search-results-border-color: #7C95C6; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #2F436C; + +/** code fragments */ +--code-keyword-color: #CC99CD; +--code-type-keyword-color: #AB99CD; +--code-flow-keyword-color: #E08000; +--code-comment-color: #717790; +--code-preprocessor-color: #65CABE; +--code-string-literal-color: #7EC699; +--code-char-literal-color: #00E0F0; +--code-xml-cdata-color: #C9D1D9; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #000000; +--code-vhdl-keyword-color: #700070; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #79C0FF; +--code-external-link-color: #79C0FF; +--fragment-foreground-color: #C9D1D9; +--fragment-background-color: black; +--fragment-border-color: #30363D; +--fragment-lineno-border-color: #30363D; +--fragment-lineno-background-color: black; +--fragment-lineno-foreground-color: #6E7681; +--fragment-lineno-link-fg-color: #6E7681; +--fragment-lineno-link-bg-color: #303030; +--fragment-lineno-link-hover-fg-color: #8E96A1; +--fragment-lineno-link-hover-bg-color: #505050; +--tooltip-foreground-color: #C9D1D9; +--tooltip-background-color: #202020; +--tooltip-border-color: #C9D1D9; +--tooltip-doc-color: #D9E1E9; +--tooltip-declaration-color: #20C348; +--tooltip-link-color: #79C0FF; +--tooltip-shadow: none; + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +}} +body { + background-color: var(--page-background-color); + color: var(--page-foreground-color); +} + +body, table, div, p, dl { + font-weight: 400; + font-size: 14px; + font-family: var(--font-family-normal); + line-height: 22px; +} + +/* @group Heading Levels */ + +.title { + font-weight: 400; + font-size: 14px; + font-family: var(--font-family-normal); + line-height: 28px; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h1.groupheader { + font-size: 150%; +} + +h2.groupheader { + border-bottom: 1px solid var(--group-header-separator-color); + color: var(--group-header-color); + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px var(--glow-color); +} + +dt { + font-weight: bold; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.navtab { + padding-right: 15px; + text-align: right; + line-height: 110%; +} + +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL { + background-image: var(--nav-gradient-active-image); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: var(--index-separator-color); +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: var(--index-header-color); +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.even { + background-color: var(--index-even-item-bg-color); +} + +.classindex dl.odd { + background-color: var(--index-odd-item-bg-color); +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + +/* @group Link Styling */ + +a { + color: var(--page-link-color); + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: var(--page-visited-link-color); +} + +a:hover { + text-decoration: underline; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: var(--code-link-color); +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: var(--code-external-link-color); +} + +a.code.hl_class { /* style for links to class names in code snippets */ } +a.code.hl_struct { /* style for links to struct names in code snippets */ } +a.code.hl_union { /* style for links to union names in code snippets */ } +a.code.hl_interface { /* style for links to interface names in code snippets */ } +a.code.hl_protocol { /* style for links to protocol names in code snippets */ } +a.code.hl_category { /* style for links to category names in code snippets */ } +a.code.hl_exception { /* style for links to exception names in code snippets */ } +a.code.hl_service { /* style for links to service names in code snippets */ } +a.code.hl_singleton { /* style for links to singleton names in code snippets */ } +a.code.hl_concept { /* style for links to concept names in code snippets */ } +a.code.hl_namespace { /* style for links to namespace names in code snippets */ } +a.code.hl_package { /* style for links to package names in code snippets */ } +a.code.hl_define { /* style for links to macro names in code snippets */ } +a.code.hl_function { /* style for links to function names in code snippets */ } +a.code.hl_variable { /* style for links to variable names in code snippets */ } +a.code.hl_typedef { /* style for links to typedef names in code snippets */ } +a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ } +a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ } +a.code.hl_signal { /* style for links to Qt signal names in code snippets */ } +a.code.hl_slot { /* style for links to Qt slot names in code snippets */ } +a.code.hl_friend { /* style for links to friend names in code snippets */ } +a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ } +a.code.hl_property { /* style for links to property names in code snippets */ } +a.code.hl_event { /* style for links to event names in code snippets */ } +a.code.hl_sequence { /* style for links to sequence names in code snippets */ } +a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ } + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: visible; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; + list-style-type: none; +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; +} + +pre.fragment { + border: 1px solid var(--fragment-border-color); + background-color: var(--fragment-background-color); + color: var(--fragment-foreground-color); + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: var(--font-family-monospace); + font-size: 105%; +} + +div.fragment { + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + color: var(--fragment-foreground-color); + background-color: var(--fragment-background-color); + border: 1px solid var(--fragment-border-color); +} + +div.line { + font-family: var(--font-family-monospace); + font-size: 13px; + min-height: 13px; + line-height: 1.2; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: var(--glow-color); + box-shadow: 0 0 10px var(--glow-color); +} + + +span.lineno { + padding-right: 4px; + margin-right: 9px; + text-align: right; + border-right: 2px solid var(--fragment-lineno-border-color); + color: var(--fragment-lineno-foreground-color); + background-color: var(--fragment-lineno-background-color); + white-space: pre; +} +span.lineno a, span.lineno a:visited { + color: var(--fragment-lineno-link-fg-color); + background-color: var(--fragment-lineno-link-bg-color); +} + +span.lineno a:hover { + color: var(--fragment-lineno-link-hover-fg-color); + background-color: var(--fragment-lineno-link-hover-bg-color); +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + color: var(--page-foreground-color); + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +p.formulaDsp { + text-align: center; +} + +img.dark-mode-visible { + display: none; +} +img.light-mode-visible { + display: none; +} + +img.formulaDsp { + +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; + width: var(--footer-logo-width); +} + +.compoundTemplParams { + color: var(--memdecl-template-color); + font-size: 80%; + line-height: 120%; +} + +/* @group Code Colorization */ + +span.keyword { + color: var(--code-keyword-color); +} + +span.keywordtype { + color: var(--code-type-keyword-color); +} + +span.keywordflow { + color: var(--code-flow-keyword-color); +} + +span.comment { + color: var(--code-comment-color); +} + +span.preprocessor { + color: var(--code-preprocessor-color); +} + +span.stringliteral { + color: var(--code-string-literal-color); +} + +span.charliteral { + color: var(--code-char-literal-color); +} + +span.xmlcdata { + color: var(--code-xml-cdata-color); +} + +span.vhdldigit { + color: var(--code-vhdl-digit-color); +} + +span.vhdlchar { + color: var(--code-vhdl-char-color); +} + +span.vhdlkeyword { + color: var(--code-vhdl-keyword-color); +} + +span.vhdllogic { + color: var(--code-vhdl-logic-color); +} + +blockquote { + background-color: var(--blockquote-background-color); + border-left: 2px solid var(--blockquote-border-color); + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid var(--table-cell-border-color); +} + +th.dirtab { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid var(--separator-color); +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: var(--glow-color); + box-shadow: 0 0 15px var(--glow-color); +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: var(--memdecl-background-color); + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: var(--memdecl-foreground-color); +} + +.memSeparator { + border-bottom: 1px solid var(--memdecl-separator-color); + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: var(--memdecl-template-color); + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: var(--memdef-title-gradient-image); + background-repeat: repeat-x; + background-color: var(--memdef-title-background-color); + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: var(--memdef-template-color); + font-weight: normal; + margin-left: 9px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px var(--glow-color); +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + padding: 6px 0px 6px 0px; + color: var(--memdef-proto-text-color); + font-weight: bold; + text-shadow: var(--memdef-proto-text-shadow); + background-color: var(--memdef-proto-background-color); + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; +} + +.overload { + font-family: var(--font-family-monospace); + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); + padding: 6px 10px 2px 10px; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: var(--memdef-doc-background-color); + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: var(--memdef-param-name-color); + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: var(--font-family-monospace); + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: var(--label-background-color); + border-top:1px solid var(--label-left-top-border-color); + border-left:1px solid var(--label-left-top-border-color); + border-right:1px solid var(--label-right-bottom-border-color); + border-bottom:1px solid var(--label-right-bottom-border-color); + text-shadow: none; + color: var(--label-foreground-color); + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid var(--directory-separator-color); + border-bottom: 1px solid var(--directory-separator-color); + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.odd { + padding-left: 6px; + background-color: var(--index-odd-item-bg-color); +} + +.directory tr.even { + padding-left: 6px; + background-color: var(--index-even-item-bg-color); +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: var(--page-link-color); +} + +.arrow { + color: var(--nav-arrow-color); + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: var(--font-family-icon); + line-height: normal; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: var(--icon-background-color); + color: var(--icon-foreground-color); + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-folder-open-image); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-folder-closed-image); + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:var(--icon-doc-image); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: var(--footer-foreground-color); +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid var(--table-cell-border-color); + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + margin-bottom: 10px; + border: 1px solid var(--memdef-border-color); + border-spacing: 0px; + border-radius: 4px; + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid var(--memdef-border-color); + border-bottom: 1px solid var(--memdef-border-color); + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid var(--memdef-border-color); +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image: var(--memdef-title-gradient-image); + background-repeat:repeat-x; + background-color: var(--memdef-title-background-color); + font-size: 90%; + color: var(--memdef-proto-text-color); + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid var(--memdef-border-color); +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: var(--nav-gradient-image); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image: var(--nav-gradient-image); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:var(--nav-text-normal-color); + border:solid 1px var(--nav-breadcrumb-border-color); + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:var(--nav-breadcrumb-image); + background-repeat:no-repeat; + background-position:right; + color: var(--nav-foreground-color); +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: var(--nav-text-normal-color); + font-family: var(--font-family-nav); + text-shadow: var(--nav-text-normal-shadow); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color: var(--footer-foreground-color); + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image: var(--header-gradient-image); + background-repeat:repeat-x; + background-color: var(--header-background-color); + margin: 0px; + border-bottom: 1px solid var(--header-separator-color); +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */ +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectrow +{ + height: 56px; +} + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; + padding-left: 0.5em; +} + +#projectname +{ + font-size: 200%; + font-family: var(--font-family-title); + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font-size: 90%; + font-family: var(--font-family-title); + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font-size: 50%; + font-family: 50% var(--font-family-title); + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid var(--title-separator-color); + background-color: var(--title-background-color); +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:var(--citation-label-color); + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: var(--toc-background-color); + border: 1px solid var(--toc-border-color); + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +div.toc li { + background: var(--toc-down-arrow-image) no-repeat scroll 0 5px transparent; + font: 10px/1.2 var(--font-family-toc); + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 var(--font-family-toc); + color: var(--toc-header-color); + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 15px; +} + +div.toc li.level4 { + margin-left: 15px; +} + +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +span.obfuscator { + display: none; +} + +.inherit_header { + font-weight: bold; + color: var(--inherit-header-color); + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + /*white-space: nowrap;*/ + color: var(--tooltip-foreground-color); + background-color: var(--tooltip-background-color); + border: 1px solid var(--tooltip-border-color); + border-radius: 4px 4px 4px 4px; + box-shadow: var(--tooltip-shadow); + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: var(--tooltip-doc-color); + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip a { + color: var(--tooltip-link-color); +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: var(--tooltip-declaration-color); +} + +#powerTip div { + margin: 0px; + padding: 0px; + font-size: 12px; + font-family: var(--font-family-tooltip); + line-height: 16px; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: var(--tooltip-background-color); + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before, #powerTip.ne:before, #powerTip.nw:before { + border-top-color: var(--tooltip-border-color); + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: var(--tooltip-background-color); + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: var(--tooltip-border-color); + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: var(--tooltip-border-color); + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: var(--tooltip-border-color); + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: var(--tooltip-border-color); + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: var(--tooltip-border-color); + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid var(--table-cell-border-color); + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +tt, code, kbd, samp +{ + display: inline-block; +} +/* @end */ + +u { + text-decoration: underline; +} + +details>summary { + list-style-type: none; +} + +details > summary::-webkit-details-marker { + display: none; +} + +details>summary::before { + content: "\25ba"; + padding-right:4px; + font-size: 80%; +} + +details[open]>summary::before { + content: "\25bc"; + padding-right:4px; + font-size: 80%; +} + +body { + scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-background-color); +} + +::-webkit-scrollbar { + background-color: var(--scrollbar-background-color); + height: 12px; + width: 12px; +} +::-webkit-scrollbar-thumb { + border-radius: 6px; + box-shadow: inset 0 0 12px 12px var(--scrollbar-thumb-color); + border: solid 2px transparent; +} +::-webkit-scrollbar-corner { + background-color: var(--scrollbar-background-color); +} + diff --git a/static/apidocs/doxygen.svg b/static/apidocs/doxygen.svg new file mode 100644 index 00000000..79a76354 --- /dev/null +++ b/static/apidocs/doxygen.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/apidocs/dynsections.js b/static/apidocs/dynsections.js new file mode 100644 index 00000000..f579fbf3 --- /dev/null +++ b/static/apidocs/dynsections.js @@ -0,0 +1,123 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); + $('table.directory tr'). + removeClass('odd').filter(':visible:odd').addClass('odd'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + + +Libical API Documentation: File List + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+
[detail level 123]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  src
  libical
 icalversion.h
  src
  libical
 astime.hDefinitions of structures used for time calculations
 icalarray.hAn array of arbitrarily-sized elements which grows dynamically as elements are added
 icalattach.hA set of functions to handle iCal attachments
 icalattachimpl.h
 icalcomponent.h
 icalduration.hMethods for working with durations in iCal
 icalenums.h
 icalerror.hError handling for libical
 icallangbind.h
 icalmemory.hCommon memory management routines
 icalmime.h
 icalparameter.h
 icalparameter_cxx.hDefinition of C++ Wrapper for icalparameter.c
 icalparameterimpl.h
 icalparser.hLine-oriented parsing
 icalperiod.hFunctions for working with iCal periods (of time)
 icalproperty.h
 icalproperty_cxx.hDefinition of C++ Wrapper for icalproperty.c
 icalproperty_p.h
 icalrecur.hRoutines for dealing with recurring time
 icalrestriction.hFunctions to check if an icalcomponent meets the restrictions imposed by the standard
 icaltime.hStruct icaltimetype is a pseudo-object that abstracts time handling
 icaltimezone.hTimezone handling routines
 icaltimezoneimpl.h
 icaltypes.h
 icaltz-util.h
 icalvalue.h
 icalvalue_cxx.h
 icalvalueimpl.h
 icptrholder_cxx.hC++ template classes for managing C++ pointers returned by VComponent::get_..._component, VComponent::get_..._property, ICalProperty::get_..._value
 libical_ical_export.h
 pvl.h
 sspm.h
 vcomponent_cxx.hC++ classes for the icalcomponent wrapper (VToDo VEvent, etc..)
  libicalss
 icalbdbset.h
 icalbdbset_cxx.hDefinition of C++ Wrapper for icalbdbset.c
 icalbdbsetimpl.h
 icalcalendar.hRoutines for storing calendar data in a file system
 icalclassify.h
 icalcluster.h
 icalclusterimpl.h
 icaldirset.hIcaldirset manages a database of ical components and offers interfaces for reading, writing and searching for components
 icaldirsetimpl.h
 icalfileset.h
 icalfilesetimpl.h
 icalgauge.hRoutines implementing a filter for ical components
 icalgaugeimpl.h
 icalmessage.h
 icalset.h
 icalspanlist.hCode that supports collections of free/busy spans of time
 icalspanlist_cxx.hC++ class wrapping the icalspanlist data structure
 icalssyacc.h
 libical_icalss_export.h
  libicalvcal
 icalvcal.h
 libical_vcal_export.h
 vcaltmp.h
 vcc.h
 vobject.h
+
+
+ + + + diff --git a/static/apidocs/folderclosed.svg b/static/apidocs/folderclosed.svg new file mode 100644 index 00000000..b04bed2e --- /dev/null +++ b/static/apidocs/folderclosed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/static/apidocs/folderclosedd.svg b/static/apidocs/folderclosedd.svg new file mode 100644 index 00000000..52f0166a --- /dev/null +++ b/static/apidocs/folderclosedd.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/static/apidocs/folderopen.svg b/static/apidocs/folderopen.svg new file mode 100644 index 00000000..f6896dd2 --- /dev/null +++ b/static/apidocs/folderopen.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/static/apidocs/folderopend.svg b/static/apidocs/folderopend.svg new file mode 100644 index 00000000..2d1f06e7 --- /dev/null +++ b/static/apidocs/folderopend.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/static/apidocs/functions.html b/static/apidocs/functions.html new file mode 100644 index 00000000..70ebdfa1 --- /dev/null +++ b/static/apidocs/functions.html @@ -0,0 +1,258 @@ + + + + + + + +Libical API Documentation: Data Fields + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
+ +

- a -

+ + +

- b -

+ + +

- c -

+ + +

- d -

+ + +

- e -

+ + +

- f -

+ + +

- g -

+ + +

- h -

+ + +

- i -

+ + +

- j -

+ + +

- l -

+ + +

- m -

+ + +

- n -

+ + +

- o -

+ + +

- p -

+ + +

- r -

+ + +

- s -

+ + +

- t -

+ + +

- u -

+ + +

- w -

+ + +

- y -

+ + +

- z -

+ + +

- ~ -

+
+ + + + diff --git a/static/apidocs/functions_func.html b/static/apidocs/functions_func.html new file mode 100644 index 00000000..7820db42 --- /dev/null +++ b/static/apidocs/functions_func.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: Data Fields - Functions + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the struct/union documentation for each field:
+
+ + + + diff --git a/static/apidocs/functions_vars.html b/static/apidocs/functions_vars.html new file mode 100644 index 00000000..23a1253b --- /dev/null +++ b/static/apidocs/functions_vars.html @@ -0,0 +1,224 @@ + + + + + + + +Libical API Documentation: Data Fields - Variables + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented variables with links to the struct/union documentation for each field:
+ +

- b -

+ + +

- c -

+ + +

- d -

+ + +

- e -

+ + +

- f -

+ + +

- g -

+ + +

- h -

+ + +

- i -

+ + +

- j -

+ + +

- l -

+ + +

- m -

+ + +

- n -

+ + +

- o -

+ + +

- p -

+ + +

- s -

+ + +

- t -

+ + +

- u -

+ + +

- w -

+ + +

- y -

+ + +

- z -

+
+ + + + diff --git a/static/apidocs/globals.html b/static/apidocs/globals.html new file mode 100644 index 00000000..857197ea --- /dev/null +++ b/static/apidocs/globals.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- c -

+
+ + + + diff --git a/static/apidocs/globals_defs.html b/static/apidocs/globals_defs.html new file mode 100644 index 00000000..ad16de89 --- /dev/null +++ b/static/apidocs/globals_defs.html @@ -0,0 +1,90 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented macros with links to the documentation:
+
+ + + + diff --git a/static/apidocs/globals_enum.html b/static/apidocs/globals_enum.html new file mode 100644 index 00000000..a9a657eb --- /dev/null +++ b/static/apidocs/globals_enum.html @@ -0,0 +1,85 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented enums with links to the documentation:
+
+ + + + diff --git a/static/apidocs/globals_eval.html b/static/apidocs/globals_eval.html new file mode 100644 index 00000000..9a389fee --- /dev/null +++ b/static/apidocs/globals_eval.html @@ -0,0 +1,114 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented enum values with links to the documentation:
+ +

- i -

+
+ + + + diff --git a/static/apidocs/globals_f.html b/static/apidocs/globals_f.html new file mode 100644 index 00000000..ee4558d3 --- /dev/null +++ b/static/apidocs/globals_f.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- f -

+
+ + + + diff --git a/static/apidocs/globals_func.html b/static/apidocs/globals_func.html new file mode 100644 index 00000000..fdd35d99 --- /dev/null +++ b/static/apidocs/globals_func.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- c -

+
+ + + + diff --git a/static/apidocs/globals_func_f.html b/static/apidocs/globals_func_f.html new file mode 100644 index 00000000..1a6b221f --- /dev/null +++ b/static/apidocs/globals_func_f.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- f -

+
+ + + + diff --git a/static/apidocs/globals_func_g.html b/static/apidocs/globals_func_g.html new file mode 100644 index 00000000..54bfbd33 --- /dev/null +++ b/static/apidocs/globals_func_g.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- g -

+
+ + + + diff --git a/static/apidocs/globals_func_i.html b/static/apidocs/globals_func_i.html new file mode 100644 index 00000000..59f2facc --- /dev/null +++ b/static/apidocs/globals_func_i.html @@ -0,0 +1,309 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- i -

+
+ + + + diff --git a/static/apidocs/globals_func_j.html b/static/apidocs/globals_func_j.html new file mode 100644 index 00000000..15fe80df --- /dev/null +++ b/static/apidocs/globals_func_j.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- j -

+
+ + + + diff --git a/static/apidocs/globals_func_s.html b/static/apidocs/globals_func_s.html new file mode 100644 index 00000000..a4f203eb --- /dev/null +++ b/static/apidocs/globals_func_s.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions with links to the documentation:
+ +

- s -

+
+ + + + diff --git a/static/apidocs/globals_g.html b/static/apidocs/globals_g.html new file mode 100644 index 00000000..8ccd8a2a --- /dev/null +++ b/static/apidocs/globals_g.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- g -

+
+ + + + diff --git a/static/apidocs/globals_i.html b/static/apidocs/globals_i.html new file mode 100644 index 00000000..4aff5e14 --- /dev/null +++ b/static/apidocs/globals_i.html @@ -0,0 +1,362 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- i -

+
+ + + + diff --git a/static/apidocs/globals_j.html b/static/apidocs/globals_j.html new file mode 100644 index 00000000..33ced230 --- /dev/null +++ b/static/apidocs/globals_j.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- j -

+
+ + + + diff --git a/static/apidocs/globals_s.html b/static/apidocs/globals_s.html new file mode 100644 index 00000000..67076b36 --- /dev/null +++ b/static/apidocs/globals_s.html @@ -0,0 +1,83 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+ +

- s -

+
+ + + + diff --git a/static/apidocs/globals_type.html b/static/apidocs/globals_type.html new file mode 100644 index 00000000..af319ec5 --- /dev/null +++ b/static/apidocs/globals_type.html @@ -0,0 +1,86 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented typedefs with links to the documentation:
+
+ + + + diff --git a/static/apidocs/globals_vars.html b/static/apidocs/globals_vars.html new file mode 100644 index 00000000..e6d1a548 --- /dev/null +++ b/static/apidocs/globals_vars.html @@ -0,0 +1,81 @@ + + + + + + + +Libical API Documentation: Globals + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Here is a list of all documented variables with links to the documentation:
+
+ + + + diff --git a/static/apidocs/graph_legend.html b/static/apidocs/graph_legend.html new file mode 100644 index 00000000..d3a94ecc --- /dev/null +++ b/static/apidocs/graph_legend.html @@ -0,0 +1,141 @@ + + + + + + + +Libical API Documentation: Graph Legend + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Graph Legend
+
+
+

This page explains how to interpret the graphs that are generated by doxygen.

+

Consider the following example:

/*! Invisible class because of truncation */
+
class Invisible { };
+
+
/*! Truncated class, inheritance relation is hidden */
+
class Truncated : public Invisible { };
+
+
/* Class not documented with doxygen comments */
+
class Undocumented { };
+
+
/*! Class that is inherited using public inheritance */
+
class PublicBase : public Truncated { };
+
+
/*! A template class */
+
template<class T> class Templ { };
+
+
/*! Class that is inherited using protected inheritance */
+
class ProtectedBase { };
+
+
/*! Class that is inherited using private inheritance */
+
class PrivateBase { };
+
+
/*! Class that is used by the Inherited class */
+
class Used { };
+
+
/*! Super class that inherits a number of other classes */
+
class Inherited : public PublicBase,
+
protected ProtectedBase,
+
private PrivateBase,
+
public Undocumented,
+
public Templ<int>
+
{
+
private:
+
Used *m_usedClass;
+
};
+

This will result in the following graph:

+

The boxes in the above graph have the following meaning:

+ +

The arrows have the following meaning:

+ +
+ + + + diff --git a/static/apidocs/graph_legend.md5 b/static/apidocs/graph_legend.md5 new file mode 100644 index 00000000..da515da9 --- /dev/null +++ b/static/apidocs/graph_legend.md5 @@ -0,0 +1 @@ +f74606a252eb303675caf37987d0b7af \ No newline at end of file diff --git a/static/apidocs/graph_legend.png b/static/apidocs/graph_legend.png new file mode 100644 index 00000000..9193804a Binary files /dev/null and b/static/apidocs/graph_legend.png differ diff --git a/static/apidocs/hierarchy.html b/static/apidocs/hierarchy.html new file mode 100644 index 00000000..f0388d6b --- /dev/null +++ b/static/apidocs/hierarchy.html @@ -0,0 +1,188 @@ + + + + + + + +Libical API Documentation: Class Hierarchy + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Hierarchy
+
+
+
+

Go to the graphical class hierarchy

+This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 12]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 C_compat_tzids
 C_icalarray
 C_icaltimezone
 C_icaltimezonechange
 C_icalvcal_defaults
 Cbuffer_ring
 Cconversion_table_struct
 Cicalvalue_impl::data
 Cencoding_map
 Cexpand_split_map_struct
 Cfreq_map
 Cicalattach_impl
 CLibICal::ICalBDBSet
 Cicalbdbset_id
 Cicalbdbset_impl
 Cicalbdbset_options
 Cicalcalendar_impl
 Cicalclassify_map
 Cicalclassify_parts
 Cicalcluster_impl
 Cicalcompiter
 Cicalcomponent_impl
 Cicalcomponent_kind_map
 Cicaldatetimeperiodtype
 Cicaldirset_impl
 Cicaldirset_options
 CicaldurationtypeA struct representing a duration
 Cicalerror_state
 Cicalerror_string_map
 Cicalfileset_id
 Cicalfileset_impl
 Cicalfileset_optionsOptions for opening an icalfileset
 Cicalgauge_impl
 Cicalgauge_where
 Cicalgeotype
 CLibICal::ICalParameter
 Cicalparameter_impl
 Cicalparser_impl
 CicalperiodtypeStruct to represent a period in time
 CLibICal::ICalProperty
 Cicalproperty_impl
 Cicalrecur_iterator_impl
 Cicalrecur_parser
 Cicalrecurrencetype
 Cicalreqstattype
 Cicalset_impl
 Cicalsetiter
 CLibICal::ICalSpanList
 Cicalspanlist_impl
 Cicaltime_span
 Cicaltimetype
 Cicaltimezonephase
 Cicaltimezonetype
 Cicaltriggertype
 CLibICal::ICalValue
 Cicalvalue_impl
 CICPointerHolder< T >
 Cleap
 CLexBuf
 Cmajor_content_type_map
 Cmime_impl
 Cminor_content_type_map
 Cobservance
 COFile
 CPreDefProp
 Cpvl_elem_t
 Cpvl_list_t
 Crdate
 Crecur_map
 Cskip_map
 Cslg_data
 Csspm_action_map
 Csspm_buffer
 Csspm_header
 Csspm_part
 CStrItem
 Ctext_part
 Cttinfo
 Ctzinfo
 Cut_instant
 CValueItem
 CLibICal::VComponentA class wrapping the libical icalcomponent functions
 CVObject
 CVObjectIterator
 Cwd_map
 Cyy_buffer_state
 Cyy_trans_info
 Cyyalloc
 CYYSTYPE
 Czone_context
+
+
+ + + + diff --git a/static/apidocs/icalarray_8h.html b/static/apidocs/icalarray_8h.html new file mode 100644 index 00000000..a036beaa --- /dev/null +++ b/static/apidocs/icalarray_8h.html @@ -0,0 +1,508 @@ + + + + + + + +Libical API Documentation: icalarray.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalarray.h File Reference
+
+
+ +

An array of arbitrarily-sized elements which grows dynamically as elements are added. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

struct  _icalarray
 
+ + + + +

+Typedefs

+typedef struct _icalarray icalarray
 A struct representing an icalarray object.
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

void icalarray_append (icalarray *array, const void *element)
 Appends an element to an array.
 
icalarrayicalarray_copy (icalarray *array)
 Copies an existing icalarray and its elements, creating a new one.
 
void * icalarray_element_at (icalarray *array, size_t position)
 Access an array element.
 
void icalarray_free (icalarray *array)
 Frees an array object and everything that it contains.
 
icalarrayicalarray_new (size_t element_size, size_t increment_size)
 Creates a new icalarray object.
 
void icalarray_remove_element_at (icalarray *array, size_t position)
 Removes a given element from an array.
 
void icalarray_sort (icalarray *array, int(*compare)(const void *, const void *))
 Sorts the elements of an icalarray using the given comparison function.
 
+

Detailed Description

+

An array of arbitrarily-sized elements which grows dynamically as elements are added.

+

Function Documentation

+ +

◆ icalarray_append()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalarray_append (icalarrayarray,
const void * element 
)
+
+ +

Appends an element to an array.

+
Parameters
+ + + +
arrayThe array to append the element to
elementThe element to append
+
+
+

Appends the given element to the array, reallocating and expanding the array as needed.

+
Error handling
If array or element is NULL, using this function results in undefined behaviour (most likely a segfault).
+
Ownership
The element does not get consumed by the method, since it creates a copy of it
+
Usage
// create new array
+
icalarray *array = icalarray_new(sizeof(int), 1);
+
+
// append data to it
+
int data = 42;
+
icalarray_append(array, &data);
+
+
// release array
+
icalarray_free(array);
+
Definition icalarray.h:36
+
+ +
+
+ +

◆ icalarray_copy()

+ +
+
+ + + + + + + + +
icalarray * icalarray_copy (icalarrayarray)
+
+ +

Copies an existing icalarray and its elements, creating a new one.

+
Parameters
+ + +
arrayThe array to copy
+
+
+
Returns
A new array, holding all the elements of array
+

Creates a new icalarray object, copying all the existing elements from array as well as its properties (such as element_size and increment_size) over.

+
Error handling
If array is NULL, this method will return NULL. If there was an error allocating memory while creating the copy, it will set icalerrno to ICAL_ALLOCATION_ERROR.
+
Ownership
The created copy is owned by the caller of the function, and needs to be released with icalarray_free() after it's no longer being used.
+
Usage
// create new array
+
icalarray *array = icalarray_new(sizeof(int), 1);
+
+
// fill array
+
int a = 4;
+
icalarray_append(array, &a);
+
+
// create copy of array
+
icalarray *copy = icalarray_copy(array);
+
assert(*icalarray_element_at(copy, 0) == a);
+
+
// release arrays
+
icalarray_free(array);
+
icalarray_free(copy);
+
+ +
+
+ +

◆ icalarray_element_at()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void * icalarray_element_at (icalarrayarray,
size_t position 
)
+
+ +

Access an array element.

+
Parameters
+ + + +
arrayThe array object in which the element is stored
positionThe position of the element to access in the array
+
+
+
Returns
A pointer to the element inside the array
+

Accesses an array element by returning a pointer to it, given an array and a valid element position.

+
Error handling
If array is NULL, using this function results in undefined behaviour. If position is not a valid position in the array, using this function results in undefined behaviour.
+
Ownership
The element is owned by the icalarray, it must not be freed by the user.
+
Usage
// create new array
+
icalarray *array = icalarray_new(sizeof(int), 1);
+
+
// fill array
+
int a = 4;
+
icalarray_append(array, &a);
+
+
// access array element
+
int *element = icalarray_element_at(array, 0);
+
assert(element != NULL);
+
assert(*element == a);
+
+
// change array element
+
*element = 14;
+
assert(*icalarray_element(array) == 14);
+
+
// release memory
+
icalarray_free(array);
+
+ +
+
+ +

◆ icalarray_free()

+ +
+
+ + + + + + + + +
void icalarray_free (icalarrayarray)
+
+ +

Frees an array object and everything that it contains.

+
Parameters
+ + +
arrayThe array to release
+
+
+
Example
// creating an array
+
icalarray *array = icalarray_new(sizeof(int), 1);
+
+
// releasing it
+
icalarray_free(array);
+
+ +
+
+ +

◆ icalarray_new()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalarray * icalarray_new (size_t element_size,
size_t increment_size 
)
+
+ +

Creates a new icalarray object.

+
Parameters
+ + + +
element_sizeThe size of the elements to be held by the array
increment_sizeHow many extra elements worth of space to allocate on expansion
+
+
+
Returns
The new icalarray object
+
See also
icalarray_free()
+

Creates a new icalarray object. The parameter element_size determines the size of the elements that the array will hold (in bytes). The parameter increment_size determines how many extra elements to be allocated when expanding the array for performance reasons (expansions are expensive, since it involves copying all existing elements).

+
Error handling
If element_size or increment_size is not at least 1, using the icalarray object results in undefined behaviour. If there is an error while creating the object, it returns NULL and sets icalerrno to ICAL_NEWFAILED_ERROR.
+
Ownership
The returned icalarray object is owned by the caller of the function, and needs to be released properly after it's no longer needed with icalarray_free().
+
Usage
// create new array
+
icalarray *array = icalarray_new(sizeof(int), 1);
+
+
// use array
+
int a = 4;
+
icalarray_append(array, &a);
+
assert(*icalarray_element_at(array, 0) == a);
+
+
// release memory
+
icalarray_free(array);
+
+ +
+
+ +

◆ icalarray_remove_element_at()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalarray_remove_element_at (icalarrayarray,
size_t position 
)
+
+ +

Removes a given element from an array.

+
Parameters
+ + + +
arrayThe array from which to remove the element
positionThe position of the element to remove
+
+
+

Removes the element at the given position from the array.

+
Error handling
If array is NULL, using this function results in undefined behaviour. If the array is empty, using this function results in undefined behaviour. If the position is non-existent, it removes the last element.
+
Usage
// create new array
+
icalarray *array = icalarray_new(sizeof(int), 2);
+
+
// fill array
+
int data;
+
data = 4;
+
icalarray_append(array, &a);
+
data = 9;
+
icalarray_append(array, &a);
+
data = 7;
+
icalarray_append(array, &a);
+
data = 10;
+
icalarray_append(array, &a);
+
+
// check array
+
assert(*icalarray_element_at(array, 0) == 4);
+
assert(*icalarray_element_at(array, 1) == 9);
+
assert(*icalarray_element_at(array, 2) == 7);
+
assert(*icalarray_element_at(array, 3) == 10);
+
+
// remove the second element
+
icalarray_remove_element_at(array, 1);
+
+
// check array
+
assert(*icalarray_element_at(array, 0) == 4);
+
assert(*icalarray_element_at(array, 1) == 7);
+
assert(*icalarray_element_at(array, 2) == 10);
+
+
// release array
+
icalarray_free(array);
+
+ +
+
+ +

◆ icalarray_sort()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalarray_sort (icalarrayarray,
int(*)(const void *, const void *) compare 
)
+
+ +

Sorts the elements of an icalarray using the given comparison function.

+
Parameters
+ + + +
arrayThe array to sort
compareThe comparison function to use
+
+
+
Error handling
Passing NULL as either array or compare results in undefined behaviour.
+
Usage
int compare_ints(const void *a, const void *b) {
+
return *((int*)a) - *((int*)b);
+
}
+
+
int main(int argc, char *argv[]) {
+
int numbers[] = {5, 2, 7, 4, 3, 1, 0, 8, 6, 9};
+
+
icalarray *array = icalarray_new(sizeof(int), 3);
+
+
// fill array
+
for(int i = 0; i < 10; i++) {
+
icalarray_append(array, &numbers[i]);
+
}
+
+
// sort array
+
icalarray_sort(array, compare_ints);
+
+
// print numbers
+
for(int i = 0; i < 10; i++) {
+
printf("%i\n", *((int*)icalarray_element_at(array, i)));
+
}
+
+
return 0;
+
}
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalarray_8h_source.html b/static/apidocs/icalarray_8h_source.html new file mode 100644 index 00000000..059f5974 --- /dev/null +++ b/static/apidocs/icalarray_8h_source.html @@ -0,0 +1,142 @@ + + + + + + + +Libical API Documentation: icalarray.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalarray.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalarray.h
+
3 CREATOR: Damon Chaplin 07 March 2001
+
4
+
5 (C) COPYRIGHT 2001, Ximian, Inc.
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
25#ifndef ICALARRAY_H
+
26#define ICALARRAY_H
+
27
+
28#include "libical_ical_export.h"
+
29
+
34typedef struct _icalarray icalarray;
+ +
36{
+
37 size_t element_size;
+
38 size_t increment_size;
+
39 size_t num_elements;
+
40 size_t space_allocated;
+
41 void **chunks;
+
42};
+
43
+
81LIBICAL_ICAL_EXPORT icalarray *icalarray_new(size_t element_size, size_t increment_size);
+
82
+
119LIBICAL_ICAL_EXPORT icalarray *icalarray_copy(icalarray *array);
+
120
+
134LIBICAL_ICAL_EXPORT void icalarray_free(icalarray *array);
+
135
+
165LIBICAL_ICAL_EXPORT void icalarray_append(icalarray *array, const void *element);
+
166
+
213LIBICAL_ICAL_EXPORT void icalarray_remove_element_at(icalarray *array, size_t position);
+
214
+
255LIBICAL_ICAL_EXPORT void *icalarray_element_at(icalarray *array, size_t position);
+
256
+
294LIBICAL_ICAL_EXPORT void icalarray_sort(icalarray *array,
+
295 int (*compare) (const void *, const void *));
+
296
+
297#endif /* ICALARRAY_H */
+
void * icalarray_element_at(icalarray *array, size_t position)
Access an array element.
Definition icalarray.c:117
+
icalarray * icalarray_copy(icalarray *array)
Copies an existing icalarray and its elements, creating a new one.
Definition icalarray.c:60
+
void icalarray_free(icalarray *array)
Frees an array object and everything that it contains.
Definition icalarray.c:90
+
void icalarray_sort(icalarray *array, int(*compare)(const void *, const void *))
Sorts the elements of an icalarray using the given comparison function.
Definition icalarray.c:136
+
void icalarray_append(icalarray *array, const void *element)
Appends an element to an array.
Definition icalarray.c:105
+
icalarray * icalarray_new(size_t element_size, size_t increment_size)
Creates a new icalarray object.
Definition icalarray.c:31
+
void icalarray_remove_element_at(icalarray *array, size_t position)
Removes a given element from an array.
Definition icalarray.c:125
+
Definition icalarray.h:36
+
+ + + + diff --git a/static/apidocs/icalattach_8h.html b/static/apidocs/icalattach_8h.html new file mode 100644 index 00000000..7e04c6e3 --- /dev/null +++ b/static/apidocs/icalattach_8h.html @@ -0,0 +1,432 @@ + + + + + + + +Libical API Documentation: icalattach.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalattach.h File Reference
+
+
+ +

A set of functions to handle iCal attachments. +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef struct icalattach_impl icalattach
 An iCal attach object representing a link to a document object.
 
typedef void(* icalattach_free_fn_t) (char *data, void *user_data)
 Function to be called to free the data of an icalattach object.
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

unsigned char * icalattach_get_data (icalattach *attach)
 Returns the data of the icalattach object.
 
int icalattach_get_is_url (icalattach *attach)
 Determines if attach is an URL.
 
const char * icalattach_get_url (icalattach *attach)
 Returns the URL of the icalattach object.
 
icalattachicalattach_new_from_data (const char *data, icalattach_free_fn_t free_fn, void *free_fn_data)
 Creates new icalattach object from data.
 
icalattachicalattach_new_from_url (const char *url)
 Creates new icalattach object from a URL.
 
void icalattach_ref (icalattach *attach)
 Increments reference count of the icalattach.
 
void icalattach_unref (icalattach *attach)
 Decrements reference count of the icalattach.
 
+

Detailed Description

+

A set of functions to handle iCal attachments.

+

With the ATTACH property, the iCal standard defines a way to associate a document object with a calendar component.

+

These are represented with icalattach objects in libical. This file contains functions to create and work with these objects.

+

Typedef Documentation

+ +

◆ icalattach

+ +
+
+ + + + +
icalattach
+
+ +

An iCal attach object representing a link to a document object.

+

Represents an association with a document object. icalattach objects are reference counted, meaning that if the last reference to them is removed (with icalattach_unref()), they are destroyed.

+ +
+
+ +

◆ icalattach_free_fn_t

+ +
+
+ + + + +
icalattach_free_fn_t
+
+ +

Function to be called to free the data of an icalattach object.

+
Warning
Currently not used
+

This function type is used to free the data from an icalattach object created with icalattach_new_from_data(). It is currently not used

+ +
+
+

Function Documentation

+ +

◆ icalattach_get_data()

+ +
+
+ + + + + + + + +
unsigned char * icalattach_get_data (icalattachattach)
+
+ +

Returns the data of the icalattach object.

+
Parameters
+ + +
attachThe object from which to return the data
+
+
+
Returns
The data of the object
+
See also
icalattach_get_is_url()
+

Returns the URL of the icalattach object.

+
Error handling
Returns NULL and set icalerrno to ICAL_BADARG_ERROR if attach is NULL. Undefined behaviour if the object is a URL (check with icalattach_get_is_url()).
+
Ownership
The string returned is owned by libical and must not be freed by the caller.
+ +
+
+ +

◆ icalattach_get_is_url()

+ +
+
+ + + + + + + + +
int icalattach_get_is_url (icalattachattach)
+
+ +

Determines if attach is an URL.

+
Parameters
+ + +
attachthe icalattach object to check
+
+
+
Returns
1 if it is a URL, otherwise 0.
+
See also
icalattach_get_url()
+
Error handling
Returns NULL and sets icalerrno to ICAL_BADARG_ERROR if attach is NULL.
+
Usage
// creates new
+
icalattach *attach = icalattach_new_from_url("http://example.com");
+
+
// checks if it is a URL
+
assert(icalattach_get_is_url(attach));
+
+
// release it
+
icalattach_unref(attach);
+
Definition icalattachimpl.h:26
+
+ +
+
+ +

◆ icalattach_get_url()

+ +
+
+ + + + + + + + +
const char * icalattach_get_url (icalattachattach)
+
+ +

Returns the URL of the icalattach object.

+
Parameters
+ + +
attachThe object from which to return the URL
+
+
+
Returns
The URL of the object
+
See also
icalattach_get_is_url()
+

Returns the URL of the icalattach object.

+
Error handling
Returns NULL and set icalerrno to ICAL_BADARG_ERROR if attach is NULL. Undefined behaviour if the object is not a URL (check with icalattach_get_is_url()).
+
Ownership
The string returned is owned by libical and must not be freed by the caller.
+
Usage
// creates new
+
icalattach *attach = icalattach_new_from_url("http://example.com");
+
+
// checks it
+
assert(icalattach_get_is_url(attach));
+
assert(0 == strcmp(icalattach_get_url(attach), "http://example.com"));
+
+
// release it
+
icalattach_unref(attach);
+
+ +
+
+ +

◆ icalattach_new_from_data()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
icalattach * icalattach_new_from_data (const char * data,
icalattach_free_fn_t free_fn,
void * free_fn_data 
)
+
+ +

Creates new icalattach object from data.

+
Parameters
+ + + + +
dataThe data to create the icalattach from
free_fnThe function to free the data
free_fn_dataData to pass to the free_fn
+
+
+
Returns
An icalattach object with the given data
+
See also
icalattach_unref()
+
Error handling
If url is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR. If there was an error allocating memory, it returns NULL and sets errno to ENOMEM.
+
Ownership
The returned icalattach object is owned by the caller of the function. icalattach objects are reference counted, which means that after use, icalattach_unref() needs to be called to signal that they are not used anymore.
+ +
+
+ +

◆ icalattach_new_from_url()

+ +
+
+ + + + + + + + +
icalattach * icalattach_new_from_url (const char * url)
+
+ +

Creates new icalattach object from a URL.

+
Parameters
+ + +
urlThe URL to create the object from
+
+
+
Returns
An icalattach object with the given URL as association
+
See also
icalattach_unref()
+
Error handling
If url is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR. If there was an error allocating memory, it returns NULL and sets errno to ENOMEM.
+
Ownership
The returned icalattach object is owned by the caller of the function. icalattach objects are reference counted, which means that after use, icalattach_unref() needs to be called to signal that they are not used anymore.
+
Usage
// creates new
+
icalattach *attach = icalattach_new_from_url("http://example.com");
+
+
// checks it
+
assert(icalattach_get_is_url(attach));
+
assert(0 == strcmp(icalattach_get_url(attach), "http://example.com"));
+
+
// release it
+
icalattach_unref(attach);
+
+ +
+
+ +

◆ icalattach_ref()

+ +
+
+ + + + + + + + +
void icalattach_ref (icalattachattach)
+
+ +

Increments reference count of the icalattach.

+
Parameters
+ + +
attachThe object to increase the reference count of
+
+
+
See also
icalattach_unref()
+
Error handling
If attach is NULL, or the reference count is smaller than 0, it sets icalerrno to ICAL_BADARG_ERROR.
+
Ownership
By increasing the refcount of attach, you are signaling that you are using it, and it is the owner's responsibility to call icalattach_unref() after it's no longer used.
+ +
+
+ +

◆ icalattach_unref()

+ +
+
+ + + + + + + + +
void icalattach_unref (icalattachattach)
+
+ +

Decrements reference count of the icalattach.

+
Parameters
+ + +
attachThe object to decrease the reference count of
+
+
+
See also
icalattach_ref()
+

Decreases the reference count of attach. If this was the last user of the object, it is freed.

+
Error handling
If attach is NULL, or the reference count is smaller than 0, it sets icalerrno to ICAL_BADARG_ERROR.
+
Ownership
Calling this function releases the icalattach back to the library, and it must not be used afterwards.
+
Usage
// creates new
+
icalattach *attach = icalattach_new_from_url("http://example.com");
+
+
// release it
+
icalattach_unref(attach);
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalattach_8h_source.html b/static/apidocs/icalattach_8h_source.html new file mode 100644 index 00000000..54efa5ca --- /dev/null +++ b/static/apidocs/icalattach_8h_source.html @@ -0,0 +1,138 @@ + + + + + + + +Libical API Documentation: icalattach.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalattach.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalattach.h
+
3 CREATOR: acampi 28 May 02
+
4
+
5 (C) COPYRIGHT 2002, Andrea Campi <a.campi@inet.it>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
31#ifndef ICALATTACH_H
+
32#define ICALATTACH_H
+
33
+
34#include "libical_ical_export.h"
+
35
+ +
45
+
54typedef void (*icalattach_free_fn_t) (char *data, void *user_data);
+
55
+
86LIBICAL_ICAL_EXPORT icalattach *icalattach_new_from_url(const char *url);
+
87
+
107LIBICAL_ICAL_EXPORT icalattach *icalattach_new_from_data(const char *data,
+
108 icalattach_free_fn_t free_fn,
+
109 void *free_fn_data);
+
110
+
125LIBICAL_ICAL_EXPORT void icalattach_ref(icalattach *attach);
+
126
+
152LIBICAL_ICAL_EXPORT void icalattach_unref(icalattach *attach);
+
153
+
176LIBICAL_ICAL_EXPORT int icalattach_get_is_url(icalattach *attach);
+
177
+
208LIBICAL_ICAL_EXPORT const char *icalattach_get_url(icalattach *attach);
+
209
+
227LIBICAL_ICAL_EXPORT unsigned char *icalattach_get_data(icalattach *attach);
+
228
+
229#endif /* !ICALATTACH_H */
+
icalattach * icalattach_new_from_data(const char *data, icalattach_free_fn_t free_fn, void *free_fn_data)
Creates new icalattach object from data.
Definition icalattach.c:60
+
void(* icalattach_free_fn_t)(char *data, void *user_data)
Function to be called to free the data of an icalattach object.
Definition icalattach.h:54
+
void icalattach_unref(icalattach *attach)
Decrements reference count of the icalattach.
Definition icalattach.c:99
+
int icalattach_get_is_url(icalattach *attach)
Determines if attach is an URL.
Definition icalattach.c:118
+
void icalattach_ref(icalattach *attach)
Increments reference count of the icalattach.
Definition icalattach.c:91
+
unsigned char * icalattach_get_data(icalattach *attach)
Returns the data of the icalattach object.
Definition icalattach.c:133
+
const char * icalattach_get_url(icalattach *attach)
Returns the URL of the icalattach object.
Definition icalattach.c:125
+
icalattach * icalattach_new_from_url(const char *url)
Creates new icalattach object from a URL.
Definition icalattach.c:29
+
Definition icalattachimpl.h:26
+
+ + + + diff --git a/static/apidocs/icalattachimpl_8h_source.html b/static/apidocs/icalattachimpl_8h_source.html new file mode 100644 index 00000000..02347aaa --- /dev/null +++ b/static/apidocs/icalattachimpl_8h_source.html @@ -0,0 +1,139 @@ + + + + + + + +Libical API Documentation: icalattachimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalattachimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalattachimpl.h
+
3 CREATOR: acampi 28 May 02
+
4
+
5 (C) COPYRIGHT 2000, Andrea Campi <a.campi@inet.it>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALATTACHIMPL_H
+
20#define ICALATTACHIMPL_H
+
21
+
22#include "icalattach.h"
+
23
+
24/* Private structure for ATTACH values */
+ +
26{
+
27 /* Reference count */
+
28 int refcount;
+
29
+
30 union
+
31 {
+
32 /* URL attachment data */
+
33 struct
+
34 {
+
35 char *url;
+
36 } url;
+
37
+
38 /* Inline data */
+
39 struct
+
40 {
+
41 char *data;
+ +
43 void *free_fn_data;
+
44 } data;
+
45 } u;
+
46
+
47 /* TRUE if URL, FALSE if inline data */
+
48 unsigned int is_url:1;
+
49};
+
50
+
51#endif
+
A set of functions to handle iCal attachments.
+
void(* icalattach_free_fn_t)(char *data, void *user_data)
Function to be called to free the data of an icalattach object.
Definition icalattach.h:54
+
Definition icalattachimpl.h:26
+
+ + + + diff --git a/static/apidocs/icalbdbset_8h_source.html b/static/apidocs/icalbdbset_8h_source.html new file mode 100644 index 00000000..d165c297 --- /dev/null +++ b/static/apidocs/icalbdbset_8h_source.html @@ -0,0 +1,269 @@ + + + + + + + +Libical API Documentation: icalbdbset.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalbdbset.h
+
+
+
1/*======================================================================
+
2 FILE: icalbdbset.h
+
3
+
4 (C) COPYRIGHT 2001, Critical Path
+
5
+
6 This library is free software; you can redistribute it and/or modify
+
7 it under the terms of either:
+
8
+
9 The LGPL as published by the Free Software Foundation, version
+
10 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
11
+
12 Or:
+
13
+
14 The Mozilla Public License Version 2.0. You may obtain a copy of
+
15 the License at https://www.mozilla.org/MPL/
+
16======================================================================*/
+
17
+
18#ifndef ICALBDBSET_H
+
19#define ICALBDBSET_H
+
20
+
21#include "libical_icalss_export.h"
+
22#include "icalset.h"
+
23
+
24#include <db.h>
+
25
+
26typedef struct icalbdbset_impl icalbdbset;
+
27
+
28enum icalbdbset_subdb_type
+
29{ ICALBDB_CALENDARS, ICALBDB_EVENTS, ICALBDB_TODOS, ICALBDB_REMINDERS };
+
30typedef enum icalbdbset_subdb_type icalbdbset_subdb_type;
+
31
+
33LIBICAL_ICALSS_EXPORT int icalbdbset_init_dbenv(char *db_env_dir,
+
34 void (*logDbFunc) (const DB_ENV *,
+
35 const char *, const char *));
+
36
+
37LIBICAL_ICALSS_EXPORT icalset *icalbdbset_init(icalset *set, const char *dsn, void *options);
+
38
+
39LIBICAL_ICALSS_EXPORT int icalbdbset_cleanup(void);
+
40
+
41LIBICAL_ICALSS_EXPORT void icalbdbset_checkpoint(void);
+
42
+
43LIBICAL_ICALSS_EXPORT void icalbdbset_rmdbLog(void);
+
44
+
47LIBICAL_ICALSS_EXPORT icalset *icalbdbset_new(const char *database_filename,
+
48 icalbdbset_subdb_type subdb_type,
+
49 int dbtype, u_int32_t flag);
+
50
+
51LIBICAL_ICALSS_EXPORT DB *icalbdbset_bdb_open_secondary(DB *dbp,
+
52 const char *subdb,
+
53 const char *sindex,
+
54 int (*callback) (DB *db,
+
55 const DBT *dbt1,
+
56 const DBT *dbt2,
+
57 DBT *dbt3), int type);
+
58
+
59LIBICAL_ICALSS_EXPORT char *icalbdbset_parse_data(DBT *dbt, char *(*pfunc) (const DBT *dbt));
+
60
+
61LIBICAL_ICALSS_EXPORT void icalbdbset_free(icalset *set);
+
62
+
63/* cursor operations */
+
64LIBICAL_ICALSS_EXPORT int icalbdbset_acquire_cursor(DB *dbp, DB_TXN *tid, DBC ** rdbcp);
+
65
+
66LIBICAL_ICALSS_EXPORT int icalbdbset_cget(DBC *dbcp, DBT *key, DBT *data,
+
67 u_int32_t access_method);
+
68
+
69LIBICAL_ICALSS_EXPORT int icalbdbset_cput(DBC *dbcp, DBT *key, DBT *data,
+
70 u_int32_t access_method);
+
71
+
72LIBICAL_ICALSS_EXPORT int icalbdbset_get_first(DBC *dbcp, DBT *key, DBT *data);
+
73
+
74LIBICAL_ICALSS_EXPORT int icalbdbset_get_next(DBC *dbcp, DBT *key, DBT *data);
+
75
+
76LIBICAL_ICALSS_EXPORT int icalbdbset_get_last(DBC *dbcp, DBT *key, DBT *data);
+
77
+
78LIBICAL_ICALSS_EXPORT int icalbdbset_get_key(DBC *dbcp, DBT *key, DBT *data);
+
79
+
80LIBICAL_ICALSS_EXPORT int icalbdbset_delete(DB *dbp, DBT *key);
+
81
+
82LIBICAL_ICALSS_EXPORT int icalbdbset_put(DB *dbp, DBT *key, DBT *data, u_int32_t access_method);
+
83
+
84LIBICAL_ICALSS_EXPORT int icalbdbset_get(DB *dbp, DB_TXN *tid, DBT *key, DBT *data,
+
85 u_int32_t flags);
+
86
+
87LIBICAL_ICALSS_EXPORT const char *icalbdbset_path(icalset *set);
+
88
+
89LIBICAL_ICALSS_EXPORT const char *icalbdbset_subdb(icalset *set);
+
90
+
91/* Mark the set as changed, so it will be written to disk when it
+
92 is freed. Commit writes to disk immediately. */
+
93LIBICAL_ICALSS_EXPORT void icalbdbset_mark(icalset *set);
+
94
+
95LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_commit(icalset *set);
+
96
+
97LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_add_component(icalset *set, icalcomponent *child);
+
98
+
99LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_remove_component(icalset *set,
+
100 icalcomponent *child);
+
101
+
102LIBICAL_ICALSS_EXPORT int icalbdbset_count_components(icalset *set, icalcomponent_kind kind);
+
103
+
104/* Restrict the component returned by icalbdbset_first, _next to those
+
105 that pass the gauge. _clear removes the gauge */
+
106LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_select(icalset *store, icalgauge *gauge);
+
107
+
108LIBICAL_ICALSS_EXPORT void icalbdbset_clear(icalset *store);
+
109
+
110/* Gets and searches for a component by uid */
+
111LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_fetch(icalset *set,
+
112 icalcomponent_kind kind, const char *uid);
+
113
+
114LIBICAL_ICALSS_EXPORT int icalbdbset_has_uid(icalset *set, const char *uid);
+
115
+
116LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_fetch_match(icalset *set, icalcomponent *c);
+
117
+
118LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_modify(icalset *set, icalcomponent *old,
+
119 icalcomponent *newc);
+
120
+
121/* cluster management functions */
+
122LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_set_cluster(icalset *set, icalcomponent *cluster);
+
123
+
124LIBICAL_ICALSS_EXPORT icalerrorenum icalbdbset_free_cluster(icalset *set);
+
125
+
126LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_get_cluster(icalset *set);
+
127
+
128/* Iterate through components. If a gauge has been defined, these
+
129 will skip over components that do not pass the gauge */
+
130
+
131LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_get_current_component(icalset *set);
+
132
+
133LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_get_first_component(icalset *set);
+
134
+
135LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_get_next_component(icalset *set);
+
136
+
137/* External iterator for thread safety */
+
138LIBICAL_ICALSS_EXPORT icalsetiter icalbdbset_begin_component(icalset *set,
+
139 icalcomponent_kind kind,
+
140 icalgauge *gauge, const char *tzid);
+
141
+
142LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_form_a_matched_recurrence_component(icalsetiter *
+
143 itr);
+
144
+
145LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbsetiter_to_next(icalset *set, icalsetiter *i);
+
146
+
147LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbsetiter_to_prior(icalset *set, icalsetiter *i);
+
148
+
149/* Return a reference to the internal component. You probably should
+
150 not be using this. */
+
151
+
152LIBICAL_ICALSS_EXPORT icalcomponent *icalbdbset_get_component(icalset *set);
+
153
+
154LIBICAL_ICALSS_EXPORT DB_ENV *icalbdbset_get_env(void);
+
155
+
156LIBICAL_ICALSS_EXPORT int icalbdbset_begin_transaction(DB_TXN *parent_id, DB_TXN ** txnid);
+
157
+
158LIBICAL_ICALSS_EXPORT int icalbdbset_commit_transaction(DB_TXN *txnid);
+
159
+
160LIBICAL_ICALSS_EXPORT DB *icalbdbset_bdb_open(const char *path,
+
161 const char *subdb,
+
162 int type, int mode, u_int32_t flag);
+
163
+
164typedef struct icalbdbset_options
+
165{
+
166 icalbdbset_subdb_type subdb;
+
167 int dbtype;
+
168 int mode;
+
169 u_int32_t flag;
+
170 char *(*pfunc) (const DBT *dbt);
+
172 int (*callback) (DB *db,
+
174 const DBT *dbt1, const DBT *dbt2, DBT *dbt3);
+ +
176
+
177#endif /* !ICALBDBSET_H */
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+ +
Definition icalbdbsetimpl.h:28
+
Definition icalbdbset.h:165
+
int dbtype
Definition icalbdbset.h:167
+
u_int32_t flag
Definition icalbdbset.h:169
+
icalbdbset_subdb_type subdb
Definition icalbdbset.h:166
+
int mode
Definition icalbdbset.h:168
+
Definition icalcomponent.c:36
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
Definition icalset.h:52
+
+ + + + diff --git a/static/apidocs/icalbdbset__cxx_8h.html b/static/apidocs/icalbdbset__cxx_8h.html new file mode 100644 index 00000000..aa0b6f78 --- /dev/null +++ b/static/apidocs/icalbdbset__cxx_8h.html @@ -0,0 +1,106 @@ + + + + + + + +Libical API Documentation: icalbdbset_cxx.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalbdbset_cxx.h File Reference
+
+
+ +

Definition of C++ Wrapper for icalbdbset.c. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

class  LibICal::ICalBDBSet
 
+

Detailed Description

+

Definition of C++ Wrapper for icalbdbset.c.

+
Author
dml 12/12/01
+

(C) COPYRIGHT 2001, Critical Path

+

This library is free software; you can redistribute it and/or modify it under the terms of either:

+

The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

+

Or:

+

The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

+
+ + + + diff --git a/static/apidocs/icalbdbset__cxx_8h_source.html b/static/apidocs/icalbdbset__cxx_8h_source.html new file mode 100644 index 00000000..619d2cfc --- /dev/null +++ b/static/apidocs/icalbdbset__cxx_8h_source.html @@ -0,0 +1,145 @@ + + + + + + + +Libical API Documentation: icalbdbset_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalbdbset_cxx.h
+
+
+Go to the documentation of this file.
1
+
20#ifndef ICALBDBSET_CXX_H
+
21#define ICALBDBSET_CXX_H
+
22
+
23#include "libical_icalss_export.h"
+
24
+
25#include <string>
+
26
+
27namespace LibICal
+
28{
+
29
+
30 class VComponent;
+
31
+
32 class LIBICAL_ICALSS_EXPORT ICalBDBSet
+
33 {
+
34 public:
+
35
+
36 ICalBDBSet();
+
37 ICalBDBSet(const ICalBDBSet &);
+
38 ICalBDBSet(const std::string &path, int flags);
+
39 ICalBDBSet operator=(const ICalBDBSet &);
+ +
41
+
42 public:
+
43
+
44 void free();
+
45 std::string path();
+
46
+
47 icalerrorenum add_component(VComponent *child);
+
48 icalerrorenum remove_component(VComponent *child);
+
49 int count_components(icalcomponent_kind kind);
+
50
+
51 // Restrict the component returned by icalbdbset_first, _next to those
+
52 // that pass the gauge. _clear removes the gauge
+
53 icalerrorenum select(icalgauge *gauge);
+
54 void clear();
+
55
+
56 // Get and search for a component by uid
+
57 VComponent *fetch(std::string &uid);
+
58 VComponent *fetch_match(icalcomponent *c);
+
59 int has_uid(std::string &uid);
+
60
+
61 // Iterate through components. If a gauge has been defined, these
+
62 // will skip over components that do not pass the gauge
+
63 VComponent *get_current_component();
+
64 VComponent *get_first_component();
+
65 VComponent *get_next_component();
+
66
+
67 VComponent *get_component();
+
68
+
69 };
+
70
+
71} // namespace LibICal
+
72
+
73#endif
+
Definition icalbdbset_cxx.h:33
+
A class wrapping the libical icalcomponent functions.
Definition vcomponent_cxx.h:48
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+
Definition icalcomponent.c:36
+
Definition icalgaugeimpl.h:55
+
+ + + + diff --git a/static/apidocs/icalbdbsetimpl_8h_source.html b/static/apidocs/icalbdbsetimpl_8h_source.html new file mode 100644 index 00000000..daf289c6 --- /dev/null +++ b/static/apidocs/icalbdbsetimpl_8h_source.html @@ -0,0 +1,136 @@ + + + + + + + +Libical API Documentation: icalbdbsetimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalbdbsetimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalbdbsetimpl.h
+
3
+
4 (C) COPYRIGHT 2001, Critical Path
+
5
+
6 This library is free software; you can redistribute it and/or modify
+
7 it under the terms of either:
+
8
+
9 The LGPL as published by the Free Software Foundation, version
+
10 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
11
+
12 Or:
+
13
+
14 The Mozilla Public License Version 2.0. You may obtain a copy of
+
15 the License at https://www.mozilla.org/MPL/
+
16======================================================================*/
+
17
+
18#ifndef ICALBDBSETIMPL_H
+
19#define ICALBDBSETIMPL_H
+
20
+
21#include "icalset.h"
+
22#include <db.h>
+
23
+
24/* This definition is in its own file so it can be kept out of the
+
25 main header file, but used by "friend classes" like icaldirset*/
+
26
+ +
28{
+ +
30 const char *path;
+
31 const char *subdb;
+
32 const char *sindex;
+
33 const char *key;
+
34 void *data;
+
35 int datasize;
+
36 int changed;
+
37 icalcomponent *cluster;
+
38 icalgauge *gauge;
+
39 DB_ENV *dbenv;
+
40 DB *dbp;
+
41 DB *sdbp;
+
42 DBC *dbcp;
+
43};
+
44
+
45#endif
+ +
Definition icalbdbsetimpl.h:28
+
icalset super
Definition icalbdbsetimpl.h:29
+
Definition icalcomponent.c:36
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
+ + + + diff --git a/static/apidocs/icalcalendar_8h.html b/static/apidocs/icalcalendar_8h.html new file mode 100644 index 00000000..cd6d022f --- /dev/null +++ b/static/apidocs/icalcalendar_8h.html @@ -0,0 +1,136 @@ + + + + + + + +Libical API Documentation: icalcalendar.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalcalendar.h File Reference
+
+
+ +

Routines for storing calendar data in a file system. +More...

+ +

Go to the source code of this file.

+ + + + +

+Typedefs

+typedef struct icalcalendar_impl icalcalendar
 
+ + + + + + + + + + + + + + + + + + + + + +

+Functions

+void icalcalendar_free (icalcalendar *calendar)
 
+icalseticalcalendar_get_booked (icalcalendar *calendar)
 
+icalseticalcalendar_get_freebusy (icalcalendar *calendar)
 
+icalseticalcalendar_get_incoming (icalcalendar *calendar)
 
+icalseticalcalendar_get_properties (icalcalendar *calendar)
 
+int icalcalendar_islocked (icalcalendar *calendar)
 
+int icalcalendar_lock (icalcalendar *calendar)
 
+icalcalendaricalcalendar_new (const char *dir)
 
+int icalcalendar_ownlock (icalcalendar *calendar)
 
+int icalcalendar_unlock (icalcalendar *calendar)
 
+

Detailed Description

+

Routines for storing calendar data in a file system.

+

The calendar has two icaldirsets, one for incoming components and one for booked components. It also has interfaces to access the free/busy list and a list of calendar properties

+
+ + + + diff --git a/static/apidocs/icalcalendar_8h_source.html b/static/apidocs/icalcalendar_8h_source.html new file mode 100644 index 00000000..7e916011 --- /dev/null +++ b/static/apidocs/icalcalendar_8h_source.html @@ -0,0 +1,138 @@ + + + + + + + +Libical API Documentation: icalcalendar.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalcalendar.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalcalendar.h
+
3 CREATOR: eric 23 December 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALCALENDAR_H
+
23#define ICALCALENDAR_H
+
24
+
25#include "libical_icalss_export.h"
+
26#include "icalset.h"
+
27
+
37typedef struct icalcalendar_impl icalcalendar;
+
38
+
39LIBICAL_ICALSS_EXPORT icalcalendar *icalcalendar_new(const char *dir);
+
40
+
41LIBICAL_ICALSS_EXPORT void icalcalendar_free(icalcalendar *calendar);
+
42
+
43LIBICAL_ICALSS_EXPORT int icalcalendar_lock(icalcalendar *calendar);
+
44
+
45LIBICAL_ICALSS_EXPORT int icalcalendar_unlock(icalcalendar *calendar);
+
46
+
47LIBICAL_ICALSS_EXPORT int icalcalendar_islocked(icalcalendar *calendar);
+
48
+
49LIBICAL_ICALSS_EXPORT int icalcalendar_ownlock(icalcalendar *calendar);
+
50
+
51LIBICAL_ICALSS_EXPORT icalset *icalcalendar_get_booked(icalcalendar *calendar);
+
52
+
53LIBICAL_ICALSS_EXPORT icalset *icalcalendar_get_incoming(icalcalendar *calendar);
+
54
+
55LIBICAL_ICALSS_EXPORT icalset *icalcalendar_get_properties(icalcalendar *calendar);
+
56
+
57LIBICAL_ICALSS_EXPORT icalset *icalcalendar_get_freebusy(icalcalendar *calendar);
+
58
+
59#endif /* !ICALCALENDAR_H */
+ +
Definition icalcalendar.c:38
+
Definition icalset.h:61
+
+ + + + diff --git a/static/apidocs/icalclassify_8h_source.html b/static/apidocs/icalclassify_8h_source.html new file mode 100644 index 00000000..784a3c07 --- /dev/null +++ b/static/apidocs/icalclassify_8h_source.html @@ -0,0 +1,121 @@ + + + + + + + +Libical API Documentation: icalclassify.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalclassify.h
+
+
+
1/*======================================================================
+
2 FILE: icalclassify.h
+
3 CREATOR: eric 21 Aug 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17 =========================================================================*/
+
18
+
19#ifndef ICALCLASSIFY_H
+
20#define ICALCLASSIFY_H
+
21
+
22#include "libical_icalss_export.h"
+
23#include "icalset.h"
+
24#include "icalcomponent.h"
+
25
+
26LIBICAL_ICALSS_EXPORT icalproperty_xlicclass icalclassify(icalcomponent *c,
+
27 icalcomponent *match, const char *user);
+
28
+
29LIBICAL_ICALSS_EXPORT icalcomponent *icalclassify_find_overlaps(icalset *set,
+
30 icalcomponent *comp);
+
31
+
32#endif /* ICALCLASSIFY_H */
+ + +
Definition icalcomponent.c:36
+
Definition icalset.h:61
+
+ + + + diff --git a/static/apidocs/icalcluster_8h_source.html b/static/apidocs/icalcluster_8h_source.html new file mode 100644 index 00000000..17994c7d --- /dev/null +++ b/static/apidocs/icalcluster_8h_source.html @@ -0,0 +1,149 @@ + + + + + + + +Libical API Documentation: icalcluster.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalcluster.h
+
+
+
1/*======================================================================
+
2 FILE: icalcluster.h
+
3 CREATOR: acampi 13 March 2002
+
4
+
5 Copyright (C) 2002 Andrea Campi <a.campi@inet.it>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALCLUSTER_H
+
20#define ICALCLUSTER_H
+
21
+
22#include "libical_icalss_export.h"
+
23#include "icalcomponent.h"
+
24#include "icalerror.h"
+
25
+
26typedef struct icalcluster_impl icalcluster;
+
27
+
28LIBICAL_ICALSS_EXPORT icalcluster *icalcluster_new(const char *key, icalcomponent *data);
+
29
+
30LIBICAL_ICALSS_EXPORT icalcluster *icalcluster_new_clone(const icalcluster *cluster);
+
31
+
32LIBICAL_ICALSS_EXPORT void icalcluster_free(icalcluster *cluster);
+
33
+
34LIBICAL_ICALSS_EXPORT const char *icalcluster_key(icalcluster *cluster);
+
35
+
36LIBICAL_ICALSS_EXPORT int icalcluster_is_changed(icalcluster *cluster);
+
37
+
38LIBICAL_ICALSS_EXPORT void icalcluster_mark(icalcluster *cluster);
+
39
+
40LIBICAL_ICALSS_EXPORT void icalcluster_commit(icalcluster *cluster);
+
41
+
42LIBICAL_ICALSS_EXPORT icalcomponent *icalcluster_get_component(icalcluster *cluster);
+
43
+
44LIBICAL_ICALSS_EXPORT int icalcluster_count_components(icalcluster *cluster,
+
45 icalcomponent_kind kind);
+
46
+
47LIBICAL_ICALSS_EXPORT icalerrorenum icalcluster_add_component(icalcluster *cluster,
+
48 icalcomponent *child);
+
49
+
50LIBICAL_ICALSS_EXPORT icalerrorenum icalcluster_remove_component(icalcluster *cluster,
+
51 icalcomponent *child);
+
52
+
53LIBICAL_ICALSS_EXPORT icalcomponent *icalcluster_get_current_component(icalcluster *cluster);
+
54
+
55LIBICAL_ICALSS_EXPORT icalcomponent *icalcluster_get_first_component(icalcluster *cluster);
+
56
+
57LIBICAL_ICALSS_EXPORT icalcomponent *icalcluster_get_next_component(icalcluster *cluster);
+
58
+
59#endif /* !ICALCLUSTER_H */
+ +
Error handling for libical.
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+
Definition icalclusterimpl.h:28
+
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalclusterimpl_8h_source.html b/static/apidocs/icalclusterimpl_8h_source.html new file mode 100644 index 00000000..c0550da6 --- /dev/null +++ b/static/apidocs/icalclusterimpl_8h_source.html @@ -0,0 +1,123 @@ + + + + + + + +Libical API Documentation: icalclusterimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalclusterimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalfilesetimpl.h
+
3 CREATOR: acampi 13 March 2002
+
4
+
5 Copyright (C) 2002 Andrea Campi <a.campi@inet.it>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALCLUSTERIMPL_H
+
20#define ICALCLUSTERIMPL_H
+
21
+
22/* This definition is in its own file so it can be kept out of the
+
23 main header file, but used by "friend classes" like icaldirset*/
+
24
+
25#define ICALCLUSTER_ID "clus"
+
26
+ +
28{
+
29 char id[5]; /* clus */
+
30
+
31 char *key;
+
32 icalcomponent *data;
+
33 int changed;
+
34};
+
35
+
36#endif
+
Definition icalclusterimpl.h:28
+
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalcomponent_8h.html b/static/apidocs/icalcomponent_8h.html new file mode 100644 index 00000000..a9c03002 --- /dev/null +++ b/static/apidocs/icalcomponent_8h.html @@ -0,0 +1,1038 @@ + + + + + + + +Libical API Documentation: icalcomponent.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalcomponent.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Data Structures

struct  icalcompiter
 
+ + + + + +

+Typedefs

+typedef struct icalcompiter icalcompiter
 
+typedef struct icalcomponent_impl icalcomponent
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+icalcomponenticalcompiter_deref (icalcompiter *i)
 
+icalcomponenticalcompiter_next (icalcompiter *i)
 
+icalcomponenticalcompiter_prior (icalcompiter *i)
 
+void icalcomponent_add_component (icalcomponent *parent, icalcomponent *child)
 
+void icalcomponent_add_property (icalcomponent *component, icalproperty *property)
 
+char * icalcomponent_as_ical_string (icalcomponent *component)
 
+char * icalcomponent_as_ical_string_r (icalcomponent *component)
 
+icalcompiter icalcomponent_begin_component (icalcomponent *component, icalcomponent_kind kind)
 
+int icalcomponent_check_restrictions (icalcomponent *comp)
 
+void icalcomponent_convert_errors (icalcomponent *component)
 Converts some X-LIC-ERROR properties into RETURN-STATUS properties.
 
+int icalcomponent_count_components (icalcomponent *component, icalcomponent_kind kind)
 
int icalcomponent_count_errors (icalcomponent *component)
 Returns the number of errors encountered parsing the data.
 
+int icalcomponent_count_properties (icalcomponent *component, icalproperty_kind kind)
 
+icalcompiter icalcomponent_end_component (icalcomponent *component, icalcomponent_kind kind)
 
void icalcomponent_foreach_recurrence (icalcomponent *comp, struct icaltimetype start, struct icaltimetype end, void(*callback)(icalcomponent *comp, struct icaltime_span *span, void *data), void *callback_data)
 Cycles through all recurrences of an event.
 
+void icalcomponent_foreach_tzid (icalcomponent *comp, void(*callback)(icalparameter *param, void *data), void *callback_data)
 Calls the given function for each TZID parameter found in the component, and any subcomponents.
 
+void icalcomponent_free (icalcomponent *component)
 
+const char * icalcomponent_get_comment (icalcomponent *comp)
 
+icalcomponenticalcomponent_get_current_component (icalcomponent *component)
 
+icalproperty * icalcomponent_get_current_property (icalcomponent *component)
 
+const char * icalcomponent_get_description (icalcomponent *comp)
 
struct icaltimetype icalcomponent_get_dtend (icalcomponent *comp)
 Gets the DTEND property as an icaltime.
 
+struct icaltimetype icalcomponent_get_dtstamp (icalcomponent *comp)
 
struct icaltimetype icalcomponent_get_dtstart (icalcomponent *comp)
 Gets the DTSTART property as an icaltime.
 
struct icaltimetype icalcomponent_get_due (icalcomponent *comp)
 Returns the time a VTODO task is DUE.
 
struct icaldurationtype icalcomponent_get_duration (icalcomponent *comp)
 Gets the DURATION property as an icalduration.
 
+icalcomponenticalcomponent_get_first_component (icalcomponent *component, icalcomponent_kind kind)
 
+icalproperty * icalcomponent_get_first_property (icalcomponent *component, icalproperty_kind kind)
 
+icalcomponenticalcomponent_get_first_real_component (icalcomponent *c)
 Returns a reference to the first VEVENT, VTODO or VJOURNAL in the component.
 
icalcomponenticalcomponent_get_inner (icalcomponent *comp)
 
+const char * icalcomponent_get_location (icalcomponent *comp)
 
+icalproperty_method icalcomponent_get_method (icalcomponent *comp)
 Returns the METHOD property.
 
+icalcomponenticalcomponent_get_next_component (icalcomponent *component, icalcomponent_kind kind)
 
+icalproperty * icalcomponent_get_next_property (icalcomponent *component, icalproperty_kind kind)
 
+icalcomponenticalcomponent_get_parent (icalcomponent *component)
 
+struct icaltimetype icalcomponent_get_recurrenceid (icalcomponent *comp)
 
const char * icalcomponent_get_relcalid (icalcomponent *comp)
 Gets the RELCALID property of a component.
 
+int icalcomponent_get_sequence (icalcomponent *comp)
 
struct icaltime_span icalcomponent_get_span (icalcomponent *comp)
 Gets the timespan covered by this component, in UTC.
 
+enum icalproperty_status icalcomponent_get_status (icalcomponent *comp)
 
+const char * icalcomponent_get_summary (icalcomponent *comp)
 
+icaltimezoneicalcomponent_get_timezone (icalcomponent *comp, const char *tzid)
 Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can't be found.
 
+const char * icalcomponent_get_uid (icalcomponent *comp)
 
+int icalcomponent_is_valid (icalcomponent *component)
 
+icalcomponent_kind icalcomponent_isa (const icalcomponent *component)
 
+int icalcomponent_isa_component (void *component)
 
+int icalcomponent_kind_is_valid (const icalcomponent_kind kind)
 
+const char * icalcomponent_kind_to_string (icalcomponent_kind kind)
 
void icalcomponent_merge_component (icalcomponent *comp, icalcomponent *comp_to_merge)
 
+icalcomponenticalcomponent_new (icalcomponent_kind kind)
 Constructor.
 
+icalcomponenticalcomponent_new_clone (icalcomponent *component)
 Constructor.
 
+icalcomponenticalcomponent_new_from_string (const char *str)
 Constructor.
 
+icalcomponenticalcomponent_new_vagenda (void)
 
+icalcomponenticalcomponent_new_valarm (void)
 
+icalcomponenticalcomponent_new_vavailability (void)
 
+icalcomponenticalcomponent_new_vcalendar (void)
 
+icalcomponenticalcomponent_new_vevent (void)
 
+icalcomponenticalcomponent_new_vfreebusy (void)
 
+icalcomponenticalcomponent_new_vjournal (void)
 
+icalcomponenticalcomponent_new_vpatch (void)
 
+icalcomponenticalcomponent_new_vpoll (void)
 
+icalcomponenticalcomponent_new_vquery (void)
 
+icalcomponenticalcomponent_new_vtimezone (void)
 
+icalcomponenticalcomponent_new_vtodo (void)
 
+icalcomponenticalcomponent_new_vvoter (void)
 
+icalcomponenticalcomponent_new_x (const char *x_name)
 Constructor.
 
+icalcomponenticalcomponent_new_xavailable (void)
 
+icalcomponenticalcomponent_new_xdaylight (void)
 
+icalcomponenticalcomponent_new_xpatch (void)
 
+icalcomponenticalcomponent_new_xstandard (void)
 
+icalcomponenticalcomponent_new_xvote (void)
 
void icalcomponent_normalize (icalcomponent *comp)
 Normalizes (reorders and sorts the properties) the specified icalcomponent comp.
 
+void icalcomponent_remove_component (icalcomponent *parent, icalcomponent *child)
 
+void icalcomponent_remove_property (icalcomponent *component, icalproperty *property)
 
+void icalcomponent_set_comment (icalcomponent *comp, const char *v)
 
+void icalcomponent_set_description (icalcomponent *comp, const char *v)
 
void icalcomponent_set_dtend (icalcomponent *comp, struct icaltimetype v)
 Sets the DTEND property to given icaltime.
 
+void icalcomponent_set_dtstamp (icalcomponent *comp, struct icaltimetype v)
 
void icalcomponent_set_dtstart (icalcomponent *comp, struct icaltimetype v)
 Sets the DTSTART property to the given icaltime,.
 
void icalcomponent_set_due (icalcomponent *comp, struct icaltimetype v)
 Sets the due date of a VTODO task.
 
void icalcomponent_set_duration (icalcomponent *comp, struct icaldurationtype v)
 Sets the DURATION property to given icalduration.
 
+void icalcomponent_set_location (icalcomponent *comp, const char *v)
 
+void icalcomponent_set_method (icalcomponent *comp, icalproperty_method method)
 Sets the METHOD property to the given method.
 
+void icalcomponent_set_parent (icalcomponent *component, icalcomponent *parent)
 
+void icalcomponent_set_recurrenceid (icalcomponent *comp, struct icaltimetype v)
 
void icalcomponent_set_relcalid (icalcomponent *comp, const char *v)
 Sets the RELCALID property of a component.
 
+void icalcomponent_set_sequence (icalcomponent *comp, int v)
 
+void icalcomponent_set_status (icalcomponent *comp, enum icalproperty_status v)
 
+void icalcomponent_set_summary (icalcomponent *comp, const char *v)
 
+void icalcomponent_set_uid (icalcomponent *comp, const char *v)
 
+icalcomponent_kind icalcomponent_string_to_kind (const char *string)
 
+void icalcomponent_strip_errors (icalcomponent *component)
 Removes all X-LIC-ERROR properties.
 
icalcomponenticalcomponent_vanew (icalcomponent_kind kind,...)
 Constructor.
 
struct icaltimetype icalproperty_get_datetime_with_component (icalproperty *prop, icalcomponent *comp)
 Gets a DATE or DATE-TIME property as an icaltime.
 
+icalcomponenticalproperty_get_parent (const icalproperty *property)
 Returns the parent icalcomponent for the specified property.
 
int icalproperty_recurrence_is_excluded (icalcomponent *comp, struct icaltimetype *dtstart, struct icaltimetype *recurtime)
 Decides if a recurrence is acceptable.
 
void icalproperty_set_parent (icalproperty *property, icalcomponent *component)
 Sets the parent icalcomponent for the specified icalproperty property.
 
+

Function Documentation

+ +

◆ icalcomponent_count_errors()

+ +
+
+ + + + + + + + +
int icalcomponent_count_errors (icalcomponentcomponent)
+
+ +

Returns the number of errors encountered parsing the data.

+

This function counts the number times the X-LIC-ERROR occurs in the data structure.

+ +
+
+ +

◆ icalcomponent_foreach_recurrence()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void icalcomponent_foreach_recurrence (icalcomponentcomp,
struct icaltimetype start,
struct icaltimetype end,
void(*)(icalcomponent *comp, struct icaltime_span *span, void *data) callback,
void * callback_data 
)
+
+ +

Cycles through all recurrences of an event.

+
Parameters
+ + + + + + +
compA valid VEVENT component
startIgnore timespans before this
endIgnore timespans after this
callbackFunction called for each timespan within the range
callback_dataPointer passed back to the callback function
+
+
+

This function will call the specified callback function for once for the base value of DTSTART, and foreach recurring date/time value.

+

It will filter out events that are specified as an EXDATE or an EXRULE.

+

TODO: We do not filter out duplicate RRULES/RDATES TODO: We do not handle RDATEs with explicit periods

+ +
+
+ +

◆ icalcomponent_get_dtend()

+ +
+
+ + + + + + + + +
struct icaltimetype icalcomponent_get_dtend (icalcomponentcomp)
+
+ +

Gets the DTEND property as an icaltime.

+

If a DTEND property is not present but a DURATION is, we use that to determine the proper end.

+

If DTSTART is a DATE-TIME with a timezone parameter and a corresponding VTIMEZONE is present in the component, the returned component will already be in the correct timezone; otherwise the caller is responsible for converting it.

+

For the icalcomponent routines only, dtend and duration are tied together. If you call the get routine for one and the other exists, the routine will calculate the return value. That is, if there is a DTEND and you call get_duration, the routine will return the difference between DTEND and DTSTART.

+

When DURATION and DTEND are both missing, for VEVENT an implicit DTEND is calculated based of DTSTART; for AVAILABLE, VAVAILABILITY, and VFREEBUSY null-time is returned.

+

Returns null-time, unless called on AVAILABLE, VEVENT, VAVAILABILITY, or VFREEBUSY components.

+

FIXME this is useless until we can flag the failure

+ +
+
+ +

◆ icalcomponent_get_dtstart()

+ +
+
+ + + + + + + + +
struct icaltimetype icalcomponent_get_dtstart (icalcomponentcomp)
+
+ +

Gets the DTSTART property as an icaltime.

+

If DTSTART is a DATE-TIME with a timezone parameter and a corresponding VTIMEZONE is present in the component, the returned component will already be in the correct timezone; otherwise the caller is responsible for converting it.

+

FIXME this is useless until we can flag the failure

+ +
+
+ +

◆ icalcomponent_get_due()

+ +
+
+ + + + + + + + +
struct icaltimetype icalcomponent_get_due (icalcomponentcomp)
+
+ +

Returns the time a VTODO task is DUE.

+
Parameters
+ + +
compValid calendar component.
+
+
+

Uses the DUE: property if it exists, otherwise we calculate the DUE value by adding the task's duration to the DTSTART time.

+ +
+
+ +

◆ icalcomponent_get_duration()

+ +
+
+ + + + + + + + +
struct icaldurationtype icalcomponent_get_duration (icalcomponentcomp)
+
+ +

Gets the DURATION property as an icalduration.

+

For the icalcomponent routines only, DTEND and DURATION are tied together. If you call the get routine for one and the other exists, the routine will calculate the return value. That is, if there is a DTEND and you call get_duration, the routine will return the difference between DTEND and DTSTART in AVAILABLE, VEVENT, or VAVAILABILITY; and the difference between DUE and DTSTART in VTODO. When both DURATION and DTEND are missing from VEVENT an implicit duration is returned, based on the value-type of DTSTART. Otherwise null-duration is returned.

+

FIXME We assume DTSTART and DTEND are not in different time zones. The standard actually allows different time zones.

+ +
+
+ +

◆ icalcomponent_get_inner()

+ +
+
+ + + + + + + + +
icalcomponent * icalcomponent_get_inner (icalcomponentcomp)
+
+

Return the first VEVENT, VTODO or VJOURNAL sub-component of cop, or comp if it is one of those types

+ +
+
+ +

◆ icalcomponent_get_relcalid()

+ +
+
+ + + + + + + + +
const char * icalcomponent_get_relcalid (icalcomponentcomp)
+
+ +

Gets the RELCALID property of a component.

+
Parameters
+ + +
compValid calendar component.
+
+
+ +
+
+ +

◆ icalcomponent_get_span()

+ +
+
+ + + + + + + + +
struct icaltime_span icalcomponent_get_span (icalcomponentcomp)
+
+ +

Gets the timespan covered by this component, in UTC.

+

See icalcomponent_foreach_recurrence() for a better way to extract spans from an component.

+

This method can be called on either a VCALENDAR or any real component. If the VCALENDAR contains no real component, but contains a VTIMEZONE, we return that span instead. This might not be a desirable behavior; we keep it for now for backward compatibility, but it might be deprecated at a future time.

+

FIXME this API needs to be clarified. DTEND is defined as the first available time after the end of this event, so the span should actually end 1 second before DTEND.

+ +
+
+ +

◆ icalcomponent_merge_component()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_merge_component (icalcomponentcomp,
icalcomponentcomp_to_merge 
)
+
+

This takes 2 VCALENDAR components and merges the second one into the first, resolving any problems with conflicting TZIDs. comp_to_merge will no longer exist after calling this function.

+ +
+
+ +

◆ icalcomponent_normalize()

+ +
+
+ + + + + + + + +
void icalcomponent_normalize (icalcomponentcomp)
+
+ +

Normalizes (reorders and sorts the properties) the specified icalcomponent comp.

+
Since
3.0
+ +
+
+ +

◆ icalcomponent_set_dtend()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_set_dtend (icalcomponentcomp,
struct icaltimetype v 
)
+
+ +

Sets the DTEND property to given icaltime.

+

This method respects the icaltime type (DATE vs DATE-TIME) and timezone (or lack thereof).

+

This also checks that a DURATION property isn't already there, and returns an error if it is. It's the caller's responsibility to remove it.

+

For the icalcomponent routines only, DTEND and DURATION are tied together. If you call this routine and DURATION exists, no action will be taken and icalerrno will be set to ICAL_MALFORMEDDATA_ERROR. If neither exists, the routine will create the appropriate property.

+ +
+
+ +

◆ icalcomponent_set_dtstart()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_set_dtstart (icalcomponentcomp,
struct icaltimetype v 
)
+
+ +

Sets the DTSTART property to the given icaltime,.

+

This method respects the icaltime type (DATE vs DATE-TIME) and timezone (or lack thereof).

+ +
+
+ +

◆ icalcomponent_set_due()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_set_due (icalcomponentcomp,
struct icaltimetype v 
)
+
+ +

Sets the due date of a VTODO task.

+
Parameters
+ + + +
compValid VTODO component.
vValid due date time.
+
+
+

The DUE and DURATION properties are tied together:

    +
  • If no duration or due properties then sets the DUE property.
  • +
  • If a DUE property is already set, then resets it to the value v.
  • +
  • If a DURATION property is already set, then calculates the new duration based on the supplied value of v.
  • +
+ +
+
+ +

◆ icalcomponent_set_duration()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_set_duration (icalcomponentcomp,
struct icaldurationtype v 
)
+
+ +

Sets the DURATION property to given icalduration.

+

This method respects the icaltime type (DATE vs DATE-TIME) and timezone (or lack thereof).

+

This also checks that a DTEND property isn't already there, and returns an error if it is. It's the caller's responsibility to remove it.

+

For the icalcomponent routines only, DTEND and DURATION are tied together. If you call this routine and DTEND exists, no action will be taken and icalerrno will be set to ICAL_MALFORMEDDATA_ERROR. If neither exists, the routine will create the appropriate property.

+ +
+
+ +

◆ icalcomponent_set_relcalid()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalcomponent_set_relcalid (icalcomponentcomp,
const char * v 
)
+
+ +

Sets the RELCALID property of a component.

+
Parameters
+ + + +
compValid calendar component.
vRelcalid URL value
+
+
+ +
+
+ +

◆ icalcomponent_vanew()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalcomponent * icalcomponent_vanew (icalcomponent_kind kind,
 ... 
)
+
+ +

Constructor.

+

Make sure to pass NULL (not 0) as the final argument!

+ +
+
+ +

◆ icalproperty_get_datetime_with_component()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaltimetype icalproperty_get_datetime_with_component (icalproperty * prop,
icalcomponentcomp 
)
+
+ +

Gets a DATE or DATE-TIME property as an icaltime.

+

Computes the datetime corresponding to the specified icalproperty and icalcomponent. If the property is a DATE-TIME with a TZID parameter and a corresponding VTIMEZONE is present in the component, the returned component will already be in the correct timezone; otherwise the caller is responsible for converting it.

+

Call icaltime_is_null_time() on the returned value to detect failures.

+
Since
3.0.5
+

If the property is a DATE-TIME with a TZID parameter and a corresponding VTIMEZONE is present in the component, the returned component will already be in the correct timezone; otherwise the caller is responsible for converting it.

+

The comp can be NULL, in which case the parent of the prop is used to find the corresponding time zone.

+ +
+
+ +

◆ icalproperty_recurrence_is_excluded()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icalproperty_recurrence_is_excluded (icalcomponentcomp,
struct icaltimetypedtstart,
struct icaltimetyperecurtime 
)
+
+ +

Decides if a recurrence is acceptable.

+
Parameters
+ + + + +
compA valid icalcomponent.
dtstartThe base dtstart value for this component.
recurtimeThe time to test against.
+
+
+
Returns
true if the recurrence value is excluded, false otherwise.
+

This function decides if a specific recurrence value is excluded by EXRULE or EXDATE properties.

+

It's not the most efficient code. You might get better performance if you assume that recurtime is always increasing for each call. Then you could:

+
    +
  • sort the EXDATE values
  • +
  • save the state of each EXRULE iterator for the next call.
  • +
+

In this case though you don't need to worry how you call this function. It will always return the correct result.

+

first test against the exdate values

+

MATCHED

+

Now test against the EXRULEs

+

MATCH

+

exrule_time > recurtime

+ +
+
+ +

◆ icalproperty_set_parent()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalproperty_set_parent (icalproperty * property,
icalcomponentcomponent 
)
+
+ +

Sets the parent icalcomponent for the specified icalproperty property.

+
Since
3.0
+ +
+
+
+ + + + diff --git a/static/apidocs/icalcomponent_8h_source.html b/static/apidocs/icalcomponent_8h_source.html new file mode 100644 index 00000000..1eb75eff --- /dev/null +++ b/static/apidocs/icalcomponent_8h_source.html @@ -0,0 +1,429 @@ + + + + + + + +Libical API Documentation: icalcomponent.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalcomponent.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalcomponent.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
23#ifndef ICALCOMPONENT_H
+
24#define ICALCOMPONENT_H
+
25
+
26#include "libical_ical_export.h"
+
27#include "icalenums.h" /* Defines icalcomponent_kind */
+
28#include "icalproperty.h"
+
29#include "pvl.h"
+
30
+ +
32
+
33/* This is exposed so that callers will not have to allocate and
+
34 deallocate iterators. Pretend that you can't see it. */
+
35typedef struct icalcompiter
+
36{
+
37 icalcomponent_kind kind;
+
38 pvl_elem iter;
+
39
+ +
41
+
44LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new(icalcomponent_kind kind);
+
45
+
48LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_clone(icalcomponent *component);
+
49
+
52LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_from_string(const char *str);
+
53
+
58LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_vanew(icalcomponent_kind kind, ...);
+
59
+
62LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_x(const char *x_name);
+
63
+
64/*** @brief Destructor
+
65 */
+
66LIBICAL_ICAL_EXPORT void icalcomponent_free(icalcomponent *component);
+
67
+
68LIBICAL_ICAL_EXPORT char *icalcomponent_as_ical_string(icalcomponent *component);
+
69
+
70LIBICAL_ICAL_EXPORT char *icalcomponent_as_ical_string_r(icalcomponent *component);
+
71
+
72LIBICAL_ICAL_EXPORT int icalcomponent_is_valid(icalcomponent *component);
+
73
+
74LIBICAL_ICAL_EXPORT icalcomponent_kind icalcomponent_isa(const icalcomponent *component);
+
75
+
76LIBICAL_ICAL_EXPORT int icalcomponent_isa_component(void *component);
+
77
+
78/*
+
79 * Working with properties
+
80 */
+
81
+
82LIBICAL_ICAL_EXPORT void icalcomponent_add_property(icalcomponent *component,
+
83 icalproperty *property);
+
84
+
85LIBICAL_ICAL_EXPORT void icalcomponent_remove_property(icalcomponent *component,
+
86 icalproperty *property);
+
87
+
88LIBICAL_ICAL_EXPORT int icalcomponent_count_properties(icalcomponent *component,
+
89 icalproperty_kind kind);
+
90
+
95LIBICAL_ICAL_EXPORT void icalproperty_set_parent(icalproperty *property,
+
96 icalcomponent *component);
+
97
+
101LIBICAL_ICAL_EXPORT icalcomponent *icalproperty_get_parent(const icalproperty *property);
+
102
+
103/* Iterate through the properties */
+
104LIBICAL_ICAL_EXPORT icalproperty *icalcomponent_get_current_property(icalcomponent *component);
+
105
+
106LIBICAL_ICAL_EXPORT icalproperty *icalcomponent_get_first_property(icalcomponent *component,
+
107 icalproperty_kind kind);
+
108LIBICAL_ICAL_EXPORT icalproperty *icalcomponent_get_next_property(icalcomponent *component,
+
109 icalproperty_kind kind);
+
110
+
111/*
+
112 * Working with components
+
113 */
+
114
+
117LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_get_inner(icalcomponent *comp);
+
118
+
119LIBICAL_ICAL_EXPORT void icalcomponent_add_component(icalcomponent *parent, icalcomponent *child);
+
120
+
121LIBICAL_ICAL_EXPORT void icalcomponent_remove_component(icalcomponent *parent,
+
122 icalcomponent *child);
+
123
+
124LIBICAL_ICAL_EXPORT int icalcomponent_count_components(icalcomponent *component,
+
125 icalcomponent_kind kind);
+
126
+
132LIBICAL_ICAL_EXPORT void icalcomponent_merge_component(icalcomponent *comp,
+
133 icalcomponent *comp_to_merge);
+
134
+
135/* Iteration Routines. There are two forms of iterators, internal and
+
136external. The internal ones came first, and are almost completely
+
137sufficient, but they fail badly when you want to construct a loop that
+
138removes components from the container.*/
+
139
+
140/* Iterate through components */
+
141LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_get_current_component(icalcomponent *component);
+
142
+
143LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_get_first_component(icalcomponent *component,
+
144 icalcomponent_kind kind);
+
145LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_get_next_component(icalcomponent *component,
+
146 icalcomponent_kind kind);
+
147
+
148/* Using external iterators */
+
149LIBICAL_ICAL_EXPORT icalcompiter icalcomponent_begin_component(icalcomponent *component,
+
150 icalcomponent_kind kind);
+
151
+
152LIBICAL_ICAL_EXPORT icalcompiter icalcomponent_end_component(icalcomponent *component,
+
153 icalcomponent_kind kind);
+
154
+
155LIBICAL_ICAL_EXPORT icalcomponent *icalcompiter_next(icalcompiter * i);
+
156
+
157LIBICAL_ICAL_EXPORT icalcomponent *icalcompiter_prior(icalcompiter * i);
+
158
+
159LIBICAL_ICAL_EXPORT icalcomponent *icalcompiter_deref(icalcompiter * i);
+
160
+
161/* Working with embedded error properties */
+
162
+
163/* Check the component against itip rules and insert error properties*/
+
164/* Working with embedded error properties */
+
165LIBICAL_ICAL_EXPORT int icalcomponent_check_restrictions(icalcomponent *comp);
+
166
+
172LIBICAL_ICAL_EXPORT int icalcomponent_count_errors(icalcomponent *component);
+
173
+
175LIBICAL_ICAL_EXPORT void icalcomponent_strip_errors(icalcomponent *component);
+
176
+
178LIBICAL_ICAL_EXPORT void icalcomponent_convert_errors(icalcomponent *component);
+
179
+
180/* Internal operations. They are private, and you should not be using them. */
+
181LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_get_parent(icalcomponent *component);
+
182
+
183LIBICAL_ICAL_EXPORT void icalcomponent_set_parent(icalcomponent *component,
+
184 icalcomponent *parent);
+
185
+
186/* Kind conversion routines */
+
187
+
188LIBICAL_ICAL_EXPORT int icalcomponent_kind_is_valid(const icalcomponent_kind kind);
+
189
+
190LIBICAL_ICAL_EXPORT icalcomponent_kind icalcomponent_string_to_kind(const char *string);
+
191
+
192LIBICAL_ICAL_EXPORT const char *icalcomponent_kind_to_string(icalcomponent_kind kind);
+
193
+
194/************* Derived class methods. ****************************
+
195
+
196If the code was in an OO language, the remaining routines would be
+
197members of classes derived from icalcomponent. Don't call them on the
+
198wrong component subtypes. */
+
199
+ +
204
+
221LIBICAL_ICAL_EXPORT struct icaltime_span icalcomponent_get_span(icalcomponent *comp);
+
222
+
223/******************** Convenience routines **********************/
+
224
+
230LIBICAL_ICAL_EXPORT void icalcomponent_set_dtstart(icalcomponent *comp, struct icaltimetype v);
+
231
+
241LIBICAL_ICAL_EXPORT struct icaltimetype icalcomponent_get_dtstart(icalcomponent *comp);
+
242
+
243/* For the icalcomponent routines only, dtend and duration are tied
+
244 together. If you call the get routine for one and the other exists,
+
245 the routine will calculate the return value. That is, if there is a
+
246 DTEND and you call get_duration, the routine will return the difference
+
247 between DTEND and DTSTART. However, if you call a set routine for
+
248 one and the other exists, no action will be taken and icalerrno will
+
249 be set to ICAL_MALFORMEDDATA_ERROR. If you call a set routine and
+
250 neither exists, the routine will create the appropriate property. */
+
251
+
277LIBICAL_ICAL_EXPORT struct icaltimetype icalcomponent_get_dtend(icalcomponent *comp);
+
278
+
294LIBICAL_ICAL_EXPORT void icalcomponent_set_dtend(icalcomponent *comp, struct icaltimetype v);
+
295
+
303LIBICAL_ICAL_EXPORT struct icaltimetype icalcomponent_get_due(icalcomponent *comp);
+
304
+
316LIBICAL_ICAL_EXPORT void icalcomponent_set_due(icalcomponent *comp, struct icaltimetype v);
+
317
+
333LIBICAL_ICAL_EXPORT void icalcomponent_set_duration(icalcomponent *comp,
+
334 struct icaldurationtype v);
+
335
+
348LIBICAL_ICAL_EXPORT struct icaldurationtype icalcomponent_get_duration(icalcomponent *comp);
+
349
+
352LIBICAL_ICAL_EXPORT void icalcomponent_set_method(icalcomponent *comp, icalproperty_method method);
+
353
+
356LIBICAL_ICAL_EXPORT icalproperty_method icalcomponent_get_method(icalcomponent *comp);
+
357
+
358LIBICAL_ICAL_EXPORT struct icaltimetype icalcomponent_get_dtstamp(icalcomponent *comp);
+
359
+
360LIBICAL_ICAL_EXPORT void icalcomponent_set_dtstamp(icalcomponent *comp, struct icaltimetype v);
+
361
+
362LIBICAL_ICAL_EXPORT void icalcomponent_set_summary(icalcomponent *comp, const char *v);
+
363
+
364LIBICAL_ICAL_EXPORT const char *icalcomponent_get_summary(icalcomponent *comp);
+
365
+
366LIBICAL_ICAL_EXPORT void icalcomponent_set_comment(icalcomponent *comp, const char *v);
+
367
+
368LIBICAL_ICAL_EXPORT const char *icalcomponent_get_comment(icalcomponent *comp);
+
369
+
370LIBICAL_ICAL_EXPORT void icalcomponent_set_uid(icalcomponent *comp, const char *v);
+
371
+
372LIBICAL_ICAL_EXPORT const char *icalcomponent_get_uid(icalcomponent *comp);
+
373
+
374LIBICAL_ICAL_EXPORT void icalcomponent_set_relcalid(icalcomponent *comp, const char *v);
+
375
+
376LIBICAL_ICAL_EXPORT const char *icalcomponent_get_relcalid(icalcomponent *comp);
+
377
+
378LIBICAL_ICAL_EXPORT void icalcomponent_set_recurrenceid(icalcomponent *comp,
+
379 struct icaltimetype v);
+
380
+
381LIBICAL_ICAL_EXPORT struct icaltimetype icalcomponent_get_recurrenceid(icalcomponent *comp);
+
382
+
383LIBICAL_ICAL_EXPORT void icalcomponent_set_description(icalcomponent *comp, const char *v);
+
384
+
385LIBICAL_ICAL_EXPORT const char *icalcomponent_get_description(icalcomponent *comp);
+
386
+
387LIBICAL_ICAL_EXPORT void icalcomponent_set_location(icalcomponent *comp, const char *v);
+
388
+
389LIBICAL_ICAL_EXPORT const char *icalcomponent_get_location(icalcomponent *comp);
+
390
+
391LIBICAL_ICAL_EXPORT void icalcomponent_set_sequence(icalcomponent *comp, int v);
+
392
+
393LIBICAL_ICAL_EXPORT int icalcomponent_get_sequence(icalcomponent *comp);
+
394
+
395LIBICAL_ICAL_EXPORT void icalcomponent_set_status(icalcomponent *comp, enum icalproperty_status v);
+
396
+
397LIBICAL_ICAL_EXPORT enum icalproperty_status icalcomponent_get_status(icalcomponent *comp);
+
398
+
402LIBICAL_ICAL_EXPORT void icalcomponent_foreach_tzid(icalcomponent *comp,
+
403 void (*callback) (icalparameter *param,
+
404 void *data),
+
405 void *callback_data);
+
406
+
410LIBICAL_ICAL_EXPORT icaltimezone *icalcomponent_get_timezone(icalcomponent *comp,
+
411 const char *tzid);
+
412
+
435LIBICAL_ICAL_EXPORT int icalproperty_recurrence_is_excluded(icalcomponent *comp,
+
436 struct icaltimetype *dtstart,
+
437 struct icaltimetype *recurtime);
+
438
+
457LIBICAL_ICAL_EXPORT void icalcomponent_foreach_recurrence(icalcomponent *comp,
+
458 struct icaltimetype start,
+
459 struct icaltimetype end,
+
460 void (*callback) (icalcomponent *comp,
+
461 struct icaltime_span *
+
462 span, void *data),
+
463 void *callback_data);
+
464
+
469LIBICAL_ICAL_EXPORT void icalcomponent_normalize(icalcomponent *comp);
+
470
+ +
482 icalproperty *prop,
+
483 icalcomponent *comp);
+
484/*************** Type Specific routines ***************/
+
485
+
486LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vcalendar(void);
+
487
+
488LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vevent(void);
+
489
+
490LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vtodo(void);
+
491
+
492LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vjournal(void);
+
493
+
494LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_valarm(void);
+
495
+
496LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vfreebusy(void);
+
497
+
498LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vtimezone(void);
+
499
+
500LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_xstandard(void);
+
501
+
502LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_xdaylight(void);
+
503
+
504LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vagenda(void);
+
505
+
506LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vquery(void);
+
507
+
508LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vavailability(void);
+
509
+
510LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_xavailable(void);
+
511
+
512LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vpoll(void);
+
513
+
514LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vvoter(void);
+
515
+
516LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_xvote(void);
+
517
+
518LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_vpatch(void);
+
519
+
520LIBICAL_ICAL_EXPORT icalcomponent *icalcomponent_new_xpatch(void);
+
521
+
522#endif /* !ICALCOMPONENT_H */
+
void icalcomponent_convert_errors(icalcomponent *component)
Converts some X-LIC-ERROR properties into RETURN-STATUS properties.
Definition icalcomponent.c:995
+
void icalcomponent_set_relcalid(icalcomponent *comp, const char *v)
Sets the RELCALID property of a component.
Definition icalcomponent.c:2307
+
icalcomponent * icalcomponent_new_clone(icalcomponent *component)
Constructor.
Definition icalcomponent.c:140
+
struct icaltimetype icalcomponent_get_dtend(icalcomponent *comp)
Gets the DTEND property as an icaltime.
Definition icalcomponent.c:1336
+
struct icaltimetype icalcomponent_get_dtstart(icalcomponent *comp)
Gets the DTSTART property as an icaltime.
Definition icalcomponent.c:1323
+
icalproperty_method icalcomponent_get_method(icalcomponent *comp)
Returns the METHOD property.
Definition icalcomponent.c:1281
+
void icalcomponent_foreach_recurrence(icalcomponent *comp, struct icaltimetype start, struct icaltimetype end, void(*callback)(icalcomponent *comp, struct icaltime_span *span, void *data), void *callback_data)
Cycles through all recurrences of an event.
Definition icalcomponent.c:787
+
icalcomponent * icalproperty_get_parent(const icalproperty *property)
Returns the parent icalcomponent for the specified property.
Definition icalproperty.c:915
+
void icalcomponent_set_dtstart(icalcomponent *comp, struct icaltimetype v)
Sets the DTSTART property to the given icaltime,.
Definition icalcomponent.c:1303
+
void icalcomponent_strip_errors(icalcomponent *component)
Removes all X-LIC-ERROR properties.
Definition icalcomponent.c:969
+
void icalcomponent_normalize(icalcomponent *comp)
Normalizes (reorders and sorts the properties) the specified icalcomponent comp.
Definition icalcomponent.c:2530
+
struct icaltimetype icalproperty_get_datetime_with_component(icalproperty *prop, icalcomponent *comp)
Gets a DATE or DATE-TIME property as an icaltime.
Definition icalproperty.c:1052
+
icalcomponent * icalcomponent_vanew(icalcomponent_kind kind,...)
Constructor.
Definition icalcomponent.c:116
+
void icalcomponent_set_method(icalcomponent *comp, icalproperty_method method)
Sets the METHOD property to the given method.
Definition icalcomponent.c:1269
+
icalcomponent * icalcomponent_new(icalcomponent_kind kind)
Constructor.
Definition icalcomponent.c:111
+
icalcomponent * icalcomponent_get_inner(icalcomponent *comp)
Definition icalcomponent.c:1260
+
void icalproperty_set_parent(icalproperty *property, icalcomponent *component)
Sets the parent icalcomponent for the specified icalproperty property.
Definition icalproperty.c:908
+
icalcomponent * icalcomponent_get_first_real_component(icalcomponent *c)
Returns a reference to the first VEVENT, VTODO or VJOURNAL in the component.
Definition icalcomponent.c:581
+
const char * icalcomponent_get_relcalid(icalcomponent *comp)
Gets the RELCALID property of a component.
Definition icalcomponent.c:2325
+
struct icaltimetype icalcomponent_get_due(icalcomponent *comp)
Returns the time a VTODO task is DUE.
Definition icalcomponent.c:2347
+
void icalcomponent_merge_component(icalcomponent *comp, icalcomponent *comp_to_merge)
Definition icalcomponent.c:1897
+
int icalcomponent_count_errors(icalcomponent *component)
Returns the number of errors encountered parsing the data.
Definition icalcomponent.c:943
+
struct icaldurationtype icalcomponent_get_duration(icalcomponent *comp)
Gets the DURATION property as an icalduration.
Definition icalcomponent.c:1435
+
int icalproperty_recurrence_is_excluded(icalcomponent *comp, struct icaltimetype *dtstart, struct icaltimetype *recurtime)
Decides if a recurrence is acceptable.
Definition icalcomponent.c:672
+
icaltimezone * icalcomponent_get_timezone(icalcomponent *comp, const char *tzid)
Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can't be found.
Definition icalcomponent.c:2179
+
void icalcomponent_set_dtend(icalcomponent *comp, struct icaltimetype v)
Sets the DTEND property to given icaltime.
Definition icalcomponent.c:1393
+
struct icaltime_span icalcomponent_get_span(icalcomponent *comp)
Gets the timespan covered by this component, in UTC.
Definition icalcomponent.c:604
+
icalcomponent * icalcomponent_new_x(const char *x_name)
Constructor.
Definition icalcomponent.c:168
+
void icalcomponent_set_duration(icalcomponent *comp, struct icaldurationtype v)
Sets the DURATION property to given icalduration.
Definition icalcomponent.c:1418
+
void icalcomponent_foreach_tzid(icalcomponent *comp, void(*callback)(icalparameter *param, void *data), void *callback_data)
Calls the given function for each TZID parameter found in the component, and any subcomponents.
Definition icalcomponent.c:2142
+
void icalcomponent_set_due(icalcomponent *comp, struct icaltimetype v)
Sets the due date of a VTODO task.
Definition icalcomponent.c:2369
+
icalcomponent * icalcomponent_new_from_string(const char *str)
Constructor.
Definition icalcomponent.c:135
+ + +
Definition icaltimezoneimpl.h:23
+
Definition icalcomponent.h:36
+
Definition icalcomponent.c:36
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltime.h:96
+
Definition icaltime.h:105
+
Definition pvl.h:34
+
+ + + + diff --git a/static/apidocs/icaldirset_8h.html b/static/apidocs/icaldirset_8h.html new file mode 100644 index 00000000..e5815d8a --- /dev/null +++ b/static/apidocs/icaldirset_8h.html @@ -0,0 +1,243 @@ + + + + + + + +Libical API Documentation: icaldirset.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icaldirset.h File Reference
+
+
+ +

icaldirset manages a database of ical components and offers interfaces for reading, writing and searching for components. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

struct  icaldirset_options
 
+ + + + + +

+Typedefs

+typedef struct icaldirset_impl icaldirset
 
+typedef struct icaldirset_options icaldirset_options
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

icalerrorenum icaldirset_add_component (icalset *store, icalcomponent *comp)
 
+icalsetiter icaldirset_begin_component (icalset *set, icalcomponent_kind kind, icalgauge *gauge, const char *tzid)
 
+void icaldirset_clear (icalset *store)
 
+icalerrorenum icaldirset_commit (icalset *set)
 
+int icaldirset_count_components (icalset *store, icalcomponent_kind kind)
 
+icalcomponenticaldirset_fetch (icalset *store, icalcomponent_kind kind, const char *uid)
 
+icalcomponenticaldirset_fetch_match (icalset *set, icalcomponent *c)
 
+void icaldirset_free (icalset *set)
 
+icalcomponenticaldirset_get_current_component (icalset *store)
 
+icalcomponenticaldirset_get_first_component (icalset *store)
 
+icalcomponenticaldirset_get_next_component (icalset *store)
 
+int icaldirset_has_uid (icalset *store, const char *uid)
 
+icalseticaldirset_init (icalset *set, const char *dsn, void *options)
 
+void icaldirset_mark (icalset *set)
 
+icalerrorenum icaldirset_modify (icalset *store, icalcomponent *oldc, icalcomponent *newc)
 
+icalseticaldirset_new (const char *path)
 
+icalseticaldirset_new_reader (const char *path)
 
+icalseticaldirset_new_writer (const char *path)
 
+const char * icaldirset_path (icalset *set)
 
icalerrorenum icaldirset_remove_component (icalset *store, icalcomponent *comp)
 
+icalerrorenum icaldirset_select (icalset *store, icalgauge *gauge)
 
+icalcomponenticaldirsetiter_to_next (icalset *set, icalsetiter *i)
 
+icalcomponenticaldirsetiter_to_prior (icalset *set, icalsetiter *i)
 
+

Detailed Description

+

icaldirset manages a database of ical components and offers interfaces for reading, writing and searching for components.

+

icaldirset groups components in to clusters based on their DTSTAMP time – all components that start in the same month are grouped together in a single file. All files in a store are kept in a single directory.

+

The primary interfaces are icaldirset__get_first_component and icaldirset_get_next_component. These routine iterate through all of the components in the store, subject to the current gauge. A gauge is an icalcomponent that is tested against other components for a match. If a gauge has been set with icaldirset_select, icaldirset_first and icaldirset_next will only return components that match the gauge.

+

The Store generated UIDs for all objects that are stored if they do not already have a UID. The UID is the name of the cluster (month & year as MMYYYY) plus a unique serial number. The serial number is stored as a property of the cluster.

+

Function Documentation

+ +

◆ icaldirset_add_component()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalerrorenum icaldirset_add_component (icalsetstore,
icalcomponentcomp 
)
+
+

This assumes that the top level component is a VCALENDAR, and there is an inner component of type VEVENT, VTODO or VJOURNAL. The inner component must have a DSTAMP property

+ +
+
+ +

◆ icaldirset_remove_component()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalerrorenum icaldirset_remove_component (icalsetset,
icalcomponentcomp 
)
+
+

Remove a component in the current cluster. HACK. This routine is a "friend" of icalfileset, and breaks its encapsulation. It was either do it this way, or add several layers of interfaces that had no other use.

+ +
+
+
+ + + + diff --git a/static/apidocs/icaldirset_8h_source.html b/static/apidocs/icaldirset_8h_source.html new file mode 100644 index 00000000..39a84540 --- /dev/null +++ b/static/apidocs/icaldirset_8h_source.html @@ -0,0 +1,197 @@ + + + + + + + +Libical API Documentation: icaldirset.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaldirset.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icaldirset.h
+
3 CREATOR: eric 28 November 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
48#ifndef ICALDIRSET_H
+
49#define ICALDIRSET_H
+
50
+
51#include "libical_icalss_export.h"
+
52#include "icalset.h"
+
53
+
54/* icaldirset Routines for storing, fetching, and searching for ical
+
55 * objects in a database */
+
56
+
57typedef struct icaldirset_impl icaldirset;
+
58
+
59LIBICAL_ICALSS_EXPORT icalset *icaldirset_new(const char *path);
+
60
+
61LIBICAL_ICALSS_EXPORT icalset *icaldirset_new_reader(const char *path);
+
62
+
63LIBICAL_ICALSS_EXPORT icalset *icaldirset_new_writer(const char *path);
+
64
+
65LIBICAL_ICALSS_EXPORT icalset *icaldirset_init(icalset *set, const char *dsn, void *options);
+
66
+
67LIBICAL_ICALSS_EXPORT void icaldirset_free(icalset *set);
+
68
+
69LIBICAL_ICALSS_EXPORT const char *icaldirset_path(icalset *set);
+
70
+
71/* Marks the cluster as changed, so it will be written to disk when it
+
72 is freed. Commit writes to disk immediately*/
+
73LIBICAL_ICALSS_EXPORT void icaldirset_mark(icalset *set);
+
74
+
75LIBICAL_ICALSS_EXPORT icalerrorenum icaldirset_commit(icalset *set);
+
76
+
82LIBICAL_ICALSS_EXPORT icalerrorenum icaldirset_add_component(icalset *store, icalcomponent *comp);
+
83LIBICAL_ICALSS_EXPORT icalerrorenum icaldirset_remove_component(icalset *store,
+
84 icalcomponent *comp);
+
85
+
86LIBICAL_ICALSS_EXPORT int icaldirset_count_components(icalset *store, icalcomponent_kind kind);
+
87
+
88/* Restricts the component returned by icaldirset_first, _next to those
+
89 that pass the gauge. _clear removes the gauge. */
+
90LIBICAL_ICALSS_EXPORT icalerrorenum icaldirset_select(icalset *store, icalgauge *gauge);
+
91
+
92LIBICAL_ICALSS_EXPORT void icaldirset_clear(icalset *store);
+
93
+
94/* Gets a component by uid */
+
95LIBICAL_ICALSS_EXPORT icalcomponent *icaldirset_fetch(icalset *store,
+
96 icalcomponent_kind kind, const char *uid);
+
97
+
98LIBICAL_ICALSS_EXPORT int icaldirset_has_uid(icalset *store, const char *uid);
+
99
+
100LIBICAL_ICALSS_EXPORT icalcomponent *icaldirset_fetch_match(icalset *set, icalcomponent *c);
+
101
+
102/* Modifies components according to the MODIFY method of CAP. Works on
+
103 the currently selected components. */
+
104LIBICAL_ICALSS_EXPORT icalerrorenum icaldirset_modify(icalset *store,
+
105 icalcomponent *oldc, icalcomponent *newc);
+
106
+
107/* Iterates through the components. If a gauge has been defined, these
+
108 will skip over components that do not pass the gauge */
+
109
+
110LIBICAL_ICALSS_EXPORT icalcomponent *icaldirset_get_current_component(icalset *store);
+
111
+
112LIBICAL_ICALSS_EXPORT icalcomponent *icaldirset_get_first_component(icalset *store);
+
113
+
114LIBICAL_ICALSS_EXPORT icalcomponent *icaldirset_get_next_component(icalset *store);
+
115
+
116/* External iterator for thread safety */
+
117LIBICAL_ICALSS_EXPORT icalsetiter icaldirset_begin_component(icalset *set,
+
118 icalcomponent_kind kind,
+
119 icalgauge *gauge, const char *tzid);
+
120
+
121LIBICAL_ICALSS_EXPORT icalcomponent *icaldirsetiter_to_next(icalset *set, icalsetiter *i);
+
122
+
123LIBICAL_ICALSS_EXPORT icalcomponent *icaldirsetiter_to_prior(icalset *set, icalsetiter *i);
+
124
+
125typedef struct icaldirset_options
+
126{
+
127 int flags;
+ +
129
+
130#endif /* !ICALDIRSET_H */
+
icalerrorenum icaldirset_add_component(icalset *store, icalcomponent *comp)
Definition icaldirset.c:297
+
icalerrorenum icaldirset_remove_component(icalset *store, icalcomponent *comp)
Definition icaldirset.c:384
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+ +
Definition icalcomponent.c:36
+
Definition icaldirsetimpl.h:31
+
icaldirset_options options
Definition icaldirsetimpl.h:34
+
icalgauge * gauge
Definition icaldirsetimpl.h:36
+
Definition icaldirset.h:126
+
int flags
Definition icaldirset.h:127
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
Definition icalset.h:52
+
+ + + + diff --git a/static/apidocs/icaldirsetimpl_8h_source.html b/static/apidocs/icaldirsetimpl_8h_source.html new file mode 100644 index 00000000..f37471c5 --- /dev/null +++ b/static/apidocs/icaldirsetimpl_8h_source.html @@ -0,0 +1,142 @@ + + + + + + + +Libical API Documentation: icaldirsetimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaldirsetimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icaldirsetimpl.h
+
3 CREATOR: eric 21 Aug 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALDIRSETIMPL_H
+
23#define ICALDIRSETIMPL_H
+
24
+
25#include "icalcluster.h"
+
26
+
27/* This definition is in its own file so it can be kept out of the
+
28 main header file, but used by "friend classes" like icalset*/
+
29
+ +
31{
+ +
33 char *dir;
+ + + + + + +
40};
+
41
+
42#endif
+
Definition icalclusterimpl.h:28
+
Definition icaldirsetimpl.h:31
+
icalset super
Definition icaldirsetimpl.h:32
+
icaldirset_options options
Definition icaldirsetimpl.h:34
+
icalgauge * gauge
Definition icaldirsetimpl.h:36
+
char * dir
Definition icaldirsetimpl.h:33
+
int first_component
Definition icaldirsetimpl.h:37
+
icalcluster * cluster
Definition icaldirsetimpl.h:35
+
pvl_elem directory_iterator
Definition icaldirsetimpl.h:39
+
pvl_list directory
Definition icaldirsetimpl.h:38
+
Definition icaldirset.h:126
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
Definition pvl.h:34
+
Definition pvl.c:65
+
+ + + + diff --git a/static/apidocs/icalduration_8h.html b/static/apidocs/icalduration_8h.html new file mode 100644 index 00000000..6298c2a6 --- /dev/null +++ b/static/apidocs/icalduration_8h.html @@ -0,0 +1,559 @@ + + + + + + + +Libical API Documentation: icalduration.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalduration.h File Reference
+
+
+ +

Methods for working with durations in iCal. +More...

+ +

Go to the source code of this file.

+ + + + + +

+Data Structures

struct  icaldurationtype
 A struct representing a duration. More...
 
+ + + +

+Macros

+#define ICALDURATIONTYPE_INITIALIZER   { 0, 0, 0, 0, 0, 0 }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

char * icaldurationtype_as_ical_string (struct icaldurationtype d)
 
char * icaldurationtype_as_ical_string_r (struct icaldurationtype d)
 
int icaldurationtype_as_int (struct icaldurationtype duration)
 Converts an icaldurationtype into the duration in seconds as int.
 
struct icaldurationtype icaldurationtype_bad_duration (void)
 Creates a bad duration (used to indicate error).
 
struct icaldurationtype icaldurationtype_from_int (int t)
 Creates a new icaldurationtype from a duration in seconds.
 
struct icaldurationtype icaldurationtype_from_string (const char *dur)
 Creates a new icaldurationtype from a duration given as a string.
 
int icaldurationtype_is_bad_duration (struct icaldurationtype d)
 Checks if a duration is a bad duration.
 
int icaldurationtype_is_null_duration (struct icaldurationtype d)
 Checks if a duration is a null duration.
 
struct icaldurationtype icaldurationtype_null_duration (void)
 Creates a duration with zero length.
 
struct icaltimetype icaltime_add (struct icaltimetype t, struct icaldurationtype d)
 Adds a duration to an icaltime object and returns the result.
 
struct icaldurationtype icaltime_subtract (struct icaltimetype t1, struct icaltimetype t2)
 Returns the difference between two icaltimetype as a duration.
 
+

Detailed Description

+

Methods for working with durations in iCal.

+

Function Documentation

+ +

◆ icaldurationtype_as_ical_string()

+ +
+
+ + + + + + + + +
char * icaldurationtype_as_ical_string (struct icaldurationtype d)
+
+

Converts an icaldurationtype into the iCal format as string.

Parameters
+ + +
dis the icaldurationtype to convert to iCal format
+
+
+
Returns
A string representing duration d in iCal format
+
See also
icaldurationtype_as_ical_string_r()
+
Ownership
The string returned by this function is owned by the caller and needs to be released with free() after it's no longer needed.
+
Usage
// create new duration
+
struct icaldurationtype duration;
+
duration = icaldurationtype_from_int(3424224);
+
+
// print as ical-formatted string
+
char *ical = icaldurationtype_as_ical_string(duration);
+
printf("%s\n", ical);
+
+
// release string
+
free(ical);
+
struct icaldurationtype icaldurationtype_from_int(int t)
Creates a new icaldurationtype from a duration in seconds.
Definition icalduration.c:32
+
char * icaldurationtype_as_ical_string(struct icaldurationtype d)
Definition icalduration.c:211
+
A struct representing a duration.
Definition icalduration.h:37
+
+ +
+
+ +

◆ icaldurationtype_as_ical_string_r()

+ +
+
+ + + + + + + + +
char * icaldurationtype_as_ical_string_r (struct icaldurationtype d)
+
+

Converts an icaldurationtype into the iCal format as string.

Parameters
+ + +
dis the icaldurationtype to convert to iCal format
+
+
+
Returns
A string representing duration d in iCal format
+
See also
icaldurationtype_as_ical_string()
+
Ownership
The string returned by this function is owned by libical and must not be released by the caller of the function.
+
Usage
// create new duration
+
struct icaldurationtype duration;
+
duration = icaldurationtype_from_int(3424224);
+
+
// print as ical-formatted string
+
printf("%s\n", icaldurationtype_as_ical_string(duration));
+
+ +
+
+ +

◆ icaldurationtype_as_int()

+ +
+
+ + + + + + + + +
int icaldurationtype_as_int (struct icaldurationtype duration)
+
+ +

Converts an icaldurationtype into the duration in seconds as int.

+
Parameters
+ + +
durationThe duration to convert to seconds
+
+
+
Returns
An int representing the duration in seconds
+
Usage
// create icaldurationtype with given duration
+
struct icaldurationtype duration;
+
duration = icaldurationtype_from_int(3532342);
+
+
// get the duration in seconds and verify it
+
assert(icaldurationtype_as_int(duration) == 3532342);
+
int icaldurationtype_as_int(struct icaldurationtype duration)
Converts an icaldurationtype into the duration in seconds as int.
Definition icalduration.c:270
+
+ +
+
+ +

◆ icaldurationtype_bad_duration()

+ +
+
+ + + + + + + + +
struct icaldurationtype icaldurationtype_bad_duration (void )
+
+ +

Creates a bad duration (used to indicate error).

+
Returns
A bad duration
+
See also
icaldurationtype_is_bad_duration()
+
Usage
// create bad duration
+
struct icaldurationtype duration;
+ +
+
// make sure it's bad
+ +
struct icaldurationtype icaldurationtype_bad_duration(void)
Creates a bad duration (used to indicate error).
Definition icalduration.c:304
+
int icaldurationtype_is_bad_duration(struct icaldurationtype d)
Checks if a duration is a bad duration.
Definition icalduration.c:313
+
+ +
+
+ +

◆ icaldurationtype_from_int()

+ +
+
+ + + + + + + + +
struct icaldurationtype icaldurationtype_from_int (int t)
+
+ +

Creates a new icaldurationtype from a duration in seconds.

+
Parameters
+ + +
tThe duration in seconds
+
+
+
Returns
An icaldurationtype representing the duration t in seconds
+
Example
// create a new icaldurationtype with a duration of 60 seconds
+
struct icaldurationtype duration;
+ +
+
// verify that the duration is one minute
+
assert(duration.minutes == 1);
+
+ +
+
+ +

◆ icaldurationtype_from_string()

+ +
+
+ + + + + + + + +
struct icaldurationtype icaldurationtype_from_string (const char * dur)
+
+ +

Creates a new icaldurationtype from a duration given as a string.

+
Parameters
+ + +
durThe duration as a string
+
+
+
Returns
An icaldurationtype representing the duration dur
+
Error handling
When given bad input, it sets icalerrno to ICAL_MALFORMEDDATA_ERROR and returns icaldurationtype_bad_duration().
+
Usage
// create a new icaldurationtype
+
struct icaldurationtype duration;
+
duration = icaldurationtype_from_string("+PT05M");
+
+
// verify that it's 5 minutes
+
assert(duration.minutes == 5);
+
struct icaldurationtype icaldurationtype_from_string(const char *dur)
Creates a new icaldurationtype from a duration given as a string.
Definition icalduration.c:62
+
+ +
+
+ +

◆ icaldurationtype_is_bad_duration()

+ +
+
+ + + + + + + + +
int icaldurationtype_is_bad_duration (struct icaldurationtype d)
+
+ +

Checks if a duration is a bad duration.

+
Parameters
+ + +
dThe duration to check
+
+
+
Returns
1 if the duration is a bad duration, 0 otherwise
+
See also
icalduration_bad_duration()
+
Usage
// make bad duration
+
struct icaldurationtype duration;
+ +
+
// check bad duration
+ +
+ +
+
+ +

◆ icaldurationtype_is_null_duration()

+ +
+
+ + + + + + + + +
int icaldurationtype_is_null_duration (struct icaldurationtype d)
+
+ +

Checks if a duration is a null duration.

+
Parameters
+ + +
dThe duration to check
+
+
+
Returns
1 if the duration is a null duration, 0 otherwise
+
See also
icalduration_null_duration()
+
Usage
// make null duration
+
struct icaldurationtype duration;
+ +
+
// check null duration
+ +
struct icaldurationtype icaldurationtype_null_duration(void)
Creates a duration with zero length.
Definition icalduration.c:279
+
int icaldurationtype_is_null_duration(struct icaldurationtype d)
Checks if a duration is a null duration.
Definition icalduration.c:288
+
+ +
+
+ +

◆ icaldurationtype_null_duration()

+ +
+
+ + + + + + + + +
struct icaldurationtype icaldurationtype_null_duration (void )
+
+ +

Creates a duration with zero length.

+
Returns
An icaldurationtype with a zero length
+
See also
icaldurationtype_is_null_duration()
+
Usage
// create null duration
+
struct icaldurationtype duration;
+ +
+
// make sure it's zero length
+
assert(duration.days == 0);
+
assert(duration.weeks == 0);
+
assert(duration.hours == 0);
+
assert(duration.minutes == 0);
+
assert(duration.seconds == 0);
+
assert(icalduration_is_null_duration(duration));
+
assert(icalduration_as_int(duration) == 0);
+
+ +
+
+ +

◆ icaltime_add()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaltimetype icaltime_add (struct icaltimetype t,
struct icaldurationtype d 
)
+
+ +

Adds a duration to an icaltime object and returns the result.

+
Parameters
+ + + +
tThe time object to add the duration to
dThe duration to add to the time object
+
+
+
Returns
The new icaltimetype which has been added the duration to
+
Example
struct icaltimetype time;
+
struct icaldurationtype duration;
+
+
// create time and duration objects
+
time = icaltime_today();
+ +
+
// add the duration to the time object
+
time = icaltime_add(time, duration);
+
struct icaltimetype icaltime_add(struct icaltimetype t, struct icaldurationtype d)
Adds a duration to an icaltime object and returns the result.
Definition icalduration.c:318
+
Definition icaltime.h:105
+
+ +
+
+ +

◆ icaltime_subtract()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaldurationtype icaltime_subtract (struct icaltimetype t1,
struct icaltimetype t2 
)
+
+ +

Returns the difference between two icaltimetype as a duration.

+
Parameters
+ + + +
t1The first point in time
t2The second point in time
+
+
+
Returns
An icaldurationtype representing the duration the elapsed between t1 and t2
+
Usage
struct icaltimetype t1 = icaltime_from_day_of_year(111, 2018);
+
struct icaltimetype t2 = icaltime_from_day_of_year(112, 2018);
+
struct icaldurationtype duration;
+
+
// calculate duration between time points
+
duration = icaltime_subtract(t1, t2);
+
struct icaldurationtype icaltime_subtract(struct icaltimetype t1, struct icaltimetype t2)
Returns the difference between two icaltimetype as a duration.
Definition icalduration.c:339
+
struct icaltimetype icaltime_from_day_of_year(const int doy, const int year)
Constructor.
Definition icaltime.c:544
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalduration_8h_source.html b/static/apidocs/icalduration_8h_source.html new file mode 100644 index 00000000..b6ff50de --- /dev/null +++ b/static/apidocs/icalduration_8h_source.html @@ -0,0 +1,163 @@ + + + + + + + +Libical API Documentation: icalduration.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalduration.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalduration.h
+
3 CREATOR: eric 26 Jan 2001
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALDURATION_H
+
23#define ICALDURATION_H
+
24
+
30#include "libical_ical_export.h"
+
31#include "icaltime.h"
+
32
+ +
37{
+
38 int is_neg;
+
39 unsigned int days;
+
40 unsigned int weeks;
+
41 unsigned int hours;
+
42 unsigned int minutes;
+
43 unsigned int seconds;
+
44};
+
45
+
46#define ICALDURATIONTYPE_INITIALIZER { 0, 0, 0, 0, 0, 0 }
+
47
+
63LIBICAL_ICAL_EXPORT struct icaldurationtype icaldurationtype_from_int(int t);
+
64
+
84LIBICAL_ICAL_EXPORT struct icaldurationtype icaldurationtype_from_string(const char *dur);
+
85
+
101LIBICAL_ICAL_EXPORT int icaldurationtype_as_int(struct icaldurationtype duration);
+
102
+
127LIBICAL_ICAL_EXPORT char *icaldurationtype_as_ical_string(struct icaldurationtype d);
+
128
+
149LIBICAL_ICAL_EXPORT char *icaldurationtype_as_ical_string_r(struct icaldurationtype d);
+
150
+
172LIBICAL_ICAL_EXPORT struct icaldurationtype icaldurationtype_null_duration(void);
+
173
+
189LIBICAL_ICAL_EXPORT struct icaldurationtype icaldurationtype_bad_duration(void);
+
190
+
207LIBICAL_ICAL_EXPORT int icaldurationtype_is_null_duration(struct icaldurationtype d);
+
208
+
225LIBICAL_ICAL_EXPORT int icaldurationtype_is_bad_duration(struct icaldurationtype d);
+
226
+
246LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_add(struct icaltimetype t,
+
247 struct icaldurationtype d);
+
248
+
266LIBICAL_ICAL_EXPORT struct icaldurationtype icaltime_subtract(struct icaltimetype t1,
+
267 struct icaltimetype t2);
+
268
+
269#endif /* !ICALDURATION_H */
+
struct icaldurationtype icaldurationtype_from_string(const char *dur)
Creates a new icaldurationtype from a duration given as a string.
Definition icalduration.c:62
+
int icaldurationtype_as_int(struct icaldurationtype duration)
Converts an icaldurationtype into the duration in seconds as int.
Definition icalduration.c:270
+
struct icaldurationtype icaldurationtype_bad_duration(void)
Creates a bad duration (used to indicate error).
Definition icalduration.c:304
+
struct icaldurationtype icaldurationtype_from_int(int t)
Creates a new icaldurationtype from a duration in seconds.
Definition icalduration.c:32
+
int icaldurationtype_is_bad_duration(struct icaldurationtype d)
Checks if a duration is a bad duration.
Definition icalduration.c:313
+
struct icaldurationtype icaltime_subtract(struct icaltimetype t1, struct icaltimetype t2)
Returns the difference between two icaltimetype as a duration.
Definition icalduration.c:339
+
struct icaltimetype icaltime_add(struct icaltimetype t, struct icaldurationtype d)
Adds a duration to an icaltime object and returns the result.
Definition icalduration.c:318
+
char * icaldurationtype_as_ical_string_r(struct icaldurationtype d)
Definition icalduration.c:220
+
struct icaldurationtype icaldurationtype_null_duration(void)
Creates a duration with zero length.
Definition icalduration.c:279
+
char * icaldurationtype_as_ical_string(struct icaldurationtype d)
Definition icalduration.c:211
+
int icaldurationtype_is_null_duration(struct icaldurationtype d)
Checks if a duration is a null duration.
Definition icalduration.c:288
+
struct icaltimetype is a pseudo-object that abstracts time handling.
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icalenums_8h.html b/static/apidocs/icalenums_8h.html new file mode 100644 index 00000000..60fb9afd --- /dev/null +++ b/static/apidocs/icalenums_8h.html @@ -0,0 +1,264 @@ + + + + + + + +Libical API Documentation: icalenums.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalenums.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

+#define icalenum_component_kind_to_string(x)   icalcomponent_kind_to_string(x)
 
+#define icalenum_method_to_string(x)   icalproperty_method_to_string(x)
 
+#define icalenum_property_kind_to_string(x)   icalproperty_kind_to_string(x)
 
+#define icalenum_property_kind_to_value_kind(x)   icalproperty_kind_to_value_kind(x)
 
+#define icalenum_status_to_string(x)   icalproperty_status_to_string(x)
 
+#define icalenum_string_to_component_kind(x)   icalcomponent_string_to_kind(x)
 
+#define icalenum_string_to_method(x)   icalproperty_string_to_method(x)
 
+#define icalenum_string_to_property_kind(x)   icalproperty_string_to_kind(x)
 
+#define icalenum_string_to_status(x)   icalproperty_string_to_status(x)
 
+#define icalenum_string_to_value_kind(x)   icalvalue_string_to_kind(x)
 
+#define icalenum_value_kind_to_string(x)   icalvalue_kind_to_string(x)
 
+ + + + + +

+Typedefs

+typedef enum icalcomponent_kind icalcomponent_kind
 
+typedef enum icalrequeststatus icalrequeststatus
 
+ + + + + +

+Enumerations

enum  icalcomponent_kind {
+  ICAL_NO_COMPONENT +, ICAL_ANY_COMPONENT +, ICAL_XROOT_COMPONENT +, ICAL_XATTACH_COMPONENT +,
+  ICAL_VEVENT_COMPONENT +, ICAL_VTODO_COMPONENT +, ICAL_VJOURNAL_COMPONENT +, ICAL_VCALENDAR_COMPONENT +,
+  ICAL_VAGENDA_COMPONENT +, ICAL_VFREEBUSY_COMPONENT +, ICAL_VALARM_COMPONENT +, ICAL_XAUDIOALARM_COMPONENT +,
+  ICAL_XDISPLAYALARM_COMPONENT +, ICAL_XEMAILALARM_COMPONENT +, ICAL_XPROCEDUREALARM_COMPONENT +, ICAL_VTIMEZONE_COMPONENT +,
+  ICAL_XSTANDARD_COMPONENT +, ICAL_XDAYLIGHT_COMPONENT +, ICAL_X_COMPONENT +, ICAL_VSCHEDULE_COMPONENT +,
+  ICAL_VQUERY_COMPONENT +, ICAL_VREPLY_COMPONENT +, ICAL_VCAR_COMPONENT +, ICAL_VCOMMAND_COMPONENT +,
+  ICAL_XLICINVALID_COMPONENT +, ICAL_XLICMIMEPART_COMPONENT +, ICAL_VAVAILABILITY_COMPONENT +, ICAL_XAVAILABLE_COMPONENT +,
+  ICAL_VPOLL_COMPONENT +, ICAL_VVOTER_COMPONENT +, ICAL_XVOTE_COMPONENT +, ICAL_VPATCH_COMPONENT +,
+  ICAL_XPATCH_COMPONENT +
+ }
 
enum  icalrequeststatus {
+  ICAL_UNKNOWN_STATUS +, ICAL_2_0_SUCCESS_STATUS +, ICAL_2_1_FALLBACK_STATUS +, ICAL_2_2_IGPROP_STATUS +,
+  ICAL_2_3_IGPARAM_STATUS +, ICAL_2_4_IGXPROP_STATUS +, ICAL_2_5_IGXPARAM_STATUS +, ICAL_2_6_IGCOMP_STATUS +,
+  ICAL_2_7_FORWARD_STATUS +, ICAL_2_8_ONEEVENT_STATUS +, ICAL_2_9_TRUNC_STATUS +, ICAL_2_10_ONETODO_STATUS +,
+  ICAL_2_11_TRUNCRRULE_STATUS +, ICAL_3_0_INVPROPNAME_STATUS +, ICAL_3_1_INVPROPVAL_STATUS +, ICAL_3_2_INVPARAM_STATUS +,
+  ICAL_3_3_INVPARAMVAL_STATUS +, ICAL_3_4_INVCOMP_STATUS +, ICAL_3_5_INVTIME_STATUS +, ICAL_3_6_INVRULE_STATUS +,
+  ICAL_3_7_INVCU_STATUS +, ICAL_3_8_NOAUTH_STATUS +, ICAL_3_9_BADVERSION_STATUS +, ICAL_3_10_TOOBIG_STATUS +,
+  ICAL_3_11_MISSREQCOMP_STATUS +, ICAL_3_12_UNKCOMP_STATUS +, ICAL_3_13_BADCOMP_STATUS +, ICAL_3_14_NOCAP_STATUS +,
+  ICAL_3_15_INVCOMMAND +, ICAL_4_0_BUSY_STATUS +, ICAL_4_1_STORE_ACCESS_DENIED +, ICAL_4_2_STORE_FAILED +,
+  ICAL_4_3_STORE_NOT_FOUND +, ICAL_5_0_MAYBE_STATUS +, ICAL_5_1_UNAVAIL_STATUS +, ICAL_5_2_NOSERVICE_STATUS +,
+  ICAL_5_3_NOSCHED_STATUS +, ICAL_6_1_CONTAINER_NOT_FOUND +, ICAL_9_0_UNRECOGNIZED_COMMAND +
+ }
 
+ + + + + + + + + + + + + + + + + + +

+Functions

+icalrequeststatus icalenum_num_to_reqstat (short major, short minor)
 Returns a request status for major/minor status numbers.
 
+char * icalenum_reqstat_code (icalrequeststatus stat)
 
+char * icalenum_reqstat_code_r (icalrequeststatus stat)
 Returns the code for a request status.
 
+const char * icalenum_reqstat_desc (icalrequeststatus stat)
 Returns the descriptive text for a request status.
 
+short icalenum_reqstat_major (icalrequeststatus stat)
 Returns the major number for a request status.
 
+short icalenum_reqstat_minor (icalrequeststatus stat)
 Returns the minor number for a request status.
 
+
+ + + + diff --git a/static/apidocs/icalenums_8h_source.html b/static/apidocs/icalenums_8h_source.html new file mode 100644 index 00000000..f7eb493e --- /dev/null +++ b/static/apidocs/icalenums_8h_source.html @@ -0,0 +1,257 @@ + + + + + + + +Libical API Documentation: icalenums.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalenums.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalenums.h
+
3
+
4 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
5
+
6 This library is free software; you can redistribute it and/or modify
+
7 it under the terms of either:
+
8
+
9 The LGPL as published by the Free Software Foundation, version
+
10 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
11
+
12 Or:
+
13
+
14 The Mozilla Public License Version 2.0. You may obtain a copy of
+
15 the License at https://www.mozilla.org/MPL/
+
16
+
17 Contributions from:
+
18 Graham Davison <g.m.davison@computer.org>
+
19======================================================================*/
+
20
+
21#ifndef ICALENUMS_H
+
22#define ICALENUMS_H
+
23
+
24#include "libical_ical_export.h"
+
25
+
28/***********************************************************************
+
29 * Component enumerations
+
30**********************************************************************/
+
31
+
32typedef enum icalcomponent_kind
+
33{
+
34 ICAL_NO_COMPONENT,
+
35 ICAL_ANY_COMPONENT, /* Used to select all components */
+
36 ICAL_XROOT_COMPONENT,
+
37 ICAL_XATTACH_COMPONENT, /* MIME attached data, returned by parser. */
+
38 ICAL_VEVENT_COMPONENT,
+
39 ICAL_VTODO_COMPONENT,
+
40 ICAL_VJOURNAL_COMPONENT,
+
41 ICAL_VCALENDAR_COMPONENT,
+
42 ICAL_VAGENDA_COMPONENT,
+
43 ICAL_VFREEBUSY_COMPONENT,
+
44 ICAL_VALARM_COMPONENT,
+
45 ICAL_XAUDIOALARM_COMPONENT,
+
46 ICAL_XDISPLAYALARM_COMPONENT,
+
47 ICAL_XEMAILALARM_COMPONENT,
+
48 ICAL_XPROCEDUREALARM_COMPONENT,
+
49 ICAL_VTIMEZONE_COMPONENT,
+
50 ICAL_XSTANDARD_COMPONENT,
+
51 ICAL_XDAYLIGHT_COMPONENT,
+
52 ICAL_X_COMPONENT,
+
53 ICAL_VSCHEDULE_COMPONENT,
+
54 ICAL_VQUERY_COMPONENT,
+
55 ICAL_VREPLY_COMPONENT,
+
56 ICAL_VCAR_COMPONENT,
+
57 ICAL_VCOMMAND_COMPONENT,
+
58 ICAL_XLICINVALID_COMPONENT,
+
59 ICAL_XLICMIMEPART_COMPONENT, /* A non-stardard component that mirrors
+
60 structure of MIME data */
+
61 ICAL_VAVAILABILITY_COMPONENT,
+
62 ICAL_XAVAILABLE_COMPONENT,
+
63 ICAL_VPOLL_COMPONENT,
+
64 ICAL_VVOTER_COMPONENT,
+
65 ICAL_XVOTE_COMPONENT,
+
66 ICAL_VPATCH_COMPONENT,
+
67 ICAL_XPATCH_COMPONENT
+
68} icalcomponent_kind;
+
69
+
70/***********************************************************************
+
71 * Request Status codes
+
72 **********************************************************************/
+
73
+
74typedef enum icalrequeststatus
+
75{
+
76 ICAL_UNKNOWN_STATUS,
+
77 ICAL_2_0_SUCCESS_STATUS,
+
78 ICAL_2_1_FALLBACK_STATUS,
+
79 ICAL_2_2_IGPROP_STATUS,
+
80 ICAL_2_3_IGPARAM_STATUS,
+
81 ICAL_2_4_IGXPROP_STATUS,
+
82 ICAL_2_5_IGXPARAM_STATUS,
+
83 ICAL_2_6_IGCOMP_STATUS,
+
84 ICAL_2_7_FORWARD_STATUS,
+
85 ICAL_2_8_ONEEVENT_STATUS,
+
86 ICAL_2_9_TRUNC_STATUS,
+
87 ICAL_2_10_ONETODO_STATUS,
+
88 ICAL_2_11_TRUNCRRULE_STATUS,
+
89 ICAL_3_0_INVPROPNAME_STATUS,
+
90 ICAL_3_1_INVPROPVAL_STATUS,
+
91 ICAL_3_2_INVPARAM_STATUS,
+
92 ICAL_3_3_INVPARAMVAL_STATUS,
+
93 ICAL_3_4_INVCOMP_STATUS,
+
94 ICAL_3_5_INVTIME_STATUS,
+
95 ICAL_3_6_INVRULE_STATUS,
+
96 ICAL_3_7_INVCU_STATUS,
+
97 ICAL_3_8_NOAUTH_STATUS,
+
98 ICAL_3_9_BADVERSION_STATUS,
+
99 ICAL_3_10_TOOBIG_STATUS,
+
100 ICAL_3_11_MISSREQCOMP_STATUS,
+
101 ICAL_3_12_UNKCOMP_STATUS,
+
102 ICAL_3_13_BADCOMP_STATUS,
+
103 ICAL_3_14_NOCAP_STATUS,
+
104 ICAL_3_15_INVCOMMAND,
+
105 ICAL_4_0_BUSY_STATUS,
+
106 ICAL_4_1_STORE_ACCESS_DENIED,
+
107 ICAL_4_2_STORE_FAILED,
+
108 ICAL_4_3_STORE_NOT_FOUND,
+
109 ICAL_5_0_MAYBE_STATUS,
+
110 ICAL_5_1_UNAVAIL_STATUS,
+
111 ICAL_5_2_NOSERVICE_STATUS,
+
112 ICAL_5_3_NOSCHED_STATUS,
+
113 ICAL_6_1_CONTAINER_NOT_FOUND,
+
114 ICAL_9_0_UNRECOGNIZED_COMMAND
+
115} icalrequeststatus;
+
116
+
119LIBICAL_ICAL_EXPORT const char *icalenum_reqstat_desc(icalrequeststatus stat);
+
120
+
123LIBICAL_ICAL_EXPORT short icalenum_reqstat_major(icalrequeststatus stat);
+
124
+
127LIBICAL_ICAL_EXPORT short icalenum_reqstat_minor(icalrequeststatus stat);
+
128
+
131LIBICAL_ICAL_EXPORT icalrequeststatus icalenum_num_to_reqstat(short major, short minor);
+
132
+
133LIBICAL_ICAL_EXPORT char *icalenum_reqstat_code(icalrequeststatus stat);
+
134
+
137LIBICAL_ICAL_EXPORT char *icalenum_reqstat_code_r(icalrequeststatus stat);
+
138
+
139/***********************************************************************
+
140 * Conversion functions
+
141**********************************************************************/
+
142
+
143/* These routines used to be in icalenums.c, but were moved into the
+
144 icalproperty, icalparameter, icalvalue, or icalcomponent modules. */
+
145
+
146/*const char* icalproperty_kind_to_string(icalproperty_kind kind);*/
+
147#define icalenum_property_kind_to_string(x) icalproperty_kind_to_string(x)
+
148
+
149/*icalproperty_kind icalproperty_string_to_kind(const char* string)*/
+
150#define icalenum_string_to_property_kind(x) icalproperty_string_to_kind(x)
+
151
+
152/*icalvalue_kind icalproperty_kind_to_value_kind(icalproperty_kind kind);*/
+
153#define icalenum_property_kind_to_value_kind(x) icalproperty_kind_to_value_kind(x)
+
154
+
155/*const char* icalenum_method_to_string(icalproperty_method);*/
+
156#define icalenum_method_to_string(x) icalproperty_method_to_string(x)
+
157
+
158/*icalproperty_method icalenum_string_to_method(const char* string);*/
+
159#define icalenum_string_to_method(x) icalproperty_string_to_method(x)
+
160
+
161/*const char* icalenum_status_to_string(icalproperty_status);*/
+
162#define icalenum_status_to_string(x) icalproperty_status_to_string(x)
+
163
+
164/*icalproperty_status icalenum_string_to_status(const char* string);*/
+
165#define icalenum_string_to_status(x) icalproperty_string_to_status(x)
+
166
+
167/*icalvalue_kind icalenum_string_to_value_kind(const char* str);*/
+
168#define icalenum_string_to_value_kind(x) icalvalue_string_to_kind(x)
+
169
+
170/*const char* icalenum_value_kind_to_string(icalvalue_kind kind);*/
+
171#define icalenum_value_kind_to_string(x) icalvalue_kind_to_string(x)
+
172
+
173/*const char* icalenum_component_kind_to_string(icalcomponent_kind kind);*/
+
174#define icalenum_component_kind_to_string(x) icalcomponent_kind_to_string(x)
+
175
+
176/*icalcomponent_kind icalenum_string_to_component_kind(const char* string);*/
+
177#define icalenum_string_to_component_kind(x) icalcomponent_string_to_kind(x)
+
178
+
179#endif /* !ICALENUMS_H */
+
const char * icalenum_reqstat_desc(icalrequeststatus stat)
Returns the descriptive text for a request status.
Definition icalenums.c:80
+
short icalenum_reqstat_major(icalrequeststatus stat)
Returns the major number for a request status.
Definition icalenums.c:120
+
icalrequeststatus icalenum_num_to_reqstat(short major, short minor)
Returns a request status for major/minor status numbers.
Definition icalenums.c:146
+
short icalenum_reqstat_minor(icalrequeststatus stat)
Returns the minor number for a request status.
Definition icalenums.c:133
+
char * icalenum_reqstat_code_r(icalrequeststatus stat)
Returns the code for a request status.
Definition icalenums.c:103
+
+ + + + diff --git a/static/apidocs/icalerror_8h.html b/static/apidocs/icalerror_8h.html new file mode 100644 index 00000000..37b6bbc5 --- /dev/null +++ b/static/apidocs/icalerror_8h.html @@ -0,0 +1,1113 @@ + + + + + + + +Libical API Documentation: icalerror.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalerror.h File Reference
+
+
+ +

Error handling for libical. +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define ICAL_ERRORS_ARE_FATAL   0
 Determines if all libical errors are fatal and lead to the process aborting.
 
+#define ICAL_SETERROR_ISFUNC
 
#define icalerrno   (*(icalerrno_return()))
 Access the current icalerrno value.
 
#define icalerror_assert(test, message)
 Assert with a message.
 
#define icalerror_check_arg(test, arg)
 Checks the assertion test and raises error on failure.
 
#define icalerror_check_arg_re(test, arg, error)
 Checks the assertion test and raises error on failure, returns error.
 
#define icalerror_check_arg_rv(test, arg)
 Checks the assertion test and raises error on failure, returns void.
 
#define icalerror_check_arg_rx(test, arg, x)
 Checks the assertion test and raises error on failure, returns x.
 
#define icalerror_check_arg_rz(test, arg)
 Checks the assertion test and raises error on failure, returns 0.
 
+#define icalerror_check_component_type(value, type)   ;
 
+#define icalerror_check_parameter_type(value, type)   ;
 
+#define icalerror_check_property_type(value, type)   ;
 
+#define icalerror_check_value_type(value, type)   ;
 
#define icalerror_warn(message)   {fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, message);}
 Prints a formatted warning message to stderr.
 
+ + + + + +

+Typedefs

+typedef enum icalerrorenum icalerrorenum
 
+typedef enum icalerrorstate icalerrorstate
 
+ + + + + + + +

+Enumerations

enum  icalerrorenum {
+  ICAL_NO_ERROR = 0 +, ICAL_BADARG_ERROR +, ICAL_NEWFAILED_ERROR +, ICAL_ALLOCATION_ERROR +,
+  ICAL_MALFORMEDDATA_ERROR +, ICAL_PARSE_ERROR +, ICAL_INTERNAL_ERROR +, ICAL_FILE_ERROR +,
+  ICAL_USAGE_ERROR +, ICAL_UNIMPLEMENTED_ERROR +, ICAL_UNKNOWN_ERROR +
+ }
 Represents the different types of errors that can be triggered in libical. More...
 
enum  icalerrorstate { ICAL_ERROR_FATAL +, ICAL_ERROR_NONFATAL +, ICAL_ERROR_DEFAULT +, ICAL_ERROR_UNKNOWN + }
 Determine if an error is fatal or non-fatal. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

void ical_bt (void)
 Prints backtrace.
 
icalerrorenumicalerrno_return (void)
 Returns the current icalerrno value.
 
void icalerror_clear_errno (void)
 Resets icalerrno to ICAL_NO_ERROR.
 
void icalerror_crash_here (void)
 Triggered to abort the process.
 
icalerrorenum icalerror_error_from_string (const char *str)
 Reads an error from a string.
 
icalerrorstate icalerror_get_error_state (icalerrorenum error)
 Gets the error state (severity) for a given error.
 
int icalerror_get_errors_are_fatal (void)
 Determine if errors are fatal.
 
const char * icalerror_perror (void)
 Returns the description string for the current error in icalerrno.
 
void icalerror_restore (const char *error, icalerrorstate es)
 
void icalerror_set_errno (icalerrorenum x)
 Sets the icalerrno to a given error.
 
void icalerror_set_error_state (icalerrorenum error, icalerrorstate state)
 Sets the icalerrorstate for a given icalerrorenum error.
 
void icalerror_set_errors_are_fatal (int fatal)
 Change if errors are fatal.
 
void icalerror_stop_here (void)
 Triggered before any error is called.
 
const char * icalerror_strerror (icalerrorenum e)
 Finds the description string for error.
 
icalerrorstate icalerror_supress (const char *error)
 Suppresses a given error.
 
+

Detailed Description

+

Error handling for libical.

+

Most routines will set the global error value icalerrno on errors. This variable is an enumeration; permissible values can be found in icalerror.h. If the routine returns an enum icalerrorenum, then the return value will be the same as icalerrno. You can use icalerror_strerror() to get a string that describes the error, or icalerror_perror() to get a string describing the current error set in icalerrno.

+

Macro Definition Documentation

+ +

◆ ICAL_ERRORS_ARE_FATAL

+ +
+
+ + + + +
#define ICAL_ERRORS_ARE_FATAL   0
+
+ +

Determines if all libical errors are fatal and lead to the process aborting.

+

If set to 1, all libical errors are fatal and lead to the process aborting upon encountering on. Otherwise, errors are nonfatal.

+

Can be checked with libical_get_errors_are_fatal().

+ +
+
+ +

◆ icalerrno

+ +
+
+ + + + +
#define icalerrno   (*(icalerrno_return()))
+
+ +

Access the current icalerrno value.

+
Returns
The current icalerrno value
+
Note
Pseudo-variable that can be used to access the current icalerrno.
+
Usage
+
// ...
+
}
+
+
// resets error
+ +
@ ICAL_NO_ERROR
Definition icalerror.h:78
+
@ ICAL_PARSE_ERROR
Definition icalerror.h:93
+
#define icalerrno
Access the current icalerrno value.
Definition icalerror.h:144
+
+ +
+
+ +

◆ icalerror_assert

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define icalerror_assert( test,
 message 
)
+
+ +

Assert with a message.

+
Parameters
+ + + +
testThe assertion to test
messageThe message to print on failure of assertion
+
+
+

Tests the given assertion test, and if it fails, prints the message given on stderr as a warning and aborts the process. This only works if ICAL_ERRORS_ARE_FATAL is true, otherwise does nothing.

+ +
+
+ +

◆ icalerror_check_arg

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define icalerror_check_arg( test,
 arg 
)
+
+Value:
if (!(test)) { \
+
icalerror_set_errno(ICAL_BADARG_ERROR); \
+
}
+
@ ICAL_BADARG_ERROR
Definition icalerror.h:81
+
+

Checks the assertion test and raises error on failure.

+
Parameters
+ + + +
testThe assertion to check
argThe argument involved (as a string)
+
+
+

This function checks the assertion test, which is used to test if the parameter arg is correct. If the assertion fails, it sets icalerrno to ICAL_BADARG_ERROR.

+
Example
void test_function(icalcomponent *component) {
+
icalerror_check_arg(component != 0, "component");
+
+
// use component
+
}
+
#define icalerror_check_arg(test, arg)
Checks the assertion test and raises error on failure.
Definition icalerror.h:441
+
Definition icalcomponent.c:36
+
+ +
+
+ +

◆ icalerror_check_arg_re

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
#define icalerror_check_arg_re( test,
 arg,
 error 
)
+
+Value:
if (!(test)) { \
+
icalerror_stop_here(); \
+
assert(0); \
+
return error; \
+
}
+
+

Checks the assertion test and raises error on failure, returns error.

+
Parameters
+ + + + +
testThe assertion to check
argThe argument involved (as a string)
errorWhat to return on error
+
+
+

This function checks the assertion test, which is used to test if the parameter arg is correct. If the assertion fails, it aborts the process with assert(0) and causes the enclosing function to return error.

+
Example
icalcomponent *test_function(icalcomponent *component) {
+
icalerror_check_arg_re(component != 0, "component", NULL);
+
+
// use component
+
return icalcomponent_get_first_real_component(component);
+
}
+
#define icalerror_check_arg_re(test, arg, error)
Checks the assertion test and raises error on failure, returns error.
Definition icalerror.h:518
+
+ +
+
+ +

◆ icalerror_check_arg_rv

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define icalerror_check_arg_rv( test,
 arg 
)
+
+Value:
if (!(test)) { \
+
icalerror_set_errno(ICAL_BADARG_ERROR); \
+
return; \
+
}
+
+

Checks the assertion test and raises error on failure, returns void.

+
Parameters
+ + + +
testThe assertion to check
argThe argument involved (as a string)
+
+
+

This function checks the assertion test, which is used to test if the parameter arg is correct. If the assertion fails, it sets icalerrno to ICAL_BADARG_ERROR and causes the enclosing function to return void.

+
Example
void test_function(icalcomponent *component) {
+
icalerror_check_arg_rv(component != 0, "component");
+
+
// use component
+
}
+
#define icalerror_check_arg_rv(test, arg)
Checks the assertion test and raises error on failure, returns void.
Definition icalerror.h:465
+
+ +
+
+ +

◆ icalerror_check_arg_rx

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
#define icalerror_check_arg_rx( test,
 arg,
 
)
+
+Value:
if (!(test)) { \
+
icalerror_set_errno(ICAL_BADARG_ERROR); \
+
return x; \
+
}
+
+

Checks the assertion test and raises error on failure, returns x.

+
Parameters
+ + + + +
testThe assertion to check
argThe argument involved (as a string)
xWhat to return on error
+
+
+

This function checks the assertion test, which is used to test if the parameter arg is correct. If the assertion fails, it sets icalerrno to ICAL_BADARG_ERROR and causes the enclosing function to return x.

+
Example
icalcomponent *test_function(icalcomponent *component) {
+
icalerror_check_arg_rx(component != 0, "component", NULL);
+
+
// use component
+
return icalcomponent_get_first_real_component(component);
+
}
+
#define icalerror_check_arg_rx(test, arg, x)
Checks the assertion test and raises error on failure, returns x.
Definition icalerror.h:546
+
+ +
+
+ +

◆ icalerror_check_arg_rz

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define icalerror_check_arg_rz( test,
 arg 
)
+
+Value:
if (!(test)) { \
+
icalerror_set_errno(ICAL_BADARG_ERROR); \
+
return 0; \
+
}
+
+

Checks the assertion test and raises error on failure, returns 0.

+
Parameters
+ + + +
testThe assertion to check
argThe argument involved (as a string)
+
+
+

This function checks the assertion test, which is used to test if the parameter arg is correct. If the assertion fails, it sets icalerrno to ICAL_BADARG_ERROR and causes the enclosing function to return 0.

+
Example
int test_function(icalcomponent *component) {
+
icalerror_check_arg_rz(component != 0, "component");
+
+
// use component
+
return icalcomponent_count_kinds(component, ICAL_ANY_COMPONENT);
+
}
+
#define icalerror_check_arg_rz(test, arg)
Checks the assertion test and raises error on failure, returns 0.
Definition icalerror.h:491
+
+ +
+
+ +

◆ icalerror_warn

+ +
+
+ + + + + + + + +
#define icalerror_warn( message)   {fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, message);}
+
+ +

Prints a formatted warning message to stderr.

+
Parameters
+ + +
messageWarning message to print
+
+
+
Usage
icalerror_warn("Non-standard tag encountered");
+
#define icalerror_warn(message)
Prints a formatted warning message to stderr.
Definition icalerror.h:192
+
+ +
+
+

Enumeration Type Documentation

+ +

◆ icalerrorenum

+ +
+
+ + + + +
enum icalerrorenum
+
+ +

Represents the different types of errors that can be triggered in libical.

+

Each of these values represent a different type of error, which is stored in icalerrno on exit of the library function (or can be returned, but if it is, icalerrno is also set).

+ + + + + + + + + + + + +
Enumerator
ICAL_NO_ERROR 

No error happened.

+
ICAL_BADARG_ERROR 

A bad argument was passed to a function.

+
ICAL_NEWFAILED_ERROR 

An error occurred while creating a new object with a *_new() routine.

+
ICAL_ALLOCATION_ERROR 

An error occurred while allocating some memory.

+
ICAL_MALFORMEDDATA_ERROR 

Malformed data was passed to a function.

+
ICAL_PARSE_ERROR 

An error occurred while parsing part of an iCal component.

+
ICAL_INTERNAL_ERROR 

An internal error happened in library code.

+
ICAL_FILE_ERROR 

An error happened while working with a file.

+
ICAL_USAGE_ERROR 

Failure to properly sequence calls to a set of interfaces.

+
ICAL_UNIMPLEMENTED_ERROR 

An unimplemented function was called.

+
ICAL_UNKNOWN_ERROR 

An unknown error occurred.

+
+ +
+
+ +

◆ icalerrorstate

+ +
+
+ + + + +
enum icalerrorstate
+
+ +

Determine if an error is fatal or non-fatal.

+ + + + + +
Enumerator
ICAL_ERROR_FATAL 

Fatal.

+
ICAL_ERROR_NONFATAL 

Non-fatal.

+
ICAL_ERROR_DEFAULT 

Fatal if icalerror_errors_are_fatal(), non-fatal otherwise.

+
ICAL_ERROR_UNKNOWN 

Asked state for an unknown error type.

+
+ +
+
+

Function Documentation

+ +

◆ ical_bt()

+ +
+
+ + + + + + + + +
void ical_bt (void )
+
+ +

Prints backtrace.

+
Note
Only works on systems that support it (HAVE_BACKTRACE enabled).
+
Usage
+
ical_bt();
+
}
+
+ +
+
+ +

◆ icalerrno_return()

+ +
+
+ + + + + + + + +
icalerrorenum * icalerrno_return (void )
+
+ +

Returns the current icalerrno value.

+
Returns
A pointer to the current icalerrno value
+

Yields a pointer to the current icalerrno value. This can be used to access (read from and write to) it.

+
Examples
assert(*icalerrno_return() == icalerrno);
+
+ +
+
+ +

◆ icalerror_clear_errno()

+ +
+
+ + + + + + + + +
void icalerror_clear_errno (void )
+
+ +

Resets icalerrno to ICAL_NO_ERROR.

+
Usage
+
// ignore parsing errors
+
icalerror_clear_errno();
+
}
+
+ +
+
+ +

◆ icalerror_crash_here()

+ +
+
+ + + + + + + + +
void icalerror_crash_here (void )
+
+ +

Triggered to abort the process.

+

This routine is called to abort the process in the case of an error.

+ +
+
+ +

◆ icalerror_error_from_string()

+ +
+
+ + + + + + + + +
icalerrorenum icalerror_error_from_string (const char * str)
+
+ +

Reads an error from a string.

+
Parameters
+ + +
strThe error name string
+
+
+
Returns
An icalerrorenum representing the error
+
Error handling
If the error specified in str can't be found, instead ICAL_UNKNOWN_ERROR is returned.
+
Usage
assert(icalerror_error_from_string("PARSE") == ICAL_PARSE_ERROR);
+
assert(icalerror_error_from_string("NONSENSE") == ICAL_UNKNOWN_ERROR);
+
@ ICAL_UNKNOWN_ERROR
Definition icalerror.h:108
+
+ +
+
+ +

◆ icalerror_get_error_state()

+ +
+
+ + + + + + + + +
icalerrorstate icalerror_get_error_state (icalerrorenum error)
+
+ +

Gets the error state (severity) for a given error.

+
Parameters
+ + +
errorThe error to examine
+
+
+
Returns
Returns the severity of the error
+ +
+
+ +

◆ icalerror_get_errors_are_fatal()

+ +
+
+ + + + + + + + +
int icalerror_get_errors_are_fatal (void )
+
+ +

Determine if errors are fatal.

+
Returns
True if libical errors are fatal
+
Usage
if(icalerror_get_errors_are_fatal()) {
+
// since errors are fatal, this will abort the
+
// program.
+
icalerror_set_errno(ICAL_PARSE_ERROR);
+
}
+
+ +
+
+ +

◆ icalerror_perror()

+ +
+
+ + + + + + + + +
const char * icalerror_perror (void )
+
+ +

Returns the description string for the current error in icalerrno.

+
Error handling
If the type of error e wasn't found, it returns the description for ICAL_UNKNOWN_ERROR.
+
Ownership
The string that is returned is owned by the library and must not be free'd() by the user.
+
Usage
+
printf("%s\n", icalerror_perror());
+
}
+
+ +
+
+ +

◆ icalerror_restore()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalerror_restore (const char * error,
icalerrorstate es 
)
+
+

Assigns the given error the given icalerrorstate (severity).

Parameters
+ + + +
errorThe error in question
esThe icalerrorstate (severity) to set it to
+
+
+

Calling the function changes the icalerrorstate of the given error.

+
Usage
// suppress internal errors
+
icalerror_supress("INTERNAL");
+
+
// ...
+
+
// restore internal errors
+
icalerror_restore("INTERNAL", ICAL_ERROR_DEFAULT);
+
@ ICAL_ERROR_DEFAULT
Definition icalerror.h:223
+
+ +
+
+ +

◆ icalerror_set_errno()

+ +
+
+ + + + + + + + +
void icalerror_set_errno (icalerrorenum x)
+
+ +

Sets the icalerrno to a given error.

+
Parameters
+ + +
xThe error to set icalerrno to
+
+
+

Sets icalerrno to the error given in x. Additionally, if the error is an ICAL_ERROR_FATAL or if it's an ICAL_ERROR_DEFAULT and ICAL_ERRORS_ARE_FATAL is true, it prints a warning to stderr and aborts the process.

+
Usage
icalerror_set_errno(ICAL_PARSE_ERROR);
+
+ +
+
+ +

◆ icalerror_set_error_state()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalerror_set_error_state (icalerrorenum error,
icalerrorstate state 
)
+
+ +

Sets the icalerrorstate for a given icalerrorenum error.

+
Parameters
+ + + +
errorThe error to change
stateThe new error state of the error
+
+
+

Sets the severity of a given error. For example, it can be used to set the severity of an ICAL_PARSE_ERROR to be an ICAL_ERROR_NONFATAL.

+
Usage
icalerror_set_error_state(ICAL_PARSE_ERROR, ICAL_ERROR_NONFATAL);
+
@ ICAL_ERROR_NONFATAL
Definition icalerror.h:220
+
+ +
+
+ +

◆ icalerror_set_errors_are_fatal()

+ +
+
+ + + + + + + + +
void icalerror_set_errors_are_fatal (int fatal)
+
+ +

Change if errors are fatal.

+
Parameters
+ + +
fatalIf true, libical aborts after a call to icalerror_set_error()
+
+
+
Warning
NOT THREAD SAFE: it is recommended that you do not change this in a multithreaded program.
+
Usage
icalerror_set_errors_are_fatal(true); // default
+
icalerror_set_errors_are_fatal(false);
+
+ +
+
+ +

◆ icalerror_stop_here()

+ +
+
+ + + + + + + + +
void icalerror_stop_here (void )
+
+ +

Triggered before any error is called.

+

This routine is called before any error is triggered. It is called by icalerror_set_errno(), so it does not appear in all of the macros below.

+

This routine can be used while debugging by setting a breakpoint here.

+ +
+
+ +

◆ icalerror_strerror()

+ +
+
+ + + + + + + + +
const char * icalerror_strerror (icalerrorenum e)
+
+ +

Finds the description string for error.

+
Parameters
+ + +
eThe type of error that occurred
+
+
+
Returns
A string describing the error that occurred
+
Error handling
If the type of error e wasn't found, it returns the description for ICAL_UNKNOWN_ERROR.
+
Ownership
The string that is returned is owned by the library and must not be free'd() by the user.
+
Usage
+
printf("%s\n", icalerror_strerror(icalerrno));
+
}
+
+ +
+
+ +

◆ icalerror_supress()

+ +
+
+ + + + + + + + +
icalerrorstate icalerror_supress (const char * error)
+
+ +

Suppresses a given error.

+
Parameters
+ + +
errorThe name of the error to suppress
+
+
+
Returns
The previous icalerrorstate (severity)
+

Calling this function causes the given error to be listed as ICAL_ERROR_NONFATAL, and thus suppressed. Error states can be restored with icalerror_restore().

+
Usage
// suppresses internal errors
+
icalerror_supress("INTERNAL");
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalerror_8h_source.html b/static/apidocs/icalerror_8h_source.html new file mode 100644 index 00000000..62bb073d --- /dev/null +++ b/static/apidocs/icalerror_8h_source.html @@ -0,0 +1,309 @@ + + + + + + + +Libical API Documentation: icalerror.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalerror.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalerror.h
+
3 CREATOR: eric 09 May 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The original code is icalerror.h
+
19======================================================================*/
+
20
+
21#ifndef ICALERROR_H
+
22#define ICALERROR_H
+
23
+
24#include "libical_ical_export.h"
+
25#include <assert.h>
+
26#include <stdio.h>
+
27
+
40#define ICAL_SETERROR_ISFUNC
+
41
+
52LIBICAL_ICAL_EXPORT void icalerror_stop_here(void);
+
53
+
60LIBICAL_ICAL_EXPORT void icalerror_crash_here(void);
+
61
+
62#ifndef _MSC_VER
+
63#pragma GCC visibility push(default)
+
64#endif
+
75typedef enum icalerrorenum
+
76{
+ +
79
+ +
82
+ +
85
+ +
88
+ +
91
+ +
94
+
96 ICAL_INTERNAL_ERROR, /* Like assert --internal consist. prob */
+
97
+ +
100
+ +
103
+ +
106
+
108 ICAL_UNKNOWN_ERROR /* Used for problems in input to icalerror_strerror() */
+ +
110#ifndef _MSC_VER
+
111#pragma GCC visibility pop
+
112#endif
+
113
+
126LIBICAL_ICAL_EXPORT icalerrorenum *icalerrno_return(void);
+
127
+
144#define icalerrno (*(icalerrno_return()))
+
145
+
158LIBICAL_ICAL_EXPORT void icalerror_set_errors_are_fatal(int fatal);
+
159
+
173LIBICAL_ICAL_EXPORT int icalerror_get_errors_are_fatal(void);
+
174
+
175/* Warning messages */
+
176
+
188#ifdef __GNUC__ca
+
189#define icalerror_warn(message) \
+
190{fprintf(stderr, "%s(), %s:%d: %s\n", __FUNCTION__, __FILE__, __LINE__, message);}
+
191#else /* __GNU_C__ */
+
192#define icalerror_warn(message) \
+
193{fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, message);}
+
194#endif /* __GNU_C__ */
+
195
+
207LIBICAL_ICAL_EXPORT void icalerror_clear_errno(void);
+
208
+
214typedef enum icalerrorstate
+
215{
+ +
218
+ +
221
+ +
224
+ + +
228
+
249LIBICAL_ICAL_EXPORT const char *icalerror_strerror(icalerrorenum e);
+
250
+
269LIBICAL_ICAL_EXPORT const char *icalerror_perror(void);
+
270
+
282LIBICAL_ICAL_EXPORT void ical_bt(void);
+
283
+
297LIBICAL_ICAL_EXPORT void icalerror_set_error_state(icalerrorenum error, icalerrorstate state);
+
298
+ +
305
+
321LIBICAL_ICAL_EXPORT icalerrorenum icalerror_error_from_string(const char *str);
+
322
+
338#if !defined(ICAL_SETERROR_ISFUNC)
+
339#define icalerror_set_errno(x) \
+
340icalerrno = x; \
+
341if(icalerror_get_error_state(x) == ICAL_ERROR_FATAL || \
+
342 (icalerror_get_error_state(x) == ICAL_ERROR_DEFAULT && \
+
343 icalerror_get_errors_are_fatal() == 1)){ \
+
344 icalerror_warn(icalerror_strerror(x)); \
+
345 ical_bt(); \
+
346 assert(0); \
+
347} }
+
348#else
+
363LIBICAL_ICAL_EXPORT void icalerror_set_errno(icalerrorenum x);
+
364#endif
+
365
+
378#if !defined(ICAL_ERRORS_ARE_FATAL)
+
379#define ICAL_ERRORS_ARE_FATAL 0
+
380#endif
+
381
+
382#if ICAL_ERRORS_ARE_FATAL == 1
+
383#undef NDEBUG
+
384#endif
+
385
+
386#define icalerror_check_value_type(value,type);
+
387#define icalerror_check_property_type(value,type);
+
388#define icalerror_check_parameter_type(value,type);
+
389#define icalerror_check_component_type(value,type);
+
390
+
391/* Assert with a message */
+
403#if ICAL_ERRORS_ARE_FATAL == 1
+
404
+
405#ifdef __GNUC__
+
406#define icalerror_assert(test,message) \
+
407if (!(test)) { \
+
408 fprintf(stderr, "%s(), %s:%d: %s\n", __FUNCTION__, __FILE__, __LINE__, message); \
+
409 icalerror_stop_here(); \
+
410 abort();}
+
411#else /*__GNUC__*/
+
412#define icalerror_assert(test,message) \
+
413if (!(test)) { \
+
414 fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, message); \
+
415 icalerror_stop_here(); \
+
416 abort();}
+
417#endif /*__GNUC__*/
+
418
+
419#else /* ICAL_ERRORS_ARE_FATAL */
+
420#define icalerror_assert(test,message)
+
421#endif /* ICAL_ERRORS_ARE_FATAL */
+
422
+
441#define icalerror_check_arg(test,arg) \
+
442if (!(test)) { \
+
443 icalerror_set_errno(ICAL_BADARG_ERROR); \
+
444}
+
445
+
465#define icalerror_check_arg_rv(test,arg) \
+
466if (!(test)) { \
+
467 icalerror_set_errno(ICAL_BADARG_ERROR); \
+
468 return; \
+
469}
+
470
+
491#define icalerror_check_arg_rz(test,arg) \
+
492if (!(test)) { \
+
493 icalerror_set_errno(ICAL_BADARG_ERROR); \
+
494 return 0; \
+
495}
+
496
+
518#define icalerror_check_arg_re(test,arg,error) \
+
519if (!(test)) { \
+
520 icalerror_stop_here(); \
+
521 assert(0); \
+
522 return error; \
+
523}
+
524
+
546#define icalerror_check_arg_rx(test,arg,x) \
+
547if (!(test)) { \
+
548 icalerror_set_errno(ICAL_BADARG_ERROR); \
+
549 return x; \
+
550}
+
551
+
552/* String interfaces to set an error to NONFATAL and restore it to its original value */
+
553
+
569LIBICAL_ICAL_EXPORT icalerrorstate icalerror_supress(const char *error);
+
570
+
589LIBICAL_ICAL_EXPORT void icalerror_restore(const char *error, icalerrorstate es);
+
590
+
591#endif /* !ICALERROR_H */
+
icalerrorenum * icalerrno_return(void)
Returns the current icalerrno value.
Definition icalerror.c:70
+
void icalerror_set_errors_are_fatal(int fatal)
Change if errors are fatal.
Definition icalerror.c:106
+
void icalerror_crash_here(void)
Triggered to abort the process.
Definition icalerror.c:84
+
void ical_bt(void)
Prints backtrace.
Definition icalerror.c:260
+
icalerrorstate
Determine if an error is fatal or non-fatal.
Definition icalerror.h:215
+
@ ICAL_ERROR_UNKNOWN
Definition icalerror.h:226
+
@ ICAL_ERROR_FATAL
Definition icalerror.h:217
+
@ ICAL_ERROR_DEFAULT
Definition icalerror.h:223
+
@ ICAL_ERROR_NONFATAL
Definition icalerror.h:220
+
int icalerror_get_errors_are_fatal(void)
Determine if errors are fatal.
Definition icalerror.c:111
+
const char * icalerror_perror(void)
Returns the description string for the current error in icalerrno.
Definition icalerror.c:209
+
icalerrorstate icalerror_get_error_state(icalerrorenum error)
Gets the error state (severity) for a given error.
Definition icalerror.c:234
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+
@ ICAL_NEWFAILED_ERROR
Definition icalerror.h:84
+
@ ICAL_BADARG_ERROR
Definition icalerror.h:81
+
@ ICAL_FILE_ERROR
Definition icalerror.h:99
+
@ ICAL_ALLOCATION_ERROR
Definition icalerror.h:87
+
@ ICAL_INTERNAL_ERROR
Definition icalerror.h:96
+
@ ICAL_NO_ERROR
Definition icalerror.h:78
+
@ ICAL_MALFORMEDDATA_ERROR
Definition icalerror.h:90
+
@ ICAL_UNKNOWN_ERROR
Definition icalerror.h:108
+
@ ICAL_PARSE_ERROR
Definition icalerror.h:93
+
@ ICAL_UNIMPLEMENTED_ERROR
Definition icalerror.h:105
+
@ ICAL_USAGE_ERROR
Definition icalerror.h:102
+
void icalerror_set_error_state(icalerrorenum error, icalerrorstate state)
Sets the icalerrorstate for a given icalerrorenum error.
Definition icalerror.c:223
+
const char * icalerror_strerror(icalerrorenum e)
Finds the description string for error.
Definition icalerror.c:247
+
void icalerror_set_errno(icalerrorenum x)
Sets the icalerrno to a given error.
Definition icalerror.c:117
+
void icalerror_restore(const char *error, icalerrorstate es)
Definition icalerror.c:214
+
void icalerror_stop_here(void)
Triggered before any error is called.
Definition icalerror.c:79
+
icalerrorenum icalerror_error_from_string(const char *str)
Reads an error from a string.
Definition icalerror.c:181
+
void icalerror_clear_errno(void)
Resets icalerrno to ICAL_NO_ERROR.
Definition icalerror.c:95
+
icalerrorstate icalerror_supress(const char *error)
Suppresses a given error.
Definition icalerror.c:194
+
+ + + + diff --git a/static/apidocs/icalfileset_8h_source.html b/static/apidocs/icalfileset_8h_source.html new file mode 100644 index 00000000..574cb9a0 --- /dev/null +++ b/static/apidocs/icalfileset_8h_source.html @@ -0,0 +1,206 @@ + + + + + + + +Libical API Documentation: icalfileset.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalfileset.h
+
+
+
1/*======================================================================
+
2 FILE: icalfileset.h
+
3 CREATOR: eric 23 December 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALFILESET_H
+
23#define ICALFILESET_H
+
24
+
25#include "libical_icalss_export.h"
+
26#include "icalcluster.h"
+
27#include "icalset.h"
+
28
+
29typedef struct icalfileset_impl icalfileset;
+
30
+
31LIBICAL_ICALSS_EXPORT icalset *icalfileset_new(const char *path);
+
32
+
33LIBICAL_ICALSS_EXPORT icalset *icalfileset_new_reader(const char *path);
+
34
+
35LIBICAL_ICALSS_EXPORT icalset *icalfileset_new_writer(const char *path);
+
36
+
37LIBICAL_ICALSS_EXPORT icalset *icalfileset_init(icalset *set, const char *dsn, void *options);
+
38
+
39LIBICAL_ICALSS_EXPORT icalcluster *icalfileset_produce_icalcluster(const char *path);
+
40
+
41LIBICAL_ICALSS_EXPORT void icalfileset_free(icalset *cluster);
+
42
+
43LIBICAL_ICALSS_EXPORT const char *icalfileset_path(icalset *cluster);
+
44
+
45/* Mark the cluster as changed, so it will be written to disk when it
+
46 is freed. Commit writes to disk immediately. */
+
47LIBICAL_ICALSS_EXPORT void icalfileset_mark(icalset *set);
+
48
+
49LIBICAL_ICALSS_EXPORT icalerrorenum icalfileset_commit(icalset *set);
+
50
+
51LIBICAL_ICALSS_EXPORT icalerrorenum icalfileset_add_component(icalset *set, icalcomponent *child);
+
52
+
53LIBICAL_ICALSS_EXPORT icalerrorenum icalfileset_remove_component(icalset *set,
+
54 icalcomponent *child);
+
55
+
56LIBICAL_ICALSS_EXPORT int icalfileset_count_components(icalset *set, icalcomponent_kind kind);
+
57
+
62LIBICAL_ICALSS_EXPORT icalerrorenum icalfileset_select(icalset *set, icalgauge *gauge);
+
63
+
65LIBICAL_ICALSS_EXPORT void icalfileset_clear(icalset *set);
+
66
+
68LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_fetch(icalset *set,
+
69 icalcomponent_kind kind, const char *uid);
+
70
+
71LIBICAL_ICALSS_EXPORT int icalfileset_has_uid(icalset *set, const char *uid);
+
72
+
73LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_fetch_match(icalset *set, icalcomponent *c);
+
74
+
80LIBICAL_ICALSS_EXPORT icalerrorenum icalfileset_modify(icalset *set,
+
81 icalcomponent *oldcomp,
+
82 icalcomponent *newcomp);
+
83
+
84/* Iterates through components. If a gauge has been defined, these
+
85 will skip over components that do not pass the gauge */
+
86
+
87LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_get_current_component(icalset *cluster);
+
88
+
89LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_get_first_component(icalset *cluster);
+
90
+
91LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_get_next_component(icalset *cluster);
+
92
+
93/* External iterator for thread safety */
+
94LIBICAL_ICALSS_EXPORT icalsetiter icalfileset_begin_component(icalset *set,
+
95 icalcomponent_kind kind,
+
96 icalgauge *gauge, const char *tzid);
+
97
+
98LIBICAL_ICALSS_EXPORT icalcomponent *icalfilesetiter_to_next(icalset *set, icalsetiter *iter);
+
99
+
100LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_form_a_matched_recurrence_component(icalsetiter *
+
101 itr);
+
102
+
106LIBICAL_ICALSS_EXPORT icalcomponent *icalfileset_get_component(icalset *cluster);
+
107
+ +
115{
+
116 int flags;
+
117 int mode;
+ + + +
121
+
122extern icalfileset_options icalfileset_options_default;
+
123
+
124#endif /* !ICALFILESET_H */
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+ +
Definition icalclusterimpl.h:28
+
Definition icalcomponent.c:36
+
Definition icalfilesetimpl.h:28
+
char * path
Definition icalfilesetimpl.h:30
+
icalgauge * gauge
Definition icalfilesetimpl.h:34
+
icalfileset_options options
Definition icalfilesetimpl.h:31
+
icalcomponent * cluster
Definition icalfilesetimpl.h:33
+
Options for opening an icalfileset.
Definition icalfileset.h:115
+
int mode
Definition icalfileset.h:117
+
icalcluster * cluster
Definition icalfileset.h:119
+
int flags
Definition icalfileset.h:116
+
int safe_saves
Definition icalfileset.h:118
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
Definition icalset.h:52
+
+ + + + diff --git a/static/apidocs/icalfilesetimpl_8h_source.html b/static/apidocs/icalfilesetimpl_8h_source.html new file mode 100644 index 00000000..e92b822e --- /dev/null +++ b/static/apidocs/icalfilesetimpl_8h_source.html @@ -0,0 +1,135 @@ + + + + + + + +Libical API Documentation: icalfilesetimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalfilesetimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalfilesetimpl.h
+
3 CREATOR: eric 23 December 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALFILESETIMPL_H
+
23#define ICALFILESETIMPL_H
+
24
+
25#include "icalfileset.h"
+
26
+ +
28{
+ +
30 char *path;
+ + + +
35 int changed;
+
36 int fd;
+
37};
+
38
+
39#endif
+
Definition icalcomponent.c:36
+
Definition icalfilesetimpl.h:28
+
char * path
Definition icalfilesetimpl.h:30
+
icalgauge * gauge
Definition icalfilesetimpl.h:34
+
icalfileset_options options
Definition icalfilesetimpl.h:31
+
icalset super
Definition icalfilesetimpl.h:29
+
int fd
Definition icalfilesetimpl.h:36
+
int changed
Definition icalfilesetimpl.h:35
+
icalcomponent * cluster
Definition icalfilesetimpl.h:33
+
Options for opening an icalfileset.
Definition icalfileset.h:115
+
Definition icalgaugeimpl.h:55
+
Definition icalset.h:61
+
+ + + + diff --git a/static/apidocs/icalgauge_8h.html b/static/apidocs/icalgauge_8h.html new file mode 100644 index 00000000..faf5d51d --- /dev/null +++ b/static/apidocs/icalgauge_8h.html @@ -0,0 +1,192 @@ + + + + + + + +Libical API Documentation: icalgauge.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalgauge.h File Reference
+
+
+ +

Routines implementing a filter for ical components. +More...

+ +

Go to the source code of this file.

+ + + + +

+Typedefs

+typedef struct icalgauge_impl icalgauge
 
+ + + + + + + + + + + + + +

+Functions

int icalgauge_compare (icalgauge *g, icalcomponent *comp)
 Returns true if comp matches the gauge.
 
void icalgauge_dump (icalgauge *gauge)
 Debug.
 
+void icalgauge_free (icalgauge *gauge)
 
int icalgauge_get_expand (icalgauge *gauge)
 
+icalgaugeicalgauge_new_from_sql (const char *sql, int expand)
 
+

Detailed Description

+

Routines implementing a filter for ical components.

+

Function Documentation

+ +

◆ icalgauge_compare()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icalgauge_compare (icalgaugeg,
icalcomponentcomp 
)
+
+ +

Returns true if comp matches the gauge.

+

The component must be in canonical form – a VCALENDAR with one VEVENT, VTODO or VJOURNAL sub component

+

needs to use recurrence-id to do comparison

+ +
+
+ +

◆ icalgauge_dump()

+ +
+
+ + + + + + + + +
void icalgauge_dump (icalgaugegauge)
+
+ +

Debug.

+

Prints gauge information to STDOUT.

+ +
+
+ +

◆ icalgauge_get_expand()

+ +
+
+ + + + + + + + +
int icalgauge_get_expand (icalgaugegauge)
+
+

Returns the expand value for the specified icalgauge. If gauge is NULL a value of -1 is returned.

+ +
+
+
+ + + + diff --git a/static/apidocs/icalgauge_8h_source.html b/static/apidocs/icalgauge_8h_source.html new file mode 100644 index 00000000..3e51e2ef --- /dev/null +++ b/static/apidocs/icalgauge_8h_source.html @@ -0,0 +1,131 @@ + + + + + + + +Libical API Documentation: icalgauge.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalgauge.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalgauge.h
+
3 CREATOR: eric 23 December 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALGAUGE_H
+
23#define ICALGAUGE_H
+
24
+
25#include "libical_icalss_export.h"
+
26#include "icalcomponent.h"
+
27
+
32typedef struct icalgauge_impl icalgauge;
+
33
+
34LIBICAL_ICALSS_EXPORT icalgauge *icalgauge_new_from_sql(const char *sql, int expand);
+
35
+
40LIBICAL_ICALSS_EXPORT int icalgauge_get_expand(icalgauge *gauge);
+
41
+
42LIBICAL_ICALSS_EXPORT void icalgauge_free(icalgauge *gauge);
+
43
+
48LIBICAL_ICALSS_EXPORT void icalgauge_dump(icalgauge *gauge);
+
49
+
56LIBICAL_ICALSS_EXPORT int icalgauge_compare(icalgauge *g, icalcomponent *comp);
+
57
+
58#endif /* ICALGAUGE_H */
+ +
int icalgauge_get_expand(icalgauge *gauge)
Definition icalgauge.c:68
+
void icalgauge_dump(icalgauge *gauge)
Debug.
Definition icalgauge.c:428
+
int icalgauge_compare(icalgauge *g, icalcomponent *comp)
Returns true if comp matches the gauge.
Definition icalgauge.c:258
+
Definition icalcomponent.c:36
+
Definition icalgaugeimpl.h:55
+
+ + + + diff --git a/static/apidocs/icalgaugeimpl_8h_source.html b/static/apidocs/icalgaugeimpl_8h_source.html new file mode 100644 index 00000000..d6b30517 --- /dev/null +++ b/static/apidocs/icalgaugeimpl_8h_source.html @@ -0,0 +1,154 @@ + + + + + + + +Libical API Documentation: icalgaugeimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalgaugeimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalgaugeimpl.h
+
3 CREATOR: eric 09 Aug 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALGAUGEIMPL_H
+
20#define ICALGAUGEIMPL_H
+
21
+
22#include "icalcomponent.h"
+
23
+
24typedef enum icalgaugecompare
+
25{
+
26 ICALGAUGECOMPARE_EQUAL = ICAL_XLICCOMPARETYPE_EQUAL,
+
27 ICALGAUGECOMPARE_LESS = ICAL_XLICCOMPARETYPE_LESS,
+
28 ICALGAUGECOMPARE_LESSEQUAL = ICAL_XLICCOMPARETYPE_LESSEQUAL,
+
29 ICALGAUGECOMPARE_GREATER = ICAL_XLICCOMPARETYPE_GREATER,
+
30 ICALGAUGECOMPARE_GREATEREQUAL = ICAL_XLICCOMPARETYPE_GREATEREQUAL,
+
31 ICALGAUGECOMPARE_NOTEQUAL = ICAL_XLICCOMPARETYPE_NOTEQUAL,
+
32 ICALGAUGECOMPARE_REGEX = ICAL_XLICCOMPARETYPE_REGEX,
+
33 ICALGAUGECOMPARE_ISNULL = ICAL_XLICCOMPARETYPE_ISNULL,
+
34 ICALGAUGECOMPARE_ISNOTNULL = ICAL_XLICCOMPARETYPE_ISNOTNULL,
+
35 ICALGAUGECOMPARE_NONE = 0
+
36} icalgaugecompare;
+
37
+
38typedef enum icalgaugelogic
+
39{
+
40 ICALGAUGELOGIC_NONE,
+
41 ICALGAUGELOGIC_AND,
+
42 ICALGAUGELOGIC_OR
+
43} icalgaugelogic;
+
44
+ +
46{
+
47 icalgaugelogic logic;
+
48 icalcomponent_kind comp;
+
49 icalproperty_kind prop;
+
50 icalgaugecompare compare;
+
51 char *value;
+
52};
+
53
+ +
55{
+ + + +
59 int expand;
+
60};
+
61
+
62#endif
+ +
Definition icalgaugeimpl.h:55
+
pvl_list where
Definition icalgaugeimpl.h:58
+
pvl_list from
Definition icalgaugeimpl.h:57
+
pvl_list select
Definition icalgaugeimpl.h:56
+
Definition icalgaugeimpl.h:46
+
Definition pvl.c:65
+
+ + + + diff --git a/static/apidocs/icallangbind_8h_source.html b/static/apidocs/icallangbind_8h_source.html new file mode 100644 index 00000000..5e2d09c4 --- /dev/null +++ b/static/apidocs/icallangbind_8h_source.html @@ -0,0 +1,148 @@ + + + + + + + +Libical API Documentation: icallangbind.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icallangbind.h
+
+
+
1/*======================================================================
+
2 FILE: icallangbind.h
+
3 CREATOR: eric 25 jan 2001
+
4
+
5 (C) COPYRIGHT 1999 Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALLANGBIND_H
+
20#define ICALLANGBIND_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalcomponent.h"
+
24#include "icalproperty.h"
+
25
+
26LIBICAL_ICAL_EXPORT int *icallangbind_new_array(int size);
+
27
+
28LIBICAL_ICAL_EXPORT void icallangbind_free_array(int *array);
+
29
+
30LIBICAL_ICAL_EXPORT int icallangbind_access_array(int *array, int index);
+
31
+
32LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_first_property(icalcomponent *c,
+
33 const char *prop);
+
34
+
35LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_next_property(icalcomponent *c,
+
36 const char *prop);
+
37
+
38LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_first_component(icalcomponent *c,
+
39 const char *comp);
+
40
+
41LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_next_component(icalcomponent *c,
+
42 const char *comp);
+
43
+
44LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_first_parameter(icalproperty *prop);
+
45
+
46LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_next_parameter(icalproperty *prop);
+
47
+
48LIBICAL_ICAL_EXPORT const char *icallangbind_property_eval_string(icalproperty *prop,
+
49 const char *sep);
+
50
+
51LIBICAL_ICAL_EXPORT char *icallangbind_property_eval_string_r(icalproperty *prop,
+
52 const char *sep);
+
53
+
54LIBICAL_ICAL_EXPORT int icallangbind_string_to_open_flag(const char *str);
+
55
+
56LIBICAL_ICAL_EXPORT const char *icallangbind_quote_as_ical(const char *str);
+
57
+
58LIBICAL_ICAL_EXPORT char *icallangbind_quote_as_ical_r(const char *str);
+
59
+
60#endif
+ + +
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalmemory_8h.html b/static/apidocs/icalmemory_8h.html new file mode 100644 index 00000000..c0e8bbbe --- /dev/null +++ b/static/apidocs/icalmemory_8h.html @@ -0,0 +1,561 @@ + + + + + + + +Libical API Documentation: icalmemory.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalmemory.h File Reference
+
+
+ +

Common memory management routines. +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

void icalmemory_add_tmp_buffer (void *buf)
 Adds an externally allocated buffer to the ring.
 
void icalmemory_append_char (char **buf, char **pos, size_t *buf_size, char ch)
 Appends a character to a buffer.
 
void icalmemory_append_string (char **buf, char **pos, size_t *buf_size, const char *string)
 Appends a string to a buffer.
 
void icalmemory_free_buffer (void *buf)
 Releases a buffer.
 
void icalmemory_free_ring (void)
 Frees all memory used in the ring.
 
void * icalmemory_new_buffer (size_t size)
 Creates new buffer with the specified size.
 
void * icalmemory_resize_buffer (void *buf, size_t size)
 Resizes a buffer created with icalmemory_new_buffer().
 
char * icalmemory_strdup (const char *s)
 Creates a duplicate of a string.
 
void * icalmemory_tmp_buffer (size_t size)
 Creates a new temporary buffer on the ring and returns it.
 
char * icalmemory_tmp_copy (const char *str)
 Creates a copy of the given string, stored on the ring buffer, and returns it.
 
+

Detailed Description

+

Common memory management routines.

+

libical often passes strings back to the caller. To make these interfaces simple, I did not want the caller to have to pass in a memory buffer, but having libical pass out newly allocated memory makes it difficult to de-allocate the memory.

+

The ring buffer in this scheme makes it possible for libical to pass out references to memory which the caller does not own, and be able to de-allocate the memory later. The ring allows libical to have several buffers active simultaneously, which is handy when creating string representations of components. Methods for working with these temporary buffers are marked with icalmemory_tmp_*().

+

Other memory management routines include wrappers around the system management routines like icalmemory_new_buffer() and icalmemory_free_buffer() as well as routines to work with strings, like icalmemory_append_string().

+

Function Documentation

+ +

◆ icalmemory_add_tmp_buffer()

+ +
+
+ + + + + + + + +
void icalmemory_add_tmp_buffer (void * buf)
+
+ +

Adds an externally allocated buffer to the ring.

+
Parameters
+ + +
bufThe externally allocated buffer to add to the ring
+
+
+

Adds an externally allocated buffer to the ring. This ensures that libical will free() the buffer automatically, either after BUFFER_RING_SIZE other buffers have been created or added, or after icalmemory_free_ring() has been called.

+
Error handling
No error is raised if buf is NULL.
+
Ownership
After adding buf to the ring, it becomes owned by icalmemory and must not be free()d manually anymore, it leads to a double-free() when icalmemory reclaims the memory.
+
Usage
char *buf = calloc(256, sizeof(char));
+
+
icalmemory_add_tmp_buffer(buf);
+
+ +
+
+ +

◆ icalmemory_append_char()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void icalmemory_append_char (char ** buf,
char ** pos,
size_t * buf_size,
char ch 
)
+
+ +

Appends a character to a buffer.

+
Parameters
+ + + + + +
bufThe buffer to append the character to.
posThe position to append the character at.
buf_sizeThe size of the buffer (will be changed if buffer is reallocated)
chThe character to append to the buffer.
+
+
+
Warning
This method may not be used for temporary buffers (buffers allocated with icalmemory_tmp_buffer() and related functions)!
+
Error handling
Sets icalerrno to ICAL_BADARG_ERROR if buf, *buf, pos, * pos, or buf_size NULL.
+

This method will copy the character ch and a ‘’\0'character after it to the buffer @a buf starting at position @a pos, reallocing @a buf if it is too small. @a buf_size is the size of @a buf and will be changed if @a buf is reallocated. @a pos will point to the new terminating'\0'` character buf.

+
Example
// creates a new buffer
+
int buffer_len = 15;
+
char *buffer = icalmemory_new_buffer(buffer_len);
+
strcpy(buffer, "My number is: ");
+
+
// append a char to the buffer
+
int buffer_end = strlen(buffer);
+
char *buffer_end_pos = buffer[buffer_str_end];
+
icalmemory_append_char(&buffer, &buffer_end_pos, &buffer_len, '7');
+
+
// print string
+
printf("%s\n", buffer);
+
+
// release memory
+
icalmemory_free_buffer(buffer);
+
+ +
+
+ +

◆ icalmemory_append_string()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void icalmemory_append_string (char ** buf,
char ** pos,
size_t * buf_size,
const char * string 
)
+
+ +

Appends a string to a buffer.

+
Parameters
+ + + + + +
bufThe buffer to append the string to.
posThe position to append the string at.
buf_sizeThe size of the buffer (will be changed if buffer is reallocated)
stringThe string to append to the buffer.
+
+
+
Warning
This method may not be used for temporary buffers (buffers allocated with icalmemory_tmp_buffer() and related functions)!
+
Error handling
Sets icalerrno to ICAL_BADARG_ERROR if buf, *buf, pos, * pos, buf_size or string are NULL.
+

This method will copy the string string to the buffer buf starting at position pos, reallocing buf if it is too small. buf_size is the size of buf and will be changed if buf is reallocated. pos will point to the last byte of the new string in buf, usually a ‘’\0'`

+
Example
// creates a new buffer
+
int buffer_len = 15;
+
char *buffer = icalmemory_new_buffer(buffer_len);
+
strcpy(buffer, "My name is: ");
+
+
// append a string to the buffer
+
int buffer_end = strlen(buffer);
+
char *buffer_end_pos = buffer[buffer_str_end];
+
icalmemory_append_string(&buffer, &buffer_end_pos, &buffer_len, "John Doe");
+
+
// print string
+
printf("%s\n", buffer);
+
+
// release memory
+
icalmemory_free_buffer(buffer);
+
+ +
+
+ +

◆ icalmemory_free_buffer()

+ +
+
+ + + + + + + + +
void icalmemory_free_buffer (void * buf)
+
+ +

Releases a buffer.

+
Parameters
+ + +
bufThe buffer to release
+
+
+
See also
icalmemory_new_buffer()
+

Releases the memory of the buffer.

+ +
+
+ +

◆ icalmemory_free_ring()

+ +
+
+ + + + + + + + +
void icalmemory_free_ring (void )
+
+ +

Frees all memory used in the ring.

+

Frees all memory used in the ring. Depending on if HAVE_PTHREAD is set or not, the ring buffer is allocated on a per-thread basis, meaning that if all rings are to be released, it must be called once in every thread.

+
Usage
c
+
void *buf = icalmemory_tmp_buffer(256);
+
+
// use buf
+
+
// release buf and all other memory in the ring buffer
+
icalmemory_free_ring();
+
+ +
+
+ +

◆ icalmemory_new_buffer()

+ +
+
+ + + + + + + + +
void * icalmemory_new_buffer (size_t size)
+
+ +

Creates new buffer with the specified size.

+
Parameters
+ + +
sizeThe size of the buffer that is to be created.
+
+
+
Returns
A pointer to the newly-created buffer.
+
See also
icalmemory_free_buffer()
+
Error handling
If there is a problem allocating memory, it sets icalerrno to ICAL_NEWFAILED_ERROR and returns NULL.
+
Ownership
Buffers created with this method are owned by the caller. The must be released with the appropriate icalmemory_free_buffer() method.
+

This creates a new (non-temporary) buffer of the specified size. All buffers returned by this method are zeroed-out.

+
Usage
// create buffer
+
char *buffer = icalmemory_new_buffer(50);
+
+
// fill buffer
+
strcpy(buffer, "some data");
+
+
// release buffer
+
icalmemory_free_buffer(buffer);
+
+ +
+
+ +

◆ icalmemory_resize_buffer()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void * icalmemory_resize_buffer (void * buf,
size_t size 
)
+
+ +

Resizes a buffer created with icalmemory_new_buffer().

+
Parameters
+ + + +
bufThe buffer to be resized.
sizeThe new size of the buffer.
+
+
+
Returns
The new, resized buffer.
+
See also
icalmemory_new_buffer()
+
Warning
This method may not be used for temporary buffers (buffers allocated with icalmemory_tmp_buffer() and related functions)!
+
Error handling
If there is a problem while reallocating the buffer, the method sets icalerrno to ICAL_NEWFAILED_ERROR and returns NULL.
+
Ownership
The returned buffer is owned by the caller and needs to be released with the appropriate icalmemory_free_buffer() method. The old buffer, buf, can not be used anymore after calling this method.
+
Usage
// create new buffer
+
char *buffer = icalmemory_new_buffer(10);
+
+
// fill buffer
+
strcpy(buffer, "some data");
+
+
// expand buffer
+
buffer = icalmemory_resize_buffer(buffer, 20);
+
+
// fill with more data
+
strcpy(buffer, "a lot more data");
+
+
// release
+
icalmemory_free_buffer(buffer);
+
+ +
+
+ +

◆ icalmemory_strdup()

+ +
+
+ + + + + + + + +
char * icalmemory_strdup (const char * s)
+
+ +

Creates a duplicate of a string.

+
Parameters
+ + +
sThe string to duplicate.
+
+
+
Returns
A pointer to a string containing the same data as s
+
Error handling
The string s must not be NULL, otherwise depending on the libc used, it might lead to undefined behaviour (read: segfaults).
+
Ownership
The returned string is owned by the caller and needs to be released with the appropriate free() method.
+

A wrapper around strdup(). Partly to trap calls to strdup(), partly because in -ansi, gcc on Red Hat claims that strdup() is undeclared.

+
Usage
const char *my_str = "LibIcal";
+
char *dup = icalmemory_strdup(my_str);
+
printf("%s\n", dup);
+
free(dup);
+
+ +
+
+ +

◆ icalmemory_tmp_buffer()

+ +
+
+ + + + + + + + +
void * icalmemory_tmp_buffer (size_t size)
+
+ +

Creates a new temporary buffer on the ring and returns it.

+
Parameters
+ + +
sizeHow big (in bytes) the buffer should be
+
+
+
Returns
A pointer to the newly created buffer on the ring
+

Creates a temporary buffer on the ring. Regardless of what size you specify, the buffer will always be at least MIN_BUFFER_SIZE big, and it will be zeroed out.

+
Error handling
If there is a problem allocating memory for the buffer, it sets icalerrno to ICAL_NEWFAILED_ERROR and returns NULL.
+
Ownership
The returned buffer is owned by icalmemory. It must not be freed by the caller and the returned memory will be automatically reclaimed as more items are added to the ring buffer.
+
Usage
char *str = icalmemory_tmp_buffer(256);
+
strcpy(str, "some data");
+
+
// use str
+
+ +
+
+ +

◆ icalmemory_tmp_copy()

+ +
+
+ + + + + + + + +
char * icalmemory_tmp_copy (const char * str)
+
+ +

Creates a copy of the given string, stored on the ring buffer, and returns it.

+
Parameters
+ + +
strThe string to copy
+
+
+
Returns
A copy of str, which has been placed on the ring buffer for automatic reclamation.
+
Error handling
The passed string str must not be NULL, otherwise a segfault might ensue, since the routine calls strlen() on it.
+
Ownership
The returned string is owned by icalmemory. It must not be freed by the caller, and it will be automatically reclaimed as more items are added to the buffer.
+
Usage
const char *str = "Example string";
+
char *tmp_copy = icalmemory_tmp_copy(str);
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalmemory_8h_source.html b/static/apidocs/icalmemory_8h_source.html new file mode 100644 index 00000000..9968fc26 --- /dev/null +++ b/static/apidocs/icalmemory_8h_source.html @@ -0,0 +1,153 @@ + + + + + + + +Libical API Documentation: icalmemory.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalmemory.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalmemory.h
+
3 CREATOR: eric 30 June 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Initial Developer of the Original Code is Eric Busboom
+
19======================================================================*/
+
20
+
21#ifndef ICALMEMORY_H
+
22#define ICALMEMORY_H
+
23
+
45#include "libical_ical_export.h"
+
46
+
73LIBICAL_ICAL_EXPORT void *icalmemory_tmp_buffer(size_t size);
+
74
+
97LIBICAL_ICAL_EXPORT char *icalmemory_tmp_copy(const char *str);
+
98
+
123LIBICAL_ICAL_EXPORT void icalmemory_add_tmp_buffer(void *buf);
+
124
+
142LIBICAL_ICAL_EXPORT void icalmemory_free_ring(void);
+
143
+
144/* Non-tmp buffers must be freed. These are mostly wrappers around
+
145 * malloc, etc, but are used so the caller can change the memory
+
146 * allocators in a future version of the library */
+
147
+
177LIBICAL_ICAL_EXPORT void *icalmemory_new_buffer(size_t size);
+
178
+
215LIBICAL_ICAL_EXPORT void *icalmemory_resize_buffer(void *buf, size_t size);
+
216
+
224LIBICAL_ICAL_EXPORT void icalmemory_free_buffer(void *buf);
+
225
+
226/* THESE ROUTINES CAN NOT BE USED ON TMP BUFFERS. Only use them on
+
227 normally allocated memory, or on buffers created from
+
228 icalmemory_new_buffer, never with buffers created by
+
229 icalmemory_tmp_buffer. If icalmemory_append_string has to resize a
+
230 buffer on the ring, the ring will loose track of it an you will
+
231 have memory problems. */
+
232
+
271LIBICAL_ICAL_EXPORT void icalmemory_append_string(char **buf, char **pos, size_t *buf_size,
+
272 const char *string);
+
273
+
313LIBICAL_ICAL_EXPORT void icalmemory_append_char(char **buf, char **pos, size_t *buf_size, char ch);
+
314
+
339LIBICAL_ICAL_EXPORT char *icalmemory_strdup(const char *s);
+
340
+
341#endif /* !ICALMEMORY_H */
+
void icalmemory_free_ring(void)
Frees all memory used in the ring.
Definition icalmemory.c:227
+
void icalmemory_free_buffer(void *buf)
Releases a buffer.
Definition icalmemory.c:287
+
char * icalmemory_strdup(const char *s)
Creates a duplicate of a string.
Definition icalmemory.c:251
+
void icalmemory_append_string(char **buf, char **pos, size_t *buf_size, const char *string)
Appends a string to a buffer.
Definition icalmemory.c:292
+
void * icalmemory_resize_buffer(void *buf, size_t size)
Resizes a buffer created with icalmemory_new_buffer().
Definition icalmemory.c:275
+
void * icalmemory_new_buffer(size_t size)
Creates new buffer with the specified size.
Definition icalmemory.c:261
+
char * icalmemory_tmp_copy(const char *str)
Creates a copy of the given string, stored on the ring buffer, and returns it.
Definition icalmemory.c:242
+
void icalmemory_append_char(char **buf, char **pos, size_t *buf_size, char ch)
Appends a character to a buffer.
Definition icalmemory.c:330
+
void icalmemory_add_tmp_buffer(void *buf)
Adds an externally allocated buffer to the ring.
Definition icalmemory.c:182
+
void * icalmemory_tmp_buffer(size_t size)
Creates a new temporary buffer on the ring and returns it.
Definition icalmemory.c:205
+
+ + + + diff --git a/static/apidocs/icalmessage_8h_source.html b/static/apidocs/icalmessage_8h_source.html new file mode 100644 index 00000000..e3c487d1 --- /dev/null +++ b/static/apidocs/icalmessage_8h_source.html @@ -0,0 +1,137 @@ + + + + + + + +Libical API Documentation: icalmessage.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalmessage.h
+
+
+
1/*======================================================================
+
2 FILE: icalmessage.h
+
3 CREATOR: eric 07 Nov 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17 =========================================================================*/
+
18
+
19#ifndef ICALMESSAGE_H
+
20#define ICALMESSAGE_H
+
21
+
22#include "libical_icalss_export.h"
+
23#include "icalcomponent.h"
+
24
+
25LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_accept_reply(icalcomponent *c,
+
26 const char *user,
+
27 const char *msg);
+
28
+
29LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_decline_reply(icalcomponent *c,
+
30 const char *user,
+
31 const char *msg);
+
32
+
33/* New is modified version of old */
+
34LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_counterpropose_reply(icalcomponent *oldc,
+
35 icalcomponent *newc,
+
36 const char *user,
+
37 const char *msg);
+
38
+
39LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_delegate_reply(icalcomponent *c,
+
40 const char *user,
+
41 const char *delegatee,
+
42 const char *msg);
+
43
+
44LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_error_reply(icalcomponent *c,
+
45 const char *user,
+
46 const char *msg,
+
47 const char *debug,
+
48 icalrequeststatus rs);
+
49
+
50#endif /* ICALMESSAGE_H */
+ +
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalmime_8h_source.html b/static/apidocs/icalmime_8h_source.html new file mode 100644 index 00000000..5dda7134 --- /dev/null +++ b/static/apidocs/icalmime_8h_source.html @@ -0,0 +1,116 @@ + + + + + + + +Libical API Documentation: icalmime.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalmime.h
+
+
+
1/*======================================================================
+
2 FILE: icalmime.h
+
3 CREATOR: eric 26 July 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALMIME_H
+
20#define ICALMIME_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalcomponent.h"
+
24
+
25LIBICAL_ICAL_EXPORT icalcomponent *icalmime_parse(char *(*line_gen_func) (char *s,
+
26 size_t size,
+
27 void *d), void *data);
+
28
+
29#endif /* !ICALMIME_H */
+ +
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalparameter_8h.html b/static/apidocs/icalparameter_8h.html new file mode 100644 index 00000000..507696cc --- /dev/null +++ b/static/apidocs/icalparameter_8h.html @@ -0,0 +1,1034 @@ + + + + + + + +Libical API Documentation: icalparameter.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalparameter.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

char * icalparameter_as_ical_string (icalparameter *parameter)
 Converts icalparameter into a string representation.
 
char * icalparameter_as_ical_string_r (icalparameter *parameter)
 Converts icalparameter into an string representation according to RFC5445/RFC6868.
 
void icalparameter_free (icalparameter *parameter)
 Frees an icalparameter object.
 
const char * icalparameter_get_iana_name (icalparameter *param)
 Returns the IANA name of param.
 
const char * icalparameter_get_iana_value (icalparameter *param)
 Returns the IANA value of param.
 
const char * icalparameter_get_xname (icalparameter *param)
 Returns the X-name of param.
 
const char * icalparameter_get_xvalue (icalparameter *param)
 Returns the X-value of param.
 
int icalparameter_has_same_name (icalparameter *param1, icalparameter *param2)
 Determines if two parameters have the same name.
 
icalparameter_kind icalparameter_isa (icalparameter *parameter)
 
int icalparameter_isa_parameter (void *param)
 
int icalparameter_kind_is_valid (const icalparameter_kind kind)
 Checks the validity of a icalparameter_kind.
 
const char * icalparameter_kind_to_string (icalparameter_kind kind)
 Returns a string representing the given icalparameter_kind.
 
icalparameter * icalparameter_new (icalparameter_kind kind)
 Creates new icalparameter object.
 
icalparameter * icalparameter_new_clone (icalparameter *p)
 Creates new icalparameter as a clone of the given one.
 
icalparameter * icalparameter_new_from_string (const char *value)
 Creates new icalparameter object from string.
 
icalparameter * icalparameter_new_from_value_string (icalparameter_kind kind, const char *value)
 Creates new icalparameter of a given kind with a given value.
 
void icalparameter_set_iana_name (icalparameter *param, const char *v)
 Sets the IANA name of param to v.
 
void icalparameter_set_iana_value (icalparameter *param, const char *v)
 Sets the IANA value of param to v.
 
void icalparameter_set_xname (icalparameter *param, const char *v)
 Sets the X-name of param to v.
 
void icalparameter_set_xvalue (icalparameter *param, const char *v)
 Sets the X-value of param to v.
 
icalparameter_kind icalparameter_string_to_kind (const char *string)
 Returns the icalparameter_kind for a given string.
 
+

Detailed Description

+

Functions to work with ical parameter objects, which represent parameters to property objects.

+

Function Documentation

+ +

◆ icalparameter_as_ical_string()

+ +
+
+ + + + + + + + +
char * icalparameter_as_ical_string (icalparameter * parameter)
+
+ +

Converts icalparameter into a string representation.

+
Parameters
+ + +
parameterThe icalparameter to convert
+
+
+
Returns
A string representing the parameter according to RFC5445/RFC6868.
+
See also
icalparameter_as_ical_string_r()
+
Error handling
If there is any error, the method returns NULL. Furthermore, if parameter is NULL, it also sets icalerrno to ICAL_BADARG_ERROR. If it doesn't recognize the kind of the parameter, it sets icalerrno it ICAL_BADARG_ERROR. If the parameter is otherwise malformed, it sets icalerrno to ICAL_MALFORMEDDATA_ERROR.
+
Ownership
Strings returned by this method are owned by libical, they must not be freed and they may be reclaimed with the next call into the library. A version of this function, which returns strings that are not owned by libical, is icalparameter_as_ical_string_r().
+
Usage
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
if(param) {
+
printf("%s\n", icalparameter_as_ical_string(param));
+
}
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_as_ical_string_r()

+ +
+
+ + + + + + + + +
char * icalparameter_as_ical_string_r (icalparameter * parameter)
+
+ +

Converts icalparameter into an string representation according to RFC5445/RFC6868.

+
Parameters
+ + +
parameterThe icalparameter to convert
+
+
+
Returns
A string representing the parameter
+
See also
icalparameter_as_ical_string()
+
Error handling
If there is any error, the method returns NULL. Furthermore, if parameter is NULL, it also sets icalerrno to ICAL_BADARG_ERROR. If it doesn't recognize the kind of the parameter, it sets icalerrno to ICAL_BADARG_ERROR. If the parameter is otherwise malformed, it sets icalerrno to ICAL_MALFORMEDDATA_ERROR.
+
Ownership
Strings returned by this method are owned by the caller, thus they need to be manually free()d after use. A version of this function which returns strings that do not need to be freed manually is icalparameter_as_ical_string().
+
Usage
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
if(param) {
+
char *str = icalparameter_as_ical_string(param);
+
printf("%s\n", str);
+
free(str);
+
}
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_free()

+ +
+
+ + + + + + + + +
void icalparameter_free (icalparameter * parameter)
+
+ +

Frees an icalparameter object.

+
Parameters
+ + +
parameterThe icalparameter to free
+
+
+

This method needs to be used on all parameter objects returned from any of the _new() methods including icalparameter_new(), icalparameter_new_clone(), icalparameter_new_from_string() and icalparameter_new_from_value_string(), when they are not needed anymore and to be released.

+
Usage
icalparameter *param = icalparameter_new();
+
+
if(param) {
+
// use param...
+
}
+
+
// after use, release it
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_get_iana_name()

+ +
+
+ + + + + + + + +
const char * icalparameter_get_iana_name (icalparameter * param)
+
+ +

Returns the IANA name of param.

+
Parameters
+ + +
paramThe icalparameter whose IANA name is to be returned
+
+
+
Returns
A string representing the IANA name of param
+
See also
icalparameter_set_iana_name()
+
Error handling
Returns NULL and sets icalerrno to ICAL_BADARG_ERROR when a NULL is passed instead of an icalparameter.
+
Ownership
The string that is returned stays owned by libical and must not be freed by the caller.
+
Usage
// creates new parameter
+
icalparameter *param = icalparameter_new();
+
+
// sets iana name
+
icalparameter_set_iana_name(param, "X-TEST");
+
+
// compare iana name
+
assert(0 == strcmp(icalparameter_get_iana_name(param), "X-TEST"));
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_get_iana_value()

+ +
+
+ + + + + + + + +
const char * icalparameter_get_iana_value (icalparameter * param)
+
+ +

Returns the IANA value of param.

+
Parameters
+ + +
paramThe icalparameter whose value is to be returned
+
+
+
Returns
A string representing the value of param
+
See also
icalparameter_set_iana_value()
+
Error handling
Returns NULL and sets icalerrno to ICAL_BADARG_ERROR when a NULL is passed instead of an icalparameter.
+
Ownership
The string that is returned stays owned by libical and must not be freed by the caller.
+
Usage
// create new parameter
+
icalparameter *param = icalparameter_new_from_string("ROLE=ATTENDEE");
+
+
// set role to chair
+
icalparameter_set_iana_value(param, "CHAIR");
+
+
// check that it worked
+
assert(0 == strcmp(icalparameter_get_iana_value(param), "SUCCESS"));
+
+
// release memory
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_get_xname()

+ +
+
+ + + + + + + + +
const char * icalparameter_get_xname (icalparameter * param)
+
+ +

Returns the X-name of param.

+
Parameters
+ + +
paramThe icalparameter whose X-name is to be returned
+
+
+
Returns
A string representing the X-name of param
+
See also
icalparameter_set_xname()
+
Error handling
Returns NULL and sets icalerrno to ICAL_BADARG_ERROR when a NULL is passed instead of an icalparameter.
+
Ownership
The string that is returned stays owned by libical and must not be freed by the caller.
+
Usage
// creates new parameter
+
icalparameter *param = icalparameter_new();
+
+
// sets xname
+
icalparameter_set_xname(param, "X-TEST");
+
+
// compare xname
+
assert(0 == strcmp(icalparameter_get_xname(param), "X-TEST"));
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_get_xvalue()

+ +
+
+ + + + + + + + +
const char * icalparameter_get_xvalue (icalparameter * param)
+
+ +

Returns the X-value of param.

+
Parameters
+ + +
paramThe icalparameter whose X-value is to be returned
+
+
+
Returns
A string representing the X-value of param
+
See also
icalparameter_set_xvalue()
+
Error handling
Returns NULL and sets icalerrno to ICAL_BADARG_ERROR when a NULL is passed instead of an icalparameter.
+
Ownership
The string that is returned stays owned by libical and must not be freed by the caller.
+
Usage
// create new parameter
+
icalparameter *param = icalparameter_new_from_string("X-TEST=FAIL");
+
+
// set test to success
+
icalparameter_set_xvalue(param, "SUCCESS");
+
+
// check that it worked
+
assert(0 == strcmp(icalparameter_get_xvalue(param), "SUCCESS"));
+
+
// release memory
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_has_same_name()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icalparameter_has_same_name (icalparameter * param1,
icalparameter * param2 
)
+
+ +

Determines if two parameters have the same name.

+
Parameters
+ + + +
param1First parameter to compare
param2Second parameter to compare
+
+
+
Returns
1 if they have the same name, 0 otherwise.
+
Error handling
If either of param1 or param2 are NULL, it returns 0 and sets icalerrno to ICAL_BADARG_ERROR.
+
Ownership
Does not take ownership of either icalparameter.
+
Example
// create two parameters
+
icalparameter *param1 = icalparameter_new_from_string("ROLE=CHAIR");
+
icalparameter *param2 = icalparameter_new_from_string("EMAIL=mailto@example.com");
+
+
// compare parameter names for equality
+
assert(icalparameter_has_same_name(param1, param2) == 0);
+
+
// release memory
+
icalparameter_free(param1);
+
icalparameter_free(param2);
+
+ +
+
+ +

◆ icalparameter_isa()

+ +
+
+ + + + + + + + +
icalparameter_kind icalparameter_isa (icalparameter * parameter)
+
+

Returns the icalparameter_kind of parameter.

+
Parameters
+ + +
parameterThe icalparameter whose kind to determine
+
+
+
Returns
The icalparameter_kind of the parameter
+

Error handling Returns ICAL_NO_PARAMETER when passed NULL.

+

Usage

// create parameter
+
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
// check what type of parameter this is
+
assert(icalparameter_isa(param) == ICAL_ROLE_PARAMETER);
+
+
// release memory
+
icalparameter_free(param);
+
+
+
+ +

◆ icalparameter_isa_parameter()

+ +
+
+ + + + + + + + +
int icalparameter_isa_parameter (void * param)
+
+

Determines if the given param is an icalparameter

Parameters
+ + +
paramThe libical-originated object to check
+
+
+
Returns
1 if the object is an icalparameter, 0 otherwise.
+
Note
This function expects to be given an object originating from libical - if this function is passed anything that is not from libical, its behavior is undefined.
+

Error handling When given a NULL object, it returns 0.

+

Usage

// create parameter
+
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
// check if it's a parameter
+
assert(icalparameter_isa_parameter(param));
+
+
// release memory
+
icalparameter_free(param);
+
+
+
+ +

◆ icalparameter_kind_is_valid()

+ +
+
+ + + + + + + + +
int icalparameter_kind_is_valid (const icalparameter_kind kind)
+
+ +

Checks the validity of a icalparameter_kind.

+
Parameters
+ + +
kindThe icalparameter_kind
+
+
+
Returns
1 if kind is valid, 0 otherwise
+
Usage
assert(icalparameter_kind_is_valid(ICAL_ROLE_PARAMETER));
+
int icalparameter_kind_is_valid(const icalparameter_kind kind)
Checks the validity of a icalparameter_kind.
+
+
Since
3.0.4
+ +
+
+ +

◆ icalparameter_kind_to_string()

+ +
+
+ + + + + + + + +
const char * icalparameter_kind_to_string (icalparameter_kind kind)
+
+ +

Returns a string representing the given icalparameter_kind.

+
Parameters
+ + +
kindThe icalparameter_kind
+
+
+
Returns
A string representing kind
+
Error handling
When passed a non-existing icalparameter_kind, it returns NULL.
+
Ownership
The string that is returned by this function is owned by libical and must not be freed by the caller.
+
Usage
assert(0 == strcmp(icalparameter_kind_to_string(ICAL_ROLE_PARAMETER), "ROLE"));
+
assert(0 == strcmp(icalparameter_kind_to_string(ICAL_EMAIL_PARAMETER), "EMAIL));
+
assert(0 == strcmp(icalparameter_kind_to_string(ICAL_ID_PARAMETER), "ID"));
+
const char * icalparameter_kind_to_string(icalparameter_kind kind)
Returns a string representing the given icalparameter_kind.
+
+ +
+
+ +

◆ icalparameter_new()

+ +
+
+ + + + + + + + +
icalparameter * icalparameter_new (icalparameter_kind kind)
+
+ +

Creates new icalparameter object.

+
Parameters
+ + +
kindThe kind of icalparameter to create.
+
+
+
Returns
An icalparameter with the given kind.
+
Error handling
If there was an internal error regarding memory allocation, it returns NULL and sets icalerrno to ICAL_NEWFAILED_ERROR.
+
Ownership
Objects created by this method are owned by the caller and must be released with the icalparameter_free() method.
+
Usage
// create new parameter
+
icalparameter *parameter = icalparameter_new();
+
+
if(parameter) {
+
// use parameter ...
+
}
+
+
// release parameter
+
icalparameter_free(parameter);
+
+ +
+
+ +

◆ icalparameter_new_clone()

+ +
+
+ + + + + + + + +
icalparameter * icalparameter_new_clone (icalparameter * p)
+
+ +

Creates new icalparameter as a clone of the given one.

+
Parameters
+ + +
pThe existing, non-NULL parameter to clone.
+
+
+
Returns
An icalparameter that is a clone of the given one.
+
Error handling
If p is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR. If there was an internal error cloning the data, it returns NULL without reporting any error in icalerrno.
+
Ownership
Objects created by this method are owned by the caller and must be released with the icalparameter_free() method.
+
Usage
// create an icalparameter
+
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
// clone the parameter
+
icalparameter *clone = icalparameter_new_clone(param);
+
+
if(clone) {
+
// use clone ...
+
}
+
+
// release parameters
+
icalparameter_free(param);
+
icalparameter_free(clone);
+
+ +
+
+ +

◆ icalparameter_new_from_string()

+ +
+
+ + + + + + + + +
icalparameter * icalparameter_new_from_string (const char * value)
+
+ +

Creates new icalparameter object from string.

+
Parameters
+ + +
valueThe string from which to create the icalparameter, in the form "PARAMNAME=VALUE"
+
+
+
Returns
An icalparameter that corresponds to the given string.
+
Error handling
If there was an internal error copying data, it returns NULL and sets icalerrno to ICAL_NEWFAILED_ERROR. If value was NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR. If value was malformed, it returns NULL and sets icalerrno to ICAL_MALFORMEDDATA_ERROR.
+
Ownership
Objects created by this method are owned by the caller and must be released with the icalparameter_free() method.
+
Usage
icalparameter *param = icalparameter_new_from_string("ROLE=CHAIR");
+
+
if(param) {
+
// use param ...
+
}
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_new_from_value_string()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalparameter * icalparameter_new_from_value_string (icalparameter_kind kind,
const char * value 
)
+
+ +

Creates new icalparameter of a given kind with a given value.

+
Parameters
+ + + +
kindThe kind of icalparameter to create
valueThe value of the parameter
+
+
+
Returns
An icalparameter with the given kind and value.
+
Error handling
If value is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR.
+
Ownership
Objects created by this method are owned by the caller and must be released with the icalparameter_free() method.
+
Example
// create new parameter
+
icalparameter *param;
+
param = icalparameter_new_from_value_string(ICAL_ROLE_PARAMETER, "CHAIR");
+
+
// check parameter
+
assert(0 == strcmp(icalparameter_get_iana_name(param), "ROLE"));
+
assert(0 == strcmp(icalparameter_get_iana_value(param), "CHAIR"));
+
+
// release memory
+
icalparameter_free(param);
+
icalparameter * icalparameter_new_from_value_string(icalparameter_kind kind, const char *value)
Creates new icalparameter of a given kind with a given value.
+
+ +
+
+ +

◆ icalparameter_set_iana_name()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparameter_set_iana_name (icalparameter * param,
const char * v 
)
+
+ +

Sets the IANA name of param to v.

+
Parameters
+ + + +
paramThe icalparameter to change
vThe IANA name to set param to
+
+
+
See also
icalparameter_get_iana_name()
+
Error handling
If either param or v are NULL, it sets :calerrno to ICAL_BARARG_ERROR. If there is an error acquiring memory, it sets errno to ENOMEM.
+
Ownership
The passed string v stays in the ownership of the caller - libical creates a copy of it.
+
Usage
// creates new parameter
+
icalparameter *param = icalparameter_new();
+
+
// sets iana name
+
icalparameter_set_iana_name(param, "ROLE");
+
+
// compare iana name
+
assert(0 == strcmp(icalparameter_get_iana_name(param), "X-TEST"));
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_set_iana_value()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparameter_set_iana_value (icalparameter * param,
const char * v 
)
+
+ +

Sets the IANA value of param to v.

+
Parameters
+ + + +
paramThe icalparameter to change
vThe IANA value to set param to
+
+
+
See also
icalparameter_get_iana_value()
+
Error handling
If either param or v are NULL, it sets icalerrno to ICAL_BARARG_ERROR. If there is an error acquiring memory, it sets errno to ENOMEM.
+
Ownership
The passed string v stays in the ownership of the caller - libical creates a copy of it.
+
Usage
// create new parameter
+
icalparameter *param = icalparameter_new_from_string("ROLE=ATTENDEE");
+
+
// set role to chair
+
icalparameter_set_iana_value(param, "CHAIR");
+
+
// check that it worked
+
assert(0 == strcmp(icalparameter_get_iana_value(param), "SUCCESS"));
+
+
// release memory
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_set_xname()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparameter_set_xname (icalparameter * param,
const char * v 
)
+
+ +

Sets the X-name of param to v.

+
Parameters
+ + + +
paramThe icalparameter to change
vThe X-name to set param to
+
+
+
See also
icalparameter_get_xname()
+
Error handling
If either param or v are NULL, it sets icalerrno to ICAL_BARARG_ERROR. If there is an error acquiring memory, it sets errno to ENOMEM.
+
Ownership
The passed string v stays in the ownership of the caller - libical creates a copy of it.
+
Usage
// creates new parameter
+
icalparameter *param = icalparameter_new();
+
+
// sets xname
+
icalparameter_set_xname(param, "X-TEST");
+
+
// compare xname
+
assert(0 == strcmp(icalparameter_get_xname(param), "X-TEST"));
+
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_set_xvalue()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparameter_set_xvalue (icalparameter * param,
const char * v 
)
+
+ +

Sets the X-value of param to v.

+
Parameters
+ + + +
paramThe icalparameter to change
vThe X-value to set param to
+
+
+
See also
icalparameter_get_xvalue()
+
Error handling
If either param or v are NULL, it sets icalerrno to ICAL_BARARG_ERROR. If there is an error acquiring memory, it sets errno to ENOMEM.
+
Ownership
The passed string v stays in the ownership of the caller - libical creates a copy of it.
+
Usage
// create new parameter
+
icalparameter *param = icalparameter_new_from_string("X-TEST=FAIL");
+
+
// set test to success
+
icalparameter_set_xvalue(param, "SUCCESS");
+
+
// check that it worked
+
assert(0 == strcmp(icalparameter_get_xvalue(param), "SUCCESS"));
+
+
// release memory
+
icalparameter_free(param);
+
+ +
+
+ +

◆ icalparameter_string_to_kind()

+ +
+
+ + + + + + + + +
icalparameter_kind icalparameter_string_to_kind (const char * string)
+
+ +

Returns the icalparameter_kind for a given string.

+
Parameters
+ + +
stringA string describing an icalparameter_kind
+
+
+
Returns
An icalparameter_kind
+
Error handling
Returns ICAL_NO_PARAMETER if string is NULL. If it can't find the parameter, depending on the ical_get_unknown_token_handling_setting(), it returns either ICAL_NO_PARAMETER or ICAL_IANA_PARAMETER.
+
Ownership
Does not take ownership of string.
+
Usage
assert(icalparameter_string_to_kind("ROLE") == ICAL_ROLE_PARAMETER);
+
assert(icalparameter_string_to_kind("EMAIL") == ICAL_EMAIL_PARAMETER);
+
assert(icalparameter_string_to_kind("ID") == ICAL_ID_PARAMETER);
+
icalparameter_kind icalparameter_string_to_kind(const char *string)
Returns the icalparameter_kind for a given string.
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalparameter_8h_source.html b/static/apidocs/icalparameter_8h_source.html new file mode 100644 index 00000000..8b9b7479 --- /dev/null +++ b/static/apidocs/icalparameter_8h_source.html @@ -0,0 +1,183 @@ + + + + + + + +Libical API Documentation: icalparameter.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalparameter.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalparam.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
26#ifndef ICALPARAMETER_H
+
27#define ICALPARAMETER_H
+
28
+
29#include "libical_ical_export.h"
+
30#include "icalderivedparameter.h"
+
31
+
32/* Declared in icalderivedparameter.h */
+
33/*typedef struct icalparameter_impl icalparameter;*/
+
34
+
62LIBICAL_ICAL_EXPORT icalparameter *icalparameter_new(icalparameter_kind kind);
+
63
+
95LIBICAL_ICAL_EXPORT icalparameter *icalparameter_new_clone(icalparameter *p);
+
96
+
123LIBICAL_ICAL_EXPORT icalparameter *icalparameter_new_from_string(const char *value);
+
124
+
152LIBICAL_ICAL_EXPORT icalparameter *icalparameter_new_from_value_string(icalparameter_kind kind,
+
153 const char *value);
+
154
+
176LIBICAL_ICAL_EXPORT void icalparameter_free(icalparameter *parameter);
+
177
+
208LIBICAL_ICAL_EXPORT char *icalparameter_as_ical_string(icalparameter *parameter);
+
209
+
242LIBICAL_ICAL_EXPORT char *icalparameter_as_ical_string_r(icalparameter *parameter);
+
243
+
265LIBICAL_ICAL_EXPORT icalparameter_kind icalparameter_isa(icalparameter *parameter);
+
266
+
290LIBICAL_ICAL_EXPORT int icalparameter_isa_parameter(void *param);
+
291
+
292/* Access the name of an X parameter */
+
293
+
322LIBICAL_ICAL_EXPORT void icalparameter_set_xname(icalparameter *param, const char *v);
+
323
+
352LIBICAL_ICAL_EXPORT const char *icalparameter_get_xname(icalparameter *param);
+
353
+
383LIBICAL_ICAL_EXPORT void icalparameter_set_xvalue(icalparameter *param, const char *v);
+
384
+
414LIBICAL_ICAL_EXPORT const char *icalparameter_get_xvalue(icalparameter *param);
+
415
+
416/* Access the name of an IANA parameter */
+
417
+
446LIBICAL_ICAL_EXPORT void icalparameter_set_iana_name(icalparameter *param, const char *v);
+
447
+
476LIBICAL_ICAL_EXPORT const char *icalparameter_get_iana_name(icalparameter *param);
+
477
+
507LIBICAL_ICAL_EXPORT void icalparameter_set_iana_value(icalparameter *param, const char *v);
+
508
+
538LIBICAL_ICAL_EXPORT const char *icalparameter_get_iana_value(icalparameter *param);
+
539
+
567LIBICAL_ICAL_EXPORT int icalparameter_has_same_name(icalparameter *param1, icalparameter *param2);
+
568
+
569/* Convert enumerations */
+
570
+
590LIBICAL_ICAL_EXPORT const char *icalparameter_kind_to_string(icalparameter_kind kind);
+
591
+
613LIBICAL_ICAL_EXPORT icalparameter_kind icalparameter_string_to_kind(const char *string);
+
614
+
626LIBICAL_ICAL_EXPORT int icalparameter_kind_is_valid(const icalparameter_kind kind);
+
627
+
628#endif
+
icalparameter_kind icalparameter_isa(icalparameter *parameter)
Definition icalparameter.c:320
+
const char * icalparameter_get_xvalue(icalparameter *param)
Returns the X-value of param.
Definition icalparameter.c:383
+
icalparameter * icalparameter_new_clone(icalparameter *p)
Creates new icalparameter as a clone of the given one.
Definition icalparameter.c:84
+
int icalparameter_kind_is_valid(const icalparameter_kind kind)
Checks the validity of a icalparameter_kind.
+
icalparameter * icalparameter_new(icalparameter_kind kind)
Creates new icalparameter object.
Definition icalparameter.c:53
+
const char * icalparameter_get_xname(icalparameter *param)
Returns the X-name of param.
Definition icalparameter.c:360
+
void icalparameter_set_xname(icalparameter *param, const char *v)
Sets the X-name of param to v.
Definition icalparameter.c:344
+
icalparameter_kind icalparameter_string_to_kind(const char *string)
Returns the icalparameter_kind for a given string.
+
const char * icalparameter_kind_to_string(icalparameter_kind kind)
Returns a string representing the given icalparameter_kind.
+
const char * icalparameter_get_iana_value(icalparameter *param)
Returns the IANA value of param.
Definition icalparameter.c:395
+
int icalparameter_isa_parameter(void *param)
Definition icalparameter.c:329
+
icalparameter * icalparameter_new_from_string(const char *value)
Creates new icalparameter object from string.
Definition icalparameter.c:119
+
void icalparameter_set_iana_name(icalparameter *param, const char *v)
Sets the IANA name of param to v.
Definition icalparameter.c:400
+
void icalparameter_set_xvalue(icalparameter *param, const char *v)
Sets the X-value of param to v.
Definition icalparameter.c:367
+
void icalparameter_free(icalparameter *parameter)
Frees an icalparameter object.
Definition icalparameter.c:60
+
const char * icalparameter_get_iana_name(icalparameter *param)
Returns the IANA name of param.
Definition icalparameter.c:405
+
char * icalparameter_as_ical_string(icalparameter *parameter)
Converts icalparameter into a string representation.
Definition icalparameter.c:168
+
icalparameter * icalparameter_new_from_value_string(icalparameter_kind kind, const char *value)
Creates new icalparameter of a given kind with a given value.
+
int icalparameter_has_same_name(icalparameter *param1, icalparameter *param2)
Determines if two parameters have the same name.
Definition icalparameter.c:424
+
void icalparameter_set_iana_value(icalparameter *param, const char *v)
Sets the IANA value of param to v.
Definition icalparameter.c:390
+
char * icalparameter_as_ical_string_r(icalparameter *parameter)
Converts icalparameter into an string representation according to RFC5445/RFC6868.
Definition icalparameter.c:268
+
+ + + + diff --git a/static/apidocs/icalparameter__cxx_8h.html b/static/apidocs/icalparameter__cxx_8h.html new file mode 100644 index 00000000..6a2dc82d --- /dev/null +++ b/static/apidocs/icalparameter__cxx_8h.html @@ -0,0 +1,106 @@ + + + + + + + +Libical API Documentation: icalparameter_cxx.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalparameter_cxx.h File Reference
+
+
+ +

Definition of C++ Wrapper for icalparameter.c. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

class  LibICal::ICalParameter
 
+

Detailed Description

+

Definition of C++ Wrapper for icalparameter.c.

+
Author
fnguyen (12/10/01)
+

(C) COPYRIGHT 2001, Critical Path

+

This library is free software; you can redistribute it and/or modify it under the terms of either:

+

The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

+

Or:

+

The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

+
+ + + + diff --git a/static/apidocs/icalparameter__cxx_8h_source.html b/static/apidocs/icalparameter__cxx_8h_source.html new file mode 100644 index 00000000..af0bfcd6 --- /dev/null +++ b/static/apidocs/icalparameter__cxx_8h_source.html @@ -0,0 +1,248 @@ + + + + + + + +Libical API Documentation: icalparameter_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalparameter_cxx.h
+
+
+Go to the documentation of this file.
1
+
20#ifndef ICALPARAMETER_CXX_H
+
21#define ICALPARAMETER_CXX_H
+
22
+
23#include "libical_ical_export.h"
+
24#include "icptrholder_cxx.h"
+
25
+
26extern "C"
+
27{
+
28#include "icalerror.h"
+
29#include "icalparameter.h"
+
30}
+
31
+
32#include <string>
+
33
+
34namespace LibICal
+
35{
+
36
+
37class LIBICAL_ICAL_EXPORT ICalParameter
+
38{
+
39public:
+ + +
42 ICalParameter &operator=(const ICalParameter &);
+ +
44
+
45 explicit ICalParameter(icalparameter *v);
+
46
+
47 // Create from string of form "PARAMNAME=VALUE"
+
48 explicit ICalParameter(const std::string &str);
+
49
+
50 // Create from just the value, the part after the "="
+
51 explicit ICalParameter(const icalparameter_kind &kind);
+
52 ICalParameter(const icalparameter_kind &kind, const std::string &str);
+
53
+
54 operator icalparameter *()
+
55 {
+
56 return imp;
+
57 }
+
58
+
59 void detach();
+
60
+
61public:
+
62 std::string as_ical_string();
+
63 bool is_valid();
+
64 icalparameter_kind isa();
+
65 int isa_parameter(void *param);
+
66
+
67public:
+
68 /* Access the name of an X parameter */
+
69 static void set_xname(ICalParameter &param, const std::string &v);
+
70 static std::string get_xname(ICalParameter &param);
+
71 static void set_xvalue(ICalParameter &param, const std::string &v);
+
72 static std::string get_xvalue(ICalParameter &param);
+
73
+
74 /* Convert enumerations */
+
75 static std::string kind_to_string(const icalparameter_kind &kind);
+
76 static icalparameter_kind string_to_kind(const std::string &str);
+
77
+
78public:
+
79 /* DELEGATED-FROM */
+
80 std::string get_delegatedfrom() const;
+
81 void set_delegatedfrom(const std::string &v);
+
82
+
83 /* RELATED */
+
84 icalparameter_related get_related() const;
+
85 void set_related(const icalparameter_related &v);
+
86
+
87 /* SENT-BY */
+
88 std::string get_sentby() const;
+
89 void set_sentby(const std::string &v);
+
90
+
91 /* LANGUAGE */
+
92 std::string get_language() const;
+
93 void set_language(const std::string &v);
+
94
+
95 /* RELTYPE */
+
96 icalparameter_reltype get_reltype() const;
+
97 void set_reltype(const icalparameter_reltype &v);
+
98
+
99 /* ENCODING */
+
100 icalparameter_encoding get_encoding() const;
+
101 void set_encoding(const icalparameter_encoding &v);
+
102
+
103 /* ALTREP */
+
104 std::string get_altrep() const;
+
105 void set_altrep(const std::string &v);
+
106
+
107 /* FMTTYPE */
+
108 std::string get_fmttype() const;
+
109 void set_fmttype(const std::string &v);
+
110
+
111 /* FBTYPE */
+
112 icalparameter_fbtype get_fbtype() const;
+
113 void set_fbtype(const icalparameter_fbtype &v);
+
114
+
115 /* RSVP */
+
116 icalparameter_rsvp get_rsvp() const;
+
117 void set_rsvp(const icalparameter_rsvp &v);
+
118
+
119 /* RANGE */
+
120 icalparameter_range get_range() const;
+
121 void set_range(const icalparameter_range &v);
+
122
+
123 /* DELEGATED-TO */
+
124 std::string get_delegatedto() const;
+
125 void set_delegatedto(const std::string &v);
+
126
+
127 /* CN */
+
128 std::string get_cn() const;
+
129 void set_cn(const std::string &v);
+
130
+
131 /* ROLE */
+
132 icalparameter_role get_role() const;
+
133 void set_role(const icalparameter_role &v);
+
134
+
135 /* X-LIC-COMPARETYPE */
+
136 icalparameter_xliccomparetype get_xliccomparetype() const;
+
137 void set_xliccomparetype(const icalparameter_xliccomparetype &v);
+
138
+
139 /* PARTSTAT */
+
140 icalparameter_partstat get_partstat() const;
+
141 void set_partstat(const icalparameter_partstat &v);
+
142
+
143 /* X-LIC-ERRORTYPE */
+
144 icalparameter_xlicerrortype get_xlicerrortype() const;
+
145 void set_xlicerrortype(const icalparameter_xlicerrortype &v);
+
146
+
147 /* MEMBER */
+
148 std::string get_member() const;
+
149 void set_member(const std::string &v);
+
150
+
151 /* X */
+
152 std::string get_x() const;
+
153 void set_x(const std::string &v);
+
154
+
155 /* CUTYPE */
+
156 icalparameter_cutype get_cutype() const;
+
157 void set_cutype(const icalparameter_cutype &v);
+
158
+
159 /* TZID */
+
160 std::string get_tzid() const;
+
161 void set_tzid(const std::string &v);
+
162
+
163 /* VALUE */
+
164 icalparameter_value get_value() const;
+
165 void set_value(const icalparameter_value &v);
+
166
+
167 /* DIR */
+
168 std::string get_dir() const;
+
169 void set_dir(const std::string &v);
+
170
+
171private:
+
172 icalparameter *imp;
+
173};
+
174
+
175} // namespace LibICal
+
176
+
177#endif
+
Definition icalparameter_cxx.h:38
+
Error handling for libical.
+ +
C++ template classes for managing C++ pointers returned by VComponent::get_..._component,...
+
+ + + + diff --git a/static/apidocs/icalparameterimpl_8h_source.html b/static/apidocs/icalparameterimpl_8h_source.html new file mode 100644 index 00000000..48b3ca9a --- /dev/null +++ b/static/apidocs/icalparameterimpl_8h_source.html @@ -0,0 +1,128 @@ + + + + + + + +Libical API Documentation: icalparameterimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalparameterimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalparameterimpl.h
+
3 CREATOR: eric 09 May 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The original code is icalderivedparameters.{c,h}
+
19
+
20 Contributions from:
+
21 Graham Davison (g.m.davison@computer.org)
+
22======================================================================*/
+
23
+
24#ifndef ICALPARAMETERIMPL_H
+
25#define ICALPARAMETERIMPL_H
+
26
+
27#include "icalproperty.h"
+
28
+ +
30{
+
31 icalparameter_kind kind;
+
32 char id[5];
+
33 int size;
+
34 const char *string;
+
35 const char *x_name;
+
36 icalproperty *parent;
+
37
+
38 int data;
+
39};
+
40
+
41#endif /*ICALPARAMETER_IMPL */
+ +
Definition icalparameterimpl.h:30
+
+ + + + diff --git a/static/apidocs/icalparser_8h.html b/static/apidocs/icalparser_8h.html new file mode 100644 index 00000000..532281e3 --- /dev/null +++ b/static/apidocs/icalparser_8h.html @@ -0,0 +1,693 @@ + + + + + + + +Libical API Documentation: icalparser.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalparser.h File Reference
+
+
+ +

Line-oriented parsing. +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef struct icalparser_impl icalparser
 
+typedef char *(* icalparser_line_gen_func) (char *s, size_t size, void *d)
 
+typedef enum icalparser_state icalparser_state
 
+ + + + + + + +

+Enumerations

enum  icalparser_ctrl { ICALPARSER_CTRL_KEEP +, ICALPARSER_CTRL_OMIT +, ICALPARSER_CTRL_ERROR + }
 Defines how to handle invalid CONTROL characters in content lines. More...
 
enum  icalparser_state {
+  ICALPARSER_ERROR +, ICALPARSER_SUCCESS +, ICALPARSER_BEGIN_COMP +, ICALPARSER_END_COMP +,
+  ICALPARSER_IN_PROGRESS +
+ }
 Represents the current state of the parser. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

icalcomponenticalparser_add_line (icalparser *parser, char *str)
 Adds a single line to be parsed by the icalparser.
 
icalcomponenticalparser_clean (icalparser *parser)
 Cleans out an icalparser and returns whatever it has parsed so far.
 
void icalparser_free (icalparser *parser)
 Frees an icalparser object.
 
enum icalparser_ctrl icalparser_get_ctrl (void)
 Get the current parser setting how to handle CONTROL characters.
 
char * icalparser_get_line (icalparser *parser, icalparser_line_gen_func line_gen_func)
 Given a line generator function, returns a single iCal content line.
 
icalparser_state icalparser_get_state (icalparser *parser)
 Returns current state of the icalparser.
 
icalparsericalparser_new (void)
 Creates a new icalparser.
 
icalcomponenticalparser_parse (icalparser *parser, icalparser_line_gen_func line_gen_func)
 Message oriented parsing.
 
icalcomponenticalparser_parse_string (const char *str)
 Parses a string and returns the parsed icalcomponent.
 
void icalparser_set_ctrl (enum icalparser_ctrl ctrl)
 Set the parser setting how to handle CONTROL characters.
 
void icalparser_set_gen_data (icalparser *parser, void *data)
 Sets the data that icalparser_parse will give to the line_gen_func as the parameter 'd'.
 
+char * icalparser_string_line_generator (char *out, size_t buf_size, void *d)
 
+

Detailed Description

+

Line-oriented parsing.

+

This file provides methods to parse iCalendar-formatted data into the structures provided by this library.

+
Usage
Create a new parser via icalparser_new_parser(), then add lines one at a time with icalparser_add_line(). icalparser_add_line() will return non-zero when it has finished with a component.
+

Typedef Documentation

+ +

◆ icalparser

+ +
+
+ + + + +
icalparser
+
+

Implementation of the icalparser struct, which holds the state for the current parsing operation.

+ +
+
+

Enumeration Type Documentation

+ +

◆ icalparser_ctrl

+ +
+
+ + + + +
enum icalparser_ctrl
+
+ +

Defines how to handle invalid CONTROL characters in content lines.

+ + + + +
Enumerator
ICALPARSER_CTRL_KEEP 

Keep CONTROL characters in content-line

+
ICALPARSER_CTRL_OMIT 

Omit CONTROL characters from content-line

+
ICALPARSER_CTRL_ERROR 

Insert a X-LIC-ERROR instead of content-line

+
+ +
+
+ +

◆ icalparser_state

+ +
+
+ + + + +
enum icalparser_state
+
+ +

Represents the current state of the parser.

+ + + + + + +
Enumerator
ICALPARSER_ERROR 

An error occurred while parsing.

+
ICALPARSER_SUCCESS 

Parsing was successful.

+
ICALPARSER_BEGIN_COMP 

Currently parsing the begin of a component.

+
ICALPARSER_END_COMP 

Currently parsing the end of the component.

+
ICALPARSER_IN_PROGRESS 

Parsing is currently in progress.

+
+ +
+
+

Function Documentation

+ +

◆ icalparser_add_line()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalcomponent * icalparser_add_line (icalparserparser,
char * str 
)
+
+ +

Adds a single line to be parsed by the icalparser.

+
Parameters
+ + + +
parserThe parser to use
strA string representing a single line of RFC5545-formatted iCalendar data
+
+
+
Returns
When this was the last line of the component to be parsed, it returns the icalcomponent, otherwise it returns NULL.
+
See also
icalparser_parse()
+
Error handling
+
+
Ownership
Ownership of the str is transferred to libical upon calling this method. The returned icalcomponent is owned by the caller and needs to be free()d with the appropriate method after it's no longer needed.
+
Example
char* read_stream(char *s, size_t size, void *d)
+
{
+
return fgets(s, (int)size, (FILE*)d);
+
}
+
+
void parse()
+
{
+
char* line;
+
FILE* stream;
+
icalcomponent *component;
+
+
icalparser *parser = icalparser_new();
+
stream = fopen(argv[1],"r");
+
+
icalparser_set_gen_data(parser, stream);
+
+
do{
+
// get a single content line
+
line = icalparser_get_line(parser, read_stream);
+
+
// add that line to the parser
+
c = icalparser_add_line(parser,line);
+
+
// once we parsed a component, print it
+
if (c != 0) {
+
printf("%s", icalcomponent_as_ical_string(c));
+
icalcomponent_free(c);
+
}
+
} while (line != 0);
+
+
icalparser_free(parser);
+
}
+
Definition icalcomponent.c:36
+
Definition icalparser.c:53
+
+ +
+
+ +

◆ icalparser_clean()

+ +
+
+ + + + + + + + +
icalcomponent * icalparser_clean (icalparserparser)
+
+ +

Cleans out an icalparser and returns whatever it has parsed so far.

+
Parameters
+ + +
parserThe icalparser to clean
+
+
+
Returns
The parsed icalcomponent
+
Error handling
If parser is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR. For parsing errors, it inserts an X-LIC-ERROR property into the affected components.
+
Ownership
The returned icalcomponent is property of the caller and needs to be free'd with icalcomponent_free() after use.
+

This will parse components even if it hasn't encountered a proper END tag for it yet and return them, as well as clearing any intermediate state resulting from being in the middle of parsing something so the parser can be used to parse something new.

+ +
+
+ +

◆ icalparser_free()

+ +
+
+ + + + + + + + +
void icalparser_free (icalparserparser)
+
+ +

Frees an icalparser object.

+
Parameters
+ + +
parserThe icalparser to be freed.
+
+
+
Example
icalparser *parser = icalparser_new();
+
+
// use parser ...
+
+
icalparser_free(parser);
+
+ +
+
+ +

◆ icalparser_get_ctrl()

+ +
+
+ + + + + + + + +
enum icalparser_ctrl icalparser_get_ctrl (void )
+
+ +

Get the current parser setting how to handle CONTROL characters.

+
Returns
The current parser setting
+ +
+
+ +

◆ icalparser_get_line()

+ +
+
+ + + + + + + + + + + + + + + + + + +
char * icalparser_get_line (icalparserparser,
icalparser_line_gen_func line_gen_func 
)
+
+ +

Given a line generator function, returns a single iCal content line.

+
Returns
A pointer to a single line of data or NULL if it reached end of file reading from the line_gen_func. Note that the pointer returned is owned by libical and must not be free()d by the user.
+
Parameters
+ + + +
parserThe parser object to use
line_gen_funcThe function to use for reading data
+
+
+

This function uses the supplied line_gen_func to read data in, until it has read a full line, and returns the full line. It includes any continuation lines, which start with a space after a newline. To supply arbitrary data (as the parameter d) to your line_gen_func, call icalparser_set_gen_data().

+ +
+
+ +

◆ icalparser_get_state()

+ +
+
+ + + + + + + + +
icalparser_state icalparser_get_state (icalparserparser)
+
+ +

Returns current state of the icalparser.

+
Parameters
+ + +
parserThe (valid, non-NULL) parser object
+
+
+
Returns
The current state of the icalparser, as an icalparser_state
+
Example
icalparser *parser = icalparser_new();
+
+
// use icalparser...
+
+
if(icalparser_get_state(parser) == ICALPARSER_ERROR) {
+
// handle error
+
} else {
+
// ...
+
}
+
@ ICALPARSER_ERROR
Definition icalparser.h:58
+
+

icalparser_free(parser);

+ +
+
+ +

◆ icalparser_new()

+ +
+
+ + + + + + + + +
icalparser * icalparser_new (void )
+
+ +

Creates a new icalparser.

+
Returns
An icalparser object
+
Error handling
On error, it returns NULL and sets icalerrno to ICAL_NEWFAILED_ERROR.
+
Ownership
All icalparser objects created with this function need to be freed using the icalparser_free() function.
+
Usage
// create new parser
+
icalparser *parser = icalparser_new();
+
+
// do something with it...
+
+
// free parser
+
icalparser_free(parser);
+
+ +
+
+ +

◆ icalparser_parse()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalcomponent * icalparser_parse (icalparserparser,
icalparser_line_gen_func line_gen_func 
)
+
+ +

Message oriented parsing.

+
Parameters
+ + + +
parserThe parser to use
line_gen_funcA function that returns one content line per invocation
+
+
+
Returns
The parsed icalcomponent
+
See also
icalparser_parse_string()
+

Reads an icalcomponent using the supplied line_gen_func, returning the parsed component (or NULL on error).

+
Error handling
    +
  • If parser is NULL, it returns NULL and sets icalerrno to ICAL_BADARG_ERROR.
  • +
  • If data read by line_gen_func is empty, if returns NULL
  • +
  • If data read by line_gen_func is NULL, it returns NULL and sets the parser's icalparser_state to ICALPARSER_ERROR.
  • +
  • For errors during parsing, the functions can set the icalparser_state to ICALPARSER_ERROR and/or return components of the type ICAL_XLICINVALID_COMPONENT, or components with properties of the type ICAL_XLICERROR_PROPERTY.
  • +
+
+
Ownership
The returned icalcomponent is owned by the caller of the function, and needs to be free()d with the appropriate method when no longer needed.
+
Example
char* read_stream(char *s, size_t size, void *d)
+
{
+
return fgets(s, (int)size, (FILE*)d);
+
}
+
+
void parse()
+
{
+
char* line;
+
FILE* stream;
+
icalcomponent *component;
+
+
icalparser *parser = icalparser_new();
+
stream = fopen(argv[1],"r");
+
+
icalparser_set_gen_data(parser, stream);
+
+
// use the parse method to parse the input data
+
component = icalparser_parse(parser, read_stream);
+
+
// once we parsed a component, print it
+
printf("%s", icalcomponent_as_ical_string(c));
+
icalcomponent_free(c);
+
+
icalparser_free(parser);
+
}
+
+ +
+
+ +

◆ icalparser_parse_string()

+ +
+
+ + + + + + + + +
icalcomponent * icalparser_parse_string (const char * str)
+
+ +

Parses a string and returns the parsed icalcomponent.

+
Parameters
+ + +
strThe iCal formatted data to be parsed
+
+
+
Returns
An icalcomponent representing the iCalendar
+
Error handling
On error, returns NULL and sets icalerrno
+
Ownership
The returned icalcomponent is owned by the caller of the function, and needs to be free'd with the appropriate functions after use.
+
Example
char *ical_string;
+
+
// parse ical_string
+
icalcomponent *component = icalparser_parse_string(ical_string);
+
+
if(!icalerrno || component == NULL) {
+
// use component ...
+
}
+
+
// release component
+
icalcomponent_free(component);
+
#define icalerrno
Access the current icalerrno value.
Definition icalerror.h:144
+
+ +
+
+ +

◆ icalparser_set_ctrl()

+ +
+
+ + + + + + + + +
void icalparser_set_ctrl (enum icalparser_ctrl ctrl)
+
+ +

Set the parser setting how to handle CONTROL characters.

+
Parameters
+ + +
ctrlThe setting to use
+
+
+ +
+
+ +

◆ icalparser_set_gen_data()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparser_set_gen_data (icalparserparser,
void * data 
)
+
+ +

Sets the data that icalparser_parse will give to the line_gen_func as the parameter 'd'.

+
Parameters
+ + + +
parserThe icalparser this applies to
dataThe pointer which will be passed to the line_gen_func as argument d
+
+
+

If you use any of the icalparser_parser() or icalparser_get_line() functions, the line_gen_func that they expect has a third void *d argument. This function sets what will be passed to your line_gen_function as such argument.

+ +
+
+
+ + + + diff --git a/static/apidocs/icalparser_8h_source.html b/static/apidocs/icalparser_8h_source.html new file mode 100644 index 00000000..3f8f6503 --- /dev/null +++ b/static/apidocs/icalparser_8h_source.html @@ -0,0 +1,189 @@ + + + + + + + +Libical API Documentation: icalparser.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalparser.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalparser.h
+
3 CREATOR: eric 20 April 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The original code is icalparser.h
+
19======================================================================*/
+
20
+
21#ifndef ICALPARSER_H
+
22#define ICALPARSER_H
+
23
+
24#include "libical_ical_export.h"
+
25#include "icalcomponent.h"
+
26
+ +
49
+
55typedef enum icalparser_state
+
56{
+ +
59
+ +
62
+ +
65
+ +
68
+ + +
72
+
73typedef char *(*icalparser_line_gen_func) (char *s, size_t size, void *d);
+
74
+
98LIBICAL_ICAL_EXPORT icalparser *icalparser_new(void);
+
99
+
159LIBICAL_ICAL_EXPORT icalcomponent *icalparser_add_line(icalparser *parser, char *str);
+
160
+
180LIBICAL_ICAL_EXPORT icalcomponent *icalparser_clean(icalparser *parser);
+
181
+
202LIBICAL_ICAL_EXPORT icalparser_state icalparser_get_state(icalparser *parser);
+
203
+
217LIBICAL_ICAL_EXPORT void icalparser_free(icalparser *parser);
+
218
+
271LIBICAL_ICAL_EXPORT icalcomponent *icalparser_parse(icalparser *parser,
+
272 icalparser_line_gen_func line_gen_func);
+
273
+
284LIBICAL_ICAL_EXPORT void icalparser_set_gen_data(icalparser *parser, void *data);
+
285
+
313LIBICAL_ICAL_EXPORT icalcomponent *icalparser_parse_string(const char *str);
+
314
+ + + + + +
327
+
332LIBICAL_ICAL_EXPORT enum icalparser_ctrl icalparser_get_ctrl(void);
+
333
+
338LIBICAL_ICAL_EXPORT void icalparser_set_ctrl(enum icalparser_ctrl ctrl);
+
339
+
340/***********************************************************************
+
341 * Parser support functions
+
342 ***********************************************************************/
+
343
+
358LIBICAL_ICAL_EXPORT char *icalparser_get_line(icalparser *parser,
+
359 icalparser_line_gen_func line_gen_func);
+
360
+
361LIBICAL_ICAL_EXPORT char *icalparser_string_line_generator(char *out, size_t buf_size, void *d);
+
362
+
363#endif /* !ICALPARSE_H */
+ +
icalcomponent * icalparser_parse(icalparser *parser, icalparser_line_gen_func line_gen_func)
Message oriented parsing.
Definition icalparser.c:634
+
void icalparser_free(icalparser *parser)
Frees an icalparser object.
Definition icalparser.c:123
+
void icalparser_set_ctrl(enum icalparser_ctrl ctrl)
Set the parser setting how to handle CONTROL characters.
Definition icalparser.c:1422
+
enum icalparser_ctrl icalparser_get_ctrl(void)
Get the current parser setting how to handle CONTROL characters.
Definition icalparser.c:1417
+
icalcomponent * icalparser_parse_string(const char *str)
Parses a string and returns the parsed icalcomponent.
Definition icalparser.c:1392
+
icalparser_ctrl
Defines how to handle invalid CONTROL characters in content lines.
Definition icalparser.h:319
+
@ ICALPARSER_CTRL_OMIT
Definition icalparser.h:323
+
@ ICALPARSER_CTRL_KEEP
Definition icalparser.h:321
+
@ ICALPARSER_CTRL_ERROR
Definition icalparser.h:325
+
icalparser * icalparser_new(void)
Creates a new icalparser.
Definition icalparser.c:101
+
icalcomponent * icalparser_add_line(icalparser *parser, char *str)
Adds a single line to be parsed by the icalparser.
Definition icalparser.c:694
+
icalparser_state icalparser_get_state(icalparser *parser)
Returns current state of the icalparser.
Definition icalparser.c:1287
+
icalcomponent * icalparser_clean(icalparser *parser)
Cleans out an icalparser and returns whatever it has parsed so far.
Definition icalparser.c:1292
+
void icalparser_set_gen_data(icalparser *parser, void *data)
Sets the data that icalparser_parse will give to the line_gen_func as the parameter 'd'.
Definition icalparser.c:140
+
char * icalparser_get_line(icalparser *parser, icalparser_line_gen_func line_gen_func)
Given a line generator function, returns a single iCal content line.
Definition icalparser.c:485
+
icalparser_state
Represents the current state of the parser.
Definition icalparser.h:56
+
@ ICALPARSER_BEGIN_COMP
Definition icalparser.h:64
+
@ ICALPARSER_SUCCESS
Definition icalparser.h:61
+
@ ICALPARSER_END_COMP
Definition icalparser.h:67
+
@ ICALPARSER_IN_PROGRESS
Definition icalparser.h:70
+
@ ICALPARSER_ERROR
Definition icalparser.h:58
+
Definition icalcomponent.c:36
+
Definition icalparser.c:53
+
+ + + + diff --git a/static/apidocs/icalperiod_8h.html b/static/apidocs/icalperiod_8h.html new file mode 100644 index 00000000..de6cd782 --- /dev/null +++ b/static/apidocs/icalperiod_8h.html @@ -0,0 +1,363 @@ + + + + + + + +Libical API Documentation: icalperiod.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalperiod.h File Reference
+
+
+ +

Functions for working with iCal periods (of time). +More...

+ +

Go to the source code of this file.

+ + + + + +

+Data Structures

struct  icalperiodtype
 Struct to represent a period in time. More...
 
+ + + +

+Macros

#define ICALPERIODTYPE_INITIALIZER
 
+ + + + + + + + + + + + + + + + +

+Functions

const char * icalperiodtype_as_ical_string (struct icalperiodtype p)
 Converts an icalperiodtype into an iCal-formatted string.
 
char * icalperiodtype_as_ical_string_r (struct icalperiodtype p)
 Converts an icalperiodtype into an iCal-formatted string.
 
struct icalperiodtype icalperiodtype_from_string (const char *str)
 Constructs a new icalperiodtype from str.
 
int icalperiodtype_is_null_period (struct icalperiodtype p)
 
int icalperiodtype_is_valid_period (struct icalperiodtype p)
 
struct icalperiodtype icalperiodtype_null_period (void)
 
+

Detailed Description

+

Functions for working with iCal periods (of time).

+

Macro Definition Documentation

+ +

◆ ICALPERIODTYPE_INITIALIZER

+ +
+
+ + + + +
#define ICALPERIODTYPE_INITIALIZER
+
+Value:
{ \
+
ICALTIMETYPE_INITIALIZER, \
+
ICALTIMETYPE_INITIALIZER, \
+
ICALDURATIONTYPE_INITIALIZER \
+
}
+
+
+
+

Function Documentation

+ +

◆ icalperiodtype_as_ical_string()

+ +
+
+ + + + + + + + +
const char * icalperiodtype_as_ical_string (struct icalperiodtype p)
+
+ +

Converts an icalperiodtype into an iCal-formatted string.

+
Parameters
+ + +
pThe time period to convert
+
+
+
Returns
A string representing the iCal-formatted period
+
See also
icalperiodtype_as_ical_string_r()
+
Error handling
Sets icalerrno to ICAL_ALLOCATION_ERROR if there was an internal error allocating memory.
+
Ownership
The string returned by this method is owned by libical and must not be free() by the caller.
+
Example
// create icalperiodtype
+
const char *period_string = "20170606T090000/20170607T090000";
+
struct icalperiodtype period = icalperiodtype_from_string(period_string);
+
+
// print period in iCal format
+
printf("%s\n", icalperiodtype_as_ical_string(period));
+
const char * icalperiodtype_as_ical_string(struct icalperiodtype p)
Converts an icalperiodtype into an iCal-formatted string.
Definition icalperiod.c:94
+
struct icalperiodtype icalperiodtype_from_string(const char *str)
Constructs a new icalperiodtype from str.
Definition icalperiod.c:30
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
+ +
+
+ +

◆ icalperiodtype_as_ical_string_r()

+ +
+
+ + + + + + + + +
char * icalperiodtype_as_ical_string_r (struct icalperiodtype p)
+
+ +

Converts an icalperiodtype into an iCal-formatted string.

+
Parameters
+ + +
pThe time period to convert
+
+
+
Returns
A string representing the iCal-formatted period
+
See also
icalperiodtype_as_ical_string()
+
Error handling
Sets icalerrno to ICAL_ALLOCATION_ERROR if there was an internal error allocating memory.
+
Ownership
The string returned by this method is owned by the caller and must be released with the appropriate function after use.
+
Example
// create icalperiodtype
+
const char *period_string = "20170606T090000/20170607T090000";
+
struct icalperiodtype period = icalperiodtype_from_string(period_string);
+
+
// print period in iCal format
+
const char *period_string_gen = icalperiodtype_as_ical_string_r(period);
+
printf("%s\n", period_string_gen);
+
icalmemory_free_buffer(period_string_gen);
+
char * icalperiodtype_as_ical_string_r(struct icalperiodtype p)
Converts an icalperiodtype into an iCal-formatted string.
Definition icalperiod.c:103
+
+ +
+
+ +

◆ icalperiodtype_from_string()

+ +
+
+ + + + + + + + +
struct icalperiodtype icalperiodtype_from_string (const char * str)
+
+ +

Constructs a new icalperiodtype from str.

+
Parameters
+ + +
strThe string from which to construct a time period
+
+
+
Returns
An icalperiodtype representing the period str
+
See also
icaltime_from_string(), icaldurationtype_from_string()
+
Error handling
If str is not properly formatted, it sets icalerrno to ICAL_MALFORMEDDATA_ERROR and returns icalperiodtype_null_period().
+
Data format
There are two ways to specify a duration; either a start time and an end time can be specified, or a start time and a duration. The format for there is as such:
    +
  • <STARTTIME>/<ENDTIME>
  • +
  • <STARTTIME>/<DURATION>
  • +
+
+

The format for the times is the same as those used by icaltime_from_string(), and the format for the duration is the same as that used by icaldurationtype_from_string().

+
Usage
// create icalperiodtype
+
const char *period_string = "20170606T090000/20170607T090000";
+
struct icalperiodtype period = icalperiodtype_from_string(period_string);
+
+
// print period in iCal format
+
printf("%s\n", icalperiodtype_as_ical_string(period));
+
+ +
+
+ +

◆ icalperiodtype_is_null_period()

+ +
+
+ + + + + + + + +
int icalperiodtype_is_null_period (struct icalperiodtype p)
+
+

Checks if a given icalperiodtype is a null period.

Parameters
+ + +
pThe time period to check
+
+
+
Returns
1 if p is a null period, 0 otherwise
+
See also
icalperiodtype_null_period()
+
Usage
// creates null period
+ +
+
// checks if it's a null period
+ +
struct icalperiodtype icalperiodtype_null_period(void)
Definition icalperiod.c:133
+
int icalperiodtype_is_null_period(struct icalperiodtype p)
Definition icalperiod.c:144
+
+ +
+
+ +

◆ icalperiodtype_is_valid_period()

+ +
+
+ + + + + + + + +
int icalperiodtype_is_valid_period (struct icalperiodtype p)
+
+

Checks if a given icalperiodtype is a valid period.

Parameters
+ + +
pThe time period to check
+
+
+
Returns
1 if p is a valid period, 0 otherwise
+
Usage
// creates null period
+ +
+
// a null period isn't a valid period
+
assert(icalperiodtype_is_valid_period(period) == 0);
+
int icalperiodtype_is_valid_period(struct icalperiodtype p)
Definition icalperiod.c:154
+
+ +
+
+ +

◆ icalperiodtype_null_period()

+ +
+
+ + + + + + + + +
struct icalperiodtype icalperiodtype_null_period (void )
+
+

Creates a null period icalperiodtype.

Returns
An icalperiodtype representing a null period
+
See also
icalperiodtype_is_null_period()
+
Usage
// creates null period
+ +
+
// verifies start, end and length
+
assert(icaltime_is_null_time(period.start));
+
assert(icaltime_is_null_time(period.end));
+
assert(icaldurationtype_is_null_duratino(period.duration));
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalperiod_8h_source.html b/static/apidocs/icalperiod_8h_source.html new file mode 100644 index 00000000..69c54ae0 --- /dev/null +++ b/static/apidocs/icalperiod_8h_source.html @@ -0,0 +1,150 @@ + + + + + + + +Libical API Documentation: icalperiod.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalperiod.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalperiod.h
+
3 CREATOR: eric 26 Jan 2001
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
22#ifndef ICALPERIOD_H
+
23#define ICALPERIOD_H
+
24
+
30#include "libical_ical_export.h"
+
31#include "icalduration.h"
+
32#include "icaltime.h"
+
33
+ +
38{
+
39 struct icaltimetype start;
+
40 struct icaltimetype end;
+
41 struct icaldurationtype duration;
+
42};
+
43
+
44#define ICALPERIODTYPE_INITIALIZER { \
+
45 ICALTIMETYPE_INITIALIZER, \
+
46 ICALTIMETYPE_INITIALIZER, \
+
47 ICALDURATIONTYPE_INITIALIZER \
+
48}
+
49
+
81LIBICAL_ICAL_EXPORT struct icalperiodtype icalperiodtype_from_string(const char *str);
+
82
+
107LIBICAL_ICAL_EXPORT const char *icalperiodtype_as_ical_string(struct icalperiodtype p);
+
108
+
135LIBICAL_ICAL_EXPORT char *icalperiodtype_as_ical_string_r(struct icalperiodtype p);
+
136
+
153LIBICAL_ICAL_EXPORT struct icalperiodtype icalperiodtype_null_period(void);
+
154
+
170LIBICAL_ICAL_EXPORT int icalperiodtype_is_null_period(struct icalperiodtype p);
+
171
+
186LIBICAL_ICAL_EXPORT int icalperiodtype_is_valid_period(struct icalperiodtype p);
+
187
+
188#endif /* !ICALTIME_H */
+
Methods for working with durations in iCal.
+
const char * icalperiodtype_as_ical_string(struct icalperiodtype p)
Converts an icalperiodtype into an iCal-formatted string.
Definition icalperiod.c:94
+
char * icalperiodtype_as_ical_string_r(struct icalperiodtype p)
Converts an icalperiodtype into an iCal-formatted string.
Definition icalperiod.c:103
+
struct icalperiodtype icalperiodtype_null_period(void)
Definition icalperiod.c:133
+
struct icalperiodtype icalperiodtype_from_string(const char *str)
Constructs a new icalperiodtype from str.
Definition icalperiod.c:30
+
int icalperiodtype_is_null_period(struct icalperiodtype p)
Definition icalperiod.c:144
+
int icalperiodtype_is_valid_period(struct icalperiodtype p)
Definition icalperiod.c:154
+
struct icaltimetype is a pseudo-object that abstracts time handling.
+
A struct representing a duration.
Definition icalduration.h:37
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icalproperty_8h.html b/static/apidocs/icalproperty_8h.html new file mode 100644 index 00000000..59b5799b --- /dev/null +++ b/static/apidocs/icalproperty_8h.html @@ -0,0 +1,502 @@ + + + + + + + +Libical API Documentation: icalproperty.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalproperty.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

icalproperty * icalparameter_get_parent (icalparameter *param)
 
void icalparameter_set_parent (icalparameter *param, icalproperty *property)
 
+icalvalue_kind icalparameter_value_to_value_kind (icalparameter_value value)
 
+void icalproperty_add_parameter (icalproperty *prop, icalparameter *parameter)
 
+void icalproperty_add_parameters (struct icalproperty_impl *prop, va_list args)
 
+const char * icalproperty_as_ical_string (icalproperty *prop)
 
+char * icalproperty_as_ical_string_r (icalproperty *prop)
 
+int icalproperty_count_parameters (const icalproperty *prop)
 
+int icalproperty_enum_belongs_to_property (icalproperty_kind kind, int e)
 
+const char * icalproperty_enum_to_string (int e)
 
+char * icalproperty_enum_to_string_r (int e)
 
+void icalproperty_free (icalproperty *prop)
 
+icalparameter * icalproperty_get_first_parameter (icalproperty *prop, icalparameter_kind kind)
 
+icalparameter * icalproperty_get_next_parameter (icalproperty *prop, icalparameter_kind kind)
 
+const char * icalproperty_get_parameter_as_string (icalproperty *prop, const char *name)
 
+char * icalproperty_get_parameter_as_string_r (icalproperty *prop, const char *name)
 
const char * icalproperty_get_property_name (const icalproperty *prop)
 
+char * icalproperty_get_property_name_r (const icalproperty *prop)
 
+icalvalue * icalproperty_get_value (const icalproperty *prop)
 
+const char * icalproperty_get_value_as_string (const icalproperty *prop)
 
+char * icalproperty_get_value_as_string_r (const icalproperty *prop)
 
+const char * icalproperty_get_x_name (icalproperty *prop)
 
+icalproperty_kind icalproperty_isa (icalproperty *property)
 
+int icalproperty_isa_property (void *property)
 
+int icalproperty_kind_and_string_to_enum (const int kind, const char *str)
 
int icalproperty_kind_is_valid (const icalproperty_kind kind)
 
+const char * icalproperty_kind_to_string (icalproperty_kind kind)
 
+icalvalue_kind icalproperty_kind_to_value_kind (icalproperty_kind kind)
 
+const char * icalproperty_method_to_string (icalproperty_method method)
 
+icalproperty * icalproperty_new (icalproperty_kind kind)
 
+icalproperty * icalproperty_new_clone (icalproperty *prop)
 
+icalproperty * icalproperty_new_from_string (const char *str)
 
+icalproperty * icalproperty_new_impl (icalproperty_kind kind)
 
void icalproperty_normalize (icalproperty *prop)
 
void icalproperty_remove_parameter_by_kind (icalproperty *prop, icalparameter_kind kind)
 Removes all parameters with the specified kind.
 
void icalproperty_remove_parameter_by_name (icalproperty *prop, const char *name)
 Removes all parameters with the specified name.
 
void icalproperty_remove_parameter_by_ref (icalproperty *prop, icalparameter *param)
 Removes the specified parameter reference from the property.
 
+void icalproperty_set_parameter (icalproperty *prop, icalparameter *parameter)
 
+void icalproperty_set_parameter_from_string (icalproperty *prop, const char *name, const char *value)
 
+void icalproperty_set_value (icalproperty *prop, icalvalue *value)
 
+void icalproperty_set_value_from_string (icalproperty *prop, const char *value, const char *kind)
 
+void icalproperty_set_x_name (icalproperty *prop, const char *name)
 
+const char * icalproperty_status_to_string (icalproperty_status)
 
+icalproperty_kind icalproperty_string_to_kind (const char *string)
 
+icalproperty_method icalproperty_string_to_method (const char *str)
 
+icalproperty_status icalproperty_string_to_status (const char *string)
 
+icalproperty_kind icalproperty_value_kind_to_kind (icalvalue_kind kind)
 
icalproperty * icalvalue_get_parent (icalvalue *value)
 
void icalvalue_set_parent (icalvalue *value, icalproperty *property)
 
+

Function Documentation

+ +

◆ icalparameter_get_parent()

+ +
+
+ + + + + + + + +
icalproperty * icalparameter_get_parent (icalparameter * param)
+
+

Returns the parent icalproperty for the specified icalparameter.

Since
3.0
+ +
+
+ +

◆ icalparameter_set_parent()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalparameter_set_parent (icalparameter * param,
icalproperty * property 
)
+
+

Sets the parent icalproperty for the specified icalparameter.

Since
3.0
+ +
+
+ +

◆ icalproperty_get_property_name()

+ +
+
+ + + + + + + + +
const char * icalproperty_get_property_name (const icalproperty * prop)
+
+

Returns the name of the property – the type name converted to a string, or the value of _get_x_name if the type is and X property

+ +
+
+ +

◆ icalproperty_kind_is_valid()

+ +
+
+ + + + + + + + +
int icalproperty_kind_is_valid (const icalproperty_kind kind)
+
+

Check validity of a specific icalproperty_kind

+ +
+
+ +

◆ icalproperty_normalize()

+ +
+
+ + + + + + + + +
void icalproperty_normalize (icalproperty * prop)
+
+

Normalizes (reorders and sorts the parameters) the specified icalproperty.

Since
3.0
+ +
+
+ +

◆ icalproperty_remove_parameter_by_kind()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalproperty_remove_parameter_by_kind (icalproperty * prop,
icalparameter_kind kind 
)
+
+ +

Removes all parameters with the specified kind.

+
Parameters
+ + + +
propA valid icalproperty.
kindThe kind to remove (ex. ICAL_TZID_PARAMETER)
+
+
+

See icalproperty_remove_parameter_by_name() and icalproperty_remove_parameter_by_ref() for alternate ways of removing parameters

+ +
+
+ +

◆ icalproperty_remove_parameter_by_name()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalproperty_remove_parameter_by_name (icalproperty * prop,
const char * name 
)
+
+ +

Removes all parameters with the specified name.

+
Parameters
+ + + +
propA valid icalproperty.
nameThe name of the parameter to remove
+
+
+

This function removes parameters with the given name. The name corresponds to either a built-in name (TZID, etc.) or the name of an extended parameter (X-FOO)

+

See icalproperty_remove_parameter_by_kind() and icalproperty_remove_parameter_by_ref() for alternate ways of removing parameters

+ +
+
+ +

◆ icalproperty_remove_parameter_by_ref()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalproperty_remove_parameter_by_ref (icalproperty * prop,
icalparameter * param 
)
+
+ +

Removes the specified parameter reference from the property.

+
Parameters
+ + + +
propA valid icalproperty.
paramA reference to a specific icalparameter.
+
+
+

This function removes the specified parameter reference from the property.

+ +
+
+ +

◆ icalvalue_get_parent()

+ +
+
+ + + + + + + + +
icalproperty * icalvalue_get_parent (icalvalue * value)
+
+

Returns the parent icalproperty for the specified icalvalue.

Since
3.0
+ +
+
+ +

◆ icalvalue_set_parent()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icalvalue_set_parent (icalvalue * value,
icalproperty * property 
)
+
+

Sets the parent icalproperty for the specified icalvalue.

+ +
+
+
+ + + + diff --git a/static/apidocs/icalproperty_8h_source.html b/static/apidocs/icalproperty_8h_source.html new file mode 100644 index 00000000..d3dbb8a6 --- /dev/null +++ b/static/apidocs/icalproperty_8h_source.html @@ -0,0 +1,221 @@ + + + + + + + +Libical API Documentation: icalproperty.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalproperty.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalproperty.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALPROPERTY_H
+
20#define ICALPROPERTY_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalderivedproperty.h" /* To get icalproperty_kind enumerations */
+
24
+
25#include <stdarg.h> /* for va_... */
+
26
+
29LIBICAL_ICAL_EXPORT icalproperty *icalproperty_new(icalproperty_kind kind);
+
30
+
31LIBICAL_ICAL_EXPORT icalproperty *icalproperty_new_impl(icalproperty_kind kind);
+
32
+
33LIBICAL_ICAL_EXPORT icalproperty *icalproperty_new_clone(icalproperty *prop);
+
34
+
35LIBICAL_ICAL_EXPORT icalproperty *icalproperty_new_from_string(const char *str);
+
36
+
37LIBICAL_ICAL_EXPORT const char *icalproperty_as_ical_string(icalproperty *prop);
+
38
+
39LIBICAL_ICAL_EXPORT char *icalproperty_as_ical_string_r(icalproperty *prop);
+
40
+
41LIBICAL_ICAL_EXPORT void icalproperty_free(icalproperty *prop);
+
42
+
43LIBICAL_ICAL_EXPORT icalproperty_kind icalproperty_isa(icalproperty *property);
+
44
+
45LIBICAL_ICAL_EXPORT int icalproperty_isa_property(void *property);
+
46
+
47LIBICAL_ICAL_EXPORT void icalproperty_add_parameters(struct icalproperty_impl *prop, va_list args);
+
48
+
49LIBICAL_ICAL_EXPORT void icalproperty_add_parameter(icalproperty *prop, icalparameter *parameter);
+
50
+
51LIBICAL_ICAL_EXPORT void icalproperty_set_parameter(icalproperty *prop, icalparameter *parameter);
+
52
+
53LIBICAL_ICAL_EXPORT void icalproperty_set_parameter_from_string(icalproperty *prop,
+
54 const char *name,
+
55 const char *value);
+
56LIBICAL_ICAL_EXPORT const char *icalproperty_get_parameter_as_string(icalproperty *prop,
+
57 const char *name);
+
58
+
59LIBICAL_ICAL_EXPORT char *icalproperty_get_parameter_as_string_r(icalproperty *prop,
+
60 const char *name);
+
61
+
71LIBICAL_ICAL_EXPORT void icalproperty_remove_parameter_by_kind(icalproperty *prop,
+
72 icalparameter_kind kind);
+
73
+
87LIBICAL_ICAL_EXPORT void icalproperty_remove_parameter_by_name(icalproperty *prop,
+
88 const char *name);
+
89
+
98LIBICAL_ICAL_EXPORT void icalproperty_remove_parameter_by_ref(icalproperty *prop,
+
99 icalparameter *param);
+
100
+
101LIBICAL_ICAL_EXPORT int icalproperty_count_parameters(const icalproperty *prop);
+
102
+
103/* Iterate through the parameters */
+
104LIBICAL_ICAL_EXPORT icalparameter *icalproperty_get_first_parameter(icalproperty *prop,
+
105 icalparameter_kind kind);
+
106LIBICAL_ICAL_EXPORT icalparameter *icalproperty_get_next_parameter(icalproperty *prop,
+
107 icalparameter_kind kind);
+
108/* Access the value of the property */
+
109LIBICAL_ICAL_EXPORT void icalproperty_set_value(icalproperty *prop, icalvalue *value);
+
110LIBICAL_ICAL_EXPORT void icalproperty_set_value_from_string(icalproperty *prop, const char *value,
+
111 const char *kind);
+
112
+
113LIBICAL_ICAL_EXPORT icalvalue *icalproperty_get_value(const icalproperty *prop);
+
114LIBICAL_ICAL_EXPORT const char *icalproperty_get_value_as_string(const icalproperty *prop);
+
115LIBICAL_ICAL_EXPORT char *icalproperty_get_value_as_string_r(const icalproperty *prop);
+
116
+
120LIBICAL_ICAL_EXPORT void icalvalue_set_parent(icalvalue *value, icalproperty *property);
+
121
+
126LIBICAL_ICAL_EXPORT icalproperty *icalvalue_get_parent(icalvalue *value);
+
127
+
128/* Deal with X properties */
+
129
+
130LIBICAL_ICAL_EXPORT void icalproperty_set_x_name(icalproperty *prop, const char *name);
+
131LIBICAL_ICAL_EXPORT const char *icalproperty_get_x_name(icalproperty *prop);
+
132
+
137LIBICAL_ICAL_EXPORT const char *icalproperty_get_property_name(const icalproperty *prop);
+
138LIBICAL_ICAL_EXPORT char *icalproperty_get_property_name_r(const icalproperty *prop);
+
139
+
140LIBICAL_ICAL_EXPORT icalvalue_kind icalparameter_value_to_value_kind(icalparameter_value value);
+
141
+
146LIBICAL_ICAL_EXPORT void icalparameter_set_parent(icalparameter *param, icalproperty *property);
+
147
+
152LIBICAL_ICAL_EXPORT icalproperty *icalparameter_get_parent(icalparameter *param);
+
153
+
154/* Convert kinds to string and get default value type */
+
155LIBICAL_ICAL_EXPORT icalvalue_kind icalproperty_kind_to_value_kind(icalproperty_kind kind);
+
156LIBICAL_ICAL_EXPORT icalproperty_kind icalproperty_value_kind_to_kind(icalvalue_kind kind);
+
157LIBICAL_ICAL_EXPORT const char *icalproperty_kind_to_string(icalproperty_kind kind);
+
158LIBICAL_ICAL_EXPORT icalproperty_kind icalproperty_string_to_kind(const char *string);
+
159
+
161LIBICAL_ICAL_EXPORT int icalproperty_kind_is_valid(const icalproperty_kind kind);
+
162
+
163LIBICAL_ICAL_EXPORT icalproperty_method icalproperty_string_to_method(const char *str);
+
164LIBICAL_ICAL_EXPORT const char *icalproperty_method_to_string(icalproperty_method method);
+
165
+
166LIBICAL_ICAL_EXPORT const char *icalproperty_enum_to_string(int e);
+
167LIBICAL_ICAL_EXPORT char *icalproperty_enum_to_string_r(int e);
+
168LIBICAL_ICAL_EXPORT int icalproperty_kind_and_string_to_enum(const int kind, const char *str);
+
169
+
170LIBICAL_ICAL_EXPORT const char *icalproperty_status_to_string(icalproperty_status);
+
171LIBICAL_ICAL_EXPORT icalproperty_status icalproperty_string_to_status(const char *string);
+
172
+
173LIBICAL_ICAL_EXPORT int icalproperty_enum_belongs_to_property(icalproperty_kind kind, int e);
+
174
+
179LIBICAL_ICAL_EXPORT void icalproperty_normalize(icalproperty *prop);
+
180
+
181#endif /*ICALPROPERTY_H */
+
void icalproperty_remove_parameter_by_ref(icalproperty *prop, icalparameter *param)
Removes the specified parameter reference from the property.
Definition icalproperty.c:674
+
void icalproperty_remove_parameter_by_name(icalproperty *prop, const char *name)
Removes all parameters with the specified name.
Definition icalproperty.c:645
+
void icalproperty_remove_parameter_by_kind(icalproperty *prop, icalparameter_kind kind)
Removes all parameters with the specified kind.
Definition icalproperty.c:628
+
const char * icalproperty_get_property_name(const icalproperty *prop)
Definition icalproperty.c:867
+
void icalproperty_normalize(icalproperty *prop)
Definition icalproperty.c:929
+
void icalvalue_set_parent(icalvalue *value, icalproperty *property)
Definition icalvalue.c:1491
+
icalproperty * icalparameter_get_parent(icalparameter *param)
Definition icalparameter.c:417
+
icalproperty * icalvalue_get_parent(icalvalue *value)
Definition icalvalue.c:1498
+
void icalparameter_set_parent(icalparameter *param, icalproperty *property)
Definition icalparameter.c:410
+
int icalproperty_kind_is_valid(const icalproperty_kind kind)
+
Definition icalproperty.c:37
+
+ + + + diff --git a/static/apidocs/icalproperty__cxx_8h.html b/static/apidocs/icalproperty__cxx_8h.html new file mode 100644 index 00000000..a6b36b62 --- /dev/null +++ b/static/apidocs/icalproperty__cxx_8h.html @@ -0,0 +1,113 @@ + + + + + + + +Libical API Documentation: icalproperty_cxx.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalproperty_cxx.h File Reference
+
+
+ +

Definition of C++ Wrapper for icalproperty.c. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

class  LibICal::ICalProperty
 
+ + + +

+Typedefs

+typedef ICPointerHolder< LibICal::ICalPropertyICalPropertyTmpPtr
 
+

Detailed Description

+

Definition of C++ Wrapper for icalproperty.c.

+
Author
fnguyen (12/10/01)
+

(C) COPYRIGHT 2001, Critical Path

+

This library is free software; you can redistribute it and/or modify it under the terms of either:

+

The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

+

Or:

+

The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

+
+ + + + diff --git a/static/apidocs/icalproperty__cxx_8h_source.html b/static/apidocs/icalproperty__cxx_8h_source.html new file mode 100644 index 00000000..a290a74f --- /dev/null +++ b/static/apidocs/icalproperty__cxx_8h_source.html @@ -0,0 +1,466 @@ + + + + + + + +Libical API Documentation: icalproperty_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalproperty_cxx.h
+
+
+Go to the documentation of this file.
1
+
20#ifndef ICALPROPERTY_CXX_H
+
21#define ICALPROPERTY_CXX_H
+
22
+
23#include "libical_ical_export.h"
+
24#include "icptrholder_cxx.h"
+
25
+
26extern "C"
+
27{
+
28#include "icalerror.h"
+
29#include "icalproperty.h"
+
30}
+
31
+
32#include <string>
+
33
+
34namespace LibICal
+
35{
+
36
+
37class ICalParameter;
+
38class ICalValue;
+
39
+
40class LIBICAL_ICAL_EXPORT ICalProperty
+
41{
+
42public:
+ + +
45 ICalProperty &operator=(const ICalProperty &);
+ +
47
+
48 explicit ICalProperty(icalproperty *v);
+
49 explicit ICalProperty(std::string str);
+
50 explicit ICalProperty(icalproperty_kind kind);
+
51 ICalProperty(icalproperty_kind kind, std::string str);
+
52
+
53 operator icalproperty *()
+
54 {
+
55 return imp;
+
56 }
+
57 int operator==(ICalProperty &rhs);
+
58
+
59 void detach();
+
60
+
61public:
+
62 std::string as_ical_string();
+
63 icalproperty_kind isa();
+
64 int isa_property(void *property);
+
65
+
66 void add_parameter(ICalParameter &parameter);
+
67 void set_parameter(ICalParameter &parameter);
+
68 void set_parameter_from_string(const std::string &name, const std::string &val);
+
69 std::string get_parameter_as_string(const std::string &name);
+
70 void remove_parameter_by_kind(const icalparameter_kind &kind);
+
71 int count_parameters();
+
72
+
74 ICalParameter *get_first_parameter(const icalparameter_kind &kind);
+
75 ICalParameter *get_next_parameter(const icalparameter_kind &kind);
+
76
+
78 void set_value(const ICalValue &val);
+
79 void set_value_from_string(const std::string &val, const std::string &kind);
+
80
+
81 ICalValue *get_value();
+
82 std::string get_value_as_string();
+
83
+
88 std::string get_name() const;
+
89
+
90public:
+
91 /* Deal with X properties */
+
92 static void set_x_name(ICalProperty &prop, const std::string &name);
+
93 static std::string get_x_name(ICalProperty &prop);
+
94
+
95 static icalvalue_kind value_to_value_kind(const icalparameter_value &val);
+
96
+
97 /* Convert kinds to string and get default value type */
+
98 static icalvalue_kind kind_to_value_kind(const icalproperty_kind &kind);
+
99 static icalproperty_kind value_kind_to_kind(const icalvalue_kind &kind);
+
100 static std::string kind_to_string(const icalproperty_kind &kind);
+
101 static icalproperty_kind string_to_kind(const std::string &str);
+
102
+
103 static icalproperty_method string_to_method(const std::string &str);
+
104 static std::string method_to_string(const icalproperty_method &method);
+
105
+
106 static std::string enum_to_string(const int &e);
+
107 static int kind_and_string_to_enum(const icalproperty_kind &kind, const std::string &str);
+
108
+
109 static std::string status_to_string(const icalproperty_status &status);
+
110 static icalproperty_status string_to_status(const std::string &str);
+
111
+
112 static int enum_belongs_to_property(const icalproperty_kind &kind, const int &e);
+
113
+
114public:
+
115 /* ACTION */
+
116 void set_action(const enum icalproperty_action &val);
+
117 enum icalproperty_action get_action();
+
118
+
119 /* ATTACH */
+
120 void set_attach(icalattach *val);
+
121 icalattach *get_attach() const;
+
122
+
123 /* ATTENDEE */
+
124 void set_attendee(const std::string &val);
+
125 std::string get_attendee() const;
+
126
+
127 /* CALSCALE */
+
128 void set_calscale(const std::string &val);
+
129 std::string get_calscale() const;
+
130
+
131 /* CATEGORIES */
+
132 void set_categories(const std::string &val);
+
133 std::string get_categories() const;
+
134
+
135 /* CLASS */
+
136 void set_class(const enum icalproperty_class &val);
+
137 enum icalproperty_class get_class() const;
+
138
+
139 /* COMMENT */
+
140 void set_comment(const std::string &val);
+
141 std::string get_comment() const;
+
142
+
143 /* COMPLETED */
+
144 void set_completed(const struct icaltimetype &val);
+
145 struct icaltimetype get_completed() const;
+
146
+
147 /* CONTACT */
+
148 void set_contact(const std::string &val);
+
149 std::string get_contact() const;
+
150
+
151 /* CREATED */
+
152 void set_created(const struct icaltimetype &val);
+
153 struct icaltimetype get_created() const;
+
154
+
155 /* DESCRIPTION */
+
156 void set_description(const std::string &val);
+
157 std::string get_description() const;
+
158
+
159 /* DTEND */
+
160 void set_dtend(const struct icaltimetype &val);
+
161 struct icaltimetype get_dtend() const;
+
162
+
163 /* DTSTAMP */
+
164 void set_dtstamp(const struct icaltimetype &val);
+
165 struct icaltimetype get_dtstamp() const;
+
166
+
167 /* DTSTART */
+
168 void set_dtstart(const struct icaltimetype &val);
+
169 struct icaltimetype get_dtstart() const;
+
170
+
171 /* DUE */
+
172 void set_due(const struct icaltimetype &val);
+
173 struct icaltimetype get_due() const;
+
174
+
175 /* DURATION */
+
176 void set_duration(const struct icaldurationtype &val);
+
177 struct icaldurationtype get_duration() const;
+
178
+
179 /* EXDATE */
+
180 void set_exdate(const struct icaltimetype &val);
+
181 struct icaltimetype get_exdate() const;
+
182
+
183 /* EXPAND */
+
184 void set_expand(const int &val);
+
185 int get_expand() const;
+
186
+
187 /* EXRULE */
+
188 void set_exrule(const struct icalrecurrencetype &val);
+
189 struct icalrecurrencetype get_exrule() const;
+
190
+
191 /* FREEBUSY */
+
192 void set_freebusy(const struct icalperiodtype &val);
+
193 struct icalperiodtype get_freebusy() const;
+
194
+
195 /* GEO */
+
196 void set_geo(const struct icalgeotype &val);
+
197 struct icalgeotype get_geo() const;
+
198
+
199 /* GRANT */
+
200 void set_grant(const std::string &val);
+
201 std::string get_grant() const;
+
202
+
203 /* LAST-MODIFIED */
+
204 void set_lastmodified(const struct icaltimetype &val);
+
205 struct icaltimetype get_lastmodified() const;
+
206
+
207 /* LOCATION */
+
208 void set_location(const std::string &val);
+
209 std::string get_location() const;
+
210
+
211 /* MAXRESULTS */
+
212 void set_maxresults(const int &val);
+
213 int get_maxresults() const;
+
214
+
215 /* MAXRESULTSSIZE */
+
216 void set_maxresultsize(const int &val);
+
217 int get_maxresultsize() const;
+
218
+
219 /* METHOD */
+
220 void set_method(const enum icalproperty_method &val);
+
221 enum icalproperty_method get_method() const;
+
222
+
223 /* OWNER */
+
224 void set_owner(const std::string &val);
+
225 std::string get_owner() const;
+
226
+
227 /* ORGANIZER */
+
228 void set_organizer(const std::string &val);
+
229 std::string get_organizer() const;
+
230
+
231 /* PERCENT-COMPLETE */
+
232 void set_percentcomplete(const int &val);
+
233 int get_percentcomplete() const;
+
234
+
235 /* PRIORITY */
+
236 void set_priority(const int &val);
+
237 int get_priority() const;
+
238
+
239 /* PRODID */
+
240 void set_prodid(const std::string &val);
+
241 std::string get_prodid() const;
+
242
+
243 /* QUERY */
+
244 void set_query(const std::string &val);
+
245 std::string get_query() const;
+
246
+
247 /* QUERYNAME */
+
248 void set_queryname(const std::string &val);
+
249 std::string get_queryname() const;
+
250
+
251 /* RDATE */
+
252 void set_rdate(const struct icaldatetimeperiodtype &val);
+
253 struct icaldatetimeperiodtype get_rdate() const;
+
254
+
255 /* RECURRENCE-ID */
+
256 void set_recurrenceid(const struct icaltimetype &val);
+
257 struct icaltimetype get_recurrenceid() const;
+
258
+
259 /* RELATED-TO */
+
260 void set_relatedto(const std::string &val);
+
261 std::string get_relatedto() const;
+
262
+
263 /* RELCALID */
+
264 void set_relcalid(const std::string &val);
+
265 std::string get_relcalid() const;
+
266
+
267 /* REPEAT */
+
268 void set_repeat(const int &val);
+
269 int get_repeat() const;
+
270
+
271 /* REQUEST-STATUS */
+
272 void set_requeststatus(const std::string &val);
+
273 std::string get_requeststatus() const;
+
274
+
275 /* RESOURCES */
+
276 void set_resources(const std::string &val);
+
277 std::string get_resources() const;
+
278
+
279 /* RRULE */
+
280 void set_rrule(const struct icalrecurrencetype &val);
+
281 struct icalrecurrencetype get_rrule() const;
+
282
+
283 /* SCOPE */
+
284 void set_scope(const std::string &val);
+
285 std::string get_scope() const;
+
286
+
287 /* SEQUENCE */
+
288 void set_sequence(const int &val);
+
289 int get_sequence() const;
+
290
+
291 /* STATUS */
+
292 void set_status(const enum icalproperty_status &val);
+
293 enum icalproperty_status get_status() const;
+
294
+
295 /* SUMMARY */
+
296 void set_summary(const std::string &val);
+
297 std::string get_summary() const;
+
298
+
299 /* TARGET */
+
300 void set_target(const std::string &val);
+
301 std::string get_target() const;
+
302
+
303 /* TRANSP */
+
304 void set_transp(const enum icalproperty_transp &val);
+
305 enum icalproperty_transp get_transp() const;
+
306
+
307 /* TRIGGER */
+
308 void set_trigger(const struct icaltriggertype &val);
+
309 struct icaltriggertype get_trigger() const;
+
310
+
311 /* TZID */
+
312 void set_tzid(const std::string &val);
+
313 std::string get_tzid() const;
+
314
+
315 /* TZNAME */
+
316 void set_tzname(const std::string &val);
+
317 std::string get_tzname() const;
+
318
+
319 /* TZOFFSETFROM */
+
320 void set_tzoffsetfrom(const int &val);
+
321 int get_tzoffsetfrom() const;
+
322
+
323 /* TZOFFSETTO */
+
324 void set_tzoffsetto(const int &val);
+
325 int get_tzoffsetto() const;
+
326
+
327 /* TZURL */
+
328 void set_tzurl(const std::string &val);
+
329 std::string get_tzurl() const;
+
330
+
331 /* UID */
+
332 void set_uid(const std::string &val);
+
333 std::string get_uid() const;
+
334
+
335 /* URL */
+
336 void set_url(const std::string &val);
+
337 std::string get_url() const;
+
338
+
339 /* VERSION */
+
340 void set_version(const std::string &val);
+
341 std::string get_version() const;
+
342
+
343 /* X */
+
344 void set_x(const std::string &val);
+
345 std::string get_x() const;
+
346
+
347 /* X-LIC-CLUSTERCOUNT */
+
348 void set_xlicclustercount(const std::string &val);
+
349 std::string get_xlicclustercount() const;
+
350
+
351 /* X-LIC-ERROR */
+
352 void set_xlicerror(const std::string &val);
+
353 std::string get_xlicerror() const;
+
354
+
355 /* X-LIC-MIMECHARSET */
+
356 void set_xlicmimecharset(const std::string &val);
+
357 std::string get_xlicmimecharset() const;
+
358
+
359 /* X-LIC-MIMECID */
+
360 void set_xlicmimecid(const std::string &val);
+
361 std::string get_xlicmimecid() const;
+
362
+
363 /* X-LIC-MIMECONTENTTYPE */
+
364 void set_xlicmimecontenttype(const std::string &val);
+
365 std::string get_xlicmimecontenttype() const;
+
366
+
367 /* X-LIC-MIMEENCODING */
+
368 void set_xlicmimeencoding(const std::string &val);
+
369 std::string get_xlicmimeencoding() const;
+
370
+
371 /* X-LIC-MIMEFILENAME */
+
372 void set_xlicmimefilename(const std::string &val);
+
373 std::string get_xlicmimefilename() const;
+
374
+
375 /* X-LIC-MIMEOPTINFO */
+
376 void set_xlicmimeoptinfo(const std::string &val);
+
377 std::string get_xlicmimeoptinfo() const;
+
378
+
379private:
+
380 icalproperty *imp;
+
382};
+
383
+
384} // namespace LibICal
+
385
+
386typedef ICPointerHolder < LibICal::ICalProperty > ICalPropertyTmpPtr;
+
387
+
388#endif /* ICalProperty_H */
+
Definition icptrholder_cxx.h:48
+
Definition icalparameter_cxx.h:38
+
Definition icalproperty_cxx.h:41
+
ICalParameter * get_first_parameter(const icalparameter_kind &kind)
+
std::string get_name() const
+
void set_value(const ICalValue &val)
+
Definition icalvalue_cxx.h:36
+
Error handling for libical.
+ +
C++ template classes for managing C++ pointers returned by VComponent::get_..._component,...
+
Definition icalattachimpl.h:26
+
Definition icaltypes.h:28
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltypes.h:34
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icalrecur.h:152
+
Definition icaltime.h:105
+
Definition icaltypes.h:40
+
+ + + + diff --git a/static/apidocs/icalproperty__p_8h_source.html b/static/apidocs/icalproperty__p_8h_source.html new file mode 100644 index 00000000..466960f1 --- /dev/null +++ b/static/apidocs/icalproperty__p_8h_source.html @@ -0,0 +1,119 @@ + + + + + + + +Libical API Documentation: icalproperty_p.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalproperty_p.h
+
+
+
1/*======================================================================
+
2 FILE: icalproperty_p.h
+
3
+
4 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
5
+
6 This library is free software; you can redistribute it and/or modify
+
7 it under the terms of either:
+
8
+
9 The LGPL as published by the Free Software Foundation, version
+
10 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
11
+
12 Or:
+
13
+
14 The Mozilla Public License Version 2.0. You may obtain a copy of
+
15 the License at https://www.mozilla.org/MPL/
+
16======================================================================*/
+
17
+
18#ifndef ICALPROPERTY_P_H
+
19#define ICALPROPERTY_P_H
+
20
+
21#include "icalproperty.h"
+
22#include "icalcomponent.h"
+
23
+
24/* Check validity and attributes of icalproperty_kind and icalvalue_kind pair */
+
25LIBICAL_ICAL_NO_EXPORT int icalproperty_value_kind_is_valid(icalproperty_kind pkind,
+
26 icalvalue_kind vkind);
+
27LIBICAL_ICAL_NO_EXPORT int icalproperty_value_kind_is_multivalued(icalproperty_kind pkind,
+
28 icalvalue_kind *vkind);
+
29LIBICAL_ICAL_NO_EXPORT int icalproperty_value_kind_is_default(icalproperty_kind pkind,
+
30 icalvalue_kind vkind);
+
31
+
32#endif /* ICALPROPERTY_P_H */
+ + +
+ + + + diff --git a/static/apidocs/icalrecur_8h.html b/static/apidocs/icalrecur_8h.html new file mode 100644 index 00000000..b3ec1b14 --- /dev/null +++ b/static/apidocs/icalrecur_8h.html @@ -0,0 +1,530 @@ + + + + + + + +Libical API Documentation: icalrecur.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalrecur.h File Reference
+
+
+ +

Routines for dealing with recurring time. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

struct  icalrecurrencetype
 
+ + + + + + + + + + + + + + + + + + + + + +

+Macros

+#define ICAL_BY_DAY_SIZE   7*(ICAL_BY_WEEKNO_SIZE-1)+1 /* 1 to N */
 
+#define ICAL_BY_HOUR_SIZE   25 /* 0 to 23 */
 
+#define ICAL_BY_MINUTE_SIZE   61 /* 0 to 59 */
 
+#define ICAL_BY_MONTH_SIZE   14 /* 1 to 13 */
 
+#define ICAL_BY_MONTHDAY_SIZE   32 /* 1 to 31 */
 
#define ICAL_BY_SECOND_SIZE   62 /* 0 to 60 */
 
+#define ICAL_BY_SETPOS_SIZE   ICAL_BY_YEARDAY_SIZE /* 1 to N */
 
+#define ICAL_BY_WEEKNO_SIZE   56 /* 1 to 55 */
 
+#define ICAL_BY_YEARDAY_SIZE   386 /* 1 to 385 */
 
#define ICALRECURRENCETYPE_INITIALIZER
 
+ + + + + + + + + +

+Typedefs

+typedef struct icalrecur_iterator_impl icalrecur_iterator
 
+typedef enum icalrecurrencetype_frequency icalrecurrencetype_frequency
 
+typedef enum icalrecurrencetype_skip icalrecurrencetype_skip
 
+typedef enum icalrecurrencetype_weekday icalrecurrencetype_weekday
 
+ + + + + + + + + +

+Enumerations

enum  icalrecurrence_array_max_values { ICAL_RECURRENCE_ARRAY_MAX = 0x7f7f +, ICAL_RECURRENCE_ARRAY_MAX_BYTE = 0x7f + }
 
enum  icalrecurrencetype_frequency {
+  ICAL_SECONDLY_RECURRENCE = 0 +, ICAL_MINUTELY_RECURRENCE = 1 +, ICAL_HOURLY_RECURRENCE = 2 +, ICAL_DAILY_RECURRENCE = 3 +,
+  ICAL_WEEKLY_RECURRENCE = 4 +, ICAL_MONTHLY_RECURRENCE = 5 +, ICAL_YEARLY_RECURRENCE = 6 +, ICAL_NO_RECURRENCE = 7 +
+ }
 
enum  icalrecurrencetype_skip { ICAL_SKIP_BACKWARD = 0 +, ICAL_SKIP_FORWARD +, ICAL_SKIP_OMIT +, ICAL_SKIP_UNDEFINED + }
 
enum  icalrecurrencetype_weekday {
+  ICAL_NO_WEEKDAY +, ICAL_SUNDAY_WEEKDAY +, ICAL_MONDAY_WEEKDAY +, ICAL_TUESDAY_WEEKDAY +,
+  ICAL_WEDNESDAY_WEEKDAY +, ICAL_THURSDAY_WEEKDAY +, ICAL_FRIDAY_WEEKDAY +, ICAL_SATURDAY_WEEKDAY +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

int icalrecur_expand_recurrence (const char *rule, time_t start, int count, time_t *array)
 Fills an array with the 'count' number of occurrences generated by the rrule.
 
+const char * icalrecur_freq_to_string (icalrecurrencetype_frequency kind)
 
void icalrecur_iterator_free (icalrecur_iterator *)
 
icalrecur_iteratoricalrecur_iterator_new (struct icalrecurrencetype rule, struct icaltimetype dtstart)
 
struct icaltimetype icalrecur_iterator_next (icalrecur_iterator *)
 
int icalrecur_iterator_set_start (icalrecur_iterator *impl, struct icaltimetype start)
 
+const char * icalrecur_skip_to_string (icalrecurrencetype_skip kind)
 
+icalrecurrencetype_frequency icalrecur_string_to_freq (const char *str)
 
+icalrecurrencetype_skip icalrecur_string_to_skip (const char *str)
 
+icalrecurrencetype_weekday icalrecur_string_to_weekday (const char *str)
 
+const char * icalrecur_weekday_to_string (icalrecurrencetype_weekday kind)
 
+char * icalrecurrencetype_as_string (struct icalrecurrencetype *recur)
 
+char * icalrecurrencetype_as_string_r (struct icalrecurrencetype *recur)
 
+void icalrecurrencetype_clear (struct icalrecurrencetype *r)
 
enum icalrecurrencetype_weekday icalrecurrencetype_day_day_of_week (short day)
 Decodes a day to a weekday.
 
int icalrecurrencetype_day_position (short day)
 Decodes a day to a position of the weekday.
 
struct icalrecurrencetype icalrecurrencetype_from_string (const char *str)
 
+int icalrecurrencetype_month_is_leap (short month)
 
+int icalrecurrencetype_month_month (short month)
 
+int icalrecurrencetype_rscale_is_supported (void)
 
+icalarrayicalrecurrencetype_rscale_supported_calendars (void)
 
+

Detailed Description

+

Routines for dealing with recurring time.

+

How to use:

+

1) Get a rule and a start time from a component

+
icalproperty rrule;
+
struct icalrecurrencetype recur;
+
struct icaltimetype dtstart;
+
+
rrule = icalcomponent_get_first_property(comp,ICAL_RRULE_PROPERTY);
+
recur = icalproperty_get_rrule(rrule);
+
start = icalproperty_get_dtstart(dtstart);
+
Definition icalrecur.h:152
+
Definition icaltime.h:105
+

Or, just make them up:

+
recur = icalrecurrencetype_from_string("FREQ=YEARLY;BYDAY=SU,WE");
+
dtstart = icaltime_from_string("19970101T123000")
+
struct icaltimetype icaltime_from_string(const char *str)
Constructor.
Definition icaltime.c:354
+

2) Create an iterator

+
+
ritr = icalrecur_iterator_new(recur,start);
+
Definition icalrecur.c:925
+

3) Iterator over the occurrences

+
struct icaltimetype next;
+
while (next = icalrecur_iterator_next(ritr)
+ +
Do something with next
+
}
+
int icaltime_is_null_time(const struct icaltimetype t)
Returns true if the time is null.
Definition icaltime.c:626
+

Note that the time returned by icalrecur_iterator_next is in whatever timezone that dtstart is in.

+

Macro Definition Documentation

+ +

◆ ICAL_BY_SECOND_SIZE

+ +
+
+ + + + +
#define ICAL_BY_SECOND_SIZE   62 /* 0 to 60 */
+
+

Recurrence type routines

+ +
+
+ +

◆ ICALRECURRENCETYPE_INITIALIZER

+ +
+
+ + + + +
#define ICALRECURRENCETYPE_INITIALIZER
+
+Value:
{ \
+
ICAL_NO_RECURRENCE, /* freq */ \
+
ICALTIMETYPE_INITIALIZER, /* until */ \
+
0, /* count */ \
+
1, /* interval */ \
+
ICAL_MONDAY_WEEKDAY, /* week_start */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_second */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_minute */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_hour */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_day */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_month_day */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_year_day */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_week_no */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_month */ \
+
{ ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_set_pos */ \
+
NULL, /* rscale */ \
+
ICAL_SKIP_OMIT /* skip */ \
+
}
+
+
+
+

Function Documentation

+ +

◆ icalrecur_expand_recurrence()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int icalrecur_expand_recurrence (const char * rule,
time_t start,
int count,
time_t * array 
)
+
+ +

Fills an array with the 'count' number of occurrences generated by the rrule.

+

Specifically, this fills array up with at most 'count' time_t values, each representing an occurrence time in seconds past the POSIX epoch.

+

Note that the times are returned in UTC, but the times are calculated in local time. You will have to convert the results back into local time before using them.

+ +
+
+ +

◆ icalrecur_iterator_free()

+ +
+
+ + + + + + + + +
void icalrecur_iterator_free (icalrecur_iteratori)
+
+

Frees the iterator.

+ +
+
+ +

◆ icalrecur_iterator_new()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalrecur_iterator * icalrecur_iterator_new (struct icalrecurrencetype rule,
struct icaltimetype dtstart 
)
+
+

Creates a new recurrence rule iterator, starting at DTSTART.

+ +
+
+ +

◆ icalrecur_iterator_next()

+ +
+
+ + + + + + + + +
struct icaltimetype icalrecur_iterator_next (icalrecur_iteratorimpl)
+
+

Gets the next occurrence from an iterator.

+ +
+
+ +

◆ icalrecur_iterator_set_start()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icalrecur_iterator_set_start (icalrecur_iteratorimpl,
struct icaltimetype start 
)
+
+

Sets the date-time at which the iterator will start, where start is a value between DTSTART and UNTIL.

+

NOTE: CAN NOT be used with RRULEs that contain COUNT.

Since
3.0
+ +
+
+ +

◆ icalrecurrencetype_day_day_of_week()

+ +
+
+ + + + + + + + +
enum icalrecurrencetype_weekday icalrecurrencetype_day_day_of_week (short day)
+
+ +

Decodes a day to a weekday.

+
Returns
The decoded day of the week. 1 is Monday, 2 is Tuesday, etc. A position of 0 means 'any' or 'every'.
+

The 'day' element of icalrecurrencetype_weekday is encoded to allow representation of both the day of the week ( Monday, Tuesday), but also the Nth day of the week ( First tuesday of the month, last thursday of the year) These routines decode the day values.

+

The day's position in the period ( Nth-ness) and the numerical value of the day are encoded together as: pos*7 + dow.

+ +
+
+ +

◆ icalrecurrencetype_day_position()

+ +
+
+ + + + + + + + +
int icalrecurrencetype_day_position (short day)
+
+ +

Decodes a day to a position of the weekday.

+
Returns
The position of the day in the week. 0 == any of day of week. 1 == first, 2 = second, -2 == second to last, etc. 0 means 'any' or 'every'.
+ +
+
+ +

◆ icalrecurrencetype_from_string()

+ +
+
+ + + + + + + + +
struct icalrecurrencetype icalrecurrencetype_from_string (const char * str)
+
+

Convert between strings and recurrencetype structures.

+ +
+
+
+ + + + diff --git a/static/apidocs/icalrecur_8h_source.html b/static/apidocs/icalrecur_8h_source.html new file mode 100644 index 00000000..b5235374 --- /dev/null +++ b/static/apidocs/icalrecur_8h_source.html @@ -0,0 +1,308 @@ + + + + + + + +Libical API Documentation: icalrecur.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalrecur.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalrecur.h
+
3 CREATOR: eric 20 March 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17========================================================================*/
+
18
+
66#ifndef ICALRECUR_H
+
67#define ICALRECUR_H
+
68
+
69#include "libical_ical_export.h"
+
70#include "icalarray.h"
+
71#include "icaltime.h"
+
72
+
73/*
+
74 * Recurrence enumerations
+
75 */
+
76
+
77typedef enum icalrecurrencetype_frequency
+
78{
+
79 /* These enums are used to index an array, so don't change the
+
80 order or the integers */
+
81
+
82 ICAL_SECONDLY_RECURRENCE = 0,
+
83 ICAL_MINUTELY_RECURRENCE = 1,
+
84 ICAL_HOURLY_RECURRENCE = 2,
+
85 ICAL_DAILY_RECURRENCE = 3,
+
86 ICAL_WEEKLY_RECURRENCE = 4,
+
87 ICAL_MONTHLY_RECURRENCE = 5,
+
88 ICAL_YEARLY_RECURRENCE = 6,
+
89 ICAL_NO_RECURRENCE = 7
+
90} icalrecurrencetype_frequency;
+
91
+
92typedef enum icalrecurrencetype_weekday
+
93{
+
94 ICAL_NO_WEEKDAY,
+
95 ICAL_SUNDAY_WEEKDAY,
+
96 ICAL_MONDAY_WEEKDAY,
+
97 ICAL_TUESDAY_WEEKDAY,
+
98 ICAL_WEDNESDAY_WEEKDAY,
+
99 ICAL_THURSDAY_WEEKDAY,
+
100 ICAL_FRIDAY_WEEKDAY,
+
101 ICAL_SATURDAY_WEEKDAY
+
102} icalrecurrencetype_weekday;
+
103
+
104typedef enum icalrecurrencetype_skip
+
105{
+
106 ICAL_SKIP_BACKWARD = 0,
+
107 ICAL_SKIP_FORWARD,
+
108 ICAL_SKIP_OMIT,
+
109 ICAL_SKIP_UNDEFINED
+
110} icalrecurrencetype_skip;
+
111
+
112enum icalrecurrence_array_max_values
+
113{
+
114 ICAL_RECURRENCE_ARRAY_MAX = 0x7f7f,
+
115 ICAL_RECURRENCE_ARRAY_MAX_BYTE = 0x7f
+
116};
+
117
+
118/*
+
119 * Recurrence enumerations conversion routines.
+
120 */
+
121
+
122LIBICAL_ICAL_EXPORT icalrecurrencetype_frequency icalrecur_string_to_freq(const char *str);
+
123LIBICAL_ICAL_EXPORT const char *icalrecur_freq_to_string(icalrecurrencetype_frequency kind);
+
124
+
125LIBICAL_ICAL_EXPORT icalrecurrencetype_skip icalrecur_string_to_skip(const char *str);
+
126LIBICAL_ICAL_EXPORT const char *icalrecur_skip_to_string(icalrecurrencetype_skip kind);
+
127
+
128LIBICAL_ICAL_EXPORT const char *icalrecur_weekday_to_string(icalrecurrencetype_weekday kind);
+
129LIBICAL_ICAL_EXPORT icalrecurrencetype_weekday icalrecur_string_to_weekday(const char *str);
+
130
+
135/* See RFC 5545 Section 3.3.10, RECUR Value, and RFC 7529
+
136 * for an explanation of the values and fields in struct icalrecurrencetype.
+
137 *
+
138 * The maximums below are based on lunisolar leap years (13 months)
+
139 */
+
140#define ICAL_BY_SECOND_SIZE 62 /* 0 to 60 */
+
141#define ICAL_BY_MINUTE_SIZE 61 /* 0 to 59 */
+
142#define ICAL_BY_HOUR_SIZE 25 /* 0 to 23 */
+
143#define ICAL_BY_MONTH_SIZE 14 /* 1 to 13 */
+
144#define ICAL_BY_MONTHDAY_SIZE 32 /* 1 to 31 */
+
145#define ICAL_BY_WEEKNO_SIZE 56 /* 1 to 55 */
+
146#define ICAL_BY_YEARDAY_SIZE 386 /* 1 to 385 */
+
147#define ICAL_BY_SETPOS_SIZE ICAL_BY_YEARDAY_SIZE /* 1 to N */
+
148#define ICAL_BY_DAY_SIZE 7*(ICAL_BY_WEEKNO_SIZE-1)+1 /* 1 to N */
+
149
+ +
152{
+
153 icalrecurrencetype_frequency freq;
+
154
+
155 /* until and count are mutually exclusive. */
+
156 struct icaltimetype until;
+
157 int count;
+
158
+
159 short interval;
+
160
+
161 icalrecurrencetype_weekday week_start;
+
162
+
163 /* The BY* parameters can each take a list of values. Here I
+
164 * assume that the list of values will not be larger than the
+
165 * range of the value -- that is, the client will not name a
+
166 * value more than once.
+
167
+
168 * Each of the lists is terminated with the value
+
169 * ICAL_RECURRENCE_ARRAY_MAX unless the list is full.
+
170 */
+
171
+
172 short by_second[ICAL_BY_SECOND_SIZE];
+
173 short by_minute[ICAL_BY_MINUTE_SIZE];
+
174 short by_hour[ICAL_BY_HOUR_SIZE];
+
175 short by_day[ICAL_BY_DAY_SIZE];
+
185 short by_month_day[ICAL_BY_MONTHDAY_SIZE];
+
186 short by_year_day[ICAL_BY_YEARDAY_SIZE];
+
187 short by_week_no[ICAL_BY_WEEKNO_SIZE];
+
188 short by_month[ICAL_BY_MONTH_SIZE];
+
196 short by_set_pos[ICAL_BY_SETPOS_SIZE];
+
197
+
198 /* For RSCALE extension (RFC 7529) */
+
199 char *rscale;
+
200 icalrecurrencetype_skip skip;
+
201};
+
202
+
203#define ICALRECURRENCETYPE_INITIALIZER { \
+
204 ICAL_NO_RECURRENCE, /* freq */ \
+
205 ICALTIMETYPE_INITIALIZER, /* until */ \
+
206 0, /* count */ \
+
207 1, /* interval */ \
+
208 ICAL_MONDAY_WEEKDAY, /* week_start */ \
+
209 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_second */ \
+
210 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_minute */ \
+
211 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_hour */ \
+
212 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_day */ \
+
213 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_month_day */ \
+
214 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_year_day */ \
+
215 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_week_no */ \
+
216 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_month */ \
+
217 { ICAL_RECURRENCE_ARRAY_MAX_BYTE }, /* by_set_pos */ \
+
218 NULL, /* rscale */ \
+
219 ICAL_SKIP_OMIT /* skip */ \
+
220}
+
221
+
222LIBICAL_ICAL_EXPORT int icalrecurrencetype_rscale_is_supported(void);
+
223
+
224LIBICAL_ICAL_EXPORT icalarray *icalrecurrencetype_rscale_supported_calendars(void);
+
225
+
226LIBICAL_ICAL_EXPORT void icalrecurrencetype_clear(struct icalrecurrencetype *r);
+
227
+
228/*
+
229 * Routines to decode the day values of the by_day array
+
230 */
+
231
+
245LIBICAL_ICAL_EXPORT enum icalrecurrencetype_weekday icalrecurrencetype_day_day_of_week(short day);
+
246
+
253LIBICAL_ICAL_EXPORT int icalrecurrencetype_day_position(short day);
+
254
+
255/*
+
256 * Routines to decode the 'month' element of the by_month array
+
257 */
+
258
+
259LIBICAL_ICAL_EXPORT int icalrecurrencetype_month_is_leap(short month);
+
260
+
261LIBICAL_ICAL_EXPORT int icalrecurrencetype_month_month(short month);
+
262
+
263/*
+
264 * Recurrence rule parser
+
265 */
+
266
+
268LIBICAL_ICAL_EXPORT struct icalrecurrencetype icalrecurrencetype_from_string(const char *str);
+
269
+
270LIBICAL_ICAL_EXPORT char *icalrecurrencetype_as_string(struct icalrecurrencetype *recur);
+
271
+
272LIBICAL_ICAL_EXPORT char *icalrecurrencetype_as_string_r(struct icalrecurrencetype *recur);
+
273
+
274/*
+
275 * Recurrence iteration routines
+
276 */
+
277
+ +
279
+
281LIBICAL_ICAL_EXPORT icalrecur_iterator *icalrecur_iterator_new(struct icalrecurrencetype rule,
+
282 struct icaltimetype dtstart);
+
283
+
291LIBICAL_ICAL_EXPORT int icalrecur_iterator_set_start(icalrecur_iterator *impl,
+
292 struct icaltimetype start);
+
293
+
295LIBICAL_ICAL_EXPORT struct icaltimetype icalrecur_iterator_next(icalrecur_iterator *);
+
296
+
298LIBICAL_ICAL_EXPORT void icalrecur_iterator_free(icalrecur_iterator *);
+
299
+
310LIBICAL_ICAL_EXPORT int icalrecur_expand_recurrence(const char *rule, time_t start,
+
311 int count, time_t *array);
+
312
+
313#endif
+
An array of arbitrarily-sized elements which grows dynamically as elements are added.
+
int icalrecur_expand_recurrence(const char *rule, time_t start, int count, time_t *array)
Fills an array with the 'count' number of occurrences generated by the rrule.
Definition icalrecur.c:3244
+
struct icalrecurrencetype icalrecurrencetype_from_string(const char *str)
Definition icalrecur.c:555
+
void icalrecur_iterator_free(icalrecur_iterator *)
Definition icalrecur.c:2065
+
struct icaltimetype icalrecur_iterator_next(icalrecur_iterator *)
Definition icalrecur.c:2933
+
icalrecur_iterator * icalrecur_iterator_new(struct icalrecurrencetype rule, struct icaltimetype dtstart)
Definition icalrecur.c:1952
+
enum icalrecurrencetype_weekday icalrecurrencetype_day_day_of_week(short day)
Decodes a day to a weekday.
Definition icalrecur.c:3210
+
int icalrecurrencetype_day_position(short day)
Decodes a day to a position of the weekday.
Definition icalrecur.c:3215
+
int icalrecur_iterator_set_start(icalrecur_iterator *impl, struct icaltimetype start)
Definition icalrecur.c:3168
+
#define ICAL_BY_SECOND_SIZE
Definition icalrecur.h:140
+
struct icaltimetype is a pseudo-object that abstracts time handling.
+
Definition icalarray.h:36
+
Definition icalrecur.c:925
+
Definition icalrecur.h:152
+
short by_day[7 *(56 -1)+1]
Encoded value.
Definition icalrecur.h:175
+
short by_month[14]
Encoded value.
Definition icalrecur.h:188
+
Definition icaltime.h:105
+
int month
Definition icaltime.h:107
+
+ + + + diff --git a/static/apidocs/icalrestriction_8h.html b/static/apidocs/icalrestriction_8h.html new file mode 100644 index 00000000..0b2ae84b --- /dev/null +++ b/static/apidocs/icalrestriction_8h.html @@ -0,0 +1,265 @@ + + + + + + + +Libical API Documentation: icalrestriction.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalrestriction.h File Reference
+
+
+ +

Functions to check if an icalcomponent meets the restrictions imposed by the standard. +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef enum icalrestriction_kind icalrestriction_kind
 The kinds of icalrestrictions there are.
 
+ + + + +

+Enumerations

enum  icalrestriction_kind {
+  ICAL_RESTRICTION_NONE = 0 +, ICAL_RESTRICTION_ZERO +, ICAL_RESTRICTION_ONE +, ICAL_RESTRICTION_ZEROPLUS +,
+  ICAL_RESTRICTION_ONEPLUS +, ICAL_RESTRICTION_ZEROORONE +, ICAL_RESTRICTION_ONEEXCLUSIVE +, ICAL_RESTRICTION_ONEMUTUAL +,
+  ICAL_RESTRICTION_UNKNOWN +
+ }
 The kinds of icalrestrictions there are. More...
 
+ + + + + + + +

+Functions

int icalrestriction_check (icalcomponent *comp)
 Checks if a given VCALENDAR meets all the restrictions imposed by the standard.
 
int icalrestriction_compare (icalrestriction_kind restr, int count)
 Checks if the given count is in accordance with the given restriction, restr.
 
+

Detailed Description

+

Functions to check if an icalcomponent meets the restrictions imposed by the standard.

+

Typedef Documentation

+ +

◆ icalrestriction_kind

+ +
+
+ + + + +
typedef enum icalrestriction_kind icalrestriction_kind
+
+ +

The kinds of icalrestrictions there are.

+

These must stay in this order for icalrestriction_compare to work

+ +
+
+

Enumeration Type Documentation

+ +

◆ icalrestriction_kind

+ +
+
+ + + + +
enum icalrestriction_kind
+
+ +

The kinds of icalrestrictions there are.

+

These must stay in this order for icalrestriction_compare to work

+ + + + + + + + + + +
Enumerator
ICAL_RESTRICTION_NONE 

No restriction.

+
ICAL_RESTRICTION_ZERO 

Zero.

+
ICAL_RESTRICTION_ONE 

One.

+
ICAL_RESTRICTION_ZEROPLUS 

Zero or more.

+
ICAL_RESTRICTION_ONEPLUS 

One or more.

+
ICAL_RESTRICTION_ZEROORONE 

Zero or one.

+
ICAL_RESTRICTION_ONEEXCLUSIVE 

Zero or one, exclusive with another property.

+
ICAL_RESTRICTION_ONEMUTUAL 

Zero or one, mutual with another property.

+
ICAL_RESTRICTION_UNKNOWN 

Unknown.

+
+ +
+
+

Function Documentation

+ +

◆ icalrestriction_check()

+ +
+
+ + + + + + + + +
int icalrestriction_check (icalcomponentcomp)
+
+ +

Checks if a given VCALENDAR meets all the restrictions imposed by the standard.

+
Parameters
+ + +
compThe VCALENDAR component to check
+
+
+
Returns
1 if the restrictions are met, 0 if not
+
Error handling
Returns 0 and sets icalerrno if NULL is passed as comp, or if the component is not a VCALENDAR.
+
Example
icalcomponent *component = // ...
+
+
// check component
+
assert(icalrestriction_check(component) == true);
+
int icalrestriction_check(icalcomponent *comp)
Checks if a given VCALENDAR meets all the restrictions imposed by the standard.
+
Definition icalcomponent.c:36
+
+ +
+
+ +

◆ icalrestriction_compare()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icalrestriction_compare (icalrestriction_kind restr,
int count 
)
+
+ +

Checks if the given count is in accordance with the given restriction, restr.

+
Parameters
+ + + +
restrThe restriction to apply to the count
countThe amount present that is to be checked against the restriction
+
+
+
Returns
1 if the restriction is met, 0 if not
+
Example
assert(icalrestriction_compare(ICALRESTRICTION_ONEPLUS, 5) == true);
+
assert(icalrestriction_compare(ICALRESTRICTION_NONE, 3) == false);
+
int icalrestriction_compare(icalrestriction_kind restr, int count)
Checks if the given count is in accordance with the given restriction, restr.
+
+ +
+
+
+ + + + diff --git a/static/apidocs/icalrestriction_8h_source.html b/static/apidocs/icalrestriction_8h_source.html new file mode 100644 index 00000000..c8ad7ddf --- /dev/null +++ b/static/apidocs/icalrestriction_8h_source.html @@ -0,0 +1,156 @@ + + + + + + + +Libical API Documentation: icalrestriction.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalrestriction.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalrestriction.h
+
3 CREATOR: eric 24 April 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The original code is icalrestriction.h
+
19
+
20 Contributions from:
+
21 Graham Davison (g.m.davison@computer.org)
+
22======================================================================*/
+
23
+
24#ifndef ICALRESTRICTION_H
+
25#define ICALRESTRICTION_H
+
26
+
33#include "libical_ical_export.h"
+
34#include "icalcomponent.h"
+
35#include "icalproperty.h"
+
36
+ +
43{
+ +
46
+ +
49
+ +
52
+ +
55
+ +
58
+ +
61
+ +
64
+ +
67
+ + +
71
+
85LIBICAL_ICAL_EXPORT int icalrestriction_compare(icalrestriction_kind restr, int count);
+
86
+
105LIBICAL_ICAL_EXPORT int icalrestriction_check(icalcomponent *comp);
+
106
+
107#endif /* !ICALRESTRICTION_H */
+ + +
int icalrestriction_check(icalcomponent *comp)
Checks if a given VCALENDAR meets all the restrictions imposed by the standard.
+
icalrestriction_kind
The kinds of icalrestrictions there are.
Definition icalrestriction.h:43
+
@ ICAL_RESTRICTION_ZEROPLUS
Definition icalrestriction.h:54
+
@ ICAL_RESTRICTION_UNKNOWN
Definition icalrestriction.h:69
+
@ ICAL_RESTRICTION_ONE
Definition icalrestriction.h:51
+
@ ICAL_RESTRICTION_ONEEXCLUSIVE
Definition icalrestriction.h:63
+
@ ICAL_RESTRICTION_ONEPLUS
Definition icalrestriction.h:57
+
@ ICAL_RESTRICTION_NONE
Definition icalrestriction.h:45
+
@ ICAL_RESTRICTION_ZEROORONE
Definition icalrestriction.h:60
+
@ ICAL_RESTRICTION_ONEMUTUAL
Definition icalrestriction.h:66
+
@ ICAL_RESTRICTION_ZERO
Definition icalrestriction.h:48
+
int icalrestriction_compare(icalrestriction_kind restr, int count)
Checks if the given count is in accordance with the given restriction, restr.
+
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalset_8h.html b/static/apidocs/icalset_8h.html new file mode 100644 index 00000000..f6f31d41 --- /dev/null +++ b/static/apidocs/icalset_8h.html @@ -0,0 +1,496 @@ + + + + + + + +Libical API Documentation: icalset.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalset.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + +

+Data Structures

struct  icalset_impl
 
struct  icalsetiter
 
+ + + + + + + +

+Typedefs

+typedef struct icalset_impl icalset
 
+typedef enum icalset_kind icalset_kind
 
+typedef struct icalsetiter icalsetiter
 
+ + + +

+Enumerations

enum  icalset_kind { ICAL_FILE_SET +, ICAL_DIR_SET +, ICAL_BDB_SET + }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+icalerrorenum icalset_add_component (icalset *set, icalcomponent *comp)
 
+icalsetiter icalset_begin_component (icalset *set, icalcomponent_kind kind, icalgauge *gauge, const char *tzid)
 
icalerrorenum icalset_commit (icalset *set)
 
+int icalset_count_components (icalset *set, icalcomponent_kind kind)
 
icalcomponenticalset_fetch (icalset *set, const char *uid)
 
+icalcomponenticalset_fetch_match (icalset *set, icalcomponent *c)
 
void icalset_free (icalset *set)
 
icalcomponenticalset_get_current_component (icalset *set)
 
+icalcomponenticalset_get_first_component (icalset *set)
 
+icalcomponenticalset_get_next_component (icalset *set)
 
+int icalset_has_uid (icalset *set, const char *uid)
 
void icalset_mark (icalset *set)
 
icalerrorenum icalset_modify (icalset *set, icalcomponent *oldc, icalcomponent *newc)
 
icalseticalset_new (icalset_kind kind, const char *dsn, void *options)
 Generic icalset constructor.
 
+icalseticalset_new_dir (const char *path)
 
+icalseticalset_new_file (const char *path)
 
+icalseticalset_new_file_reader (const char *path)
 
+icalseticalset_new_file_writer (const char *path)
 
+const char * icalset_path (icalset *set)
 
+int icalset_register_class (icalset *set)
 Registers a new derived class.
 
+icalerrorenum icalset_remove_component (icalset *set, icalcomponent *comp)
 
icalerrorenum icalset_select (icalset *set, icalgauge *gauge)
 
+icalcomponenticalsetiter_deref (icalsetiter *i)
 
icalcomponenticalsetiter_next (icalsetiter *i)
 
+icalcomponenticalsetiter_prior (icalsetiter *i)
 
icalcomponenticalsetiter_to_next (icalset *set, icalsetiter *i)
 
+icalcomponenticalsetiter_to_prior (icalset *set, icalsetiter *i)
 
+ + + +

+Variables

icalsetiter icalsetiter_null
 
+

Detailed Description

+
Author
eric 28 November 1999
+

Icalset is the "base class" for representations of a collection of iCal components. Derived classes (actually delegatees) include:

+

icalfileset Store components in a single file icaldirset Store components in multiple files in a directory icalbdbset Store components in a Berkeley DB File icalheapset Store components on the heap icalmysqlset Store components in a mysql database.

+

Function Documentation

+ +

◆ icalset_commit()

+ +
+
+ + + + + + + + +
icalerrorenum icalset_commit (icalsetset)
+
+

Writes changes to disk immediately

+ +
+
+ +

◆ icalset_fetch()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalcomponent * icalset_fetch (icalsetset,
const char * uid 
)
+
+

Gets a component by uid

+ +
+
+ +

◆ icalset_free()

+ +
+
+ + + + + + + + +
void icalset_free (icalsetset)
+
+

Frees the memory associated with this icalset automatically calls the implementation specific free routine

+ +
+
+ +

◆ icalset_get_current_component()

+ +
+
+ + + + + + + + +
icalcomponent * icalset_get_current_component (icalsetset)
+
+

Iterates through the components. If a gauge has been defined, these will skip over components that do not pass the gauge

+ +
+
+ +

◆ icalset_mark()

+ +
+
+ + + + + + + + +
void icalset_mark (icalsetset)
+
+

Marks the cluster as changed, so it will be written to disk when it is freed.

+ +
+
+ +

◆ icalset_modify()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
icalerrorenum icalset_modify (icalsetset,
icalcomponentoldc,
icalcomponentnewc 
)
+
+

Modifies components according to the MODIFY method of CAP. Works on the currently selected components.

+ +
+
+ +

◆ icalset_new()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
icalset * icalset_new (icalset_kind kind,
const char * dsn,
void * options 
)
+
+ +

Generic icalset constructor.

+
Parameters
+ + + + +
kindThe type of icalset to create
dsnData Source Name - usually a pathname or DB handle
optionsAny implementation specific options
+
+
+
Returns
A valid icalset reference or NULL if error.
+

This creates any of the icalset types available.

+

unimplemented

+

call the implementation specific initializer

+ +
+
+ +

◆ icalset_select()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalerrorenum icalset_select (icalsetset,
icalgaugegauge 
)
+
+

Restricts the component returned by icalset_first, _next to those that pass the gauge.

+ +
+
+ +

◆ icalsetiter_next()

+ +
+
+ + + + + + + + +
icalcomponent * icalsetiter_next (icalsetiteri)
+
+

Default _next, _prior, _deref for subclasses that use single cluster

+ +
+
+ +

◆ icalsetiter_to_next()

+ +
+
+ + + + + + + + + + + + + + + + + + +
icalcomponent * icalsetiter_to_next (icalsetset,
icalsetiteri 
)
+
+

for subclasses that use multiple clusters that require specialized cluster traversal

+ +
+
+

Variable Documentation

+ +

◆ icalsetiter_null

+ +
+
+ + + + + +
+ + + + +
icalsetiter icalsetiter_null
+
+extern
+
+

External Iterator with gauge - for thread safety

+ +
+
+
+ + + + diff --git a/static/apidocs/icalset_8h_source.html b/static/apidocs/icalset_8h_source.html new file mode 100644 index 00000000..d68d0a11 --- /dev/null +++ b/static/apidocs/icalset_8h_source.html @@ -0,0 +1,242 @@ + + + + + + + +Libical API Documentation: icalset.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalset.h
+
+
+Go to the documentation of this file.
1
+
15/*
+
16
+
17 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
18
+
19 This library is free software; you can redistribute it and/or modify
+
20 it under the terms of either:
+
21
+
22 The LGPL as published by the Free Software Foundation, version
+
23 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
24
+
25 Or:
+
26
+
27 The Mozilla Public License Version 2.0. You may obtain a copy of
+
28 the License at https://www.mozilla.org/MPL/
+
29
+
30 The Original Code is eric. The Initial Developer of the Original
+
31 Code is Eric Busboom
+
32======================================================================*/
+
33
+
34#ifndef ICALSET_H
+
35#define ICALSET_H
+
36
+
37#include "libical_icalss_export.h"
+
38#include "icalgauge.h"
+
39#include "icalcomponent.h"
+
40#include "icalerror.h"
+
41
+
42typedef struct icalset_impl icalset;
+
43
+
44typedef enum icalset_kind
+
45{
+
46 ICAL_FILE_SET,
+
47 ICAL_DIR_SET,
+
48 ICAL_BDB_SET
+
49} icalset_kind;
+
50
+
51typedef struct icalsetiter
+
52{
+
53 icalcompiter iter; /* icalcomponent_kind, pvl_elem iter */
+
54 icalgauge *gauge;
+
55 icalrecur_iterator *ritr; /*the last iterator */
+
56 icalcomponent *last_component; /*the pending recurring component to be processed */
+
57 const char *tzid; /* the calendar's timezone id */
+ +
59
+ +
61{
+
62 icalset_kind kind;
+
63 size_t size;
+
64 char *dsn;
+
65 icalset *(*init) (icalset *set, const char *dsn, void *options);
+
66 void (*free) (icalset *set);
+
67 const char *(*path) (icalset *set);
+
68 void (*mark) (icalset *set);
+
69 icalerrorenum(*commit) (icalset *set);
+
70 icalerrorenum(*add_component) (icalset *set, icalcomponent *comp);
+
71 icalerrorenum(*remove_component) (icalset *set, icalcomponent *comp);
+
72 int (*count_components) (icalset *set, icalcomponent_kind kind);
+
73 icalerrorenum(*select) (icalset *set, icalgauge *gauge);
+
74 void (*clear) (icalset *set);
+
75 icalcomponent *(*fetch) (icalset *set, icalcomponent_kind kind, const char *uid);
+
76 icalcomponent *(*fetch_match) (icalset *set, icalcomponent *comp);
+
77 int (*has_uid) (icalset *set, const char *uid);
+
78 icalerrorenum(*modify) (icalset *set, icalcomponent *old, icalcomponent *newc);
+
79 icalcomponent *(*get_current_component) (icalset *set);
+
80 icalcomponent *(*get_first_component) (icalset *set);
+
81 icalcomponent *(*get_next_component) (icalset *set);
+
82 icalsetiter(*icalset_begin_component) (icalset *set,
+
83 icalcomponent_kind kind, icalgauge *gauge,
+
84 const char *tzid);
+
85 icalcomponent *(*icalsetiter_to_next) (icalset *set, icalsetiter *i);
+
86 icalcomponent *(*icalsetiter_to_prior) (icalset *set, icalsetiter *i);
+
87};
+
88
+
90LIBICAL_ICALSS_EXPORT int icalset_register_class(icalset *set);
+
91
+
103LIBICAL_ICALSS_EXPORT icalset *icalset_new(icalset_kind kind, const char *dsn, void *options);
+
104
+
105LIBICAL_ICALSS_EXPORT icalset *icalset_new_file(const char *path);
+
106
+
107LIBICAL_ICALSS_EXPORT icalset *icalset_new_file_reader(const char *path);
+
108
+
109LIBICAL_ICALSS_EXPORT icalset *icalset_new_file_writer(const char *path);
+
110
+
111LIBICAL_ICALSS_EXPORT icalset *icalset_new_dir(const char *path);
+
112
+
117LIBICAL_ICALSS_EXPORT void icalset_free(icalset *set);
+
118
+
119LIBICAL_ICALSS_EXPORT const char *icalset_path(icalset *set);
+
120
+
123LIBICAL_ICALSS_EXPORT void icalset_mark(icalset *set);
+
124
+
126LIBICAL_ICALSS_EXPORT icalerrorenum icalset_commit(icalset *set);
+
127
+
128LIBICAL_ICALSS_EXPORT icalerrorenum icalset_add_component(icalset *set, icalcomponent *comp);
+
129
+
130LIBICAL_ICALSS_EXPORT icalerrorenum icalset_remove_component(icalset *set, icalcomponent *comp);
+
131
+
132LIBICAL_ICALSS_EXPORT int icalset_count_components(icalset *set, icalcomponent_kind kind);
+
133
+
136LIBICAL_ICALSS_EXPORT icalerrorenum icalset_select(icalset *set, icalgauge *gauge);
+
137
+
139LIBICAL_ICALSS_EXPORT icalcomponent *icalset_fetch(icalset *set, const char *uid);
+
140
+
141LIBICAL_ICALSS_EXPORT int icalset_has_uid(icalset *set, const char *uid);
+
142
+
143LIBICAL_ICALSS_EXPORT icalcomponent *icalset_fetch_match(icalset *set, icalcomponent *c);
+
144
+
147LIBICAL_ICALSS_EXPORT icalerrorenum icalset_modify(icalset *set,
+
148 icalcomponent *oldc, icalcomponent *newc);
+
149
+
153LIBICAL_ICALSS_EXPORT icalcomponent *icalset_get_current_component(icalset *set);
+
154
+
155LIBICAL_ICALSS_EXPORT icalcomponent *icalset_get_first_component(icalset *set);
+
156
+
157LIBICAL_ICALSS_EXPORT icalcomponent *icalset_get_next_component(icalset *set);
+
158
+
160LIBICAL_ICALSS_EXPORT extern icalsetiter icalsetiter_null;
+
161
+
162LIBICAL_ICALSS_EXPORT icalsetiter icalset_begin_component(icalset *set,
+
163 icalcomponent_kind kind,
+
164 icalgauge *gauge, const char *tzid);
+
165
+
167LIBICAL_ICALSS_EXPORT icalcomponent *icalsetiter_next(icalsetiter *i);
+
168
+
169LIBICAL_ICALSS_EXPORT icalcomponent *icalsetiter_prior(icalsetiter *i);
+
170
+
171LIBICAL_ICALSS_EXPORT icalcomponent *icalsetiter_deref(icalsetiter *i);
+
172
+
174LIBICAL_ICALSS_EXPORT icalcomponent *icalsetiter_to_next(icalset *set, icalsetiter *i);
+
175
+
176LIBICAL_ICALSS_EXPORT icalcomponent *icalsetiter_to_prior(icalset *set, icalsetiter *i);
+
177
+
178#endif /* !ICALSET_H */
+ +
Error handling for libical.
+
icalerrorenum
Represents the different types of errors that can be triggered in libical.
Definition icalerror.h:76
+
Routines implementing a filter for ical components.
+
icalerrorenum icalset_select(icalset *set, icalgauge *gauge)
Definition icalset.c:414
+
void icalset_free(icalset *set)
Definition icalset.c:371
+
icalerrorenum icalset_commit(icalset *set)
Definition icalset.c:394
+
void icalset_mark(icalset *set)
Definition icalset.c:389
+
icalcomponent * icalsetiter_next(icalsetiter *i)
Definition icalset.c:468
+
int icalset_register_class(icalset *set)
Registers a new derived class.
+
icalcomponent * icalset_get_current_component(icalset *set)
Definition icalset.c:444
+
icalcomponent * icalsetiter_to_next(icalset *set, icalsetiter *i)
Definition icalset.c:507
+
icalsetiter icalsetiter_null
Definition icalset.c:459
+
icalcomponent * icalset_fetch(icalset *set, const char *uid)
Definition icalset.c:424
+
icalset * icalset_new(icalset_kind kind, const char *dsn, void *options)
Generic icalset constructor.
Definition icalset.c:240
+
icalerrorenum icalset_modify(icalset *set, icalcomponent *oldc, icalcomponent *newc)
Definition icalset.c:439
+
Definition icalcomponent.h:36
+
Definition icalcomponent.c:36
+
Definition icalgaugeimpl.h:55
+
Definition icalrecur.c:925
+
Definition icalset.h:61
+
Definition icalset.h:52
+
+ + + + diff --git a/static/apidocs/icalspanlist_8h.html b/static/apidocs/icalspanlist_8h.html new file mode 100644 index 00000000..b36c821e --- /dev/null +++ b/static/apidocs/icalspanlist_8h.html @@ -0,0 +1,378 @@ + + + + + + + +Libical API Documentation: icalspanlist.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalspanlist.h File Reference
+
+
+ +

Code that supports collections of free/busy spans of time. +More...

+ +

Go to the source code of this file.

+ + + + +

+Typedefs

+typedef struct icalspanlist_impl icalspanlist
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

int * icalspanlist_as_freebusy_matrix (icalspanlist *span, int delta_t)
 Returns an hour-by-hour array of free/busy times over a given period.
 
icalcomponenticalspanlist_as_vfreebusy (icalspanlist *sl, const char *organizer, const char *attendee)
 Returns a VFREEBUSY component for a spanlist.
 
void icalspanlist_dump (icalspanlist *sl)
 (Debug) print out spanlist to STDOUT.
 
void icalspanlist_free (icalspanlist *sl)
 Destructor.
 
icalspanlisticalspanlist_from_vfreebusy (icalcomponent *comp)
 Constructs an icalspanlist from a VFREEBUSY component.
 
icalspanlisticalspanlist_new (icalset *set, struct icaltimetype start, struct icaltimetype end)
 Makes a free list from a set of VEVENT components.
 
struct icalperiodtype icalspanlist_next_free_time (icalspanlist *sl, struct icaltimetype t)
 Finds the next free time span in a spanlist.
 
+

Detailed Description

+

Code that supports collections of free/busy spans of time.

+

Function Documentation

+ +

◆ icalspanlist_as_freebusy_matrix()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int * icalspanlist_as_freebusy_matrix (icalspanlistspan,
int delta_t 
)
+
+ +

Returns an hour-by-hour array of free/busy times over a given period.

+
Parameters
+ + + +
spanA valid icalspanlist
delta_tThe time slice to divide by, in seconds. Default 3600.
+
+
+
Returns
A pointer to an array of integers containing the number of busy events in each delta_t time period. The final entry contains the value -1.
+

This calculation is somewhat tricky. This is due to the fact that the time range contains the start time, but does not contain the end time. To perform a proper calculation we subtract one second off the end times to get a true containing time.

+

Also note that if you supplying a spanlist that does not start or end on a time boundary divisible by delta_t you may get results that are not quite what you expect.

+ +
+
+ +

◆ icalspanlist_as_vfreebusy()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
icalcomponent * icalspanlist_as_vfreebusy (icalspanlistsl,
const char * organizer,
const char * attendee 
)
+
+ +

Returns a VFREEBUSY component for a spanlist.

+
Parameters
+ + + + +
slA valid icalspanlist, from icalspanlist_new()
organizerThe organizer specified as "MAILTO:user@domain"
attendeeThe attendee specified as "MAILTO:user@domain"
+
+
+
Returns
A valid icalcomponent or NULL.
+

This function returns a VFREEBUSY component for the given spanlist. The start time is mapped to DTSTART, the end time to DTEND. Each busy span is represented as a separate FREEBUSY entry. An attendee parameter is required, and organizer parameter is optional.

+ +
+
+ +

◆ icalspanlist_dump()

+ +
+
+ + + + + + + + +
void icalspanlist_dump (icalspanlistsl)
+
+ +

(Debug) print out spanlist to STDOUT.

+
Parameters
+ + +
slA valid icalspanlist.
+
+
+ +
+
+ +

◆ icalspanlist_free()

+ +
+
+ + + + + + + + +
void icalspanlist_free (icalspanlistsl)
+
+ +

Destructor.

+
Parameters
+ + +
slA valid icalspanlist
+
+
+

Frees the memory associated with the spanlist.

+ +
+
+ +

◆ icalspanlist_from_vfreebusy()

+ +
+
+ + + + + + + + +
icalspanlist * icalspanlist_from_vfreebusy (icalcomponentcomp)
+
+ +

Constructs an icalspanlist from a VFREEBUSY component.

+

Constructs an icalspanlist from the VFREEBUSY component of an icalcomponent.

+
Parameters
+ + +
compA valid icalcomponent.
+
+
+
Returns
A valid icalspanlist or NULL if no VFREEBUSY section.
+ +
+
+ +

◆ icalspanlist_new()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
icalspanlist * icalspanlist_new (icalsetset,
struct icaltimetype start,
struct icaltimetype end 
)
+
+ +

Makes a free list from a set of VEVENT components.

+
Parameters
+ + + + +
setA valid icalset containing VEVENTS
startThe free list starts at this date/time
endThe free list ends at this date/time
+
+
+
Returns
A spanlist corresponding to the VEVENTS
+

Given a set of components, a start time and an end time return a spanlist that contains the free/busy times. Start and end should be in UTC.

+ +
+
+ +

◆ icalspanlist_next_free_time()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icalperiodtype icalspanlist_next_free_time (icalspanlistsl,
struct icaltimetype t 
)
+
+ +

Finds the next free time span in a spanlist.

+
Parameters
+ + + +
slThe spanlist to search.
tThe time to start looking.
+
+
+

Given a spanlist and a time, finds the next period of time that is free.

+ +
+
+
+ + + + diff --git a/static/apidocs/icalspanlist_8h_source.html b/static/apidocs/icalspanlist_8h_source.html new file mode 100644 index 00000000..a3549f40 --- /dev/null +++ b/static/apidocs/icalspanlist_8h_source.html @@ -0,0 +1,145 @@ + + + + + + + +Libical API Documentation: icalspanlist.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalspanlist.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalspanlist.h
+
3 CREATOR: eric 21 Aug 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17=========================================================================*/
+
18#ifndef ICALSPANLIST_H
+
19#define ICALSPANLIST_H
+
20
+
21#include "libical_icalss_export.h"
+
22#include "icalset.h"
+
23
+
28typedef struct icalspanlist_impl icalspanlist;
+
29
+
42LIBICAL_ICALSS_EXPORT icalspanlist *icalspanlist_new(icalset *set,
+
43 struct icaltimetype start,
+
44 struct icaltimetype end);
+
45
+
51LIBICAL_ICALSS_EXPORT void icalspanlist_free(icalspanlist *sl);
+
52
+
61LIBICAL_ICALSS_EXPORT struct icalperiodtype icalspanlist_next_free_time(icalspanlist *sl,
+
62 struct icaltimetype t);
+
63
+
67LIBICAL_ICALSS_EXPORT void icalspanlist_dump(icalspanlist *sl);
+
68
+ +
84 const char *organizer,
+
85 const char *attendee);
+
86
+
106LIBICAL_ICALSS_EXPORT int *icalspanlist_as_freebusy_matrix(icalspanlist *span, int delta_t);
+
107
+
117LIBICAL_ICALSS_EXPORT icalspanlist *icalspanlist_from_vfreebusy(icalcomponent *comp);
+
118
+
119#endif
+ +
void icalspanlist_dump(icalspanlist *sl)
(Debug) print out spanlist to STDOUT.
Definition icalspanlist.c:210
+
int * icalspanlist_as_freebusy_matrix(icalspanlist *span, int delta_t)
Returns an hour-by-hour array of free/busy times over a given period.
Definition icalspanlist.c:290
+
icalspanlist * icalspanlist_from_vfreebusy(icalcomponent *comp)
Constructs an icalspanlist from a VFREEBUSY component.
Definition icalspanlist.c:402
+
void icalspanlist_free(icalspanlist *sl)
Destructor.
Definition icalspanlist.c:192
+
icalspanlist * icalspanlist_new(icalset *set, struct icaltimetype start, struct icaltimetype end)
Makes a free list from a set of VEVENT components.
Definition icalspanlist.c:90
+
icalcomponent * icalspanlist_as_vfreebusy(icalspanlist *sl, const char *organizer, const char *attendee)
Returns a VFREEBUSY component for a spanlist.
Definition icalspanlist.c:351
+
struct icalperiodtype icalspanlist_next_free_time(icalspanlist *sl, struct icaltimetype t)
Finds the next free time span in a spanlist.
Definition icalspanlist.c:226
+
Definition icalcomponent.c:36
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icalset.h:61
+
Definition icalspanlist.c:29
+
struct icaltimetype start
Definition icalspanlist.c:31
+
struct icaltimetype end
Definition icalspanlist.c:32
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icalspanlist__cxx_8h.html b/static/apidocs/icalspanlist__cxx_8h.html new file mode 100644 index 00000000..3bf1e64b --- /dev/null +++ b/static/apidocs/icalspanlist__cxx_8h.html @@ -0,0 +1,106 @@ + + + + + + + +Libical API Documentation: icalspanlist_cxx.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalspanlist_cxx.h File Reference
+
+
+ +

C++ class wrapping the icalspanlist data structure. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

class  LibICal::ICalSpanList
 
+

Detailed Description

+

C++ class wrapping the icalspanlist data structure.

+
Author
Critical Path
+

(C) COPYRIGHT 2001, Critical Path

+

This library is free software; you can redistribute it and/or modify it under the terms of either:

+

The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

+

Or:

+

The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

+
+ + + + diff --git a/static/apidocs/icalspanlist__cxx_8h_source.html b/static/apidocs/icalspanlist__cxx_8h_source.html new file mode 100644 index 00000000..dd6f7fb6 --- /dev/null +++ b/static/apidocs/icalspanlist__cxx_8h_source.html @@ -0,0 +1,155 @@ + + + + + + + +Libical API Documentation: icalspanlist_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalspanlist_cxx.h
+
+
+Go to the documentation of this file.
1
+
20#ifndef ICALSPANLIST_CXX_H
+
21#define ICALSPANLIST_CXX_H
+
22
+
23#include "libical_icalss_export.h"
+
24
+
25extern "C"
+
26{
+
27#include "icalcomponent.h"
+
28#include "icalspanlist.h"
+
29#include "icaltime.h"
+
30}
+
31
+
32#include <vector>
+
33
+
34namespace LibICal
+
35{
+
36
+
37class VComponent;
+
38
+
46class LIBICAL_ICALSS_EXPORT ICalSpanList
+
47{
+
48public:
+ +
50 ICalSpanList(const ICalSpanList &v);
+
51
+ +
54
+
56 explicit ICalSpanList(icalcomponent *comp);
+
57
+
59 explicit ICalSpanList(VComponent &comp);
+
60
+ +
63
+
65 VComponent *get_vfreebusy(const char *organizer, const char *attendee);
+
66
+
67 ICalSpanList &operator=(const ICalSpanList &);
+
68
+
70 operator icalspanlist *()
+
71 {
+
72 return data;
+
73 }
+
74
+
76 std::vector < int >as_vector(int delta_t);
+
77
+
79 void dump();
+
80
+
81private:
+
82 icalspanlist *data;
+
83};
+
84
+
85} // namespace LibICal;
+
86
+
87#endif
+
Definition icalspanlist_cxx.h:47
+
ICalSpanList(icalset *set, icaltimetype start, icaltimetype end)
+
ICalSpanList(icalcomponent *comp)
+
ICalSpanList(VComponent &comp)
+
VComponent * get_vfreebusy(const char *organizer, const char *attendee)
+
std::vector< int > as_vector(int delta_t)
+ + +
A class wrapping the libical icalcomponent functions.
Definition vcomponent_cxx.h:48
+ +
Code that supports collections of free/busy spans of time.
+
struct icaltimetype is a pseudo-object that abstracts time handling.
+
Definition icalcomponent.c:36
+
Definition icalset.h:61
+
Definition icalspanlist.c:29
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icalssyacc_8h_source.html b/static/apidocs/icalssyacc_8h_source.html new file mode 100644 index 00000000..07de7a6f --- /dev/null +++ b/static/apidocs/icalssyacc_8h_source.html @@ -0,0 +1,185 @@ + + + + + + + +Libical API Documentation: icalssyacc.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalssyacc.h
+
+
+
1/* A Bison parser, made by GNU Bison 2.3. */
+
2
+
3/* Skeleton interface for Bison's Yacc-like parsers in C
+
4
+
5 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+
6 Free Software Foundation, Inc.
+
7
+
8 This program is free software; you can redistribute it and/or modify
+
9 it under the terms of the GNU General Public License as published by
+
10 the Free Software Foundation; either version 2, or (at your option)
+
11 any later version.
+
12
+
13 This program is distributed in the hope that it will be useful,
+
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
+
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
16 GNU General Public License for more details.
+
17
+
18 You should have received a copy of the GNU General Public License
+
19 along with this program; if not, write to the Free Software
+
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
+
21 Boston, MA 02110-1301, USA. */
+
22
+
23/* As a special exception, you may create a larger work that contains
+
24 part or all of the Bison parser skeleton and distribute that work
+
25 under terms of your choice, so long as that work isn't itself a
+
26 parser generator using the skeleton or a modified version thereof
+
27 as a parser skeleton. Alternatively, if you modify or redistribute
+
28 the parser skeleton itself, you may (at your option) remove this
+
29 special exception, which will cause the skeleton and the resulting
+
30 Bison output files to be licensed under the GNU General Public
+
31 License without this special exception.
+
32
+
33 This special exception was added by the Free Software Foundation in
+
34 version 2.2 of Bison. */
+
35
+
36/* Tokens. */
+
37#ifndef YYTOKENTYPE
+
38# define YYTOKENTYPE
+
39 /* Put the tokens into the symbol table, so that GDB and other debuggers
+
40 know about them. */
+
41 enum yytokentype {
+
42 STRING = 258,
+
43 SELECT = 259,
+
44 FROM = 260,
+
45 WHERE = 261,
+
46 COMMA = 262,
+
47 QUOTE = 263,
+
48 EQUALS = 264,
+
49 NOTEQUALS = 265,
+
50 LESS = 266,
+
51 GREATER = 267,
+
52 LESSEQUALS = 268,
+
53 GREATEREQUALS = 269,
+
54 AND = 270,
+
55 OR = 271,
+
56 EOL = 272,
+
57 END = 273,
+
58 IS = 274,
+
59 NOT = 275,
+
60 SQLNULL = 276
+
61 };
+
62#endif
+
63/* Tokens. */
+
64#define STRING 258
+
65#define SELECT 259
+
66#define FROM 260
+
67#define WHERE 261
+
68#define COMMA 262
+
69#define QUOTE 263
+
70#define EQUALS 264
+
71#define NOTEQUALS 265
+
72#define LESS 266
+
73#define GREATER 267
+
74#define LESSEQUALS 268
+
75#define GREATEREQUALS 269
+
76#define AND 270
+
77#define OR 271
+
78#define EOL 272
+
79#define END 273
+
80#define IS 274
+
81#define NOT 275
+
82#define SQLNULL 276
+
83
+
84
+
85
+
86
+
87#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+
88typedef union YYSTYPE
+
89{
+
90 char* v_string;
+
91}
+
92/* Line 1489 of yacc.c. */
+
93 YYSTYPE;
+
94# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+
95# define YYSTYPE_IS_DECLARED 1
+
96# define YYSTYPE_IS_TRIVIAL 1
+
97#endif
+
98
+
99extern YYSTYPE sslval;
+
Definition icalssyacc.c:198
+
+ + + + diff --git a/static/apidocs/icaltime_8h.html b/static/apidocs/icaltime_8h.html new file mode 100644 index 00000000..18344443 --- /dev/null +++ b/static/apidocs/icaltime_8h.html @@ -0,0 +1,1123 @@ + + + + + + + +Libical API Documentation: icaltime.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icaltime.h File Reference
+
+
+ +

struct icaltimetype is a pseudo-object that abstracts time handling. +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Data Structures

struct  icaltime_span
 
struct  icaltimetype
 
+ + + + + +

+Macros

+#define ICALTIMETYPE_INITIALIZER   { 0, 0, 0, 0, 0, 0, 0, 0, 0}
 
+#define ICALTIMEZONE_DEFINED
 
+ + + + + + + +

+Typedefs

+typedef struct icaltime_span icaltime_span
 
+typedef struct icaltimetype icaltimetype
 
+typedef struct _icaltimezone icaltimezone
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

void icaltime_adjust (struct icaltimetype *tt, const int days, const int hours, const int minutes, const int seconds)
 Internal, shouldn't be part of the public API.
 
const char * icaltime_as_ical_string (const struct icaltimetype tt)
 Returns a string representation of the time, in RFC5545 format.
 
char * icaltime_as_ical_string_r (const struct icaltimetype tt)
 Returns a string representation of the time, in RFC5545 format.
 
time_t icaltime_as_timet (const struct icaltimetype)
 
time_t icaltime_as_timet_with_zone (const struct icaltimetype tt, const icaltimezone *zone)
 Returns the time as seconds past the UNIX epoch, using the given timezone.
 
int icaltime_compare (const struct icaltimetype a, const struct icaltimetype b)
 Returns -1, 0, or 1 to indicate that a is less than b, a equals b, or a is greater than b.
 
int icaltime_compare_date_only (const struct icaltimetype a, const struct icaltimetype b)
 Like icaltime_compare, but only use the date parts.
 
int icaltime_compare_date_only_tz (const struct icaltimetype a, const struct icaltimetype b, icaltimezone *tz)
 Like icaltime_compare, but only use the date parts; accepts timezone.
 
struct icaltimetype icaltime_convert_to_zone (const struct icaltimetype tt, icaltimezone *zone)
 Converts time to a given timezone.
 
struct icaltimetype icaltime_current_time_with_zone (const icaltimezone *zone)
 Convenience constructor.
 
int icaltime_day_of_week (const struct icaltimetype t)
 Returns the day of the week of the given time.
 
+int icaltime_day_of_year (const struct icaltimetype t)
 Returns the day of the year, counting from 1 (Jan 1st).
 
int icaltime_days_in_month (const int month, const int year)
 
int icaltime_days_in_year (const int year)
 
struct icaltimetype icaltime_from_day_of_year (const int doy, const int year)
 Constructor.
 
struct icaltimetype icaltime_from_string (const char *str)
 Constructor.
 
struct icaltimetype icaltime_from_timet_with_zone (const time_t tm, const int is_date, const icaltimezone *zone)
 Constructor.
 
+const icaltimezoneicaltime_get_timezone (const struct icaltimetype t)
 Returns the timezone.
 
+const char * icaltime_get_tzid (const struct icaltimetype t)
 Returns the tzid, or NULL for a floating time.
 
int icaltime_is_date (const struct icaltimetype t)
 Returns true if time is a DATE.
 
int icaltime_is_leap_year (const int year)
 Returns whether the specified year is a leap year.
 
+int icaltime_is_null_time (const struct icaltimetype t)
 Returns true if the time is null.
 
int icaltime_is_utc (const struct icaltimetype t)
 Returns true if the time is relative to UTC zone.
 
int icaltime_is_valid_time (const struct icaltimetype t)
 Returns false if the time is clearly invalid, but is not null.
 
struct icaltimetype icaltime_normalize (const struct icaltimetype tt)
 Normalizes the icaltime, so all of the time components are in their normal ranges.
 
struct icaltimetype icaltime_null_date (void)
 Constructor.
 
struct icaltimetype icaltime_null_time (void)
 Constructor.
 
struct icaltimetype icaltime_set_timezone (struct icaltimetype *t, const icaltimezone *zone)
 Sets the timezone.
 
int icaltime_span_contains (icaltime_span *s, icaltime_span *container)
 Returns true if the span is totally within the containing span.
 
struct icaltime_span icaltime_span_new (struct icaltimetype dtstart, struct icaltimetype dtend, int is_busy)
 Builds an icaltimespan given a start time, end time and busy value.
 
int icaltime_span_overlaps (icaltime_span *s1, icaltime_span *s2)
 Returns true if the two spans overlap.
 
int icaltime_start_doy_week (const struct icaltimetype t, int fdow)
 Returns the day of the year for the first day of the week that the given time is within.
 
struct icaltimetype icaltime_today (void)
 Convenience constructor.
 
int icaltime_week_number (const struct icaltimetype t)
 Returns the week number for the week the given time is within.
 
+

Detailed Description

+

struct icaltimetype is a pseudo-object that abstracts time handling.

+

It can represent either a DATE or a DATE-TIME (floating, UTC or in a given timezone), and it keeps track internally of its native timezone.

+

The typical usage is to call the correct constructor specifying the desired timezone. If this is not known until a later time, the correct behavior is to specify a NULL timezone and call icaltime_convert_to_zone() at a later time.

+

There are several ways to create a new icaltimetype:

+ +

italtimetype objects can be converted to different formats:

+ +

Accessor methods include:

+ +

Query methods include:

+ +

Modify, compare and utility methods include:

+ +

Function Documentation

+ +

◆ icaltime_adjust()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void icaltime_adjust (struct icaltimetypett,
const int days,
const int hours,
const int minutes,
const int seconds 
)
+
+ +

Internal, shouldn't be part of the public API.

+

Adds or subtracts a number of days, hours, minutes and seconds.

+

Adds or subtracts a time from a icaltimetype. This time is given as a number of days, hours, minutes and seconds.

+
Note
This function is exactly the same as icaltimezone_adjust_change() except for the type of the first parameter.
+ +
+
+ +

◆ icaltime_as_ical_string()

+ +
+
+ + + + + + + + +
const char * icaltime_as_ical_string (const struct icaltimetype tt)
+
+ +

Returns a string representation of the time, in RFC5545 format.

+
Ownership
The created string is owned by libical.
+ +
+
+ +

◆ icaltime_as_ical_string_r()

+ +
+
+ + + + + + + + +
char * icaltime_as_ical_string_r (const struct icaltimetype tt)
+
+ +

Returns a string representation of the time, in RFC5545 format.

+
Ownership
The string is owned by the caller.
+ +
+
+ +

◆ icaltime_as_timet()

+ +
+
+ + + + + + + + +
time_t icaltime_as_timet (const struct icaltimetype tt)
+
+

Returns the time as seconds past the UNIX epoch.

+

This function probably won't do what you expect. In particular, you should only pass an icaltime in UTC, since no conversion is done. Even in that case, it's probably better to just use icaltime_as_timet_with_zone().

+

The return value is defined for dates ranging from 1902-01-01 (incl.) up to 10000-01-01 (excl.) if time_t has a size of 64 bit and up to 2038-01-18 (excl.) if it has a size of 32 bit.

+ +
+
+ +

◆ icaltime_as_timet_with_zone()

+ +
+
+ + + + + + + + + + + + + + + + + + +
time_t icaltime_as_timet_with_zone (const struct icaltimetype tt,
const icaltimezonezone 
)
+
+ +

Returns the time as seconds past the UNIX epoch, using the given timezone.

+

This convenience method combines a call to icaltime_convert_to_zone() with a call to icaltime_as_timet(). If the input timezone is null, no conversion is done; that is, the time is simply returned as time_t in its native timezone.

+ +
+
+ +

◆ icaltime_compare()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_compare (const struct icaltimetype a,
const struct icaltimetype b 
)
+
+ +

Returns -1, 0, or 1 to indicate that a is less than b, a equals b, or a is greater than b.

+

This converts both times to the UTC timezone and compares them.

+ +
+
+ +

◆ icaltime_compare_date_only()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_compare_date_only (const struct icaltimetype a,
const struct icaltimetype b 
)
+
+ +

Like icaltime_compare, but only use the date parts.

+

This converts both times to the UTC timezone and compares their date components.

+ +
+
+ +

◆ icaltime_compare_date_only_tz()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icaltime_compare_date_only_tz (const struct icaltimetype a,
const struct icaltimetype b,
icaltimezonetz 
)
+
+ +

Like icaltime_compare, but only use the date parts; accepts timezone.

+

This converts both times to the given timezone and compares their date components.

+ +
+
+ +

◆ icaltime_convert_to_zone()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaltimetype icaltime_convert_to_zone (const struct icaltimetype tt,
icaltimezonezone 
)
+
+ +

Converts time to a given timezone.

+

Converts a time from its native timezone to a given timezone.

+

If tt is a date, the timezone is not converted and the returned time is an exact copy of tt.

+

If it's a floating time, the returned object represents the same time relative to zone. For example, if tt represents 9:30 AM floating and zone is the GMT timezone, the returned object will represent 9:30 AM GMT.

+

Otherwise, the time will be converted to zone, and its timezone property updated to zone. For example, July 20 1969, 8:17 PM UTC would be converted to July 20 1969, 4:17 PM EDT.

+ +
+
+ +

◆ icaltime_current_time_with_zone()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_current_time_with_zone (const icaltimezonezone)
+
+ +

Convenience constructor.

+
Returns
The current time in the given timezone, as an icaltimetype.
+ +
+
+ +

◆ icaltime_day_of_week()

+ +
+
+ + + + + + + + +
int icaltime_day_of_week (const struct icaltimetype t)
+
+ +

Returns the day of the week of the given time.

+

Sunday is 1, and Saturday is 7.

+ +
+
+ +

◆ icaltime_days_in_month()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_days_in_month (const int month,
const int year 
)
+
+

Returns the number of days in the given month.

+ +
+
+ +

◆ icaltime_days_in_year()

+ +
+
+ + + + + + + + +
int icaltime_days_in_year (const int year)
+
+

Returns the number of days in this year.

+ +
+
+ +

◆ icaltime_from_day_of_year()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaltimetype icaltime_from_day_of_year (const int doy,
const int year 
)
+
+ +

Constructor.

+

Creates a new time, given a day of year and a year.

+

Note that Jan 1 is day #1, not 0.

+ +
+
+ +

◆ icaltime_from_string()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_from_string (const char * str)
+
+ +

Constructor.

+

Creates a time from an ISO format string.

+ +
+
+ +

◆ icaltime_from_timet_with_zone()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
struct icaltimetype icaltime_from_timet_with_zone (const time_t tm,
const int is_date,
const icaltimezonezone 
)
+
+ +

Constructor.

+
Parameters
+ + + + +
tmThe time expressed as seconds past UNIX epoch
is_dateBoolean: 1 means we should treat tm as a DATE
zoneThe timezone tm is in, NULL means to treat tm as a floating time
+
+
+

Returns a new icaltime instance, initialized to the given time, optionally using the given timezone.

+

If the caller specifies the is_date param as TRUE, the returned object is of DATE type, otherwise the input is meant to be of DATE-TIME type. If the zone is not specified (NULL zone param) the time is taken to be floating, that is, valid in any timezone. Note that, in addition to the uses specified in [RFC5545], this can be used when doing simple math on couples of times. If the zone is specified (UTC or otherwise), it's stored in the object and it's used as the native timezone for this object. This means that the caller can convert this time to a different target timezone with no need to store the source timezone.

+ +
+
+ +

◆ icaltime_is_date()

+ +
+
+ + + + + + + + +
int icaltime_is_date (const struct icaltimetype t)
+
+ +

Returns true if time is a DATE.

+

The options are DATE type, which returns true, or DATE-TIME, which returns false.

+ +
+
+ +

◆ icaltime_is_leap_year()

+ +
+
+ + + + + + + + +
int icaltime_is_leap_year (const int year)
+
+ +

Returns whether the specified year is a leap year.

+

Year is the normal year, e.g. 2001.

+ +
+
+ +

◆ icaltime_is_utc()

+ +
+
+ + + + + + + + +
int icaltime_is_utc (const struct icaltimetype t)
+
+ +

Returns true if the time is relative to UTC zone.

+ +
+
+ +

◆ icaltime_is_valid_time()

+ +
+
+ + + + + + + + +
int icaltime_is_valid_time (const struct icaltimetype t)
+
+ +

Returns false if the time is clearly invalid, but is not null.

+

This is usually the result of creating a new time type but not clearing it, or setting one of the flags to an illegal value.

+ +
+
+ +

◆ icaltime_normalize()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_normalize (const struct icaltimetype tt)
+
+ +

Normalizes the icaltime, so all of the time components are in their normal ranges.

+

For instance, given a time with minutes=70, the minutes will be reduces to 10, and the hour incremented. This allows the caller to do arithmetic on times without worrying about overflow or underflow.

+ +
+
+ +

◆ icaltime_null_date()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_null_date (void )
+
+ +

Constructor.

+
Returns
A null date, which indicates no time has been set.
+ +
+
+ +

◆ icaltime_null_time()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_null_time (void )
+
+ +

Constructor.

+
Returns
A null time, which indicates no time has been set. This time represents the beginning of the epoch.
+ +
+
+ +

◆ icaltime_set_timezone()

+ +
+
+ + + + + + + + + + + + + + + + + + +
struct icaltimetype icaltime_set_timezone (struct icaltimetypet,
const icaltimezonezone 
)
+
+ +

Sets the timezone.

+

Forces the icaltime to be interpreted relative to another timezone. The returned time represents the same time as t, but relative to the new zone. For example, modifying July 20 1969, 8:17 PM UTC to the EDT time zone would return a time representing July 20 1969, 8:17 PM EDT.

+

If you need to do timezone conversion, applying offset adjustments, then you should use icaltime_convert_to_zone instead.

+

If t is of type DATE, its timezone is not modified and the returned time is an exact copy of t.

+ +
+
+ +

◆ icaltime_span_contains()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_span_contains (icaltime_spans,
icaltime_spancontainer 
)
+
+ +

Returns true if the span is totally within the containing span.

+
Parameters
+ + + +
sThe span to test for.
containerThe span to test against.
+
+
+
Returns
boolean value.
+ +
+
+ +

◆ icaltime_span_new()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
struct icaltime_span icaltime_span_new (struct icaltimetype dtstart,
struct icaltimetype dtend,
int is_busy 
)
+
+ +

Builds an icaltimespan given a start time, end time and busy value.

+
Parameters
+ + + + +
dtstartThe beginning time of the span, can be a date-time or just a date.
dtendThe end time of the span.
is_busyA boolean value, 0/1.
+
+
+
Returns
A span using the supplied values. The times are specified in UTC.
+ +
+
+ +

◆ icaltime_span_overlaps()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_span_overlaps (icaltime_spans1,
icaltime_spans2 
)
+
+ +

Returns true if the two spans overlap.

+
Parameters
+ + + +
s1First span to test
s2Second span to test
+
+
+
Returns
boolean value
+

The result is calculated by testing if the start time of s1 is contained by the s2 span, or if the end time of s1 is contained by the s2 span.

+

Also returns true if the spans are equal.

+

Note, this will return false if the spans are adjacent.

+ +
+
+ +

◆ icaltime_start_doy_week()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltime_start_doy_week (const struct icaltimetype t,
int fdow 
)
+
+ +

Returns the day of the year for the first day of the week that the given time is within.

+

Returns the day of the year for the first day of the week .

+

This uses the first day of the week that contains the given time, which is a Sunday. It returns the day of the year for the resulting day.

+ +
+
+ +

◆ icaltime_today()

+ +
+
+ + + + + + + + +
struct icaltimetype icaltime_today (void )
+
+ +

Convenience constructor.

+
Returns
The current day as an icaltimetype, with is_date set.
+ +
+
+ +

◆ icaltime_week_number()

+ +
+
+ + + + + + + + +
int icaltime_week_number (const struct icaltimetype t)
+
+ +

Returns the week number for the week the given time is within.

+ +
+
+
+ + + + diff --git a/static/apidocs/icaltime_8h_source.html b/static/apidocs/icaltime_8h_source.html new file mode 100644 index 00000000..a21c8ada --- /dev/null +++ b/static/apidocs/icaltime_8h_source.html @@ -0,0 +1,272 @@ + + + + + + + +Libical API Documentation: icaltime.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaltime.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icaltime.h
+
3 CREATOR: eric 02 June 2000
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 The Original Code is eric. The Initial Developer of the Original
+
19 Code is Eric Busboom
+
20======================================================================*/
+
21
+
80#ifndef ICALTIME_H
+
81#define ICALTIME_H
+
82
+
83#include "libical_ical_export.h"
+
84
+
85#include <time.h>
+
86
+
87/* An opaque struct representing a timezone. We declare this here to avoid
+
88 a circular dependency. */
+
89#if !defined(ICALTIMEZONE_DEFINED)
+
90#define ICALTIMEZONE_DEFINED
+
91typedef struct _icaltimezone icaltimezone;
+
92#endif
+
93
+ +
96{
+
97 time_t start;
+
98 time_t end;
+
99 int is_busy;
+
100};
+
101
+
102typedef struct icaltime_span icaltime_span;
+
103
+ +
105{
+
106 int year;
+
107 int month;
+
108 int day;
+
109 int hour;
+
110 int minute;
+
111 int second;
+
112
+ + + +
118};
+
119
+
120typedef struct icaltimetype icaltimetype;
+
121
+
122#define ICALTIMETYPE_INITIALIZER { 0, 0, 0, 0, 0, 0, 0, 0, 0}
+
123
+
129LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_null_time(void);
+
130
+
135LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_null_date(void);
+
136
+
141LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_current_time_with_zone(const icaltimezone *zone);
+
142
+
147LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_today(void);
+
148
+
172LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_from_timet_with_zone(const time_t tm,
+
173 const int is_date,
+
174 const icaltimezone *zone);
+
175
+
185LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_from_string(const char *str);
+
186
+
193LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_from_day_of_year(const int doy, const int year);
+
194
+
205LIBICAL_ICAL_EXPORT time_t icaltime_as_timet(const struct icaltimetype);
+
206
+
215LIBICAL_ICAL_EXPORT time_t icaltime_as_timet_with_zone(const struct icaltimetype tt,
+
216 const icaltimezone *zone);
+
217
+
224LIBICAL_ICAL_EXPORT const char *icaltime_as_ical_string(const struct icaltimetype tt);
+
225
+
232LIBICAL_ICAL_EXPORT char *icaltime_as_ical_string_r(const struct icaltimetype tt);
+
233
+
235LIBICAL_ICAL_EXPORT const icaltimezone *icaltime_get_timezone(const struct icaltimetype t);
+
236
+
238LIBICAL_ICAL_EXPORT const char *icaltime_get_tzid(const struct icaltimetype t);
+
239
+
254LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_set_timezone(struct icaltimetype *t,
+
255 const icaltimezone *zone);
+
256
+
260LIBICAL_ICAL_EXPORT int icaltime_day_of_year(const struct icaltimetype t);
+
261
+
266LIBICAL_ICAL_EXPORT int icaltime_day_of_week(const struct icaltimetype t);
+
267
+
276LIBICAL_ICAL_EXPORT int icaltime_start_doy_week(const struct icaltimetype t, int fdow);
+
277
+
283LIBICAL_ICAL_EXPORT int icaltime_week_number(const struct icaltimetype t);
+
284
+
286LIBICAL_ICAL_EXPORT int icaltime_is_null_time(const struct icaltimetype t);
+
287
+
294LIBICAL_ICAL_EXPORT int icaltime_is_valid_time(const struct icaltimetype t);
+
295
+
301LIBICAL_ICAL_EXPORT int icaltime_is_date(const struct icaltimetype t);
+
302
+
307LIBICAL_ICAL_EXPORT int icaltime_is_utc(const struct icaltimetype t);
+
308
+
315LIBICAL_ICAL_EXPORT int icaltime_compare(const struct icaltimetype a, const struct icaltimetype b);
+
316
+
322LIBICAL_ICAL_EXPORT int icaltime_compare_date_only(const struct icaltimetype a,
+
323 const struct icaltimetype b);
+
324
+
331LIBICAL_ICAL_EXPORT int icaltime_compare_date_only_tz(const struct icaltimetype a,
+
332 const struct icaltimetype b,
+
333 icaltimezone *tz);
+
334
+
345LIBICAL_ICAL_EXPORT void icaltime_adjust(struct icaltimetype *tt,
+
346 const int days, const int hours,
+
347 const int minutes, const int seconds);
+
348
+
358LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_normalize(const struct icaltimetype tt);
+
359
+
377LIBICAL_ICAL_EXPORT struct icaltimetype icaltime_convert_to_zone(const struct icaltimetype tt,
+ +
379
+
381LIBICAL_ICAL_EXPORT int icaltime_days_in_month(const int month, const int year);
+
382
+
388LIBICAL_ICAL_EXPORT int icaltime_is_leap_year(const int year);
+
389
+
391LIBICAL_ICAL_EXPORT int icaltime_days_in_year(const int year);
+
392
+
402LIBICAL_ICAL_EXPORT struct icaltime_span icaltime_span_new(struct icaltimetype dtstart,
+
403 struct icaltimetype dtend, int is_busy);
+
404
+
418LIBICAL_ICAL_EXPORT int icaltime_span_overlaps(icaltime_span *s1, icaltime_span *s2);
+
419
+
428LIBICAL_ICAL_EXPORT int icaltime_span_contains(icaltime_span *s, icaltime_span *container);
+
429
+
430#endif /* !ICALTIME_H */
+
int icaltime_is_utc(const struct icaltimetype t)
Returns true if the time is relative to UTC zone.
Definition icaltime.c:621
+
int icaltime_compare(const struct icaltimetype a, const struct icaltimetype b)
Returns -1, 0, or 1 to indicate that a is less than b, a equals b, or a is greater than b.
Definition icaltime.c:635
+
int icaltime_compare_date_only(const struct icaltimetype a, const struct icaltimetype b)
Like icaltime_compare, but only use the date parts.
Definition icaltime.c:690
+
int icaltime_span_contains(icaltime_span *s, icaltime_span *container)
Returns true if the span is totally within the containing span.
Definition icaltime.c:957
+
struct icaltimetype icaltime_from_string(const char *str)
Constructor.
Definition icaltime.c:354
+
const char * icaltime_get_tzid(const struct icaltimetype t)
Returns the tzid, or NULL for a floating time.
Definition icaltime.c:876
+
struct icaltimetype icaltime_from_day_of_year(const int doy, const int year)
Constructor.
Definition icaltime.c:544
+
struct icaltimetype icaltime_current_time_with_zone(const icaltimezone *zone)
Convenience constructor.
Definition icaltime.c:236
+
int icaltime_day_of_year(const struct icaltimetype t)
Returns the day of the year, counting from 1 (Jan 1st).
Definition icaltime.c:537
+
int icaltime_start_doy_week(const struct icaltimetype t, int fdow)
Returns the day of the year for the first day of the week that the given time is within.
Definition icaltime.c:494
+
struct icaltime_span icaltime_span_new(struct icaltimetype dtstart, struct icaltimetype dtend, int is_busy)
Builds an icaltimespan given a start time, end time and busy value.
Definition icaltime.c:901
+
time_t icaltime_as_timet_with_zone(const struct icaltimetype tt, const icaltimezone *zone)
Returns the time as seconds past the UNIX epoch, using the given timezone.
Definition icaltime.c:277
+
const icaltimezone * icaltime_get_timezone(const struct icaltimetype t)
Returns the timezone.
Definition icaltime.c:871
+
int icaltime_week_number(const struct icaltimetype t)
Returns the week number for the week the given time is within.
Definition icaltime.c:518
+
int icaltime_day_of_week(const struct icaltimetype t)
Returns the day of the week of the given time.
Definition icaltime.c:476
+
int icaltime_is_date(const struct icaltimetype t)
Returns true if time is a DATE.
Definition icaltime.c:616
+
struct icaltimetype icaltime_today(void)
Convenience constructor.
Definition icaltime.c:241
+
time_t icaltime_as_timet(const struct icaltimetype)
Definition icaltime.c:246
+
struct icaltimetype icaltime_null_date(void)
Constructor.
Definition icaltime.c:588
+
struct icaltimetype icaltime_from_timet_with_zone(const time_t tm, const int is_date, const icaltimezone *zone)
Constructor.
Definition icaltime.c:197
+
int icaltime_span_overlaps(icaltime_span *s1, icaltime_span *s2)
Returns true if the two spans overlap.
Definition icaltime.c:933
+
const char * icaltime_as_ical_string(const struct icaltimetype tt)
Returns a string representation of the time, in RFC5545 format.
Definition icaltime.c:315
+
int icaltime_is_null_time(const struct icaltimetype t)
Returns true if the time is null.
Definition icaltime.c:626
+
int icaltime_days_in_month(const int month, const int year)
Definition icaltime.c:450
+
struct icaltimetype icaltime_convert_to_zone(const struct icaltimetype tt, icaltimezone *zone)
Converts time to a given timezone.
Definition icaltime.c:842
+
int icaltime_is_valid_time(const struct icaltimetype t)
Returns false if the time is clearly invalid, but is not null.
Definition icaltime.c:607
+
int icaltime_compare_date_only_tz(const struct icaltimetype a, const struct icaltimetype b, icaltimezone *tz)
Like icaltime_compare, but only use the date parts; accepts timezone.
Definition icaltime.c:720
+
int icaltime_days_in_year(const int year)
Definition icaltime.c:439
+
int icaltime_is_leap_year(const int year)
Returns whether the specified year is a leap year.
Definition icaltime.c:430
+
struct icaltimetype icaltime_normalize(const struct icaltimetype tt)
Normalizes the icaltime, so all of the time components are in their normal ranges.
Definition icaltime.c:346
+
struct icaltimetype icaltime_set_timezone(struct icaltimetype *t, const icaltimezone *zone)
Sets the timezone.
Definition icaltime.c:885
+
void icaltime_adjust(struct icaltimetype *tt, const int days, const int hours, const int minutes, const int seconds)
Internal, shouldn't be part of the public API.
Definition icaltime.c:757
+
struct icaltimetype icaltime_null_time(void)
Constructor.
Definition icaltime.c:579
+
char * icaltime_as_ical_string_r(const struct icaltimetype tt)
Returns a string representation of the time, in RFC5545 format.
Definition icaltime.c:324
+
Definition icaltimezoneimpl.h:23
+
Definition icaltime.h:96
+
time_t start
Definition icaltime.h:97
+
time_t end
Definition icaltime.h:98
+
int is_busy
Definition icaltime.h:99
+
Definition icaltime.h:105
+
int is_date
Definition icaltime.h:113
+
int year
Definition icaltime.h:106
+
int is_daylight
Definition icaltime.h:115
+
const icaltimezone * zone
Definition icaltime.h:117
+
int month
Definition icaltime.h:107
+
+ + + + diff --git a/static/apidocs/icaltimezone_8h.html b/static/apidocs/icaltimezone_8h.html new file mode 100644 index 00000000..6c0cdbd8 --- /dev/null +++ b/static/apidocs/icaltimezone_8h.html @@ -0,0 +1,597 @@ + + + + + + + +Libical API Documentation: icaltimezone.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icaltimezone.h File Reference
+
+
+ +

Timezone handling routines. +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef struct _icaltimezone icaltimezone
 An opaque struct representing a timezone. We declare this here to avoid a circular dependency.
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

void free_zone_directory (void)
 
const char * get_zone_directory (void)
 
+void icaltimezone_array_append_from_vtimezone (icalarray *timezones, icalcomponent *child)
 
+void icaltimezone_array_free (icalarray *timezones)
 
+icalarrayicaltimezone_array_new (void)
 
+void icaltimezone_convert_time (struct icaltimetype *tt, icaltimezone *from_zone, icaltimezone *to_zone)
 
+icaltimezoneicaltimezone_copy (icaltimezone *originalzone)
 
int icaltimezone_dump_changes (icaltimezone *zone, int max_year, FILE *fp)
 Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year given.
 
+void icaltimezone_expand_vtimezone (icalcomponent *comp, int end_year, icalarray *changes)
 
void icaltimezone_free (icaltimezone *zone, int free_struct)
 Frees all memory used for the icaltimezone.
 
+void icaltimezone_free_builtin_timezones (void)
 Releases builtin timezone memory.
 
+icaltimezoneicaltimezone_get_builtin_timezone (const char *location)
 Returns a single builtin timezone, given its Olson city name.
 
+icaltimezoneicaltimezone_get_builtin_timezone_from_offset (int offset, const char *tzname)
 Returns a single builtin timezone, given its offset from UTC.
 
+icaltimezoneicaltimezone_get_builtin_timezone_from_tzid (const char *tzid)
 Returns a single builtin timezone, given its TZID.
 
icalarrayicaltimezone_get_builtin_timezones (void)
 Returns an icalarray of icaltimezone structs, one for each builtin timezone.
 
+int icaltimezone_get_builtin_tzdata (void)
 
+icalcomponenticaltimezone_get_component (icaltimezone *zone)
 Returns the VTIMEZONE component of a timezone.
 
const char * icaltimezone_get_display_name (icaltimezone *zone)
 Returns the timezone name to display to the user.
 
+double icaltimezone_get_latitude (icaltimezone *zone)
 Returns the latitude of a builtin timezone.
 
const char * icaltimezone_get_location (icaltimezone *zone)
 
+char * icaltimezone_get_location_from_vtimezone (icalcomponent *component)
 Gets the LOCATION or X-LIC-LOCATION property from a VTIMEZONE.
 
+double icaltimezone_get_longitude (icaltimezone *zone)
 Returns the longitude of a builtin timezone.
 
const char * icaltimezone_get_tzid (icaltimezone *zone)
 
const char * icaltimezone_get_tznames (icaltimezone *zone)
 
char * icaltimezone_get_tznames_from_vtimezone (icalcomponent *component)
 Gets the TZNAMEs used for the last STANDARD & DAYLIGHT components in a VTIMEZONE.
 
int icaltimezone_get_utc_offset (icaltimezone *zone, struct icaltimetype *tt, int *is_daylight)
 Calculates the UTC offset of a given local time in the given timezone.
 
int icaltimezone_get_utc_offset_of_utc_time (icaltimezone *zone, struct icaltimetype *tt, int *is_daylight)
 Calculates the UTC offset of a given UTC time in the given timezone.
 
+icaltimezoneicaltimezone_get_utc_timezone (void)
 Returns the UTC timezone.
 
+icaltimezoneicaltimezone_new (void)
 Creates a new icaltimezone.
 
+void icaltimezone_release_zone_tab (void)
 
+void icaltimezone_set_builtin_tzdata (int set)
 
int icaltimezone_set_component (icaltimezone *zone, icalcomponent *comp)
 Sets the VTIMEZONE component of an icaltimezone, initializing the tzid, location & tzname fields.
 
void icaltimezone_set_tzid_prefix (const char *new_prefix)
 
+void icaltimezone_truncate_vtimezone (icalcomponent *vtz, icaltimetype start, icaltimetype end, int ms_compatible)
 
+const char * icaltimezone_tzid_prefix (void)
 
void set_zone_directory (const char *path)
 
+

Detailed Description

+

Timezone handling routines.

+

Function Documentation

+ +

◆ free_zone_directory()

+ +
+
+ + + + + + + + +
void free_zone_directory (void )
+
+

Frees the memory dedicated to the zonefile directory

+ +
+
+ +

◆ get_zone_directory()

+ +
+
+ + + + + + + + +
const char * get_zone_directory (void )
+
+

Gets the directory to look for the zonefiles

+ +
+
+ +

◆ icaltimezone_dump_changes()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icaltimezone_dump_changes (icaltimezonezone,
int max_year,
FILE * fp 
)
+
+ +

Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year given.

+

We compare this output with the output from 'vzic –dump-changes' to make sure that we are consistent. (vzic is the Olson timezone database to VTIMEZONE converter.)

+

The output format is:

 Zone-Name [tab] Date [tab] Time [tab] UTC-Offset
+

The Date and Time fields specify the time change in UTC.

+

The UTC Offset is for local (wall-clock) time. It is the amount of time to add to UTC to get local time.

+ +
+
+ +

◆ icaltimezone_free()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void icaltimezone_free (icaltimezonezone,
int free_struct 
)
+
+ +

Frees all memory used for the icaltimezone.

+
Parameters
+ + + +
zoneThe icaltimezone to be freed
free_structWhether to free the icaltimezone struct as well
+
+
+ +
+
+ +

◆ icaltimezone_get_builtin_timezones()

+ +
+
+ + + + + + + + +
icalarray * icaltimezone_get_builtin_timezones (void )
+
+ +

Returns an icalarray of icaltimezone structs, one for each builtin timezone.

+

This will load and parse the zones.tab file to get the timezone names and their coordinates. It will not load the VTIMEZONE data for any timezones.

+ +
+
+ +

◆ icaltimezone_get_display_name()

+ +
+
+ + + + + + + + +
const char * icaltimezone_get_display_name (icaltimezonezone)
+
+ +

Returns the timezone name to display to the user.

+

We prefer to use the Olson city name, but fall back on the TZNAME, or finally the TZID. We don't want to use "" as it may be wrongly interpreted as a floating time. Do not free the returned string.

+ +
+
+ +

◆ icaltimezone_get_location()

+ +
+
+ + + + + + + + +
const char * icaltimezone_get_location (icaltimezonezone)
+
+

Returns the city name of a timezone.

+ +
+
+ +

◆ icaltimezone_get_tzid()

+ +
+
+ + + + + + + + +
const char * icaltimezone_get_tzid (icaltimezonezone)
+
+

Returns the TZID of a timezone.

+ +
+
+ +

◆ icaltimezone_get_tznames()

+ +
+
+ + + + + + + + +
const char * icaltimezone_get_tznames (icaltimezonezone)
+
+

Returns the TZNAME properties used in the latest STANDARD and DAYLIGHT components. If they are the same it will return just one, e.g. "LMT". If they are different it will format them like "EST/EDT". Note that this may also return NULL.

+ +
+
+ +

◆ icaltimezone_get_tznames_from_vtimezone()

+ +
+
+ + + + + + + + +
char * icaltimezone_get_tznames_from_vtimezone (icalcomponentcomponent)
+
+ +

Gets the TZNAMEs used for the last STANDARD & DAYLIGHT components in a VTIMEZONE.

+

If both STANDARD and DAYLIGHT components use the same TZNAME, it returns that. If they use different TZNAMEs, it formats them like "EST/EDT". The returned string should be freed by the caller.

+ +
+
+ +

◆ icaltimezone_get_utc_offset()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icaltimezone_get_utc_offset (icaltimezonezone,
struct icaltimetypett,
int * is_daylight 
)
+
+ +

Calculates the UTC offset of a given local time in the given timezone.

+

It is the number of seconds to add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

+ +
+
+ +

◆ icaltimezone_get_utc_offset_of_utc_time()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icaltimezone_get_utc_offset_of_utc_time (icaltimezonezone,
struct icaltimetypett,
int * is_daylight 
)
+
+ +

Calculates the UTC offset of a given UTC time in the given timezone.

+

It is the number of seconds to add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

+ +
+
+ +

◆ icaltimezone_set_component()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int icaltimezone_set_component (icaltimezonezone,
icalcomponentcomp 
)
+
+ +

Sets the VTIMEZONE component of an icaltimezone, initializing the tzid, location & tzname fields.

+
Returns
1 on success or 0 on failure, i.e. no TZID was found.
+ +
+
+ +

◆ icaltimezone_set_tzid_prefix()

+ +
+
+ + + + + + + + +
void icaltimezone_set_tzid_prefix (const char * new_prefix)
+
+

Sets the prefix to be used for tzid's generated from system tzdata. Must be globally unique (such as a domain name owned by the developer of the calling application), and begin and end with forward slashes. Do not change or de-allocate the string buffer after calling this.

+ +
+
+ +

◆ set_zone_directory()

+ +
+
+ + + + + + + + +
void set_zone_directory (const char * path)
+
+

Sets the directory to look for the zonefiles

+ +
+
+
+ + + + diff --git a/static/apidocs/icaltimezone_8h_source.html b/static/apidocs/icaltimezone_8h_source.html new file mode 100644 index 00000000..8c4a6e7e --- /dev/null +++ b/static/apidocs/icaltimezone_8h_source.html @@ -0,0 +1,276 @@ + + + + + + + +Libical API Documentation: icaltimezone.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaltimezone.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icaltimezone.h
+
3 CREATOR: Damon Chaplin 15 March 2001
+
4
+
5 (C) COPYRIGHT 2001, Damon Chaplin <damon@ximian.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
23#ifndef ICALTIMEZONE_H
+
24#define ICALTIMEZONE_H
+
25
+
26#include "libical_ical_export.h"
+
27#include "icalcomponent.h"
+
28
+
29#include <stdio.h>
+
30
+
31#if !defined(ICALTIMEZONE_DEFINED)
+
32#define ICALTIMEZONE_DEFINED
+ +
37#endif
+
38
+
39/*
+
40 * Creating/Destroying individual icaltimezones.
+
41 */
+
42
+
44LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_new(void);
+
45
+
46LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_copy(icaltimezone *originalzone);
+
47
+
52LIBICAL_ICAL_EXPORT void icaltimezone_free(icaltimezone *zone, int free_struct);
+
53
+
59LIBICAL_ICAL_EXPORT void icaltimezone_set_tzid_prefix(const char *new_prefix);
+
60
+
61/*
+
62 * Accessing timezones.
+
63 */
+
64
+
66LIBICAL_ICAL_EXPORT void icaltimezone_free_builtin_timezones(void);
+
67
+
75LIBICAL_ICAL_EXPORT icalarray *icaltimezone_get_builtin_timezones(void);
+
76
+
78LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_builtin_timezone(const char *location);
+
79
+ +
82 const char *tzname);
+
83
+
85LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_builtin_timezone_from_tzid(const char *tzid);
+
86
+
88LIBICAL_ICAL_EXPORT icaltimezone *icaltimezone_get_utc_timezone(void);
+
89
+
91LIBICAL_ICAL_EXPORT const char *icaltimezone_get_tzid(icaltimezone *zone);
+
92
+
94LIBICAL_ICAL_EXPORT const char *icaltimezone_get_location(icaltimezone *zone);
+
95
+
100LIBICAL_ICAL_EXPORT const char *icaltimezone_get_tznames(icaltimezone *zone);
+
101
+
103LIBICAL_ICAL_EXPORT double icaltimezone_get_latitude(icaltimezone *zone);
+
104
+
106LIBICAL_ICAL_EXPORT double icaltimezone_get_longitude(icaltimezone *zone);
+
107
+
109LIBICAL_ICAL_EXPORT icalcomponent *icaltimezone_get_component(icaltimezone *zone);
+
110
+
116LIBICAL_ICAL_EXPORT int icaltimezone_set_component(icaltimezone *zone, icalcomponent *comp);
+
117
+
124LIBICAL_ICAL_EXPORT const char *icaltimezone_get_display_name(icaltimezone *zone);
+
125
+
126/*
+
127 * Converting times between timezones.
+
128 */
+
129
+
130LIBICAL_ICAL_EXPORT void icaltimezone_convert_time(struct icaltimetype *tt,
+
131 icaltimezone *from_zone,
+
132 icaltimezone *to_zone);
+
133
+
134/*
+
135 * Getting offsets from UTC.
+
136 */
+
137
+
145LIBICAL_ICAL_EXPORT int icaltimezone_get_utc_offset(icaltimezone *zone,
+
146 struct icaltimetype *tt, int *is_daylight);
+
147
+
154LIBICAL_ICAL_EXPORT int icaltimezone_get_utc_offset_of_utc_time(icaltimezone *zone,
+
155 struct icaltimetype *tt,
+
156 int *is_daylight);
+
157
+
158/*
+
159 * Handling arrays of timezones. Mainly for internal use.
+
160 */
+
161LIBICAL_ICAL_EXPORT icalarray *icaltimezone_array_new(void);
+
162
+
163LIBICAL_ICAL_EXPORT void icaltimezone_array_append_from_vtimezone(icalarray *timezones,
+
164 icalcomponent *child);
+
165
+
166LIBICAL_ICAL_EXPORT void icaltimezone_array_free(icalarray *timezones);
+
167
+
168/*
+
169 * By request (issue #112) make vtimezone functions public
+
170 */
+
171LIBICAL_ICAL_EXPORT void icaltimezone_expand_vtimezone(icalcomponent *comp,
+ +
173
+ +
176
+ +
184
+
185/*
+
186 * Truncate a VTIMEZONE component to the given start and end times.
+
187 * If either time is null, then no truncation will occur at that point.
+
188 * If either time is non-null, then it MUST be specified as UTC.
+
189 * If the start time is non-null and ms_compatible is zero,
+
190 * then the DTSTART of RRULEs will be adjusted to occur after the start time.
+
191 * @since 3.0.6
+
192 */
+
193LIBICAL_ICAL_EXPORT void icaltimezone_truncate_vtimezone(icalcomponent *vtz,
+
194 icaltimetype start,
+
195 icaltimetype end,
+
196 int ms_compatible);
+
197
+
198/*
+
199 * @par Handling the default location the timezone files
+
200 */
+
201
+
203LIBICAL_ICAL_EXPORT const char *get_zone_directory(void);
+
204
+
206LIBICAL_ICAL_EXPORT void set_zone_directory(const char *path);
+
207
+
209LIBICAL_ICAL_EXPORT void free_zone_directory(void);
+
210
+
211LIBICAL_ICAL_EXPORT void icaltimezone_release_zone_tab(void);
+
212
+
213/*
+
214 * @par Handling whether to use builtin timezone files
+
215 */
+
216LIBICAL_ICAL_EXPORT void icaltimezone_set_builtin_tzdata(int set);
+
217
+
218LIBICAL_ICAL_EXPORT int icaltimezone_get_builtin_tzdata(void);
+
219
+
220/*
+
221 * Debugging Output.
+
222 */
+
223
+
241LIBICAL_ICAL_EXPORT int icaltimezone_dump_changes(icaltimezone *zone, int max_year, FILE *fp);
+
242
+
243/* For the library only -- do not make visible */
+
244extern const char *icaltimezone_tzid_prefix(void);
+
245
+
246#endif /* ICALTIMEZONE_H */
+ +
icaltimezone * icaltimezone_new(void)
Creates a new icaltimezone.
Definition icaltimezone.c:211
+
void icaltimezone_set_tzid_prefix(const char *new_prefix)
Definition icaltimezone.c:2186
+
icaltimezone * icaltimezone_get_builtin_timezone_from_offset(int offset, const char *tzname)
Returns a single builtin timezone, given its offset from UTC.
Definition icaltimezone.c:1445
+
int icaltimezone_dump_changes(icaltimezone *zone, int max_year, FILE *fp)
Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year g...
Definition icaltimezone.c:1944
+
int icaltimezone_get_utc_offset(icaltimezone *zone, struct icaltimetype *tt, int *is_daylight)
Calculates the UTC offset of a given local time in the given timezone.
Definition icaltimezone.c:818
+
double icaltimezone_get_longitude(icaltimezone *zone)
Returns the longitude of a builtin timezone.
Definition icaltimezone.c:1226
+
void free_zone_directory(void)
Definition icaltimezone.c:2178
+
char * icaltimezone_get_location_from_vtimezone(icalcomponent *component)
Gets the LOCATION or X-LIC-LOCATION property from a VTIMEZONE.
Definition icaltimezone.c:354
+
char * icaltimezone_get_tznames_from_vtimezone(icalcomponent *component)
Gets the TZNAMEs used for the last STANDARD & DAYLIGHT components in a VTIMEZONE.
Definition icaltimezone.c:381
+
const char * get_zone_directory(void)
Definition icaltimezone.c:2158
+
icalcomponent * icaltimezone_get_component(icaltimezone *zone)
Returns the VTIMEZONE component of a timezone.
Definition icaltimezone.c:1237
+
void icaltimezone_free_builtin_timezones(void)
Releases builtin timezone memory.
Definition icaltimezone.c:1340
+
const char * icaltimezone_get_tznames(icaltimezone *zone)
Definition icaltimezone.c:1204
+
icaltimezone * icaltimezone_get_builtin_timezone(const char *location)
Returns a single builtin timezone, given its Olson city name.
Definition icaltimezone.c:1346
+
const char * icaltimezone_get_location(icaltimezone *zone)
Definition icaltimezone.c:1193
+
icalarray * icaltimezone_get_builtin_timezones(void)
Returns an icalarray of icaltimezone structs, one for each builtin timezone.
Definition icaltimezone.c:1332
+
const char * icaltimezone_get_tzid(icaltimezone *zone)
Definition icaltimezone.c:1182
+
icaltimezone * icaltimezone_get_utc_timezone(void)
Returns the UTC timezone.
Definition icaltimezone.c:1542
+
void icaltimezone_free(icaltimezone *zone, int free_struct)
Frees all memory used for the icaltimezone.
Definition icaltimezone.c:260
+
const char * icaltimezone_get_display_name(icaltimezone *zone)
Returns the timezone name to display to the user.
Definition icaltimezone.c:1273
+
int icaltimezone_set_component(icaltimezone *zone, icalcomponent *comp)
Sets the VTIMEZONE component of an icaltimezone, initializing the tzid, location & tzname fields.
Definition icaltimezone.c:1248
+
double icaltimezone_get_latitude(icaltimezone *zone)
Returns the latitude of a builtin timezone.
Definition icaltimezone.c:1215
+
icaltimezone * icaltimezone_get_builtin_timezone_from_tzid(const char *tzid)
Returns a single builtin timezone, given its TZID.
Definition icaltimezone.c:1476
+
void set_zone_directory(const char *path)
Definition icaltimezone.c:2167
+
int icaltimezone_get_utc_offset_of_utc_time(icaltimezone *zone, struct icaltimetype *tt, int *is_daylight)
Calculates the UTC offset of a given UTC time in the given timezone.
Definition icaltimezone.c:975
+
Definition icalarray.h:36
+
Definition icaltimezoneimpl.h:23
+
icalcomponent * component
Definition icaltimezoneimpl.h:49
+
icalarray * changes
Definition icaltimezoneimpl.h:65
+
char * location
Definition icaltimezoneimpl.h:30
+
char * tzid
Definition icaltimezoneimpl.h:24
+
int end_year
Definition icaltimezoneimpl.h:60
+
Definition icalcomponent.c:36
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icaltimezoneimpl_8h_source.html b/static/apidocs/icaltimezoneimpl_8h_source.html new file mode 100644 index 00000000..28dae702 --- /dev/null +++ b/static/apidocs/icaltimezoneimpl_8h_source.html @@ -0,0 +1,131 @@ + + + + + + + +Libical API Documentation: icaltimezoneimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaltimezoneimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icaltimezoneimpl.h
+
3 CREATOR: glenn 07 March 2010
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALTIMEZONEIMPL_H
+
20#define ICALTIMEZONEIMPL_H
+
21
+ +
23{
+
24 char *tzid;
+
30 char *location;
+
37 char *tznames;
+
45 double latitude;
+
46 double longitude;
+ + + + +
69};
+
70
+
71#endif /*ICALTIMEZONE_IMPL */
+
Definition icalarray.h:36
+
Definition icaltimezoneimpl.h:23
+
double longitude
Definition icaltimezoneimpl.h:46
+
icaltimezone * builtin_timezone
Definition icaltimezoneimpl.h:53
+
icalcomponent * component
Definition icaltimezoneimpl.h:49
+
char * tznames
Definition icaltimezoneimpl.h:37
+
icalarray * changes
Definition icaltimezoneimpl.h:65
+
char * location
Definition icaltimezoneimpl.h:30
+
char * tzid
Definition icaltimezoneimpl.h:24
+
int end_year
Definition icaltimezoneimpl.h:60
+
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icaltypes_8h_source.html b/static/apidocs/icaltypes_8h_source.html new file mode 100644 index 00000000..40d6aeca --- /dev/null +++ b/static/apidocs/icaltypes_8h_source.html @@ -0,0 +1,214 @@ + + + + + + + +Libical API Documentation: icaltypes.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaltypes.h
+
+
+
1/*======================================================================
+
2 FILE: icaltypes.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALTYPES_H
+
20#define ICALTYPES_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalduration.h"
+
24#include "icalenums.h"
+
25#include "icalperiod.h"
+
26
+ +
28{
+
29 struct icaltimetype time;
+
30 struct icalperiodtype period;
+
31};
+
32
+ +
34{
+
35 double lat;
+
36 double lon;
+
37};
+
38
+ +
40{
+
41 struct icaltimetype time;
+
42 struct icaldurationtype duration;
+
43};
+
44
+
45LIBICAL_ICAL_EXPORT struct icaltriggertype icaltriggertype_from_int(const int reltime);
+
46
+
47LIBICAL_ICAL_EXPORT struct icaltriggertype icaltriggertype_from_string(const char *str);
+
48
+
49LIBICAL_ICAL_EXPORT int icaltriggertype_is_null_trigger(struct icaltriggertype tr);
+
50
+
51LIBICAL_ICAL_EXPORT int icaltriggertype_is_bad_trigger(struct icaltriggertype tr);
+
52
+
53/* struct icalreqstattype. This struct contains two string pointers,
+
54but don't try to free either of them. The "desc" string is a pointer
+
55to a static table inside the library. Don't try to free it. The
+
56"debug" string is a pointer into the string that the called passed
+
57into to icalreqstattype_from_string. Don't try to free it either, and
+
58don't use it after the original string has been freed.
+
59
+
60BTW, you would get that original string from
+
61*icalproperty_get_requeststatus() or icalvalue_get_text(), when
+
62operating on the value of a request_status property. */
+
63
+ +
65{
+
66 icalrequeststatus code;
+
67 const char *desc;
+
68 const char *debug;
+
69};
+
70
+
71LIBICAL_ICAL_EXPORT struct icalreqstattype icalreqstattype_from_string(const char *str);
+
72
+
73LIBICAL_ICAL_EXPORT const char *icalreqstattype_as_string(struct icalreqstattype);
+
74
+
75LIBICAL_ICAL_EXPORT char *icalreqstattype_as_string_r(struct icalreqstattype);
+
76
+ +
78{
+
79 const char *tzname;
+
80 int is_stdandard; /* 1 = standard tme, 0 = daylight savings time */
+
81 struct icaltimetype dtstart;
+
82 int offsetto;
+
83 int tzoffsetfrom;
+
84 const char *comment;
+ +
86 const char *rrule;
+
87};
+
88
+ +
90{
+
91 const char *tzid;
+
92 struct icaltimetype last_mod;
+
93 const char *tzurl;
+
94
+
95 /* Array of phases. The end of the array is a phase with tzname == 0 */
+
96 struct icaltimezonephase *phases;
+
97};
+
98
+
99/* ical_unknown_token_handling :
+
100 * How should the ICAL library handle components, properties and parameters with
+
101 * unknown names?
+
102 * FIXME: Currently only affects parameters. Extend to components and properties.
+
103 */
+
104typedef enum ical_unknown_token_handling
+
105{
+
106 ICAL_ASSUME_IANA_TOKEN = 1,
+
107 ICAL_DISCARD_TOKEN = 2,
+
108 ICAL_TREAT_AS_ERROR = 3
+
109} ical_unknown_token_handling;
+
110
+
111LIBICAL_ICAL_EXPORT ical_unknown_token_handling ical_get_unknown_token_handling_setting(void);
+
112
+
113LIBICAL_ICAL_EXPORT void ical_set_unknown_token_handling_setting(
+
114 ical_unknown_token_handling newSetting);
+
115
+
116#endif /* !ICALTYPES_H */
+
Methods for working with durations in iCal.
+ +
Functions for working with iCal periods (of time).
+
Definition icaltypes.h:28
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltypes.h:34
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icaltypes.h:65
+
Definition icaltime.h:105
+
Definition icaltypes.h:78
+
Definition icaltypes.h:90
+
Definition icaltypes.h:40
+
Definition icaltimezone.c:2221
+
+ + + + diff --git a/static/apidocs/icaltz-util_8h_source.html b/static/apidocs/icaltz-util_8h_source.html new file mode 100644 index 00000000..26906253 --- /dev/null +++ b/static/apidocs/icaltz-util_8h_source.html @@ -0,0 +1,122 @@ + + + + + + + +Libical API Documentation: icaltz-util.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icaltz-util.h
+
+
+
1/*
+
2 * Authors :
+
3 * Chenthill Palanisamy <pchenthill@novell.com>
+
4 *
+
5 * Copyright 2007, Novell, Inc.
+
6 *
+
7 * This library is free software; you can redistribute it and/or modify
+
8 * it under the terms of either:
+
9 *
+
10 * The LGPL as published by the Free Software Foundation, version
+
11 * 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12 *
+
13 * Or:
+
14 *
+
15 * The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 * the License at https://www.mozilla.org/MPL/
+
17 */
+
18
+
19#ifndef ICALTZUTIL_H
+
20#define ICALTZUTIL_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalcomponent.h"
+
24
+
25#if defined(sun) && defined(__SVR4)
+
26#define ZONES_TAB_SYSTEM_FILENAME "tab/zone_sun.tab"
+
27#else
+
28#define ZONES_TAB_SYSTEM_FILENAME "zone.tab"
+
29#endif
+
30
+
31LIBICAL_ICAL_EXPORT const char *icaltzutil_get_zone_directory(void);
+
32
+
33LIBICAL_ICAL_EXPORT icalcomponent *icaltzutil_fetch_timezone(const char *location);
+
34
+
35#endif
+ +
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalvalue_8h.html b/static/apidocs/icalvalue_8h.html new file mode 100644 index 00000000..b57bfa68 --- /dev/null +++ b/static/apidocs/icalvalue_8h.html @@ -0,0 +1,235 @@ + + + + + + + +Libical API Documentation: icalvalue.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icalvalue.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + +

+Macros

+#define ICAL_BOOLEAN_FALSE   0
 
+#define ICAL_BOOLEAN_TRUE   1
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+const char * icalvalue_as_ical_string (const icalvalue *value)
 
+char * icalvalue_as_ical_string_r (const icalvalue *value)
 
+icalparameter_xliccomparetype icalvalue_compare (const icalvalue *a, const icalvalue *b)
 
int icalvalue_decode_ical_string (const char *szText, char *szDecText, int nMaxBufferLen)
 
int icalvalue_encode_ical_string (const char *szText, char *szEncText, int MaxBufferLen)
 
+void icalvalue_free (icalvalue *value)
 
+int icalvalue_is_valid (const icalvalue *value)
 
+icalvalue_kind icalvalue_isa (const icalvalue *value)
 
+int icalvalue_isa_value (void *)
 
int icalvalue_kind_is_valid (const icalvalue_kind kind)
 
+const char * icalvalue_kind_to_string (const icalvalue_kind kind)
 
+icalvalue * icalvalue_new (icalvalue_kind kind)
 
+icalvalue * icalvalue_new_clone (const icalvalue *value)
 
+icalvalue * icalvalue_new_from_string (icalvalue_kind kind, const char *str)
 
+icalvalue_kind icalvalue_string_to_kind (const char *str)
 
+

Function Documentation

+ +

◆ icalvalue_decode_ical_string()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icalvalue_decode_ical_string (const char * szText,
char * szDecText,
int nMaxBufferLen 
)
+
+

Extract the original character string encoded by the above function

+ +
+
+ +

◆ icalvalue_encode_ical_string()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int icalvalue_encode_ical_string (const char * szText,
char * szEncText,
int MaxBufferLen 
)
+
+

Encode a character string in ical format, escape certain characters, etc.

+ +
+
+ +

◆ icalvalue_kind_is_valid()

+ +
+
+ + + + + + + + +
int icalvalue_kind_is_valid (const icalvalue_kind kind)
+
+

Check validity of a specific icalvalue_kind

+ +
+
+
+ + + + diff --git a/static/apidocs/icalvalue_8h_source.html b/static/apidocs/icalvalue_8h_source.html new file mode 100644 index 00000000..6403fd3e --- /dev/null +++ b/static/apidocs/icalvalue_8h_source.html @@ -0,0 +1,172 @@ + + + + + + + +Libical API Documentation: icalvalue.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalvalue.h
+
+
+Go to the documentation of this file.
1/*======================================================================
+
2 FILE: icalvalue.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17 ======================================================================*/
+
18
+
19#ifndef ICALVALUE_H
+
20#define ICALVALUE_H
+
21
+
22#include "libical_ical_export.h"
+
23#include "icalvalueimpl.h"
+
24
+
27#define ICAL_BOOLEAN_TRUE 1
+
28#define ICAL_BOOLEAN_FALSE 0
+
29
+
30LIBICAL_ICAL_EXPORT icalvalue *icalvalue_new(icalvalue_kind kind);
+
31
+
32LIBICAL_ICAL_EXPORT icalvalue *icalvalue_new_clone(const icalvalue *value);
+
33
+
34LIBICAL_ICAL_EXPORT icalvalue *icalvalue_new_from_string(icalvalue_kind kind, const char *str);
+
35
+
36LIBICAL_ICAL_EXPORT void icalvalue_free(icalvalue *value);
+
37
+
38LIBICAL_ICAL_EXPORT int icalvalue_is_valid(const icalvalue *value);
+
39
+
40LIBICAL_ICAL_EXPORT const char *icalvalue_as_ical_string(const icalvalue *value);
+
41
+
42LIBICAL_ICAL_EXPORT char *icalvalue_as_ical_string_r(const icalvalue *value);
+
43
+
44LIBICAL_ICAL_EXPORT icalvalue_kind icalvalue_isa(const icalvalue *value);
+
45
+
46LIBICAL_ICAL_EXPORT int icalvalue_isa_value(void *);
+
47
+
48LIBICAL_ICAL_EXPORT icalparameter_xliccomparetype icalvalue_compare(const icalvalue *a,
+
49 const icalvalue *b);
+
50
+
51/* Special, non autogenerated value accessors */
+
52
+
53/* Defined in icalderivedvalue.h */
+
54/* icalvalue* icalvalue_new_recur (struct icalrecurrencetype v); */
+
55/* void icalvalue_set_recur(icalvalue* value, struct icalrecurrencetype v); */
+
56/* struct icalrecurrencetype icalvalue_get_recur(const icalvalue* value); */
+
57
+
58/* icalvalue* icalvalue_new_trigger (struct icaltriggertype v); */
+
59/* void icalvalue_set_trigger(icalvalue* value, struct icaltriggertype v); */
+
60/* struct icaltriggertype icalvalue_get_trigger(const icalvalue* value); */
+
61
+
62/* icalvalue* icalvalue_new_datetimeperiod (struct icaldatetimeperiodtype v); */
+
63/* void icalvalue_set_datetimeperiod(icalvalue* value, */
+
64/* struct icaldatetimeperiodtype v); */
+
65/* struct icaldatetimeperiodtype icalvalue_get_datetimeperiod(const icalvalue* value); */
+
66
+
67/* Convert enumerations */
+
68
+
69LIBICAL_ICAL_EXPORT icalvalue_kind icalvalue_string_to_kind(const char *str);
+
70
+
71LIBICAL_ICAL_EXPORT const char *icalvalue_kind_to_string(const icalvalue_kind kind);
+
72
+
74LIBICAL_ICAL_EXPORT int icalvalue_kind_is_valid(const icalvalue_kind kind);
+
75
+
77LIBICAL_ICAL_EXPORT int icalvalue_encode_ical_string(const char *szText,
+
78 char *szEncText, int MaxBufferLen);
+
79
+
81LIBICAL_ICAL_EXPORT int icalvalue_decode_ical_string(const char *szText,
+
82 char *szDecText, int nMaxBufferLen);
+
83
+
84/* For the library only -- do not make visible */
+
86extern void print_date_to_string(char *str, const struct icaltimetype *data);
+
87extern void print_datetime_to_string(char *str, const struct icaltimetype *data);
+
89
+
90#endif /*ICALVALUE_H */
+
int icalvalue_encode_ical_string(const char *szText, char *szEncText, int MaxBufferLen)
Definition icalvalue.c:1503
+
int icalvalue_decode_ical_string(const char *szText, char *szDecText, int nMaxBufferLen)
Definition icalvalue.c:1534
+
int icalvalue_kind_is_valid(const icalvalue_kind kind)
+
Definition icaltime.h:105
+
+ + + + diff --git a/static/apidocs/icalvalue__cxx_8h_source.html b/static/apidocs/icalvalue__cxx_8h_source.html new file mode 100644 index 00000000..649bb781 --- /dev/null +++ b/static/apidocs/icalvalue__cxx_8h_source.html @@ -0,0 +1,268 @@ + + + + + + + +Libical API Documentation: icalvalue_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalvalue_cxx.h
+
+
+
1/*======================================================================
+
2 FILE: icalvalue_cxx.h
+
3 CREATOR: fnguyen 12/13/01
+
4 (C) COPYRIGHT 2001, Critical Path
+
5
+
6 This library is free software; you can redistribute it and/or modify
+
7 it under the terms of either:
+
8
+
9 The LGPL as published by the Free Software Foundation, version
+
10 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
11
+
12 Or:
+
13
+
14 The Mozilla Public License Version 2.0. You may obtain a copy of
+
15 the License at https://www.mozilla.org/MPL/
+
16======================================================================*/
+
17
+
18#ifndef ICALVALUE_CXX_H
+
19#define ICALVALUE_CXX_H
+
20
+
21#include "libical_ical_export.h"
+
22#include "icptrholder_cxx.h"
+
23
+
24extern "C"
+
25{
+
26#include "icalerror.h"
+
27#include "icalvalue.h"
+
28}
+
29
+
30#include <string>
+
31
+
32namespace LibICal
+
33{
+
34
+
35class LIBICAL_ICAL_EXPORT ICalValue
+
36{
+
37public:
+
38 ICalValue();
+
39 ICalValue(const ICalValue &);
+
40 ICalValue &operator=(const ICalValue &);
+
41 ~ICalValue();
+
42
+
43 explicit ICalValue(icalvalue *);
+
44 explicit ICalValue(const icalvalue_kind &kind);
+
45 ICalValue(const icalvalue_kind &kind, const std::string &str);
+
46
+
47 operator icalvalue *()
+
48 {
+
49 return imp;
+
50 }
+
51
+
52 void detach();
+
53
+
54public:
+
55 std::string as_ical_string();
+
56 bool is_valid();
+
57 icalvalue_kind isa();
+
58 int isa_value(void *);
+
59
+
60 /* Special, non autogenerated value accessors */
+
61 void set_recur(const struct icalrecurrencetype &v);
+
62 struct icalrecurrencetype get_recur();
+
63
+
64 void set_trigger(const struct icaltriggertype &v);
+
65 struct icaltriggertype get_trigger();
+
66
+
67 void set_datetimeperiod(const struct icaldatetimeperiodtype &v);
+
68 struct icaldatetimeperiodtype get_datetimeperiod();
+
69
+
70public:
+
71 static icalparameter_xliccomparetype compare(ICalValue &a, ICalValue &b);
+
72
+
73 /* Convert enumerations */
+
74 static icalvalue_kind string_to_kind(const std::string &str);
+
75 std::string kind_to_string(const icalvalue_kind &kind);
+
76
+
77public:
+
78 /* BOOLEAN */
+
79 int get_boolean() const;
+
80 void set_boolean(const int &v);
+
81
+
82 /* UTC-OFFSET */
+
83 int get_utcoffset() const;
+
84 void set_utcoffset(const int &v);
+
85
+
86 /* METHOD */
+
87 enum icalproperty_method get_method() const;
+
88 void set_method(const enum icalproperty_method &v);
+
89
+
90 /* CAL-ADDRESS */
+
91 std::string get_caladdress() const;
+
92 void set_caladdress(const std::string &v);
+
93
+
94 /* PERIOD */
+
95 struct icalperiodtype get_period() const;
+
96 void set_period(const struct icalperiodtype &v);
+
97
+
98 /* STATUS */
+
99 enum icalproperty_status get_status() const;
+
100 void set_status(const enum icalproperty_status &v);
+
101
+
102 /* BINARY */
+
103 std::string get_binary() const;
+
104 void set_binary(const std::string &v);
+
105
+
106 /* TEXT */
+
107 std::string get_text() const;
+
108 void set_text(const std::string &v);
+
109
+
110 /* DURATION */
+
111 struct icaldurationtype get_duration() const;
+
112 void set_duration(const struct icaldurationtype &v);
+
113
+
114 /* INTEGER */
+
115 int get_integer() const;
+
116 void set_integer(const int &v);
+
117
+
118 /* URI */
+
119 std::string get_uri() const;
+
120 void set_uri(const std::string &v);
+
121
+
122 /* ATTACH */
+
123 icalattach *get_attach();
+
124 void set_attach(icalattach *v);
+
125
+
126 /* CLASS */
+
127 enum icalproperty_class get_class() const;
+
128 void set_class(const enum icalproperty_class &v);
+
129
+
130 /* FLOAT */
+
131 float get_float() const;
+
132 void set_float(const float &v);
+
133
+
134 /* QUERY */
+
135 std::string get_query() const;
+
136 void set_query(const std::string &v);
+
137
+
138 /* STRING */
+
139 std::string get_string() const;
+
140 void set_string(const std::string &v);
+
141
+
142 /* TRANSP */
+
143 enum icalproperty_transp get_transp() const;
+
144 void set_transp(const enum icalproperty_transp &v);
+
145
+
146 /* DATE-TIME */
+
147 struct icaltimetype get_datetime() const;
+
148 void set_datetime(const struct icaltimetype &v);
+
149
+
150 /* GEO */
+
151 struct icalgeotype get_geo() const;
+
152 void set_geo(const struct icalgeotype &v);
+
153
+
154 /* DATE */
+
155 struct icaltimetype get_date() const;
+
156 void set_date(const struct icaltimetype &v);
+
157
+
158 /* ACTION */
+
159 enum icalproperty_action get_action() const;
+
160 void set_action(const enum icalproperty_action &v);
+
161
+
162private:
+
163 icalvalue *imp;
+
164};
+
165
+
166} // namespace LibICal
+
167
+
168typedef ICPointerHolder < LibICal::ICalValue > ICalValueTmpPtr;
+
169
+
170#endif
+
Definition icptrholder_cxx.h:48
+
Definition icalvalue_cxx.h:36
+
Error handling for libical.
+ +
C++ template classes for managing C++ pointers returned by VComponent::get_..._component,...
+
Definition icalattachimpl.h:26
+
Definition icaltypes.h:28
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltypes.h:34
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icalrecur.h:152
+
Definition icaltime.h:105
+
Definition icaltypes.h:40
+
+ + + + diff --git a/static/apidocs/icalvalueimpl_8h_source.html b/static/apidocs/icalvalueimpl_8h_source.html new file mode 100644 index 00000000..23a76ed4 --- /dev/null +++ b/static/apidocs/icalvalueimpl_8h_source.html @@ -0,0 +1,187 @@ + + + + + + + +Libical API Documentation: icalvalueimpl.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalvalueimpl.h
+
+
+
1/*======================================================================
+
2 FILE: icalvalue.c
+
3 CREATOR: eric 02 May 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17
+
18 Contributions from:
+
19 Graham Davison (g.m.davison@computer.org)
+
20======================================================================*/
+
21
+
22#ifndef ICALVALUEIMPL_H
+
23#define ICALVALUEIMPL_H
+
24
+
25#include "icalproperty.h"
+
26
+ +
28{
+
29 icalvalue_kind kind; /*this is the kind that is visible from the outside */
+
30
+
31 char id[5];
+
32 int size;
+
33 icalproperty *parent;
+
34 char *x_value;
+
35
+
36 union data
+
37 {
+
38 icalattach *v_attach;
+
39 /* void *v_binary; *//* use v_attach */
+
40
+
41 const char *v_string;
+
42 /*char *v_text; */ /* use v_string */
+
43 /*char *v_caladdress; *//* use v_string */
+
44 /*char *v_query; */ /* use v_string */
+
45 /*char *v_uri; */ /* use v_string */
+
46
+
47 float v_float;
+
48
+
49 int v_int;
+
50 /*int v_boolean; */ /* use v_int */
+
51 /*int v_integer; */ /* use v_int */
+
52 /*int v_utcoffset; *//* use v_int */
+
53
+
54 struct icaldurationtype v_duration;
+
55
+
56 struct icalperiodtype v_period;
+
57 /*struct icalperiodtype v_datetimeperiod; *//* use v_time/v_period */
+
58
+
59 struct icalgeotype v_geo;
+
60
+
61 struct icaltimetype v_time;
+
62 /*struct icaltimetype v_date; */ /* use v_time */
+
63 /*struct icaltimetype v_datetime; */ /* use v_time */
+
64 /*struct icaltimetype v_datetimedate; *//* use v_time */
+
65
+
66 struct icalreqstattype v_requeststatus;
+
67
+
68 /* struct icalrecurrencetype was once included
+
69 directly ( not referenced ) in this union, but it
+
70 contributes 2000 bytes to every value, so now it is
+
71 a reference */
+
72 struct icalrecurrencetype *v_recur;
+
73
+
74 /*struct icaltriggertype v_trigger; *//* use v_time/v_duration */
+
75
+
76 int v_enum;
+
77 /* v_enum takes care of several enumerated types including:
+
78 icalproperty_method v_method;
+
79 icalproperty_status v_status;
+
80 icalproperty_action v_action;
+
81 icalproperty_class v_class;
+
82 icalproperty_transp v_transp;
+
83 icalproperty_busytype v_busytype;
+
84 icalproperty_taskmode v_taskmode;
+
85 icalproperty_pollmode v_pollmode;
+
86 icalproperty_pollcompletion v_pollcomplete;
+
87 */
+
88
+
89 } data;
+
90};
+
91
+
92#endif
+ +
Definition icalattachimpl.h:26
+
A struct representing a duration.
Definition icalduration.h:37
+
Definition icaltypes.h:34
+
Struct to represent a period in time.
Definition icalperiod.h:38
+
Definition icalrecur.h:152
+
Definition icaltypes.h:65
+
Definition icaltime.h:105
+
Definition icalvalueimpl.h:28
+
Definition icalvalueimpl.h:37
+
+ + + + diff --git a/static/apidocs/icalvcal_8h_source.html b/static/apidocs/icalvcal_8h_source.html new file mode 100644 index 00000000..de146c27 --- /dev/null +++ b/static/apidocs/icalvcal_8h_source.html @@ -0,0 +1,133 @@ + + + + + + + +Libical API Documentation: icalvcal.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalvcal.h
+
+
+
1/*======================================================================
+
2 FILE: icalvcal.h
+
3 CREATOR: eric 25 May 00
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17======================================================================*/
+
18
+
19#ifndef ICALVCAL_H
+
20#define ICALVCAL_H
+
21
+
22#include "libical_vcal_export.h"
+
23#include "vobject.h"
+
24#include "icalcomponent.h"
+
25
+
26/* These are used as default values if the values are missing in the vCalendar
+
27 file. Gnome Calendar, for example, does not save the URL of the audio alarm,
+
28 so we have to add a value here to make a valid iCalendar object. */
+ + +
31{
+
32 char *alarm_audio_url;
+
33 char *alarm_audio_fmttype;
+
34 char *alarm_description;
+
35};
+
36
+
37/* Convert a vObject into an icalcomponent */
+
38
+
39LIBICAL_VCAL_EXPORT icalcomponent *icalvcal_convert(VObject *object);
+
40
+
41LIBICAL_VCAL_EXPORT icalcomponent *icalvcal_convert_with_defaults(VObject *object,
+
42 icalvcal_defaults * defaults);
+
43
+
44#endif /* !ICALVCAL_H */
+ +
Definition vobject.c:69
+
Definition icalvcal.h:31
+
Definition icalcomponent.c:36
+
+ + + + diff --git a/static/apidocs/icalversion_8h_source.html b/static/apidocs/icalversion_8h_source.html new file mode 100644 index 00000000..08b05694 --- /dev/null +++ b/static/apidocs/icalversion_8h_source.html @@ -0,0 +1,121 @@ + + + + + + + +Libical API Documentation: icalversion.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icalversion.h
+
+
+
1/*======================================================================
+
2 FILE: icalversion.h
+
3 CREATOR: eric 20 March 1999
+
4
+
5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
+
6
+
7 This library is free software; you can redistribute it and/or modify
+
8 it under the terms of either:
+
9
+
10 The LGPL as published by the Free Software Foundation, version
+
11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
+
12
+
13 Or:
+
14
+
15 The Mozilla Public License Version 2.0. You may obtain a copy of
+
16 the License at https://www.mozilla.org/MPL/
+
17 ======================================================================*/
+
18
+
19#ifndef ICAL_VERSION_H
+
20#define ICAL_VERSION_H
+
21
+
22#define ICAL_PACKAGE "libical"
+
23#define ICAL_VERSION "3.0"
+
24
+
25#define ICAL_MAJOR_VERSION (3)
+
26#define ICAL_MINOR_VERSION (0)
+
27#define ICAL_PATCH_VERSION (18)
+
28#define ICAL_MICRO_VERSION ICAL_PATCH_VERSION
+
29
+
39#define ICAL_CHECK_VERSION(major,minor,micro) \
+
40 (ICAL_MAJOR_VERSION > (major) || \
+
41 (ICAL_MAJOR_VERSION == (major) && ICAL_MINOR_VERSION > (minor)) || \
+
42 (ICAL_MAJOR_VERSION == (major) && ICAL_MINOR_VERSION == (minor) && \
+
43 ICAL_MICRO_VERSION >= (micro)))
+
44
+
45#endif
+
+ + + + diff --git a/static/apidocs/icptrholder__cxx_8h.html b/static/apidocs/icptrholder__cxx_8h.html new file mode 100644 index 00000000..757a521a --- /dev/null +++ b/static/apidocs/icptrholder__cxx_8h.html @@ -0,0 +1,111 @@ + + + + + + + +Libical API Documentation: icptrholder_cxx.h File Reference + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+ +
icptrholder_cxx.h File Reference
+
+
+ +

C++ template classes for managing C++ pointers returned by VComponent::get_..._component, VComponent::get_..._property, ICalProperty::get_..._value. +More...

+ +

Go to the source code of this file.

+ + + + +

+Data Structures

class  ICPointerHolder< T >
 
+

Detailed Description

+

C++ template classes for managing C++ pointers returned by VComponent::get_..._component, VComponent::get_..._property, ICalProperty::get_..._value.

+
Author
wyau (08/29/02)
+
Remarks
VComponent::get... functions returns a C++ object that wraps the libical implementation. It is important to note that the wrapped implementation still belongs to the original component. To stop memory leak, caller must delete the pointer. However, the destructor will call the appropriate free function. eg. ~VComponent calls icalcomponent_free(imp).
+

As stated previously, imp still belongs to the original component. To avoid freeing the wrapped "imp", caller must set the "imp" to null before deleting the pointer.

+

The template class relieves the burden of memory management when used as a stack based object. The class holds a pointer to the C++ Wrapper. The destructor set the imp to null before deleting the pointer.

+

Each C++ Wrapper instantiates a template class in its corresponding .h file.

+

Usage example: VComponentTmpPtr p;// VComponentTmpPtr is an instantiation of this template for (p=component.get_first_component; p!= 0; p=component.get_next_component) {

+

(C) COPYRIGHT 2001, Critical Path

+

This library is free software; you can redistribute it and/or modify it under the terms of either:

+

The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

+

Or:

+

The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

+
+ + + + diff --git a/static/apidocs/icptrholder__cxx_8h_source.html b/static/apidocs/icptrholder__cxx_8h_source.html new file mode 100644 index 00000000..fc86e0ac --- /dev/null +++ b/static/apidocs/icptrholder__cxx_8h_source.html @@ -0,0 +1,179 @@ + + + + + + + +Libical API Documentation: icptrholder_cxx.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
icptrholder_cxx.h
+
+
+Go to the documentation of this file.
1
+
42#ifndef ICPTRHOLDER_CXX_H
+
43#define ICPTRHOLDER_CXX_H
+
44
+
45#include <cassert>
+
46
+
47template < class T > class ICPointerHolder
+
48{
+
49public:
+ +
51 : ptr(0)
+
52 {
+
53 }
+
54
+
55 ICPointerHolder(T *p)
+
56 : ptr(p)
+
57 {
+
58 }
+
59
+
60 // copy constructor to support assignment
+ +
62 : ptr(ip.ptr)
+
63 {
+
64 // We need to transfer ownership of ptr to this object by setting
+
65 // ip's ptr to null. Otherwise, ptr will de deleted twice.
+
66 // const ugliness requires us to do the const_cast.
+
67 ICPointerHolder *ipp = const_cast < ICPointerHolder * >(&ip);
+
68
+
69 ipp->ptr = 0;
+
70 };
+
71
+ +
73 {
+
74 release();
+
75 }
+
76
+
77 ICPointerHolder &operator=(T *p)
+
78 {
+
79 this->release();
+
80 ptr = p;
+
81 return *this;
+
82 }
+
83
+
84 ICPointerHolder &operator=(ICPointerHolder &p)
+
85 {
+
86 this->release();
+
87 ptr = p.ptr; // this transfer ownership of the pointer
+
88 p.ptr = 0; // set it to null so the pointer won't get delete twice.
+
89 return *this;
+
90 }
+
91
+
92 bool operator!=(T *p)
+
93 {
+
94 return (ptr != p);
+
95 }
+
96
+
97 bool operator==(T *p)
+
98 {
+
99 return (ptr == p);
+
100 }
+
101
+
102 operator T *() const
+
103 {
+
104 return ptr;
+
105 }
+
106
+
107 T *operator->() const
+
108 {
+
109 assert(ptr);
+
110 return ptr;
+
111 }
+
112
+
113 T &operator*()
+
114 {
+
115 assert(ptr);
+
116 return *ptr;
+
117 }
+
118
+
119private:
+
120 void release()
+
121 {
+
122 if (ptr != 0) {
+
123 ptr->detach();
+
124 delete ptr;
+
125
+
126 ptr = 0;
+
127 }
+
128 }
+
129
+
130 T *ptr;
+
131};
+
132
+
133#endif
+
Definition icptrholder_cxx.h:48
+
+ + + + diff --git a/static/apidocs/index.html b/static/apidocs/index.html new file mode 100644 index 00000000..cc292471 --- /dev/null +++ b/static/apidocs/index.html @@ -0,0 +1,94 @@ + + + + + + + +Libical API Documentation: Libical - an implementation of iCalendar protocols and data formats + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Libical - an implementation of iCalendar protocols and data formats
+
+
+

+About

+

Libical is an Open Source implementation of the iCalendar protocols and protocol data units. The iCalendar specification describes how calendar clients can communicate with calendar servers so users can store their calendar data and arrange meetings with other users.

+

Libical implements RFC5545, RFC5546, RFC7529; the CalDav scheduling extensions in RFC6638; iCalendar extensions in RFC7986; plus the iCalendar iMIP protocol in RFC6047.

+

+License

+

The code and datafiles in this distribution are licensed under the Mozilla Public License (MPL) v2.0. See https://www.mozilla.org/MPL for a copy of the license.

+

Alternately, you may use libical under the terms of the GNU Library General Public License (LGPL) v2.1. See https://www.gnu.org/licenses/lgpl-2.1.txt for a copy of the license.

+

This dual license ensures that the library can be incorporated into both proprietary code and GPL'd programs, and will benefit from improvements made by programmers in both realms. I will only accept changes into my version of the library if they are similarly dual-licensed.

+

+Acknowledgments

+

Portions of this distribution are (C) Copyright 1996 Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc. See src/libicalvcal/README.TXT for details.

+
+
+ + + + diff --git a/static/apidocs/inherit_graph_0.map b/static/apidocs/inherit_graph_0.map new file mode 100644 index 00000000..917f505f --- /dev/null +++ b/static/apidocs/inherit_graph_0.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_0.md5 b/static/apidocs/inherit_graph_0.md5 new file mode 100644 index 00000000..30d77cf0 --- /dev/null +++ b/static/apidocs/inherit_graph_0.md5 @@ -0,0 +1 @@ +e6a692e612440564196baa2149206cd1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_0.png b/static/apidocs/inherit_graph_0.png new file mode 100644 index 00000000..2cc10f36 Binary files /dev/null and b/static/apidocs/inherit_graph_0.png differ diff --git a/static/apidocs/inherit_graph_1.map b/static/apidocs/inherit_graph_1.map new file mode 100644 index 00000000..0ed50277 --- /dev/null +++ b/static/apidocs/inherit_graph_1.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_1.md5 b/static/apidocs/inherit_graph_1.md5 new file mode 100644 index 00000000..c89514c3 --- /dev/null +++ b/static/apidocs/inherit_graph_1.md5 @@ -0,0 +1 @@ +62382b0631a4714204a75eb71c73d2f1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_1.png b/static/apidocs/inherit_graph_1.png new file mode 100644 index 00000000..ea264778 Binary files /dev/null and b/static/apidocs/inherit_graph_1.png differ diff --git a/static/apidocs/inherit_graph_10.map b/static/apidocs/inherit_graph_10.map new file mode 100644 index 00000000..89be81cf --- /dev/null +++ b/static/apidocs/inherit_graph_10.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_10.md5 b/static/apidocs/inherit_graph_10.md5 new file mode 100644 index 00000000..63626ea5 --- /dev/null +++ b/static/apidocs/inherit_graph_10.md5 @@ -0,0 +1 @@ +556e2a44e9a0b64b22a28ca17bfc4f63 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_10.png b/static/apidocs/inherit_graph_10.png new file mode 100644 index 00000000..0801425c Binary files /dev/null and b/static/apidocs/inherit_graph_10.png differ diff --git a/static/apidocs/inherit_graph_11.map b/static/apidocs/inherit_graph_11.map new file mode 100644 index 00000000..e44fad20 --- /dev/null +++ b/static/apidocs/inherit_graph_11.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_11.md5 b/static/apidocs/inherit_graph_11.md5 new file mode 100644 index 00000000..6c43d06e --- /dev/null +++ b/static/apidocs/inherit_graph_11.md5 @@ -0,0 +1 @@ +c2689f321bdd7166645bc53203343cc1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_11.png b/static/apidocs/inherit_graph_11.png new file mode 100644 index 00000000..1248dba5 Binary files /dev/null and b/static/apidocs/inherit_graph_11.png differ diff --git a/static/apidocs/inherit_graph_12.map b/static/apidocs/inherit_graph_12.map new file mode 100644 index 00000000..d0445ff5 --- /dev/null +++ b/static/apidocs/inherit_graph_12.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_12.md5 b/static/apidocs/inherit_graph_12.md5 new file mode 100644 index 00000000..53f61a84 --- /dev/null +++ b/static/apidocs/inherit_graph_12.md5 @@ -0,0 +1 @@ +ab79438eda7e751217ea05e25d409087 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_12.png b/static/apidocs/inherit_graph_12.png new file mode 100644 index 00000000..440c02d9 Binary files /dev/null and b/static/apidocs/inherit_graph_12.png differ diff --git a/static/apidocs/inherit_graph_13.map b/static/apidocs/inherit_graph_13.map new file mode 100644 index 00000000..3bded11a --- /dev/null +++ b/static/apidocs/inherit_graph_13.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_13.md5 b/static/apidocs/inherit_graph_13.md5 new file mode 100644 index 00000000..990db7d3 --- /dev/null +++ b/static/apidocs/inherit_graph_13.md5 @@ -0,0 +1 @@ +730142f16a96f3cf292a5f7105dece02 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_13.png b/static/apidocs/inherit_graph_13.png new file mode 100644 index 00000000..3cf3d4b8 Binary files /dev/null and b/static/apidocs/inherit_graph_13.png differ diff --git a/static/apidocs/inherit_graph_14.map b/static/apidocs/inherit_graph_14.map new file mode 100644 index 00000000..9ebd038e --- /dev/null +++ b/static/apidocs/inherit_graph_14.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_14.md5 b/static/apidocs/inherit_graph_14.md5 new file mode 100644 index 00000000..e7cc8fa5 --- /dev/null +++ b/static/apidocs/inherit_graph_14.md5 @@ -0,0 +1 @@ +87379585ca4a3624ae5c37c953c982fe \ No newline at end of file diff --git a/static/apidocs/inherit_graph_14.png b/static/apidocs/inherit_graph_14.png new file mode 100644 index 00000000..85ee573f Binary files /dev/null and b/static/apidocs/inherit_graph_14.png differ diff --git a/static/apidocs/inherit_graph_15.map b/static/apidocs/inherit_graph_15.map new file mode 100644 index 00000000..62206304 --- /dev/null +++ b/static/apidocs/inherit_graph_15.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_15.md5 b/static/apidocs/inherit_graph_15.md5 new file mode 100644 index 00000000..7da82ddc --- /dev/null +++ b/static/apidocs/inherit_graph_15.md5 @@ -0,0 +1 @@ +94e343d740d76bf597801c66207b84d9 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_15.png b/static/apidocs/inherit_graph_15.png new file mode 100644 index 00000000..b3105e6f Binary files /dev/null and b/static/apidocs/inherit_graph_15.png differ diff --git a/static/apidocs/inherit_graph_16.map b/static/apidocs/inherit_graph_16.map new file mode 100644 index 00000000..542e5100 --- /dev/null +++ b/static/apidocs/inherit_graph_16.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_16.md5 b/static/apidocs/inherit_graph_16.md5 new file mode 100644 index 00000000..e82fe3f9 --- /dev/null +++ b/static/apidocs/inherit_graph_16.md5 @@ -0,0 +1 @@ +b86224cd97249c26c21f1346fe8c5296 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_16.png b/static/apidocs/inherit_graph_16.png new file mode 100644 index 00000000..7ddaa903 Binary files /dev/null and b/static/apidocs/inherit_graph_16.png differ diff --git a/static/apidocs/inherit_graph_17.map b/static/apidocs/inherit_graph_17.map new file mode 100644 index 00000000..25c5db2b --- /dev/null +++ b/static/apidocs/inherit_graph_17.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_17.md5 b/static/apidocs/inherit_graph_17.md5 new file mode 100644 index 00000000..c5196706 --- /dev/null +++ b/static/apidocs/inherit_graph_17.md5 @@ -0,0 +1 @@ +530bd75dae73b3e8e671659830df420f \ No newline at end of file diff --git a/static/apidocs/inherit_graph_17.png b/static/apidocs/inherit_graph_17.png new file mode 100644 index 00000000..db6af93e Binary files /dev/null and b/static/apidocs/inherit_graph_17.png differ diff --git a/static/apidocs/inherit_graph_18.map b/static/apidocs/inherit_graph_18.map new file mode 100644 index 00000000..3ea1b26e --- /dev/null +++ b/static/apidocs/inherit_graph_18.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_18.md5 b/static/apidocs/inherit_graph_18.md5 new file mode 100644 index 00000000..ec3e8771 --- /dev/null +++ b/static/apidocs/inherit_graph_18.md5 @@ -0,0 +1 @@ +ff20ff808169dd3e64f1506e7fd27e65 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_18.png b/static/apidocs/inherit_graph_18.png new file mode 100644 index 00000000..d9651658 Binary files /dev/null and b/static/apidocs/inherit_graph_18.png differ diff --git a/static/apidocs/inherit_graph_19.map b/static/apidocs/inherit_graph_19.map new file mode 100644 index 00000000..a99f160c --- /dev/null +++ b/static/apidocs/inherit_graph_19.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_19.md5 b/static/apidocs/inherit_graph_19.md5 new file mode 100644 index 00000000..5e250161 --- /dev/null +++ b/static/apidocs/inherit_graph_19.md5 @@ -0,0 +1 @@ +5bf02dfb47ddad004e6f02447e06fff1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_19.png b/static/apidocs/inherit_graph_19.png new file mode 100644 index 00000000..23e4e31a Binary files /dev/null and b/static/apidocs/inherit_graph_19.png differ diff --git a/static/apidocs/inherit_graph_2.map b/static/apidocs/inherit_graph_2.map new file mode 100644 index 00000000..b2b6d006 --- /dev/null +++ b/static/apidocs/inherit_graph_2.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_2.md5 b/static/apidocs/inherit_graph_2.md5 new file mode 100644 index 00000000..f998d2ff --- /dev/null +++ b/static/apidocs/inherit_graph_2.md5 @@ -0,0 +1 @@ +5c5643e219d6c1d22d68f14a38458935 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_2.png b/static/apidocs/inherit_graph_2.png new file mode 100644 index 00000000..fca4ae5f Binary files /dev/null and b/static/apidocs/inherit_graph_2.png differ diff --git a/static/apidocs/inherit_graph_20.map b/static/apidocs/inherit_graph_20.map new file mode 100644 index 00000000..fb1ad437 --- /dev/null +++ b/static/apidocs/inherit_graph_20.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_20.md5 b/static/apidocs/inherit_graph_20.md5 new file mode 100644 index 00000000..1e2e7235 --- /dev/null +++ b/static/apidocs/inherit_graph_20.md5 @@ -0,0 +1 @@ +a857a509034a50a107220055d9f6579b \ No newline at end of file diff --git a/static/apidocs/inherit_graph_20.png b/static/apidocs/inherit_graph_20.png new file mode 100644 index 00000000..8707462c Binary files /dev/null and b/static/apidocs/inherit_graph_20.png differ diff --git a/static/apidocs/inherit_graph_21.map b/static/apidocs/inherit_graph_21.map new file mode 100644 index 00000000..3488655c --- /dev/null +++ b/static/apidocs/inherit_graph_21.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_21.md5 b/static/apidocs/inherit_graph_21.md5 new file mode 100644 index 00000000..3a8bb312 --- /dev/null +++ b/static/apidocs/inherit_graph_21.md5 @@ -0,0 +1 @@ +029548bac346d742b152ed006585614e \ No newline at end of file diff --git a/static/apidocs/inherit_graph_21.png b/static/apidocs/inherit_graph_21.png new file mode 100644 index 00000000..1b370f58 Binary files /dev/null and b/static/apidocs/inherit_graph_21.png differ diff --git a/static/apidocs/inherit_graph_22.map b/static/apidocs/inherit_graph_22.map new file mode 100644 index 00000000..85108f31 --- /dev/null +++ b/static/apidocs/inherit_graph_22.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_22.md5 b/static/apidocs/inherit_graph_22.md5 new file mode 100644 index 00000000..4cf816b9 --- /dev/null +++ b/static/apidocs/inherit_graph_22.md5 @@ -0,0 +1 @@ +139f7ccf56d63caeb19815aa0ca1422d \ No newline at end of file diff --git a/static/apidocs/inherit_graph_22.png b/static/apidocs/inherit_graph_22.png new file mode 100644 index 00000000..a3debaad Binary files /dev/null and b/static/apidocs/inherit_graph_22.png differ diff --git a/static/apidocs/inherit_graph_23.map b/static/apidocs/inherit_graph_23.map new file mode 100644 index 00000000..8fb296a2 --- /dev/null +++ b/static/apidocs/inherit_graph_23.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_23.md5 b/static/apidocs/inherit_graph_23.md5 new file mode 100644 index 00000000..c9c323a5 --- /dev/null +++ b/static/apidocs/inherit_graph_23.md5 @@ -0,0 +1 @@ +e87e13f7d211a633cde487377c22fed9 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_23.png b/static/apidocs/inherit_graph_23.png new file mode 100644 index 00000000..193ef846 Binary files /dev/null and b/static/apidocs/inherit_graph_23.png differ diff --git a/static/apidocs/inherit_graph_24.map b/static/apidocs/inherit_graph_24.map new file mode 100644 index 00000000..35fb503a --- /dev/null +++ b/static/apidocs/inherit_graph_24.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_24.md5 b/static/apidocs/inherit_graph_24.md5 new file mode 100644 index 00000000..7a0c247e --- /dev/null +++ b/static/apidocs/inherit_graph_24.md5 @@ -0,0 +1 @@ +0330eeb187ca2d59e1789f1f4954f4f3 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_24.png b/static/apidocs/inherit_graph_24.png new file mode 100644 index 00000000..adaca4c5 Binary files /dev/null and b/static/apidocs/inherit_graph_24.png differ diff --git a/static/apidocs/inherit_graph_25.map b/static/apidocs/inherit_graph_25.map new file mode 100644 index 00000000..d01f4012 --- /dev/null +++ b/static/apidocs/inherit_graph_25.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_25.md5 b/static/apidocs/inherit_graph_25.md5 new file mode 100644 index 00000000..a0f6e070 --- /dev/null +++ b/static/apidocs/inherit_graph_25.md5 @@ -0,0 +1 @@ +ad8333b26fb05a74febf2b5497b02221 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_25.png b/static/apidocs/inherit_graph_25.png new file mode 100644 index 00000000..0a9fe6f5 Binary files /dev/null and b/static/apidocs/inherit_graph_25.png differ diff --git a/static/apidocs/inherit_graph_26.map b/static/apidocs/inherit_graph_26.map new file mode 100644 index 00000000..227fc1b5 --- /dev/null +++ b/static/apidocs/inherit_graph_26.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_26.md5 b/static/apidocs/inherit_graph_26.md5 new file mode 100644 index 00000000..012df3c5 --- /dev/null +++ b/static/apidocs/inherit_graph_26.md5 @@ -0,0 +1 @@ +312ad5a9522d2462baf19ec410a65826 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_26.png b/static/apidocs/inherit_graph_26.png new file mode 100644 index 00000000..02ceeddd Binary files /dev/null and b/static/apidocs/inherit_graph_26.png differ diff --git a/static/apidocs/inherit_graph_27.map b/static/apidocs/inherit_graph_27.map new file mode 100644 index 00000000..5c7bb09b --- /dev/null +++ b/static/apidocs/inherit_graph_27.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_27.md5 b/static/apidocs/inherit_graph_27.md5 new file mode 100644 index 00000000..d0cfb055 --- /dev/null +++ b/static/apidocs/inherit_graph_27.md5 @@ -0,0 +1 @@ +e32a9e650d9d78dbb35130336ec1e81b \ No newline at end of file diff --git a/static/apidocs/inherit_graph_27.png b/static/apidocs/inherit_graph_27.png new file mode 100644 index 00000000..ba17c671 Binary files /dev/null and b/static/apidocs/inherit_graph_27.png differ diff --git a/static/apidocs/inherit_graph_28.map b/static/apidocs/inherit_graph_28.map new file mode 100644 index 00000000..e6c5b387 --- /dev/null +++ b/static/apidocs/inherit_graph_28.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_28.md5 b/static/apidocs/inherit_graph_28.md5 new file mode 100644 index 00000000..bbdf71e8 --- /dev/null +++ b/static/apidocs/inherit_graph_28.md5 @@ -0,0 +1 @@ +1e70b621c2efa7e20c9a3b5f41f267d4 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_28.png b/static/apidocs/inherit_graph_28.png new file mode 100644 index 00000000..34862101 Binary files /dev/null and b/static/apidocs/inherit_graph_28.png differ diff --git a/static/apidocs/inherit_graph_29.map b/static/apidocs/inherit_graph_29.map new file mode 100644 index 00000000..0ee00726 --- /dev/null +++ b/static/apidocs/inherit_graph_29.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_29.md5 b/static/apidocs/inherit_graph_29.md5 new file mode 100644 index 00000000..16f47b9f --- /dev/null +++ b/static/apidocs/inherit_graph_29.md5 @@ -0,0 +1 @@ +58521a3fb4875a56ac91229fa4c27257 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_29.png b/static/apidocs/inherit_graph_29.png new file mode 100644 index 00000000..765c3303 Binary files /dev/null and b/static/apidocs/inherit_graph_29.png differ diff --git a/static/apidocs/inherit_graph_3.map b/static/apidocs/inherit_graph_3.map new file mode 100644 index 00000000..d9802e9a --- /dev/null +++ b/static/apidocs/inherit_graph_3.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_3.md5 b/static/apidocs/inherit_graph_3.md5 new file mode 100644 index 00000000..b7dedca5 --- /dev/null +++ b/static/apidocs/inherit_graph_3.md5 @@ -0,0 +1 @@ +af72d65b1e483f57014e85065adc3d2d \ No newline at end of file diff --git a/static/apidocs/inherit_graph_3.png b/static/apidocs/inherit_graph_3.png new file mode 100644 index 00000000..821be12a Binary files /dev/null and b/static/apidocs/inherit_graph_3.png differ diff --git a/static/apidocs/inherit_graph_30.map b/static/apidocs/inherit_graph_30.map new file mode 100644 index 00000000..85a878bc --- /dev/null +++ b/static/apidocs/inherit_graph_30.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_30.md5 b/static/apidocs/inherit_graph_30.md5 new file mode 100644 index 00000000..ab6c42c3 --- /dev/null +++ b/static/apidocs/inherit_graph_30.md5 @@ -0,0 +1 @@ +aec682da9c0bcf5226e7f10587ddaa10 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_30.png b/static/apidocs/inherit_graph_30.png new file mode 100644 index 00000000..9bd8a5d9 Binary files /dev/null and b/static/apidocs/inherit_graph_30.png differ diff --git a/static/apidocs/inherit_graph_31.map b/static/apidocs/inherit_graph_31.map new file mode 100644 index 00000000..85cda370 --- /dev/null +++ b/static/apidocs/inherit_graph_31.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_31.md5 b/static/apidocs/inherit_graph_31.md5 new file mode 100644 index 00000000..9f70eb9e --- /dev/null +++ b/static/apidocs/inherit_graph_31.md5 @@ -0,0 +1 @@ +c145ca7a5d180ed03538dd863ea4e7b9 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_31.png b/static/apidocs/inherit_graph_31.png new file mode 100644 index 00000000..abe2dfe8 Binary files /dev/null and b/static/apidocs/inherit_graph_31.png differ diff --git a/static/apidocs/inherit_graph_32.map b/static/apidocs/inherit_graph_32.map new file mode 100644 index 00000000..610cee97 --- /dev/null +++ b/static/apidocs/inherit_graph_32.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_32.md5 b/static/apidocs/inherit_graph_32.md5 new file mode 100644 index 00000000..52bbc02a --- /dev/null +++ b/static/apidocs/inherit_graph_32.md5 @@ -0,0 +1 @@ +eb53996f8a388ed09cae11190d420c76 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_32.png b/static/apidocs/inherit_graph_32.png new file mode 100644 index 00000000..63f32e1d Binary files /dev/null and b/static/apidocs/inherit_graph_32.png differ diff --git a/static/apidocs/inherit_graph_33.map b/static/apidocs/inherit_graph_33.map new file mode 100644 index 00000000..ef5e3a19 --- /dev/null +++ b/static/apidocs/inherit_graph_33.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_33.md5 b/static/apidocs/inherit_graph_33.md5 new file mode 100644 index 00000000..0952dfc5 --- /dev/null +++ b/static/apidocs/inherit_graph_33.md5 @@ -0,0 +1 @@ +02ab04914566bc183702d794d2b55340 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_33.png b/static/apidocs/inherit_graph_33.png new file mode 100644 index 00000000..d556ee99 Binary files /dev/null and b/static/apidocs/inherit_graph_33.png differ diff --git a/static/apidocs/inherit_graph_34.map b/static/apidocs/inherit_graph_34.map new file mode 100644 index 00000000..450ed5ec --- /dev/null +++ b/static/apidocs/inherit_graph_34.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_34.md5 b/static/apidocs/inherit_graph_34.md5 new file mode 100644 index 00000000..4ce0dba3 --- /dev/null +++ b/static/apidocs/inherit_graph_34.md5 @@ -0,0 +1 @@ +8d1a187118006bb717aa0748f907e114 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_34.png b/static/apidocs/inherit_graph_34.png new file mode 100644 index 00000000..be9e653c Binary files /dev/null and b/static/apidocs/inherit_graph_34.png differ diff --git a/static/apidocs/inherit_graph_35.map b/static/apidocs/inherit_graph_35.map new file mode 100644 index 00000000..9d77de50 --- /dev/null +++ b/static/apidocs/inherit_graph_35.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_35.md5 b/static/apidocs/inherit_graph_35.md5 new file mode 100644 index 00000000..ab65ca85 --- /dev/null +++ b/static/apidocs/inherit_graph_35.md5 @@ -0,0 +1 @@ +27b26b3f04bf88a09f4cb3ddc72e96c6 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_35.png b/static/apidocs/inherit_graph_35.png new file mode 100644 index 00000000..0cef2ae5 Binary files /dev/null and b/static/apidocs/inherit_graph_35.png differ diff --git a/static/apidocs/inherit_graph_36.map b/static/apidocs/inherit_graph_36.map new file mode 100644 index 00000000..20ae9762 --- /dev/null +++ b/static/apidocs/inherit_graph_36.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_36.md5 b/static/apidocs/inherit_graph_36.md5 new file mode 100644 index 00000000..88cdf483 --- /dev/null +++ b/static/apidocs/inherit_graph_36.md5 @@ -0,0 +1 @@ +f3d37ad91b256ec80561ed6d0c195432 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_36.png b/static/apidocs/inherit_graph_36.png new file mode 100644 index 00000000..6404c61a Binary files /dev/null and b/static/apidocs/inherit_graph_36.png differ diff --git a/static/apidocs/inherit_graph_37.map b/static/apidocs/inherit_graph_37.map new file mode 100644 index 00000000..69b1d8cb --- /dev/null +++ b/static/apidocs/inherit_graph_37.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_37.md5 b/static/apidocs/inherit_graph_37.md5 new file mode 100644 index 00000000..5d6d04b4 --- /dev/null +++ b/static/apidocs/inherit_graph_37.md5 @@ -0,0 +1 @@ +641532cbbde86d6ab7f8f2abe7ab493e \ No newline at end of file diff --git a/static/apidocs/inherit_graph_37.png b/static/apidocs/inherit_graph_37.png new file mode 100644 index 00000000..5360db46 Binary files /dev/null and b/static/apidocs/inherit_graph_37.png differ diff --git a/static/apidocs/inherit_graph_38.map b/static/apidocs/inherit_graph_38.map new file mode 100644 index 00000000..997b7fc3 --- /dev/null +++ b/static/apidocs/inherit_graph_38.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_38.md5 b/static/apidocs/inherit_graph_38.md5 new file mode 100644 index 00000000..a8a2c43c --- /dev/null +++ b/static/apidocs/inherit_graph_38.md5 @@ -0,0 +1 @@ +9e9149053b915a887a5d4e89a516db7d \ No newline at end of file diff --git a/static/apidocs/inherit_graph_38.png b/static/apidocs/inherit_graph_38.png new file mode 100644 index 00000000..2cf29d31 Binary files /dev/null and b/static/apidocs/inherit_graph_38.png differ diff --git a/static/apidocs/inherit_graph_39.map b/static/apidocs/inherit_graph_39.map new file mode 100644 index 00000000..65ba0e66 --- /dev/null +++ b/static/apidocs/inherit_graph_39.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_39.md5 b/static/apidocs/inherit_graph_39.md5 new file mode 100644 index 00000000..ae15ee0c --- /dev/null +++ b/static/apidocs/inherit_graph_39.md5 @@ -0,0 +1 @@ +50b6fccca2ebd49c25c74d7ff3f96341 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_39.png b/static/apidocs/inherit_graph_39.png new file mode 100644 index 00000000..feab277f Binary files /dev/null and b/static/apidocs/inherit_graph_39.png differ diff --git a/static/apidocs/inherit_graph_4.map b/static/apidocs/inherit_graph_4.map new file mode 100644 index 00000000..0b5fdeb6 --- /dev/null +++ b/static/apidocs/inherit_graph_4.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_4.md5 b/static/apidocs/inherit_graph_4.md5 new file mode 100644 index 00000000..000e4f88 --- /dev/null +++ b/static/apidocs/inherit_graph_4.md5 @@ -0,0 +1 @@ +a8a22d4a95ae81db7a1ce0ec33798b46 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_4.png b/static/apidocs/inherit_graph_4.png new file mode 100644 index 00000000..a6ebbdfe Binary files /dev/null and b/static/apidocs/inherit_graph_4.png differ diff --git a/static/apidocs/inherit_graph_40.map b/static/apidocs/inherit_graph_40.map new file mode 100644 index 00000000..87b31bf6 --- /dev/null +++ b/static/apidocs/inherit_graph_40.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_40.md5 b/static/apidocs/inherit_graph_40.md5 new file mode 100644 index 00000000..889de526 --- /dev/null +++ b/static/apidocs/inherit_graph_40.md5 @@ -0,0 +1 @@ +63f3ac20e438779cdb68e121b4ac4258 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_40.png b/static/apidocs/inherit_graph_40.png new file mode 100644 index 00000000..e929203b Binary files /dev/null and b/static/apidocs/inherit_graph_40.png differ diff --git a/static/apidocs/inherit_graph_41.map b/static/apidocs/inherit_graph_41.map new file mode 100644 index 00000000..a90f4e50 --- /dev/null +++ b/static/apidocs/inherit_graph_41.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_41.md5 b/static/apidocs/inherit_graph_41.md5 new file mode 100644 index 00000000..a7e967fd --- /dev/null +++ b/static/apidocs/inherit_graph_41.md5 @@ -0,0 +1 @@ +1b55112c5484cc5a724cbfd6b2d6efb1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_41.png b/static/apidocs/inherit_graph_41.png new file mode 100644 index 00000000..448fcc6a Binary files /dev/null and b/static/apidocs/inherit_graph_41.png differ diff --git a/static/apidocs/inherit_graph_42.map b/static/apidocs/inherit_graph_42.map new file mode 100644 index 00000000..1e6e8b99 --- /dev/null +++ b/static/apidocs/inherit_graph_42.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_42.md5 b/static/apidocs/inherit_graph_42.md5 new file mode 100644 index 00000000..0cbed302 --- /dev/null +++ b/static/apidocs/inherit_graph_42.md5 @@ -0,0 +1 @@ +6c618c5a8973fd242ebd46c4d7efdf56 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_42.png b/static/apidocs/inherit_graph_42.png new file mode 100644 index 00000000..37e5a624 Binary files /dev/null and b/static/apidocs/inherit_graph_42.png differ diff --git a/static/apidocs/inherit_graph_43.map b/static/apidocs/inherit_graph_43.map new file mode 100644 index 00000000..e0d3bb96 --- /dev/null +++ b/static/apidocs/inherit_graph_43.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_43.md5 b/static/apidocs/inherit_graph_43.md5 new file mode 100644 index 00000000..3ae869b5 --- /dev/null +++ b/static/apidocs/inherit_graph_43.md5 @@ -0,0 +1 @@ +3b130440e481d060378cfbe683a13efa \ No newline at end of file diff --git a/static/apidocs/inherit_graph_43.png b/static/apidocs/inherit_graph_43.png new file mode 100644 index 00000000..a13129e6 Binary files /dev/null and b/static/apidocs/inherit_graph_43.png differ diff --git a/static/apidocs/inherit_graph_44.map b/static/apidocs/inherit_graph_44.map new file mode 100644 index 00000000..5a5d157b --- /dev/null +++ b/static/apidocs/inherit_graph_44.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_44.md5 b/static/apidocs/inherit_graph_44.md5 new file mode 100644 index 00000000..adfaae2f --- /dev/null +++ b/static/apidocs/inherit_graph_44.md5 @@ -0,0 +1 @@ +87609fe3624eb98882ccc961dc407fd6 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_44.png b/static/apidocs/inherit_graph_44.png new file mode 100644 index 00000000..b755a449 Binary files /dev/null and b/static/apidocs/inherit_graph_44.png differ diff --git a/static/apidocs/inherit_graph_45.map b/static/apidocs/inherit_graph_45.map new file mode 100644 index 00000000..81e542e2 --- /dev/null +++ b/static/apidocs/inherit_graph_45.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_45.md5 b/static/apidocs/inherit_graph_45.md5 new file mode 100644 index 00000000..c44619a9 --- /dev/null +++ b/static/apidocs/inherit_graph_45.md5 @@ -0,0 +1 @@ +83c7c9b964d58c1e94f1fe48ac359402 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_45.png b/static/apidocs/inherit_graph_45.png new file mode 100644 index 00000000..a323699c Binary files /dev/null and b/static/apidocs/inherit_graph_45.png differ diff --git a/static/apidocs/inherit_graph_46.map b/static/apidocs/inherit_graph_46.map new file mode 100644 index 00000000..7eda7951 --- /dev/null +++ b/static/apidocs/inherit_graph_46.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_46.md5 b/static/apidocs/inherit_graph_46.md5 new file mode 100644 index 00000000..3857d728 --- /dev/null +++ b/static/apidocs/inherit_graph_46.md5 @@ -0,0 +1 @@ +4ab9fa44be59d2ce13a93b2682c95920 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_46.png b/static/apidocs/inherit_graph_46.png new file mode 100644 index 00000000..92c2fa5c Binary files /dev/null and b/static/apidocs/inherit_graph_46.png differ diff --git a/static/apidocs/inherit_graph_47.map b/static/apidocs/inherit_graph_47.map new file mode 100644 index 00000000..8edef2c9 --- /dev/null +++ b/static/apidocs/inherit_graph_47.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_47.md5 b/static/apidocs/inherit_graph_47.md5 new file mode 100644 index 00000000..79e933f8 --- /dev/null +++ b/static/apidocs/inherit_graph_47.md5 @@ -0,0 +1 @@ +7760b4b9c4847a790df1cd71457b24ac \ No newline at end of file diff --git a/static/apidocs/inherit_graph_47.png b/static/apidocs/inherit_graph_47.png new file mode 100644 index 00000000..32021b5e Binary files /dev/null and b/static/apidocs/inherit_graph_47.png differ diff --git a/static/apidocs/inherit_graph_48.map b/static/apidocs/inherit_graph_48.map new file mode 100644 index 00000000..b376c458 --- /dev/null +++ b/static/apidocs/inherit_graph_48.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_48.md5 b/static/apidocs/inherit_graph_48.md5 new file mode 100644 index 00000000..bfbc5268 --- /dev/null +++ b/static/apidocs/inherit_graph_48.md5 @@ -0,0 +1 @@ +09d4287a01a7006394b6985b243969b6 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_48.png b/static/apidocs/inherit_graph_48.png new file mode 100644 index 00000000..11327457 Binary files /dev/null and b/static/apidocs/inherit_graph_48.png differ diff --git a/static/apidocs/inherit_graph_49.map b/static/apidocs/inherit_graph_49.map new file mode 100644 index 00000000..c687abae --- /dev/null +++ b/static/apidocs/inherit_graph_49.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_49.md5 b/static/apidocs/inherit_graph_49.md5 new file mode 100644 index 00000000..c75079ad --- /dev/null +++ b/static/apidocs/inherit_graph_49.md5 @@ -0,0 +1 @@ +00d9aa68936bc9601f1ddc1747609f4c \ No newline at end of file diff --git a/static/apidocs/inherit_graph_49.png b/static/apidocs/inherit_graph_49.png new file mode 100644 index 00000000..06db385a Binary files /dev/null and b/static/apidocs/inherit_graph_49.png differ diff --git a/static/apidocs/inherit_graph_5.map b/static/apidocs/inherit_graph_5.map new file mode 100644 index 00000000..03b240eb --- /dev/null +++ b/static/apidocs/inherit_graph_5.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_5.md5 b/static/apidocs/inherit_graph_5.md5 new file mode 100644 index 00000000..465e66fa --- /dev/null +++ b/static/apidocs/inherit_graph_5.md5 @@ -0,0 +1 @@ +cbce02b38bb243a61ecd1d699de361d9 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_5.png b/static/apidocs/inherit_graph_5.png new file mode 100644 index 00000000..0085494a Binary files /dev/null and b/static/apidocs/inherit_graph_5.png differ diff --git a/static/apidocs/inherit_graph_50.map b/static/apidocs/inherit_graph_50.map new file mode 100644 index 00000000..89f27c65 --- /dev/null +++ b/static/apidocs/inherit_graph_50.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_50.md5 b/static/apidocs/inherit_graph_50.md5 new file mode 100644 index 00000000..f97a9ebd --- /dev/null +++ b/static/apidocs/inherit_graph_50.md5 @@ -0,0 +1 @@ +3d39609f8a25cbee2f30224c751d938d \ No newline at end of file diff --git a/static/apidocs/inherit_graph_50.png b/static/apidocs/inherit_graph_50.png new file mode 100644 index 00000000..c4f9788a Binary files /dev/null and b/static/apidocs/inherit_graph_50.png differ diff --git a/static/apidocs/inherit_graph_51.map b/static/apidocs/inherit_graph_51.map new file mode 100644 index 00000000..3d5d812b --- /dev/null +++ b/static/apidocs/inherit_graph_51.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_51.md5 b/static/apidocs/inherit_graph_51.md5 new file mode 100644 index 00000000..95cd9a04 --- /dev/null +++ b/static/apidocs/inherit_graph_51.md5 @@ -0,0 +1 @@ +c3efce636e1bc1f3a09b083e3db1edbc \ No newline at end of file diff --git a/static/apidocs/inherit_graph_51.png b/static/apidocs/inherit_graph_51.png new file mode 100644 index 00000000..39c9b403 Binary files /dev/null and b/static/apidocs/inherit_graph_51.png differ diff --git a/static/apidocs/inherit_graph_52.map b/static/apidocs/inherit_graph_52.map new file mode 100644 index 00000000..335d9376 --- /dev/null +++ b/static/apidocs/inherit_graph_52.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_52.md5 b/static/apidocs/inherit_graph_52.md5 new file mode 100644 index 00000000..833aedd2 --- /dev/null +++ b/static/apidocs/inherit_graph_52.md5 @@ -0,0 +1 @@ +d32522d440ebd9375c29a7c7cd6eeee7 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_52.png b/static/apidocs/inherit_graph_52.png new file mode 100644 index 00000000..97d08993 Binary files /dev/null and b/static/apidocs/inherit_graph_52.png differ diff --git a/static/apidocs/inherit_graph_53.map b/static/apidocs/inherit_graph_53.map new file mode 100644 index 00000000..e8fc13f4 --- /dev/null +++ b/static/apidocs/inherit_graph_53.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_53.md5 b/static/apidocs/inherit_graph_53.md5 new file mode 100644 index 00000000..a00a3994 --- /dev/null +++ b/static/apidocs/inherit_graph_53.md5 @@ -0,0 +1 @@ +9b163f865c72bf1c04fe576495e290c1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_53.png b/static/apidocs/inherit_graph_53.png new file mode 100644 index 00000000..4adaead9 Binary files /dev/null and b/static/apidocs/inherit_graph_53.png differ diff --git a/static/apidocs/inherit_graph_54.map b/static/apidocs/inherit_graph_54.map new file mode 100644 index 00000000..919388f0 --- /dev/null +++ b/static/apidocs/inherit_graph_54.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_54.md5 b/static/apidocs/inherit_graph_54.md5 new file mode 100644 index 00000000..445e42f7 --- /dev/null +++ b/static/apidocs/inherit_graph_54.md5 @@ -0,0 +1 @@ +4b2a90320fca3b59edfe68368f803265 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_54.png b/static/apidocs/inherit_graph_54.png new file mode 100644 index 00000000..6b5e9636 Binary files /dev/null and b/static/apidocs/inherit_graph_54.png differ diff --git a/static/apidocs/inherit_graph_55.map b/static/apidocs/inherit_graph_55.map new file mode 100644 index 00000000..50d56304 --- /dev/null +++ b/static/apidocs/inherit_graph_55.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_55.md5 b/static/apidocs/inherit_graph_55.md5 new file mode 100644 index 00000000..3fb46caa --- /dev/null +++ b/static/apidocs/inherit_graph_55.md5 @@ -0,0 +1 @@ +7284923336afb42a9c74a1e0c9b44df3 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_55.png b/static/apidocs/inherit_graph_55.png new file mode 100644 index 00000000..35710f54 Binary files /dev/null and b/static/apidocs/inherit_graph_55.png differ diff --git a/static/apidocs/inherit_graph_56.map b/static/apidocs/inherit_graph_56.map new file mode 100644 index 00000000..350238b4 --- /dev/null +++ b/static/apidocs/inherit_graph_56.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_56.md5 b/static/apidocs/inherit_graph_56.md5 new file mode 100644 index 00000000..eefd81c4 --- /dev/null +++ b/static/apidocs/inherit_graph_56.md5 @@ -0,0 +1 @@ +46f24888f66a91cbb74268fab8ced3a6 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_56.png b/static/apidocs/inherit_graph_56.png new file mode 100644 index 00000000..8d4b75c5 Binary files /dev/null and b/static/apidocs/inherit_graph_56.png differ diff --git a/static/apidocs/inherit_graph_57.map b/static/apidocs/inherit_graph_57.map new file mode 100644 index 00000000..f4ef6749 --- /dev/null +++ b/static/apidocs/inherit_graph_57.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_57.md5 b/static/apidocs/inherit_graph_57.md5 new file mode 100644 index 00000000..d7f31fc0 --- /dev/null +++ b/static/apidocs/inherit_graph_57.md5 @@ -0,0 +1 @@ +0ec7144e572004ef44aff918c31b1df0 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_57.png b/static/apidocs/inherit_graph_57.png new file mode 100644 index 00000000..0856261f Binary files /dev/null and b/static/apidocs/inherit_graph_57.png differ diff --git a/static/apidocs/inherit_graph_58.map b/static/apidocs/inherit_graph_58.map new file mode 100644 index 00000000..e0f9b065 --- /dev/null +++ b/static/apidocs/inherit_graph_58.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_58.md5 b/static/apidocs/inherit_graph_58.md5 new file mode 100644 index 00000000..8f60602b --- /dev/null +++ b/static/apidocs/inherit_graph_58.md5 @@ -0,0 +1 @@ +cb5af54b2368b5e4de07bbbeca5c33fd \ No newline at end of file diff --git a/static/apidocs/inherit_graph_58.png b/static/apidocs/inherit_graph_58.png new file mode 100644 index 00000000..029ec49c Binary files /dev/null and b/static/apidocs/inherit_graph_58.png differ diff --git a/static/apidocs/inherit_graph_59.map b/static/apidocs/inherit_graph_59.map new file mode 100644 index 00000000..bf39eae9 --- /dev/null +++ b/static/apidocs/inherit_graph_59.map @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/apidocs/inherit_graph_59.md5 b/static/apidocs/inherit_graph_59.md5 new file mode 100644 index 00000000..9080a042 --- /dev/null +++ b/static/apidocs/inherit_graph_59.md5 @@ -0,0 +1 @@ +768251305c62e6dcb36cdd4528714506 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_59.png b/static/apidocs/inherit_graph_59.png new file mode 100644 index 00000000..b9d8d92c Binary files /dev/null and b/static/apidocs/inherit_graph_59.png differ diff --git a/static/apidocs/inherit_graph_6.map b/static/apidocs/inherit_graph_6.map new file mode 100644 index 00000000..63f321cd --- /dev/null +++ b/static/apidocs/inherit_graph_6.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_6.md5 b/static/apidocs/inherit_graph_6.md5 new file mode 100644 index 00000000..bd070778 --- /dev/null +++ b/static/apidocs/inherit_graph_6.md5 @@ -0,0 +1 @@ +c4cca69d6da3d666b33bed7b7a0de317 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_6.png b/static/apidocs/inherit_graph_6.png new file mode 100644 index 00000000..b9035c1c Binary files /dev/null and b/static/apidocs/inherit_graph_6.png differ diff --git a/static/apidocs/inherit_graph_60.map b/static/apidocs/inherit_graph_60.map new file mode 100644 index 00000000..e4765c74 --- /dev/null +++ b/static/apidocs/inherit_graph_60.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_60.md5 b/static/apidocs/inherit_graph_60.md5 new file mode 100644 index 00000000..a7f9390a --- /dev/null +++ b/static/apidocs/inherit_graph_60.md5 @@ -0,0 +1 @@ +78c0eeaea38f916347b683a4ca0ba4be \ No newline at end of file diff --git a/static/apidocs/inherit_graph_60.png b/static/apidocs/inherit_graph_60.png new file mode 100644 index 00000000..fb7e30be Binary files /dev/null and b/static/apidocs/inherit_graph_60.png differ diff --git a/static/apidocs/inherit_graph_61.map b/static/apidocs/inherit_graph_61.map new file mode 100644 index 00000000..f648861b --- /dev/null +++ b/static/apidocs/inherit_graph_61.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_61.md5 b/static/apidocs/inherit_graph_61.md5 new file mode 100644 index 00000000..d9818100 --- /dev/null +++ b/static/apidocs/inherit_graph_61.md5 @@ -0,0 +1 @@ +60675b62013b800487a73556125af71f \ No newline at end of file diff --git a/static/apidocs/inherit_graph_61.png b/static/apidocs/inherit_graph_61.png new file mode 100644 index 00000000..b8062083 Binary files /dev/null and b/static/apidocs/inherit_graph_61.png differ diff --git a/static/apidocs/inherit_graph_62.map b/static/apidocs/inherit_graph_62.map new file mode 100644 index 00000000..8952f22f --- /dev/null +++ b/static/apidocs/inherit_graph_62.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_62.md5 b/static/apidocs/inherit_graph_62.md5 new file mode 100644 index 00000000..37c321e4 --- /dev/null +++ b/static/apidocs/inherit_graph_62.md5 @@ -0,0 +1 @@ +b71bf7c9a56c4c9d2cae16d519e18eae \ No newline at end of file diff --git a/static/apidocs/inherit_graph_62.png b/static/apidocs/inherit_graph_62.png new file mode 100644 index 00000000..55da33b3 Binary files /dev/null and b/static/apidocs/inherit_graph_62.png differ diff --git a/static/apidocs/inherit_graph_63.map b/static/apidocs/inherit_graph_63.map new file mode 100644 index 00000000..dafd650b --- /dev/null +++ b/static/apidocs/inherit_graph_63.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_63.md5 b/static/apidocs/inherit_graph_63.md5 new file mode 100644 index 00000000..d5bc2d19 --- /dev/null +++ b/static/apidocs/inherit_graph_63.md5 @@ -0,0 +1 @@ +f6a8b03a54ed53b51e20edb2fc63ad5f \ No newline at end of file diff --git a/static/apidocs/inherit_graph_63.png b/static/apidocs/inherit_graph_63.png new file mode 100644 index 00000000..3f6decf1 Binary files /dev/null and b/static/apidocs/inherit_graph_63.png differ diff --git a/static/apidocs/inherit_graph_64.map b/static/apidocs/inherit_graph_64.map new file mode 100644 index 00000000..af5daeba --- /dev/null +++ b/static/apidocs/inherit_graph_64.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_64.md5 b/static/apidocs/inherit_graph_64.md5 new file mode 100644 index 00000000..26ef79f0 --- /dev/null +++ b/static/apidocs/inherit_graph_64.md5 @@ -0,0 +1 @@ +a0a70590712dbf04b785f09764273300 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_64.png b/static/apidocs/inherit_graph_64.png new file mode 100644 index 00000000..65a3a521 Binary files /dev/null and b/static/apidocs/inherit_graph_64.png differ diff --git a/static/apidocs/inherit_graph_65.map b/static/apidocs/inherit_graph_65.map new file mode 100644 index 00000000..34157990 --- /dev/null +++ b/static/apidocs/inherit_graph_65.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_65.md5 b/static/apidocs/inherit_graph_65.md5 new file mode 100644 index 00000000..909170d3 --- /dev/null +++ b/static/apidocs/inherit_graph_65.md5 @@ -0,0 +1 @@ +de740ff2fcb5ec791279a0dbab8eaafb \ No newline at end of file diff --git a/static/apidocs/inherit_graph_65.png b/static/apidocs/inherit_graph_65.png new file mode 100644 index 00000000..a40afa86 Binary files /dev/null and b/static/apidocs/inherit_graph_65.png differ diff --git a/static/apidocs/inherit_graph_66.map b/static/apidocs/inherit_graph_66.map new file mode 100644 index 00000000..a392e509 --- /dev/null +++ b/static/apidocs/inherit_graph_66.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_66.md5 b/static/apidocs/inherit_graph_66.md5 new file mode 100644 index 00000000..32999b79 --- /dev/null +++ b/static/apidocs/inherit_graph_66.md5 @@ -0,0 +1 @@ +409c68b7e52608290a698d9b4deb80a9 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_66.png b/static/apidocs/inherit_graph_66.png new file mode 100644 index 00000000..e754cc85 Binary files /dev/null and b/static/apidocs/inherit_graph_66.png differ diff --git a/static/apidocs/inherit_graph_67.map b/static/apidocs/inherit_graph_67.map new file mode 100644 index 00000000..ee4accf9 --- /dev/null +++ b/static/apidocs/inherit_graph_67.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_67.md5 b/static/apidocs/inherit_graph_67.md5 new file mode 100644 index 00000000..fc2b40a2 --- /dev/null +++ b/static/apidocs/inherit_graph_67.md5 @@ -0,0 +1 @@ +54ea8a72e253206f13e0c1b4e7a3a303 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_67.png b/static/apidocs/inherit_graph_67.png new file mode 100644 index 00000000..13e08ef7 Binary files /dev/null and b/static/apidocs/inherit_graph_67.png differ diff --git a/static/apidocs/inherit_graph_68.map b/static/apidocs/inherit_graph_68.map new file mode 100644 index 00000000..19420242 --- /dev/null +++ b/static/apidocs/inherit_graph_68.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_68.md5 b/static/apidocs/inherit_graph_68.md5 new file mode 100644 index 00000000..08cffeee --- /dev/null +++ b/static/apidocs/inherit_graph_68.md5 @@ -0,0 +1 @@ +d964e997e465d24a8b0b15bfafd71736 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_68.png b/static/apidocs/inherit_graph_68.png new file mode 100644 index 00000000..ccf2f578 Binary files /dev/null and b/static/apidocs/inherit_graph_68.png differ diff --git a/static/apidocs/inherit_graph_69.map b/static/apidocs/inherit_graph_69.map new file mode 100644 index 00000000..50a098c4 --- /dev/null +++ b/static/apidocs/inherit_graph_69.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_69.md5 b/static/apidocs/inherit_graph_69.md5 new file mode 100644 index 00000000..38483609 --- /dev/null +++ b/static/apidocs/inherit_graph_69.md5 @@ -0,0 +1 @@ +68b260ec4dba6cb0ac5a64ee3a3fbd74 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_69.png b/static/apidocs/inherit_graph_69.png new file mode 100644 index 00000000..b841fc6f Binary files /dev/null and b/static/apidocs/inherit_graph_69.png differ diff --git a/static/apidocs/inherit_graph_7.map b/static/apidocs/inherit_graph_7.map new file mode 100644 index 00000000..54b577ad --- /dev/null +++ b/static/apidocs/inherit_graph_7.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_7.md5 b/static/apidocs/inherit_graph_7.md5 new file mode 100644 index 00000000..2cebb629 --- /dev/null +++ b/static/apidocs/inherit_graph_7.md5 @@ -0,0 +1 @@ +8896daa573cc677361e43c262ca83403 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_7.png b/static/apidocs/inherit_graph_7.png new file mode 100644 index 00000000..399f0a35 Binary files /dev/null and b/static/apidocs/inherit_graph_7.png differ diff --git a/static/apidocs/inherit_graph_70.map b/static/apidocs/inherit_graph_70.map new file mode 100644 index 00000000..e2cb64e7 --- /dev/null +++ b/static/apidocs/inherit_graph_70.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_70.md5 b/static/apidocs/inherit_graph_70.md5 new file mode 100644 index 00000000..96fc4efd --- /dev/null +++ b/static/apidocs/inherit_graph_70.md5 @@ -0,0 +1 @@ +0cb9284b657f23c9e56e0a64dc24c699 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_70.png b/static/apidocs/inherit_graph_70.png new file mode 100644 index 00000000..fff0e7a7 Binary files /dev/null and b/static/apidocs/inherit_graph_70.png differ diff --git a/static/apidocs/inherit_graph_71.map b/static/apidocs/inherit_graph_71.map new file mode 100644 index 00000000..818cc038 --- /dev/null +++ b/static/apidocs/inherit_graph_71.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_71.md5 b/static/apidocs/inherit_graph_71.md5 new file mode 100644 index 00000000..ed5f1bc3 --- /dev/null +++ b/static/apidocs/inherit_graph_71.md5 @@ -0,0 +1 @@ +ced29bb0eed76b677347d6df6c5fdcad \ No newline at end of file diff --git a/static/apidocs/inherit_graph_71.png b/static/apidocs/inherit_graph_71.png new file mode 100644 index 00000000..1e5ffc89 Binary files /dev/null and b/static/apidocs/inherit_graph_71.png differ diff --git a/static/apidocs/inherit_graph_72.map b/static/apidocs/inherit_graph_72.map new file mode 100644 index 00000000..23bb2cf6 --- /dev/null +++ b/static/apidocs/inherit_graph_72.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_72.md5 b/static/apidocs/inherit_graph_72.md5 new file mode 100644 index 00000000..fcff9249 --- /dev/null +++ b/static/apidocs/inherit_graph_72.md5 @@ -0,0 +1 @@ +39e428bb1f6041aaae5f34464ec7d33c \ No newline at end of file diff --git a/static/apidocs/inherit_graph_72.png b/static/apidocs/inherit_graph_72.png new file mode 100644 index 00000000..c66f6827 Binary files /dev/null and b/static/apidocs/inherit_graph_72.png differ diff --git a/static/apidocs/inherit_graph_73.map b/static/apidocs/inherit_graph_73.map new file mode 100644 index 00000000..287ac27a --- /dev/null +++ b/static/apidocs/inherit_graph_73.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_73.md5 b/static/apidocs/inherit_graph_73.md5 new file mode 100644 index 00000000..b678218c --- /dev/null +++ b/static/apidocs/inherit_graph_73.md5 @@ -0,0 +1 @@ +5d16d28fb5f1ae12436e3bda520ccdd1 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_73.png b/static/apidocs/inherit_graph_73.png new file mode 100644 index 00000000..7c344a0c Binary files /dev/null and b/static/apidocs/inherit_graph_73.png differ diff --git a/static/apidocs/inherit_graph_74.map b/static/apidocs/inherit_graph_74.map new file mode 100644 index 00000000..79e93087 --- /dev/null +++ b/static/apidocs/inherit_graph_74.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_74.md5 b/static/apidocs/inherit_graph_74.md5 new file mode 100644 index 00000000..226715d0 --- /dev/null +++ b/static/apidocs/inherit_graph_74.md5 @@ -0,0 +1 @@ +d43ddef425fd8473ecff3958bb14848d \ No newline at end of file diff --git a/static/apidocs/inherit_graph_74.png b/static/apidocs/inherit_graph_74.png new file mode 100644 index 00000000..9f5a93ad Binary files /dev/null and b/static/apidocs/inherit_graph_74.png differ diff --git a/static/apidocs/inherit_graph_75.map b/static/apidocs/inherit_graph_75.map new file mode 100644 index 00000000..f1ed7cbd --- /dev/null +++ b/static/apidocs/inherit_graph_75.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_75.md5 b/static/apidocs/inherit_graph_75.md5 new file mode 100644 index 00000000..07ef8857 --- /dev/null +++ b/static/apidocs/inherit_graph_75.md5 @@ -0,0 +1 @@ +e329d6480a2fc9219d6276a48de45cf0 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_75.png b/static/apidocs/inherit_graph_75.png new file mode 100644 index 00000000..c2876c8a Binary files /dev/null and b/static/apidocs/inherit_graph_75.png differ diff --git a/static/apidocs/inherit_graph_76.map b/static/apidocs/inherit_graph_76.map new file mode 100644 index 00000000..53ab0402 --- /dev/null +++ b/static/apidocs/inherit_graph_76.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_76.md5 b/static/apidocs/inherit_graph_76.md5 new file mode 100644 index 00000000..4f9146b2 --- /dev/null +++ b/static/apidocs/inherit_graph_76.md5 @@ -0,0 +1 @@ +19becd1983e1bb8255b9e3739c931bee \ No newline at end of file diff --git a/static/apidocs/inherit_graph_76.png b/static/apidocs/inherit_graph_76.png new file mode 100644 index 00000000..1c5002da Binary files /dev/null and b/static/apidocs/inherit_graph_76.png differ diff --git a/static/apidocs/inherit_graph_77.map b/static/apidocs/inherit_graph_77.map new file mode 100644 index 00000000..3b36b40d --- /dev/null +++ b/static/apidocs/inherit_graph_77.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_77.md5 b/static/apidocs/inherit_graph_77.md5 new file mode 100644 index 00000000..67a6b17c --- /dev/null +++ b/static/apidocs/inherit_graph_77.md5 @@ -0,0 +1 @@ +e0203f3e83c54e7a3b1b8bdf79b064c6 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_77.png b/static/apidocs/inherit_graph_77.png new file mode 100644 index 00000000..de3ff540 Binary files /dev/null and b/static/apidocs/inherit_graph_77.png differ diff --git a/static/apidocs/inherit_graph_78.map b/static/apidocs/inherit_graph_78.map new file mode 100644 index 00000000..94da0fc1 --- /dev/null +++ b/static/apidocs/inherit_graph_78.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_78.md5 b/static/apidocs/inherit_graph_78.md5 new file mode 100644 index 00000000..edfbbab9 --- /dev/null +++ b/static/apidocs/inherit_graph_78.md5 @@ -0,0 +1 @@ +3da33a7a6544a90e9625a79a000dfb71 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_78.png b/static/apidocs/inherit_graph_78.png new file mode 100644 index 00000000..a89bc636 Binary files /dev/null and b/static/apidocs/inherit_graph_78.png differ diff --git a/static/apidocs/inherit_graph_79.map b/static/apidocs/inherit_graph_79.map new file mode 100644 index 00000000..9b7d7080 --- /dev/null +++ b/static/apidocs/inherit_graph_79.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_79.md5 b/static/apidocs/inherit_graph_79.md5 new file mode 100644 index 00000000..38bb041d --- /dev/null +++ b/static/apidocs/inherit_graph_79.md5 @@ -0,0 +1 @@ +14a4d8e2b8acb8e2f8862ad38e50e254 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_79.png b/static/apidocs/inherit_graph_79.png new file mode 100644 index 00000000..184be6f2 Binary files /dev/null and b/static/apidocs/inherit_graph_79.png differ diff --git a/static/apidocs/inherit_graph_8.map b/static/apidocs/inherit_graph_8.map new file mode 100644 index 00000000..7c0d0aab --- /dev/null +++ b/static/apidocs/inherit_graph_8.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_8.md5 b/static/apidocs/inherit_graph_8.md5 new file mode 100644 index 00000000..3cb15473 --- /dev/null +++ b/static/apidocs/inherit_graph_8.md5 @@ -0,0 +1 @@ +d1e86eec47cae5541f44a90367181416 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_8.png b/static/apidocs/inherit_graph_8.png new file mode 100644 index 00000000..cb4a583e Binary files /dev/null and b/static/apidocs/inherit_graph_8.png differ diff --git a/static/apidocs/inherit_graph_80.map b/static/apidocs/inherit_graph_80.map new file mode 100644 index 00000000..e78636cb --- /dev/null +++ b/static/apidocs/inherit_graph_80.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_80.md5 b/static/apidocs/inherit_graph_80.md5 new file mode 100644 index 00000000..94f1ce8b --- /dev/null +++ b/static/apidocs/inherit_graph_80.md5 @@ -0,0 +1 @@ +5ca0a8df95ae45f4dc0179fd98f2ef9e \ No newline at end of file diff --git a/static/apidocs/inherit_graph_80.png b/static/apidocs/inherit_graph_80.png new file mode 100644 index 00000000..341eb691 Binary files /dev/null and b/static/apidocs/inherit_graph_80.png differ diff --git a/static/apidocs/inherit_graph_81.map b/static/apidocs/inherit_graph_81.map new file mode 100644 index 00000000..08259915 --- /dev/null +++ b/static/apidocs/inherit_graph_81.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_81.md5 b/static/apidocs/inherit_graph_81.md5 new file mode 100644 index 00000000..df2bcfcb --- /dev/null +++ b/static/apidocs/inherit_graph_81.md5 @@ -0,0 +1 @@ +8ec6e944e50f8d36c57f418fbe046fba \ No newline at end of file diff --git a/static/apidocs/inherit_graph_81.png b/static/apidocs/inherit_graph_81.png new file mode 100644 index 00000000..ba59f7aa Binary files /dev/null and b/static/apidocs/inherit_graph_81.png differ diff --git a/static/apidocs/inherit_graph_82.map b/static/apidocs/inherit_graph_82.map new file mode 100644 index 00000000..f18bfe7b --- /dev/null +++ b/static/apidocs/inherit_graph_82.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_82.md5 b/static/apidocs/inherit_graph_82.md5 new file mode 100644 index 00000000..d7c687f3 --- /dev/null +++ b/static/apidocs/inherit_graph_82.md5 @@ -0,0 +1 @@ +85a58a4fd8e6578a061f98e896e8fe3e \ No newline at end of file diff --git a/static/apidocs/inherit_graph_82.png b/static/apidocs/inherit_graph_82.png new file mode 100644 index 00000000..a65f663a Binary files /dev/null and b/static/apidocs/inherit_graph_82.png differ diff --git a/static/apidocs/inherit_graph_83.map b/static/apidocs/inherit_graph_83.map new file mode 100644 index 00000000..52ace798 --- /dev/null +++ b/static/apidocs/inherit_graph_83.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_83.md5 b/static/apidocs/inherit_graph_83.md5 new file mode 100644 index 00000000..5d174d05 --- /dev/null +++ b/static/apidocs/inherit_graph_83.md5 @@ -0,0 +1 @@ +47a9a01a8b27860850da46980b28cc96 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_83.png b/static/apidocs/inherit_graph_83.png new file mode 100644 index 00000000..d6c901b4 Binary files /dev/null and b/static/apidocs/inherit_graph_83.png differ diff --git a/static/apidocs/inherit_graph_84.map b/static/apidocs/inherit_graph_84.map new file mode 100644 index 00000000..49891770 --- /dev/null +++ b/static/apidocs/inherit_graph_84.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_84.md5 b/static/apidocs/inherit_graph_84.md5 new file mode 100644 index 00000000..f6a2a91f --- /dev/null +++ b/static/apidocs/inherit_graph_84.md5 @@ -0,0 +1 @@ +2599fb9e4863b5ad15c745f610276f92 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_84.png b/static/apidocs/inherit_graph_84.png new file mode 100644 index 00000000..c7f43e67 Binary files /dev/null and b/static/apidocs/inherit_graph_84.png differ diff --git a/static/apidocs/inherit_graph_85.map b/static/apidocs/inherit_graph_85.map new file mode 100644 index 00000000..10cac619 --- /dev/null +++ b/static/apidocs/inherit_graph_85.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_85.md5 b/static/apidocs/inherit_graph_85.md5 new file mode 100644 index 00000000..b46b01f8 --- /dev/null +++ b/static/apidocs/inherit_graph_85.md5 @@ -0,0 +1 @@ +c80348c772368dce5cd3620885f04c07 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_85.png b/static/apidocs/inherit_graph_85.png new file mode 100644 index 00000000..b63254a9 Binary files /dev/null and b/static/apidocs/inherit_graph_85.png differ diff --git a/static/apidocs/inherit_graph_86.map b/static/apidocs/inherit_graph_86.map new file mode 100644 index 00000000..762967a2 --- /dev/null +++ b/static/apidocs/inherit_graph_86.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_86.md5 b/static/apidocs/inherit_graph_86.md5 new file mode 100644 index 00000000..3db11ea0 --- /dev/null +++ b/static/apidocs/inherit_graph_86.md5 @@ -0,0 +1 @@ +729d16d808169cbf4761ec6304797706 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_86.png b/static/apidocs/inherit_graph_86.png new file mode 100644 index 00000000..3e137915 Binary files /dev/null and b/static/apidocs/inherit_graph_86.png differ diff --git a/static/apidocs/inherit_graph_87.map b/static/apidocs/inherit_graph_87.map new file mode 100644 index 00000000..dea436e3 --- /dev/null +++ b/static/apidocs/inherit_graph_87.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_87.md5 b/static/apidocs/inherit_graph_87.md5 new file mode 100644 index 00000000..6bb4cb73 --- /dev/null +++ b/static/apidocs/inherit_graph_87.md5 @@ -0,0 +1 @@ +80e6303c77e5282f89fcdb1853bbfe92 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_87.png b/static/apidocs/inherit_graph_87.png new file mode 100644 index 00000000..9fc79abb Binary files /dev/null and b/static/apidocs/inherit_graph_87.png differ diff --git a/static/apidocs/inherit_graph_88.map b/static/apidocs/inherit_graph_88.map new file mode 100644 index 00000000..8765c34a --- /dev/null +++ b/static/apidocs/inherit_graph_88.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_88.md5 b/static/apidocs/inherit_graph_88.md5 new file mode 100644 index 00000000..53145af8 --- /dev/null +++ b/static/apidocs/inherit_graph_88.md5 @@ -0,0 +1 @@ +df19804c620e6a925ceee85a7b4d1811 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_88.png b/static/apidocs/inherit_graph_88.png new file mode 100644 index 00000000..607adc09 Binary files /dev/null and b/static/apidocs/inherit_graph_88.png differ diff --git a/static/apidocs/inherit_graph_89.map b/static/apidocs/inherit_graph_89.map new file mode 100644 index 00000000..9733511a --- /dev/null +++ b/static/apidocs/inherit_graph_89.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_89.md5 b/static/apidocs/inherit_graph_89.md5 new file mode 100644 index 00000000..371fade9 --- /dev/null +++ b/static/apidocs/inherit_graph_89.md5 @@ -0,0 +1 @@ +a9b857f941aef8670b83c2bea2b61733 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_89.png b/static/apidocs/inherit_graph_89.png new file mode 100644 index 00000000..46ee536b Binary files /dev/null and b/static/apidocs/inherit_graph_89.png differ diff --git a/static/apidocs/inherit_graph_9.map b/static/apidocs/inherit_graph_9.map new file mode 100644 index 00000000..75efd667 --- /dev/null +++ b/static/apidocs/inherit_graph_9.map @@ -0,0 +1,3 @@ + + + diff --git a/static/apidocs/inherit_graph_9.md5 b/static/apidocs/inherit_graph_9.md5 new file mode 100644 index 00000000..2e8f982a --- /dev/null +++ b/static/apidocs/inherit_graph_9.md5 @@ -0,0 +1 @@ +74e94661013e009b89c35026c53ccc62 \ No newline at end of file diff --git a/static/apidocs/inherit_graph_9.png b/static/apidocs/inherit_graph_9.png new file mode 100644 index 00000000..a12ddcc1 Binary files /dev/null and b/static/apidocs/inherit_graph_9.png differ diff --git a/static/apidocs/inherits.html b/static/apidocs/inherits.html new file mode 100644 index 00000000..4a25fa3f --- /dev/null +++ b/static/apidocs/inherits.html @@ -0,0 +1,557 @@ + + + + + + + +Libical API Documentation: Class Hierarchy + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Class Hierarchy
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+
+ + + + diff --git a/static/apidocs/jquery.js b/static/apidocs/jquery.js new file mode 100644 index 00000000..1dffb65b --- /dev/null +++ b/static/apidocs/jquery.js @@ -0,0 +1,34 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=y(e||this.defaultElement||this)[0],this.element=y(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=y(),this.hoverable=y(),this.focusable=y(),this.classesElementLookup={},e!==this&&(y.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=y(e.style?e.ownerDocument:e.document||e),this.window=y(this.document[0].defaultView||this.document[0].parentWindow)),this.options=y.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:y.noop,_create:y.noop,_init:y.noop,destroy:function(){var i=this;this._destroy(),y.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:y.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return y.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=y.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return y("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthx(D(s),D(n))?o.important="horizontal":o.important="vertical",p.using.call(this,t,o)}),h.offset(y.extend(l,{using:t}))})},y.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,h=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),y.ui.plugin={add:function(t,e,i){var s,n=y.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&y(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){y(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,h=this;if(this.handles=o.handles||(y(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=y(),this._addedHandles=y(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=y(this.handles[e]),this._on(this.handles[e],{mousedown:h._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=y(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){h.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),h.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=y(this.handles[e])[0])!==t.target&&!y.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=y(s.containment).scrollLeft()||0,i+=y(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=y(".ui-resizable-"+this.axis).css("cursor"),y("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),y.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(y.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),y("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),st.width,h=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,a=this.originalPosition.left+this.originalSize.width,r=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),h&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=a-e.minWidth),s&&l&&(t.left=a-e.maxWidth),h&&i&&(t.top=r-e.minHeight),n&&i&&(t.top=r-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){y.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),y.ui.plugin.add("resizable","animate",{stop:function(e){var i=y(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,h=n?0:i.sizeDiff.width,n={width:i.size.width-h,height:i.size.height-o},h=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(y.extend(n,o&&h?{top:o,left:h}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&y(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),y.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=y(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,h=o instanceof y?o.get(0):/parent/.test(o)?e.parent().get(0):o;h&&(n.containerElement=y(h),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:y(document),left:0,top:0,width:y(document).width(),height:y(document).height()||document.body.parentNode.scrollHeight}):(i=y(h),s=[],y(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(h,"left")?h.scrollWidth:o,e=n._hasScroll(h)?h.scrollHeight:e,n.parentData={element:h,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=y(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,h={top:0,left:0},a=e.containerElement,t=!0;a[0]!==document&&/static/.test(a.css("position"))&&(h=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-h.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-h.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-h.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=y(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=y(t.helper),h=o.offset(),a=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o})}}),y.ui.plugin.add("resizable","alsoResize",{start:function(){var t=y(this).resizable("instance").options;y(t.alsoResize).each(function(){var t=y(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=y(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,h={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};y(s.alsoResize).each(function(){var t=y(this),s=y(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];y.each(e,function(t,e){var i=(s[e]||0)+(h[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){y(this).removeData("ui-resizable-alsoresize")}}),y.ui.plugin.add("resizable","ghost",{start:function(){var t=y(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==y.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=y(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=y(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),y.ui.plugin.add("resizable","grid",{resize:function(){var t,e=y(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,h=e.axis,a="number"==typeof i.grid?[i.grid,i.grid]:i.grid,r=a[0]||1,l=a[1]||1,u=Math.round((s.width-n.width)/r)*r,p=Math.round((s.height-n.height)/l)*l,d=n.width+u,c=n.height+p,f=i.maxWidth&&i.maxWidthd,s=i.minHeight&&i.minHeight>c;i.grid=a,m&&(d+=r),s&&(c+=l),f&&(d-=r),g&&(c-=l),/^(se|s|e)$/.test(h)?(e.size.width=d,e.size.height=c):/^(ne)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.top=o.top-p):/^(sw)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.left=o.left-u):((c-l<=0||d-r<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/static/apidocs/libical__ical__export_8h_source.html b/static/apidocs/libical__ical__export_8h_source.html new file mode 100644 index 00000000..587eee4f --- /dev/null +++ b/static/apidocs/libical__ical__export_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Libical API Documentation: libical_ical_export.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libical_ical_export.h
+
+
+
1#ifndef LIBICAL_ICAL_EXPORT_H
+
2#define LIBICAL_ICAL_EXPORT_H
+
3
+
4#if !defined(S_SPLINT_S)
+
5
+
6#ifdef LIBICAL_ICAL_STATIC_DEFINE
+
7#define LIBICAL_ICAL_EXPORT
+
8#define LIBICAL_ICAL_NO_EXPORT
+
9#else
+
10#if defined(_MSC_VER) || defined(__CYGWIN__)
+
11#if defined(libical_ical_EXPORTS)
+
12 /* We are building this library */
+
13#define LIBICAL_ICAL_EXPORT __declspec(dllexport)
+
14#else
+
15 /* We are using this library */
+
16#define LIBICAL_ICAL_EXPORT __declspec(dllimport)
+
17#endif
+
18#define LIBICAL_ICAL_NO_EXPORT
+
19#else
+
20#define LIBICAL_ICAL_EXPORT __attribute__((visibility("default")))
+
21#define LIBICAL_ICAL_NO_EXPORT __attribute__((visibility("hidden")))
+
22#endif
+
23#endif
+
24
+
25#endif
+
26
+
27#endif
+
+ + + + diff --git a/static/apidocs/libical__icalss__export_8h_source.html b/static/apidocs/libical__icalss__export_8h_source.html new file mode 100644 index 00000000..428dfcbf --- /dev/null +++ b/static/apidocs/libical__icalss__export_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Libical API Documentation: libical_icalss_export.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libical_icalss_export.h
+
+
+
1#ifndef LIBICAL_ICALSS_EXPORT_H
+
2#define LIBICAL_ICALSS_EXPORT_H
+
3
+
4#if !defined(S_SPLINT_S)
+
5
+
6#ifdef LIBICAL_ICALSS_STATIC_DEFINE
+
7#define LIBICAL_ICALSS_EXPORT
+
8#define LIBICAL_ICALSS_NO_EXPORT
+
9#else
+
10#if defined(_MSC_VER) || defined(__CYGWIN__)
+
11#if defined(libical_icalss_EXPORTS)
+
12 /* We are building this library */
+
13#define LIBICAL_ICALSS_EXPORT __declspec(dllexport)
+
14#else
+
15 /* We are using this library */
+
16#define LIBICAL_ICALSS_EXPORT __declspec(dllimport)
+
17#endif
+
18#define LIBICAL_ICALSS_NO_EXPORT
+
19#else
+
20#define LIBICAL_ICALSS_EXPORT __attribute__((visibility("default")))
+
21#define LIBICAL_ICALSS_NO_EXPORT __attribute__((visibility("hidden")))
+
22#endif
+
23#endif
+
24
+
25#endif
+
26
+
27#endif
+
+ + + + diff --git a/static/apidocs/libical__vcal__export_8h_source.html b/static/apidocs/libical__vcal__export_8h_source.html new file mode 100644 index 00000000..c5b8c0a2 --- /dev/null +++ b/static/apidocs/libical__vcal__export_8h_source.html @@ -0,0 +1,112 @@ + + + + + + + +Libical API Documentation: libical_vcal_export.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Libical API Documentation 3.0 +
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
libical_vcal_export.h
+
+
+
1#ifndef LIBICAL_VCAL_EXPORT_H
+
2#define LIBICAL_VCAL_EXPORT_H
+
3
+
4#if !defined(S_SPLINT_S)
+
5
+
6#ifdef LIBICAL_VCAL_STATIC_DEFINE
+
7#define LIBICAL_VCAL_EXPORT
+
8#define LIBICAL_VCAL_NO_EXPORT
+
9#else
+
10#if defined(_MSC_VER) || defined(__CYGWIN__)
+
11#if defined(libical_vcal_EXPORTS)
+
12 /* We are building this library */
+
13#define LIBICAL_VCAL_EXPORT __declspec(dllexport)
+
14#else
+
15 /* We are using this library */
+
16#define LIBICAL_VCAL_EXPORT __declspec(dllimport)
+
17#endif
+
18#define LIBICAL_VCAL_NO_EXPORT
+
19#else
+
20#define LIBICAL_VCAL_EXPORT __attribute__((visibility("default")))
+
21#define LIBICAL_VCAL_NO_EXPORT __attribute__((visibility("hidden")))
+
22#endif
+
23#endif
+
24
+
25#endif
+
26
+
27#endif
+
+ + + + diff --git a/static/apidocs/menu.js b/static/apidocs/menu.js new file mode 100644 index 00000000..b0b26936 --- /dev/null +++ b/static/apidocs/menu.js @@ -0,0 +1,136 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+='
    '; + for (var i in data.children) { + var url; + var link; + link = data.children[i].url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + } else { + url = relPath+link; + } + result+='
  • '+ + data.children[i].text+''+ + makeTree(data.children[i],relPath)+'
  • '; + } + result+='
'; + } + return result; + } + var searchBoxHtml; + if (searchEnabled) { + if (serverSide) { + searchBoxHtml='
'+ + '
'+ + '
 '+ + ''+ + '
'+ + '
'+ + '
'+ + '
'; + } else { + searchBoxHtml='
'+ + ''+ + ' '+ + ''+ + ''+ + ''+ + ''+ + ''+ + '
'; + } + } + + $('#main-nav').before('
'+ + ''+ + ''+ + '
'); + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchBoxHtml) { + $('#main-menu').append('
  • '); + } + var $mainMenuState = $('#main-menu-state'); + var prevWidth = 0; + if ($mainMenuState.length) { + function initResizableIfExists() { + if (typeof initResizable==='function') initResizable(); + } + // animate mobile menu + $mainMenuState.change(function(e) { + var $menu = $('#main-menu'); + var options = { duration: 250, step: initResizableIfExists }; + if (this.checked) { + options['complete'] = function() { $menu.css('display', 'block') }; + $menu.hide().slideDown(options); + } else { + options['complete'] = function() { $menu.css('display', 'none') }; + $menu.show().slideUp(options); + } + }); + // set default menu visibility + function resetState() { + var $menu = $('#main-menu'); + var $mainMenuState = $('#main-menu-state'); + var newWidth = $(window).outerWidth(); + if (newWidth!=prevWidth) { + if ($(window).outerWidth()<768) { + $mainMenuState.prop('checked',false); $menu.hide(); + $('#searchBoxPos1').html(searchBoxHtml); + $('#searchBoxPos2').hide(); + } else { + $menu.show(); + $('#searchBoxPos1').empty(); + $('#searchBoxPos2').html(searchBoxHtml); + $('#searchBoxPos2').show(); + } + if (typeof searchBox!=='undefined') { + searchBox.CloseResultsWindow(); + } + prevWidth = newWidth; + } + } + $(window).ready(function() { resetState(); initResizableIfExists(); }); + $(window).resize(resetState); + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/static/apidocs/menudata.js b/static/apidocs/menudata.js new file mode 100644 index 00000000..83de65d7 --- /dev/null +++ b/static/apidocs/menudata.js @@ -0,0 +1,100 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Data Structures",url:"annotated.html",children:[ +{text:"Data Structures",url:"annotated.html"}, +{text:"Data Structure Index",url:"classes.html"}, +{text:"Class Hierarchy",url:"inherits.html"}, +{text:"Data Fields",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"a",url:"functions.html#index_a"}, +{text:"b",url:"functions.html#index_b"}, +{text:"c",url:"functions.html#index_c"}, +{text:"d",url:"functions.html#index_d"}, +{text:"e",url:"functions.html#index_e"}, +{text:"f",url:"functions.html#index_f"}, +{text:"g",url:"functions.html#index_g"}, +{text:"h",url:"functions.html#index_h"}, +{text:"i",url:"functions.html#index_i"}, +{text:"j",url:"functions.html#index_j"}, +{text:"l",url:"functions.html#index_l"}, +{text:"m",url:"functions.html#index_m"}, +{text:"n",url:"functions.html#index_n"}, +{text:"o",url:"functions.html#index_o"}, +{text:"p",url:"functions.html#index_p"}, +{text:"r",url:"functions.html#index_r"}, +{text:"s",url:"functions.html#index_s"}, +{text:"t",url:"functions.html#index_t"}, +{text:"u",url:"functions.html#index_u"}, +{text:"w",url:"functions.html#index_w"}, +{text:"y",url:"functions.html#index_y"}, +{text:"z",url:"functions.html#index_z"}, +{text:"~",url:"functions.html#index__7E"}]}, +{text:"Functions",url:"functions_func.html"}, +{text:"Variables",url:"functions_vars.html",children:[ +{text:"b",url:"functions_vars.html#index_b"}, +{text:"c",url:"functions_vars.html#index_c"}, +{text:"d",url:"functions_vars.html#index_d"}, +{text:"e",url:"functions_vars.html#index_e"}, +{text:"f",url:"functions_vars.html#index_f"}, +{text:"g",url:"functions_vars.html#index_g"}, +{text:"h",url:"functions_vars.html#index_h"}, +{text:"i",url:"functions_vars.html#index_i"}, +{text:"j",url:"functions_vars.html#index_j"}, +{text:"l",url:"functions_vars.html#index_l"}, +{text:"m",url:"functions_vars.html#index_m"}, +{text:"n",url:"functions_vars.html#index_n"}, +{text:"o",url:"functions_vars.html#index_o"}, +{text:"p",url:"functions_vars.html#index_p"}, +{text:"s",url:"functions_vars.html#index_s"}, +{text:"t",url:"functions_vars.html#index_t"}, +{text:"u",url:"functions_vars.html#index_u"}, +{text:"w",url:"functions_vars.html#index_w"}, +{text:"y",url:"functions_vars.html#index_y"}, +{text:"z",url:"functions_vars.html#index_z"}]}]}]}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}, +{text:"Globals",url:"globals.html",children:[ +{text:"All",url:"globals.html",children:[ +{text:"c",url:"globals.html#index_c"}, +{text:"f",url:"globals_f.html#index_f"}, +{text:"g",url:"globals_g.html#index_g"}, +{text:"i",url:"globals_i.html#index_i"}, +{text:"j",url:"globals_j.html#index_j"}, +{text:"s",url:"globals_s.html#index_s"}]}, +{text:"Functions",url:"globals_func.html",children:[ +{text:"c",url:"globals_func.html#index_c"}, +{text:"f",url:"globals_func_f.html#index_f"}, +{text:"g",url:"globals_func_g.html#index_g"}, +{text:"i",url:"globals_func_i.html#index_i"}, +{text:"j",url:"globals_func_j.html#index_j"}, +{text:"s",url:"globals_func_s.html#index_s"}]}, +{text:"Variables",url:"globals_vars.html"}, +{text:"Typedefs",url:"globals_type.html"}, +{text:"Enumerations",url:"globals_enum.html"}, +{text:"Enumerator",url:"globals_eval.html",children:[ +{text:"i",url:"globals_eval.html#index_i"}]}, +{text:"Macros",url:"globals_defs.html"}]}]}]} diff --git a/static/apidocs/nav_f.png b/static/apidocs/nav_f.png new file mode 100644 index 00000000..72a58a52 Binary files /dev/null and b/static/apidocs/nav_f.png differ diff --git a/static/apidocs/nav_fd.png b/static/apidocs/nav_fd.png new file mode 100644 index 00000000..032fbdd4 Binary files /dev/null and b/static/apidocs/nav_fd.png differ diff --git a/static/apidocs/nav_g.png b/static/apidocs/nav_g.png new file mode 100644 index 00000000..2093a237 Binary files /dev/null and b/static/apidocs/nav_g.png differ diff --git a/static/apidocs/nav_h.png b/static/apidocs/nav_h.png new file mode 100644 index 00000000..33389b10 Binary files /dev/null and b/static/apidocs/nav_h.png differ diff --git a/static/apidocs/nav_hd.png b/static/apidocs/nav_hd.png new file mode 100644 index 00000000..de80f18a Binary files /dev/null and b/static/apidocs/nav_hd.png differ diff --git a/static/apidocs/open.png b/static/apidocs/open.png new file mode 100644 index 00000000..30f75c7e Binary files /dev/null and b/static/apidocs/open.png differ diff --git a/static/apidocs/pvl_8h_source.html b/static/apidocs/pvl_8h_source.html new file mode 100644 index 00000000..d4cfffff --- /dev/null +++ b/static/apidocs/pvl_8h_source.html @@ -0,0 +1,186 @@ + + + + + + + +Libical API Documentation: pvl.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    pvl.h
    +
    +
    +
    1/*======================================================================
    +
    2 FILE: pvl.h
    +
    3 CREATOR: eric November, 1995
    +
    4
    +
    5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
    +
    6
    +
    7 This library is free software; you can redistribute it and/or modify
    +
    8 it under the terms of either:
    +
    9
    +
    10 The LGPL as published by the Free Software Foundation, version
    +
    11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
    +
    12
    +
    13 Or:
    +
    14
    +
    15 The Mozilla Public License Version 2.0. You may obtain a copy of
    +
    16 the License at https://www.mozilla.org/MPL/
    +
    17======================================================================*/
    +
    18
    +
    19#ifndef ICAL_PVL_H
    +
    20#define ICAL_PVL_H
    +
    21
    +
    22#include "libical_ical_export.h"
    +
    23
    +
    24typedef struct pvl_list_t *pvl_list;
    +
    25typedef struct pvl_elem_t *pvl_elem;
    +
    26
    +
    33typedef struct pvl_elem_t
    +
    34{
    +
    35 int MAGIC;
    +
    36 void *d;
    +
    37 struct pvl_elem_t *next;
    +
    38 struct pvl_elem_t *prior;
    + +
    40
    +
    41/* Create new lists or elements */
    +
    42LIBICAL_ICAL_EXPORT pvl_elem pvl_new_element(void *d, pvl_elem next, pvl_elem prior);
    +
    43
    +
    44LIBICAL_ICAL_EXPORT pvl_list pvl_newlist(void);
    +
    45
    +
    46LIBICAL_ICAL_EXPORT void pvl_free(pvl_list);
    +
    47
    +
    48/* Add, remove, or get the head of the list */
    +
    49LIBICAL_ICAL_EXPORT void pvl_unshift(pvl_list l, void *d);
    +
    50
    +
    51LIBICAL_ICAL_EXPORT void *pvl_shift(pvl_list l);
    +
    52
    +
    53LIBICAL_ICAL_EXPORT pvl_elem pvl_head(pvl_list);
    +
    54
    +
    55/* Add, remove or get the tail of the list */
    +
    56LIBICAL_ICAL_EXPORT void pvl_push(pvl_list l, void *d);
    +
    57
    +
    58LIBICAL_ICAL_EXPORT void *pvl_pop(pvl_list l);
    +
    59
    +
    60LIBICAL_ICAL_EXPORT pvl_elem pvl_tail(pvl_list);
    +
    61
    +
    62/* Insert elements in random places */
    +
    63typedef int (*pvl_comparef) (void *a, void *b); /* a, b are of the data type */
    +
    64
    +
    65LIBICAL_ICAL_EXPORT void pvl_insert_ordered(pvl_list l, pvl_comparef f, void *d);
    +
    66
    +
    67LIBICAL_ICAL_EXPORT void pvl_insert_after(pvl_list l, pvl_elem e, void *d);
    +
    68
    +
    69LIBICAL_ICAL_EXPORT void pvl_insert_before(pvl_list l, pvl_elem e, void *d);
    +
    70
    +
    71/* Remove an element, or clear the entire list */
    +
    72LIBICAL_ICAL_EXPORT void *pvl_remove(pvl_list, pvl_elem); /* Remove element, return data */
    +
    73
    +
    74LIBICAL_ICAL_EXPORT void pvl_clear(pvl_list); /* Remove all elements, de-allocate all data */
    +
    75
    +
    76LIBICAL_ICAL_EXPORT int pvl_count(pvl_list);
    +
    77
    +
    78/* Navigate the list */
    +
    79LIBICAL_ICAL_EXPORT pvl_elem pvl_next(pvl_elem e);
    +
    80
    +
    81LIBICAL_ICAL_EXPORT pvl_elem pvl_prior(pvl_elem e);
    +
    82
    +
    83/* get the data in the list */
    +
    84#if !defined(PVL_USE_MACROS)
    +
    85LIBICAL_ICAL_EXPORT void *pvl_data(pvl_elem);
    +
    86#else
    +
    87#define pvl_data(x) x==0 ? 0 : ((struct pvl_elem_t *)x)->d;
    +
    88#endif
    +
    89
    +
    90/* Find an element for which a function returns true */
    +
    91typedef int (*pvl_findf) (void *a, void *b); /*a is list elem, b is other data */
    +
    92
    +
    93LIBICAL_ICAL_EXPORT pvl_elem pvl_find(pvl_list l, pvl_findf f, void *v);
    +
    94
    +
    95LIBICAL_ICAL_EXPORT pvl_elem pvl_find_next(pvl_list l, pvl_findf f, void *v);
    +
    96
    +
    101typedef void (*pvl_applyf) (void *a, void *b);
    +
    102
    +
    103LIBICAL_ICAL_EXPORT void pvl_apply(pvl_list l, pvl_applyf f, void *v);
    +
    104
    +
    105#endif /* ICAL_PVL_H */
    +
    Definition pvl.h:34
    +
    struct pvl_elem_t * prior
    Definition pvl.h:38
    +
    int MAGIC
    Definition pvl.h:35
    +
    struct pvl_elem_t * next
    Definition pvl.h:37
    +
    void * d
    Definition pvl.h:36
    +
    Definition pvl.c:65
    +
    + + + + diff --git a/static/apidocs/search/all_0.js b/static/apidocs/search/all_0.js new file mode 100644 index 00000000..e76b2080 --- /dev/null +++ b/static/apidocs/search/all_0.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['_5fcompat_5ftzids_0',['_compat_tzids',['../struct__compat__tzids.html',1,'']]], + ['_5ficalarray_1',['_icalarray',['../struct__icalarray.html',1,'']]], + ['_5ficaltimezone_2',['_icaltimezone',['../struct__icaltimezone.html',1,'']]], + ['_5ficaltimezonechange_3',['_icaltimezonechange',['../struct__icaltimezonechange.html',1,'']]], + ['_5ficalvcal_5fdefaults_4',['_icalvcal_defaults',['../struct__icalvcal__defaults.html',1,'']]] +]; diff --git a/static/apidocs/search/all_1.js b/static/apidocs/search/all_1.js new file mode 100644 index 00000000..b3f7d744 --- /dev/null +++ b/static/apidocs/search/all_1.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['add_5fproperty_0',['add_property',['../classLibICal_1_1VComponent.html#ab998f38057c9193b4125728d054ef80d',1,'LibICal::VComponent']]], + ['as_5fvector_1',['as_vector',['../classLibICal_1_1ICalSpanList.html#a90af8eaf10472184439c880382f137fc',1,'LibICal::ICalSpanList']]], + ['astime_2eh_2',['astime.h',['../astime_8h.html',1,'']]] +]; diff --git a/static/apidocs/search/all_10.js b/static/apidocs/search/all_10.js new file mode 100644 index 00000000..2b11d088 --- /dev/null +++ b/static/apidocs/search/all_10.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['rdate_0',['rdate',['../structrdate.html',1,'']]], + ['recur_5fmap_1',['recur_map',['../structrecur__map.html',1,'']]], + ['remove_2',['remove',['../classLibICal_1_1VComponent.html#ae251ebedad802b6d982af2926ff289a2',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/all_11.js b/static/apidocs/search/all_11.js new file mode 100644 index 00000000..c47882a8 --- /dev/null +++ b/static/apidocs/search/all_11.js @@ -0,0 +1,21 @@ +var searchData= +[ + ['safe_5fsaves_0',['safe_saves',['../structicalfileset__options.html#ae1089f1b0a31021cba1a22945a9cf5b5',1,'icalfileset_options']]], + ['second_1',['second',['../struct__icaltimezonechange.html#a2edcc09f485b5a8c121a1499fe686adb',1,'_icaltimezonechange']]], + ['select_2',['select',['../structicalgauge__impl.html#ab31e8cb692ce58d7a267731744fc67ec',1,'icalgauge_impl']]], + ['set_5fvalue_3',['set_value',['../classLibICal_1_1ICalProperty.html#af229f40785452ed3893399e1dc4df356',1,'LibICal::ICalProperty']]], + ['set_5fzone_5fdirectory_4',['set_zone_directory',['../icaltimezone_8h.html#af35f72898e3992529e12c07c62659b22',1,'icaltimezone.c']]], + ['skip_5fmap_5',['skip_map',['../structskip__map.html',1,'']]], + ['slg_5fdata_6',['slg_data',['../structslg__data.html',1,'']]], + ['spans_7',['spans',['../structicalspanlist__impl.html#a236b22c48fe250e53a67fcccc70eacb3',1,'icalspanlist_impl']]], + ['sspm_5faction_5fmap_8',['sspm_action_map',['../structsspm__action__map.html',1,'']]], + ['sspm_5fbuffer_9',['sspm_buffer',['../structsspm__buffer.html',1,'']]], + ['sspm_5fheader_10',['sspm_header',['../structsspm__header.html',1,'']]], + ['sspm_5fpart_11',['sspm_part',['../structsspm__part.html',1,'']]], + ['start_12',['start',['../structicaltime__span.html#a19e59ef16cc2e33748bbeead3040e0c8',1,'icaltime_span::start'],['../structicalspanlist__impl.html#a2876fb86a056d43c55cff46dd340ed1d',1,'icalspanlist_impl::start']]], + ['string_5fto_5fkind_13',['string_to_kind',['../classLibICal_1_1VComponent.html#a78439d802b6d94686b0aada243532ec4',1,'LibICal::VComponent']]], + ['strip_5ferrors_14',['strip_errors',['../classLibICal_1_1VComponent.html#abf328d7ef0ffcffa9099c57bfd092b30',1,'LibICal::VComponent']]], + ['stritem_15',['StrItem',['../structStrItem.html',1,'']]], + ['subdb_16',['subdb',['../structicalbdbset__options.html#a8ac46ba03ef7ab1b04a0374fd4fbc7d8',1,'icalbdbset_options']]], + ['super_17',['super',['../structicalbdbset__impl.html#a2a2bfa511d4dc9be7e9862ad111989a9',1,'icalbdbset_impl::super'],['../structicaldirset__impl.html#a3591d5fa8040ff9edd3500d6d5713876',1,'icaldirset_impl::super'],['../structicalfileset__impl.html#a9e5bca18c7edc4f71184c58ed03966a3',1,'icalfileset_impl::super']]] +]; diff --git a/static/apidocs/search/all_12.js b/static/apidocs/search/all_12.js new file mode 100644 index 00000000..6803b147 --- /dev/null +++ b/static/apidocs/search/all_12.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['tail_0',['tail',['../structpvl__list__t.html#a4d1bde4f5c94d4e741edf103e1525fa9',1,'pvl_list_t']]], + ['text_5fpart_1',['text_part',['../structtext__part.html',1,'']]], + ['timezones_2',['timezones',['../structicalcomponent__impl.html#a5040b5504df33dd4cde7d07460a1edd4',1,'icalcomponent_impl']]], + ['ttinfo_3',['ttinfo',['../structttinfo.html',1,'']]], + ['tzid_4',['tzid',['../struct__icaltimezone.html#ac863b840b171d996da68da6bfa664f89',1,'_icaltimezone']]], + ['tzinfo_5',['tzinfo',['../structtzinfo.html',1,'']]], + ['tznames_6',['tznames',['../struct__icaltimezone.html#a7f30b657860b6bc98bdfd616c64eb20c',1,'_icaltimezone']]] +]; diff --git a/static/apidocs/search/all_13.js b/static/apidocs/search/all_13.js new file mode 100644 index 00000000..c41989b1 --- /dev/null +++ b/static/apidocs/search/all_13.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['ut_5finstant_0',['ut_instant',['../structut__instant.html',1,'']]], + ['utc_5foffset_1',['utc_offset',['../struct__icaltimezonechange.html#ab5f8de7f535d3e7b15191fa37ddd62ab',1,'_icaltimezonechange']]] +]; diff --git a/static/apidocs/search/all_14.js b/static/apidocs/search/all_14.js new file mode 100644 index 00000000..a5bc2605 --- /dev/null +++ b/static/apidocs/search/all_14.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['vagenda_0',['VAgenda',['../classLibICal_1_1VAgenda.html',1,'LibICal']]], + ['valarm_1',['VAlarm',['../classLibICal_1_1VAlarm.html',1,'LibICal']]], + ['valueitem_2',['ValueItem',['../unionValueItem.html',1,'']]], + ['vcalendar_3',['VCalendar',['../classLibICal_1_1VCalendar.html',1,'LibICal']]], + ['vcomponent_4',['VComponent',['../classLibICal_1_1VComponent.html',1,'LibICal']]], + ['vcomponent_5fcxx_2eh_5',['vcomponent_cxx.h',['../vcomponent__cxx_8h.html',1,'']]], + ['vevent_6',['VEvent',['../classLibICal_1_1VEvent.html',1,'LibICal']]], + ['vfreebusy_7',['VFreeBusy',['../classLibICal_1_1VFreeBusy.html',1,'LibICal']]], + ['vjournal_8',['VJournal',['../classLibICal_1_1VJournal.html',1,'LibICal']]], + ['vobject_9',['VObject',['../structVObject.html',1,'']]], + ['vobjectiterator_10',['VObjectIterator',['../structVObjectIterator.html',1,'']]], + ['vquery_11',['VQuery',['../classLibICal_1_1VQuery.html',1,'LibICal']]], + ['vtimezone_12',['VTimezone',['../classLibICal_1_1VTimezone.html',1,'LibICal']]], + ['vtodo_13',['VToDo',['../classLibICal_1_1VToDo.html',1,'LibICal']]] +]; diff --git a/static/apidocs/search/all_15.js b/static/apidocs/search/all_15.js new file mode 100644 index 00000000..6ba85402 --- /dev/null +++ b/static/apidocs/search/all_15.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['wd_5fmap_0',['wd_map',['../structwd__map.html',1,'']]], + ['weekday_1',['weekday',['../structut__instant.html#a0c78cca667d66d7421ab30de5746b848',1,'ut_instant']]], + ['where_2',['where',['../structicalgauge__impl.html#a4af9682bce87086157b1099f6b2043a6',1,'icalgauge_impl']]] +]; diff --git a/static/apidocs/search/all_16.js b/static/apidocs/search/all_16.js new file mode 100644 index 00000000..2e24410f --- /dev/null +++ b/static/apidocs/search/all_16.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['xdaylight_0',['XDaylight',['../classLibICal_1_1XDaylight.html',1,'LibICal']]], + ['xstandard_1',['XStandard',['../classLibICal_1_1XStandard.html',1,'LibICal']]] +]; diff --git a/static/apidocs/search/all_17.js b/static/apidocs/search/all_17.js new file mode 100644 index 00000000..6e52786a --- /dev/null +++ b/static/apidocs/search/all_17.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['year_0',['year',['../structut__instant.html#a81e3ac4208362cbfbcafe846b0216f12',1,'ut_instant::year'],['../structicaltimetype.html#a4f64cd87ff0d4aba7bf318485b7374b8',1,'icaltimetype::year'],['../struct__icaltimezonechange.html#af8a0c926e8122f07bbce6bcf551d5e9c',1,'_icaltimezonechange::year']]], + ['yy_5fbs_5fcolumn_1',['yy_bs_column',['../structyy__buffer__state.html#a10c4fcd8be759e6bf11e6d3e8cdb0307',1,'yy_buffer_state']]], + ['yy_5fbs_5flineno_2',['yy_bs_lineno',['../structyy__buffer__state.html#a818e94bc9c766e683c60df1e9fd01199',1,'yy_buffer_state']]], + ['yy_5fbuffer_5fstate_3',['yy_buffer_state',['../structyy__buffer__state.html',1,'']]], + ['yy_5ftrans_5finfo_4',['yy_trans_info',['../structyy__trans__info.html',1,'']]], + ['yyalloc_5',['yyalloc',['../unionyyalloc.html',1,'']]], + ['yystype_6',['YYSTYPE',['../unionYYSTYPE.html',1,'']]] +]; diff --git a/static/apidocs/search/all_18.js b/static/apidocs/search/all_18.js new file mode 100644 index 00000000..89d1662d --- /dev/null +++ b/static/apidocs/search/all_18.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['zone_0',['zone',['../structicaltimetype.html#aa60ce5ca11223d8d34702962fc7ac57c',1,'icaltimetype']]], + ['zone_5fcontext_1',['zone_context',['../structzone__context.html',1,'']]] +]; diff --git a/static/apidocs/search/all_19.js b/static/apidocs/search/all_19.js new file mode 100644 index 00000000..2b7af3f5 --- /dev/null +++ b/static/apidocs/search/all_19.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_7eicalspanlist_0',['~ICalSpanList',['../classLibICal_1_1ICalSpanList.html#aa60a6309d691037928c20d06709e47c2',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/all_2.js b/static/apidocs/search/all_2.js new file mode 100644 index 00000000..af1cb604 --- /dev/null +++ b/static/apidocs/search/all_2.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['begin_5fcomponent_0',['begin_component',['../classLibICal_1_1VComponent.html#aef8e4c73dda1c6ea6777903ea52431c5',1,'LibICal::VComponent']]], + ['buffer_5fring_1',['buffer_ring',['../structbuffer__ring.html',1,'']]], + ['builtin_5ftimezone_2',['builtin_timezone',['../struct__icaltimezone.html#a3c2dfe057f0cf02a612552b6d2e87a75',1,'_icaltimezone']]], + ['by_5fday_3',['by_day',['../structicalrecurrencetype.html#abf0eb04e3bb9028e18c9c4c1e0462b9d',1,'icalrecurrencetype']]], + ['by_5fmonth_4',['by_month',['../structicalrecurrencetype.html#af3f6d789f51c7772879b6c8e3101af9e',1,'icalrecurrencetype']]], + ['by_5fptrs_5',['by_ptrs',['../structicalrecur__iterator__impl.html#a94aecf2f3a0a22e8e8072eac31168273',1,'icalrecur_iterator_impl']]] +]; diff --git a/static/apidocs/search/all_3.js b/static/apidocs/search/all_3.js new file mode 100644 index 00000000..44645882 --- /dev/null +++ b/static/apidocs/search/all_3.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['caldat_0',['caldat',['../astime_8h.html#a71ea4b389d8486821b9c010c75445b34',1,'astime.h']]], + ['changed_1',['changed',['../structicalfileset__impl.html#aca045add6b479ef73d34866664be2166',1,'icalfileset_impl']]], + ['changes_2',['changes',['../struct__icaltimezone.html#a841b16536a64c2c620e765079ca21d11',1,'_icaltimezone']]], + ['cluster_3',['cluster',['../structicaldirset__impl.html#aa47812c9b0ef4f6cfb2a8740185a8a33',1,'icaldirset_impl::cluster'],['../structicalfileset__options.html#aa47516d0acdab84e6a851dd57cf2bed3',1,'icalfileset_options::cluster'],['../structicalfileset__impl.html#aca21f307b7a2529a8044660dd277dda1',1,'icalfileset_impl::cluster']]], + ['component_4',['component',['../struct__icaltimezone.html#a5c66736445277e7cc3bb8c45c32b7b14',1,'_icaltimezone']]], + ['conversion_5ftable_5fstruct_5',['conversion_table_struct',['../structconversion__table__struct.html',1,'']]], + ['convert_5ferrors_6',['convert_errors',['../classLibICal_1_1VComponent.html#a31c1d2f710cae635a6ee1e5198135d47',1,'LibICal::VComponent']]], + ['count_7',['count',['../structpvl__list__t.html#ad9bae505599af5261d472eb36b42d75e',1,'pvl_list_t']]], + ['count_5ferrors_8',['count_errors',['../classLibICal_1_1VComponent.html#a61649c7e528709b715668407ae514b82',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/all_4.js b/static/apidocs/search/all_4.js new file mode 100644 index 00000000..a7865ecb --- /dev/null +++ b/static/apidocs/search/all_4.js @@ -0,0 +1,15 @@ +var searchData= +[ + ['d_0',['d',['../structpvl__elem__t.html#a6d7a23387d9b7a5fd62bd7ca2478f134',1,'pvl_elem_t']]], + ['d_5fhour_1',['d_hour',['../structut__instant.html#a580db00dd9b27454af1b3e3f9b4d3ecb',1,'ut_instant']]], + ['d_5fminute_2',['d_minute',['../structut__instant.html#ac7002360b3d2d6751c9f76b0751ccfca',1,'ut_instant']]], + ['d_5fsecond_3',['d_second',['../structut__instant.html#ab379732301da97977b5a4700855b1cb6',1,'ut_instant']]], + ['data_4',['data',['../unionicalvalue__impl_1_1data.html',1,'icalvalue_impl']]], + ['day_5',['day',['../structut__instant.html#a0a0f54d06f28fa91a46d9c1948172797',1,'ut_instant']]], + ['day_5fof_5fyear_6',['day_of_year',['../structut__instant.html#a3011a8ee4e51ab2bc3561821d6175b00',1,'ut_instant']]], + ['dbtype_7',['dbtype',['../structicalbdbset__options.html#a3c5ba0f36190405b6424f3a4b9c30f62',1,'icalbdbset_options']]], + ['dir_8',['dir',['../structicaldirset__impl.html#a6fc97201a8df517a5955e1ab1e7f2a68',1,'icaldirset_impl']]], + ['directory_9',['directory',['../structicaldirset__impl.html#af1aee50ad9db5e6f29673e7e59b90a75',1,'icaldirset_impl']]], + ['directory_5fiterator_10',['directory_iterator',['../structicaldirset__impl.html#aab05287b166acccc6734673842774523',1,'icaldirset_impl']]], + ['dump_11',['dump',['../classLibICal_1_1ICalSpanList.html#ae1c6dbf5f3b15806459f12ec4b89414b',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/all_5.js b/static/apidocs/search/all_5.js new file mode 100644 index 00000000..960d89cf --- /dev/null +++ b/static/apidocs/search/all_5.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['encoding_5fmap_0',['encoding_map',['../structencoding__map.html',1,'']]], + ['end_1',['end',['../structicaltime__span.html#a29dcaed4d2a058b27120229a1c9053df',1,'icaltime_span::end'],['../structicalspanlist__impl.html#ad9b5b7be8203c36283e28fad77b97975',1,'icalspanlist_impl::end']]], + ['end_5fyear_2',['end_year',['../struct__icaltimezone.html#af13e59b4c5f832286020da795b819e11',1,'_icaltimezone']]], + ['expand_5fsplit_5fmap_5fstruct_3',['expand_split_map_struct',['../structexpand__split__map__struct.html',1,'']]] +]; diff --git a/static/apidocs/search/all_6.js b/static/apidocs/search/all_6.js new file mode 100644 index 00000000..7e329408 --- /dev/null +++ b/static/apidocs/search/all_6.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['fd_0',['fd',['../structicalfileset__impl.html#abae099ff18e830676aa35f69737ee73c',1,'icalfileset_impl']]], + ['first_5fcomponent_1',['first_component',['../structicaldirset__impl.html#a8e6c64e19d709ce5fd79b8eadecca817',1,'icaldirset_impl']]], + ['flag_2',['flag',['../structicalbdbset__options.html#a7f0f7a47ee749994b7009e7494dcafbc',1,'icalbdbset_options']]], + ['flags_3',['flags',['../structicaldirset__options.html#a0198ec47b0288039a835e8fd5cfd2df0',1,'icaldirset_options::flags'],['../structicalfileset__options.html#ad19cc9176412d8a16b2a6ac45c8f3bd1',1,'icalfileset_options::flags']]], + ['free_5fzone_5fdirectory_4',['free_zone_directory',['../icaltimezone_8h.html#a431f7b425ec073cdd490431d4285f294',1,'icaltimezone.c']]], + ['freq_5fmap_5',['freq_map',['../structfreq__map.html',1,'']]], + ['from_6',['from',['../structicalgauge__impl.html#a9e1fa8848b716866cebcc22750f273fa',1,'icalgauge_impl']]] +]; diff --git a/static/apidocs/search/all_7.js b/static/apidocs/search/all_7.js new file mode 100644 index 00000000..aeae4223 --- /dev/null +++ b/static/apidocs/search/all_7.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['gauge_0',['gauge',['../structicaldirset__impl.html#a6f7d408d2b1b1309b9a74208aa0ddef4',1,'icaldirset_impl::gauge'],['../structicalfileset__impl.html#a534b413abe1501e1ae3997267da86101',1,'icalfileset_impl::gauge']]], + ['get_5fcurrent_5fcomponent_1',['get_current_component',['../classLibICal_1_1VComponent.html#a3ec71c88c274db41235c90f98ee73b74',1,'LibICal::VComponent']]], + ['get_5fdtend_2',['get_dtend',['../classLibICal_1_1VComponent.html#ad4c61e11d937eb2d945915ef8abefa02',1,'LibICal::VComponent']]], + ['get_5ffirst_5fparameter_3',['get_first_parameter',['../classLibICal_1_1ICalProperty.html#a7cf59c3497829c43fe4d90f00ef9ad90',1,'LibICal::ICalProperty']]], + ['get_5ffirst_5freal_5fcomponent_4',['get_first_real_component',['../classLibICal_1_1VComponent.html#aff167a3bdffb0acf44b3562887aa92b1',1,'LibICal::VComponent']]], + ['get_5finner_5',['get_inner',['../classLibICal_1_1VComponent.html#a490ed40b1a5dffd2abaed17e49b79598',1,'LibICal::VComponent']]], + ['get_5fname_6',['get_name',['../classLibICal_1_1ICalProperty.html#af1cf1f6da567ebffdf9e59af1a3fe1e3',1,'LibICal::ICalProperty']]], + ['get_5fspan_7',['get_span',['../classLibICal_1_1VComponent.html#a853dd4369910c564d72cce30700206eb',1,'LibICal::VComponent']]], + ['get_5fvfreebusy_8',['get_vfreebusy',['../classLibICal_1_1ICalSpanList.html#a6b9c15908043937b51737641abda8e48',1,'LibICal::ICalSpanList']]], + ['get_5fzone_5fdirectory_9',['get_zone_directory',['../icaltimezone_8h.html#a66c3dfc5a5711444a4e543c6a673e195',1,'icaltimezone.c']]], + ['gettriggertime_10',['getTriggerTime',['../classLibICal_1_1VAlarm.html#a6f1393e3173f4c697c65ce9c62d9c878',1,'LibICal::VAlarm']]] +]; diff --git a/static/apidocs/search/all_8.js b/static/apidocs/search/all_8.js new file mode 100644 index 00000000..a5f0841a --- /dev/null +++ b/static/apidocs/search/all_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['head_0',['head',['../structpvl__list__t.html#a8e58163910d0c65424063fc3e1f5f428',1,'pvl_list_t']]] +]; diff --git a/static/apidocs/search/all_9.js b/static/apidocs/search/all_9.js new file mode 100644 index 00000000..7aac368e --- /dev/null +++ b/static/apidocs/search/all_9.js @@ -0,0 +1,361 @@ +var searchData= +[ + ['i_5fhour_0',['i_hour',['../structut__instant.html#ada9783874279fb39027a066a62f60c0e',1,'ut_instant']]], + ['i_5fminute_1',['i_minute',['../structut__instant.html#ac4530d4331a1741b3fd7d83ebe5faab8',1,'ut_instant']]], + ['i_5fsecond_2',['i_second',['../structut__instant.html#ae178950f09d4d6102dfd655df222c2eb',1,'ut_instant']]], + ['ical_5fallocation_5ferror_3',['ICAL_ALLOCATION_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a3ed4d866c28acaaaf99348b1ab27cd78',1,'icalerror.h']]], + ['ical_5fbadarg_5ferror_4',['ICAL_BADARG_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a2cc8bbcd8c07fc9a16e36f7aae5757b1',1,'icalerror.h']]], + ['ical_5fbt_5',['ical_bt',['../icalerror_8h.html#a1c741ef8219eebc325e53851aa9e8f00',1,'icalerror.c']]], + ['ical_5fby_5fsecond_5fsize_6',['ICAL_BY_SECOND_SIZE',['../icalrecur_8h.html#acec51b2d651f24e31b00627b60b12728',1,'icalrecur.h']]], + ['ical_5ferror_5fdefault_7',['ICAL_ERROR_DEFAULT',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3aa8624e525ff7c52b30310134230ba1e6',1,'icalerror.h']]], + ['ical_5ferror_5ffatal_8',['ICAL_ERROR_FATAL',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3a6a2c3dc27d17100317eadcc4156a9442',1,'icalerror.h']]], + ['ical_5ferror_5fnonfatal_9',['ICAL_ERROR_NONFATAL',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3aee5a5c75923a46b30105a272b75339b6',1,'icalerror.h']]], + ['ical_5ferror_5funknown_10',['ICAL_ERROR_UNKNOWN',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3a5afdd784a33990b7a717f827c077737f',1,'icalerror.h']]], + ['ical_5ferrors_5fare_5ffatal_11',['ICAL_ERRORS_ARE_FATAL',['../icalerror_8h.html#acb04e8e94ef9817f0a8d71c994412038',1,'icalerror.h']]], + ['ical_5ffile_5ferror_12',['ICAL_FILE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a3e6aa7e2b3aa393f3c048d64cea6578d',1,'icalerror.h']]], + ['ical_5finternal_5ferror_13',['ICAL_INTERNAL_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a5b0fc2e091e6b7287a9855d171648cbd',1,'icalerror.h']]], + ['ical_5fmalformeddata_5ferror_14',['ICAL_MALFORMEDDATA_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a6ba07679ac440358c3090a351d27f0d8',1,'icalerror.h']]], + ['ical_5fnewfailed_5ferror_15',['ICAL_NEWFAILED_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a055394ffaf6701aa12491dc10767f07d',1,'icalerror.h']]], + ['ical_5fno_5ferror_16',['ICAL_NO_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a6748acb6af24f11fe6efbe1a19602d0b',1,'icalerror.h']]], + ['ical_5fparse_5ferror_17',['ICAL_PARSE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ac7e8ee36834bde1f2ee7b680700a8deb',1,'icalerror.h']]], + ['ical_5frestriction_5fnone_18',['ICAL_RESTRICTION_NONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a8919e63bb091b6a78f508a212e3d2a36',1,'icalrestriction.h']]], + ['ical_5frestriction_5fone_19',['ICAL_RESTRICTION_ONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a4bc2d60b26b48e795abf26e05dd2fe17',1,'icalrestriction.h']]], + ['ical_5frestriction_5foneexclusive_20',['ICAL_RESTRICTION_ONEEXCLUSIVE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a6689f5056a7239a1f7d90eed1697d4f9',1,'icalrestriction.h']]], + ['ical_5frestriction_5fonemutual_21',['ICAL_RESTRICTION_ONEMUTUAL',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1aa27388029f05e9a1fae601d0ccbf69d9',1,'icalrestriction.h']]], + ['ical_5frestriction_5foneplus_22',['ICAL_RESTRICTION_ONEPLUS',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a772dd4b4cdfe5d5a264ec237a63e6c21',1,'icalrestriction.h']]], + ['ical_5frestriction_5funknown_23',['ICAL_RESTRICTION_UNKNOWN',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a166b57120ae7e1f7b2d321d36bbb7bce',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzero_24',['ICAL_RESTRICTION_ZERO',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1aace01bc6164411a18933716916c6c7ef',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzeroorone_25',['ICAL_RESTRICTION_ZEROORONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a941349ba77c59b895acc1f7133421a94',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzeroplus_26',['ICAL_RESTRICTION_ZEROPLUS',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a15c781ad15f9a8392a620559c278199e',1,'icalrestriction.h']]], + ['ical_5funimplemented_5ferror_27',['ICAL_UNIMPLEMENTED_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ad9376ffaf63b7fdb07eec0c0587c33f7',1,'icalerror.h']]], + ['ical_5funknown_5ferror_28',['ICAL_UNKNOWN_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ab2452506d4ad884b16da429749bfb551',1,'icalerror.h']]], + ['ical_5fusage_5ferror_29',['ICAL_USAGE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833adcf918ddc612831de72aa3749d39b5c6',1,'icalerror.h']]], + ['icalarray_30',['icalarray',['../icalarray_8h.html#ad36143942d5ac4709b68fff41615e598',1,'icalarray.h']]], + ['icalarray_2eh_31',['icalarray.h',['../icalarray_8h.html',1,'']]], + ['icalarray_5fappend_32',['icalarray_append',['../icalarray_8h.html#a9a11feb130b619af9dd7f4003d52d242',1,'icalarray.c']]], + ['icalarray_5fcopy_33',['icalarray_copy',['../icalarray_8h.html#a4e7b1165ef6a6a63e7d67dedfb789dc8',1,'icalarray.c']]], + ['icalarray_5felement_5fat_34',['icalarray_element_at',['../icalarray_8h.html#a2f12e8a9e9d70d80ad8a621b7d52af96',1,'icalarray.c']]], + ['icalarray_5ffree_35',['icalarray_free',['../icalarray_8h.html#a725724cdff58a12520abc7d6bfdf5e0f',1,'icalarray.c']]], + ['icalarray_5fnew_36',['icalarray_new',['../icalarray_8h.html#aeab98d02907573525bccdd548c6f8f1d',1,'icalarray.c']]], + ['icalarray_5fremove_5felement_5fat_37',['icalarray_remove_element_at',['../icalarray_8h.html#afeff7fd9edc32284b5fb34fb61ec8c0a',1,'icalarray.c']]], + ['icalarray_5fsort_38',['icalarray_sort',['../icalarray_8h.html#a7552d72058960fe92eeae36531275913',1,'icalarray.c']]], + ['icalattach_39',['icalattach',['../icalattach_8h.html#a56d5623c8bd51231d464b50cc69a72c5',1,'icalattach.h']]], + ['icalattach_2eh_40',['icalattach.h',['../icalattach_8h.html',1,'']]], + ['icalattach_5ffree_5ffn_5ft_41',['icalattach_free_fn_t',['../icalattach_8h.html#a331647f68081555d5dad37e6ebb96f41',1,'icalattach.h']]], + ['icalattach_5fget_5fdata_42',['icalattach_get_data',['../icalattach_8h.html#ab2039dd2691006e33174e39fedb4adca',1,'icalattach.c']]], + ['icalattach_5fget_5fis_5furl_43',['icalattach_get_is_url',['../icalattach_8h.html#a87aa30954aa1f901d90ab816abdfebd1',1,'icalattach.c']]], + ['icalattach_5fget_5furl_44',['icalattach_get_url',['../icalattach_8h.html#abff756d83d05c46417c8cbdaa7e0fa04',1,'icalattach.c']]], + ['icalattach_5fimpl_45',['icalattach_impl',['../structicalattach__impl.html',1,'']]], + ['icalattach_5fnew_5ffrom_5fdata_46',['icalattach_new_from_data',['../icalattach_8h.html#a02add24fd5d06a4753df5e7b9e9ce94b',1,'icalattach.c']]], + ['icalattach_5fnew_5ffrom_5furl_47',['icalattach_new_from_url',['../icalattach_8h.html#ae01e1b8479c7f4f6205d05271a4a8021',1,'icalattach.c']]], + ['icalattach_5fref_48',['icalattach_ref',['../icalattach_8h.html#aa442cd17e95dd605f5df40194d910002',1,'icalattach.c']]], + ['icalattach_5funref_49',['icalattach_unref',['../icalattach_8h.html#a4f9e8fe048e58d1035f82ca47e51024f',1,'icalattach.c']]], + ['icalbdbset_50',['ICalBDBSet',['../classLibICal_1_1ICalBDBSet.html',1,'LibICal']]], + ['icalbdbset_5fcxx_2eh_51',['icalbdbset_cxx.h',['../icalbdbset__cxx_8h.html',1,'']]], + ['icalbdbset_5fid_52',['icalbdbset_id',['../structicalbdbset__id.html',1,'']]], + ['icalbdbset_5fimpl_53',['icalbdbset_impl',['../structicalbdbset__impl.html',1,'']]], + ['icalbdbset_5foptions_54',['icalbdbset_options',['../structicalbdbset__options.html',1,'']]], + ['icalcalendar_2eh_55',['icalcalendar.h',['../icalcalendar_8h.html',1,'']]], + ['icalcalendar_5fimpl_56',['icalcalendar_impl',['../structicalcalendar__impl.html',1,'']]], + ['icalclassify_5fmap_57',['icalclassify_map',['../structicalclassify__map.html',1,'']]], + ['icalclassify_5fparts_58',['icalclassify_parts',['../structicalclassify__parts.html',1,'']]], + ['icalcluster_5fimpl_59',['icalcluster_impl',['../structicalcluster__impl.html',1,'']]], + ['icalcompiter_60',['icalcompiter',['../structicalcompiter.html',1,'']]], + ['icalcomponent_2eh_61',['icalcomponent.h',['../icalcomponent_8h.html',1,'']]], + ['icalcomponent_5fconvert_5ferrors_62',['icalcomponent_convert_errors',['../icalcomponent_8h.html#a05f04c49a8dcbe21e87fd895cd7fcb3e',1,'icalcomponent.c']]], + ['icalcomponent_5fcount_5ferrors_63',['icalcomponent_count_errors',['../icalcomponent_8h.html#aa1f40109577b185be2e807c0f2f00146',1,'icalcomponent.c']]], + ['icalcomponent_5fforeach_5frecurrence_64',['icalcomponent_foreach_recurrence',['../icalcomponent_8h.html#a379c4880bf5ab8ccbf1d4af12aca232e',1,'icalcomponent.c']]], + ['icalcomponent_5fforeach_5ftzid_65',['icalcomponent_foreach_tzid',['../icalcomponent_8h.html#addacbedbeccb2e2d31ae9a6963e19e49',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdtend_66',['icalcomponent_get_dtend',['../icalcomponent_8h.html#a233d19ae5347cc66920e755c2c966f70',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdtstart_67',['icalcomponent_get_dtstart',['../icalcomponent_8h.html#a23e20161c54d3aeff51e1cc444eee063',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdue_68',['icalcomponent_get_due',['../icalcomponent_8h.html#a914c732761507bf5333d246adfe80d85',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fduration_69',['icalcomponent_get_duration',['../icalcomponent_8h.html#aa40346bf15111b7f9eb0e629c7e8a6e6',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5ffirst_5freal_5fcomponent_70',['icalcomponent_get_first_real_component',['../icalcomponent_8h.html#a822e1ecadd06473da50dbcb52ebb759d',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5finner_71',['icalcomponent_get_inner',['../icalcomponent_8h.html#a744361f31ad6f28771035527ea00d11f',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fmethod_72',['icalcomponent_get_method',['../icalcomponent_8h.html#a36125a44be8baadb7d58b4f5d3c13ca7',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5frelcalid_73',['icalcomponent_get_relcalid',['../icalcomponent_8h.html#a8389c220f17ca9194ff35a53003fa7ff',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fspan_74',['icalcomponent_get_span',['../icalcomponent_8h.html#ac1316a03cca77062e1e85a094a90c770',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5ftimezone_75',['icalcomponent_get_timezone',['../icalcomponent_8h.html#abc399fff22411a68f6f28ff93f625f3d',1,'icalcomponent.c']]], + ['icalcomponent_5fimpl_76',['icalcomponent_impl',['../structicalcomponent__impl.html',1,'']]], + ['icalcomponent_5fkind_5fmap_77',['icalcomponent_kind_map',['../structicalcomponent__kind__map.html',1,'']]], + ['icalcomponent_5fmerge_5fcomponent_78',['icalcomponent_merge_component',['../icalcomponent_8h.html#a9a6e353e730464ff0f4ecf85475d648c',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_79',['icalcomponent_new',['../icalcomponent_8h.html#a727a14d0c14c66b4dbf1b58b2cb6ac2e',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5fclone_80',['icalcomponent_new_clone',['../icalcomponent_8h.html#a0811895d6b10925444b92975210a7afc',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5ffrom_5fstring_81',['icalcomponent_new_from_string',['../icalcomponent_8h.html#af4a04ae38f7633b65f629452aff3376a',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5fx_82',['icalcomponent_new_x',['../icalcomponent_8h.html#ad06faf0a54675bb708c3542b59f304dd',1,'icalcomponent.c']]], + ['icalcomponent_5fnormalize_83',['icalcomponent_normalize',['../icalcomponent_8h.html#a56150641c4d33ad4ec365c77a257e153',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdtend_84',['icalcomponent_set_dtend',['../icalcomponent_8h.html#ac0812f64b10457645c4e89b441c0a415',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdtstart_85',['icalcomponent_set_dtstart',['../icalcomponent_8h.html#a46f6c42c1190e84d2d34dd19591af07b',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdue_86',['icalcomponent_set_due',['../icalcomponent_8h.html#ae9a61fb25f98f24b6b89276040c4f9f8',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fduration_87',['icalcomponent_set_duration',['../icalcomponent_8h.html#ad122989d32c8e8eebbc8ca14a1cdfb18',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fmethod_88',['icalcomponent_set_method',['../icalcomponent_8h.html#a6db8db9455d888c5f9cab83a6033bee5',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5frelcalid_89',['icalcomponent_set_relcalid',['../icalcomponent_8h.html#a06bc97a17e83ebbcc6b1ff227ea4d701',1,'icalcomponent.c']]], + ['icalcomponent_5fstrip_5ferrors_90',['icalcomponent_strip_errors',['../icalcomponent_8h.html#a51f8653df2976e849923ae4a93b993fa',1,'icalcomponent.c']]], + ['icalcomponent_5fvanew_91',['icalcomponent_vanew',['../icalcomponent_8h.html#a6d04f3e1a9fac62b7b06c88eecd3b194',1,'icalcomponent.c']]], + ['icaldatetimeperiodtype_92',['icaldatetimeperiodtype',['../structicaldatetimeperiodtype.html',1,'']]], + ['icaldirset_2eh_93',['icaldirset.h',['../icaldirset_8h.html',1,'']]], + ['icaldirset_5fadd_5fcomponent_94',['icaldirset_add_component',['../icaldirset_8h.html#a123ff2d1b0887caafc027936bc9b921b',1,'icaldirset.c']]], + ['icaldirset_5fimpl_95',['icaldirset_impl',['../structicaldirset__impl.html',1,'']]], + ['icaldirset_5foptions_96',['icaldirset_options',['../structicaldirset__options.html',1,'']]], + ['icaldirset_5fremove_5fcomponent_97',['icaldirset_remove_component',['../icaldirset_8h.html#ae3b06ab0380ffb7c0e4b7ce9251931ad',1,'icaldirset.c']]], + ['icalduration_2eh_98',['icalduration.h',['../icalduration_8h.html',1,'']]], + ['icaldurationtype_99',['icaldurationtype',['../structicaldurationtype.html',1,'']]], + ['icaldurationtype_5fas_5fical_5fstring_100',['icaldurationtype_as_ical_string',['../icalduration_8h.html#adb753c6f52d493cfa9f31c2d7730ace1',1,'icalduration.c']]], + ['icaldurationtype_5fas_5fical_5fstring_5fr_101',['icaldurationtype_as_ical_string_r',['../icalduration_8h.html#ab87c9958f888dba23afa2249110ca137',1,'icalduration.c']]], + ['icaldurationtype_5fas_5fint_102',['icaldurationtype_as_int',['../icalduration_8h.html#a1828c484b9efb3cb1f08ec5eb58c7a18',1,'icalduration.c']]], + ['icaldurationtype_5fbad_5fduration_103',['icaldurationtype_bad_duration',['../icalduration_8h.html#a2578535a23fc5c6d4d61c09c880f03fd',1,'icalduration.c']]], + ['icaldurationtype_5ffrom_5fint_104',['icaldurationtype_from_int',['../icalduration_8h.html#a88157a8ae61263ea15af92a416889301',1,'icalduration.c']]], + ['icaldurationtype_5ffrom_5fstring_105',['icaldurationtype_from_string',['../icalduration_8h.html#a0d6d8cc773e19242448eaffb1368fef4',1,'icalduration.c']]], + ['icaldurationtype_5fis_5fbad_5fduration_106',['icaldurationtype_is_bad_duration',['../icalduration_8h.html#a88c5b90b57f9e1f79c00a544746687d6',1,'icalduration.c']]], + ['icaldurationtype_5fis_5fnull_5fduration_107',['icaldurationtype_is_null_duration',['../icalduration_8h.html#afcdeddc439488d8f586db0702593c270',1,'icalduration.c']]], + ['icaldurationtype_5fnull_5fduration_108',['icaldurationtype_null_duration',['../icalduration_8h.html#ad716774a6570e0be2eb11868deb86595',1,'icalduration.c']]], + ['icalenum_5fnum_5fto_5freqstat_109',['icalenum_num_to_reqstat',['../icalenums_8h.html#a53964f8e27e7e4db21c6e173e97d9169',1,'icalenums.c']]], + ['icalenum_5freqstat_5fcode_5fr_110',['icalenum_reqstat_code_r',['../icalenums_8h.html#ada0aa82f4ec0fb1c15550165fd49043c',1,'icalenums.c']]], + ['icalenum_5freqstat_5fdesc_111',['icalenum_reqstat_desc',['../icalenums_8h.html#a2b1eaf6c550ec93869dc760cf8d2e0f7',1,'icalenums.c']]], + ['icalenum_5freqstat_5fmajor_112',['icalenum_reqstat_major',['../icalenums_8h.html#a49c50e3cc8a770b11306605c58c84c7d',1,'icalenums.c']]], + ['icalenum_5freqstat_5fminor_113',['icalenum_reqstat_minor',['../icalenums_8h.html#a93c405d78c5d9589c823a7521ba7e3f9',1,'icalenums.c']]], + ['icalenums_2eh_114',['icalenums.h',['../icalenums_8h.html',1,'']]], + ['icalerrno_115',['icalerrno',['../icalerror_8h.html#ad2562706150f5c5a4d9b0ca149d78e37',1,'icalerror.h']]], + ['icalerrno_5freturn_116',['icalerrno_return',['../icalerror_8h.html#a03f44629289ba66eaf29e199ec9ec4b7',1,'icalerror.c']]], + ['icalerror_2eh_117',['icalerror.h',['../icalerror_8h.html',1,'']]], + ['icalerror_5fassert_118',['icalerror_assert',['../icalerror_8h.html#a44c46ab691b1a16f61b796350dc01bed',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_119',['icalerror_check_arg',['../icalerror_8h.html#afef4004abbb97d2599d131948655ae89',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5fre_120',['icalerror_check_arg_re',['../icalerror_8h.html#ae163052ebae24e2026bf54108b10b914',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frv_121',['icalerror_check_arg_rv',['../icalerror_8h.html#a00245be23d5c2d4801c9ed74e1da6f6a',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frx_122',['icalerror_check_arg_rx',['../icalerror_8h.html#a7a71f70509be32e3e54edbaf3b45571a',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frz_123',['icalerror_check_arg_rz',['../icalerror_8h.html#a95198bf515920804672520856c300666',1,'icalerror.h']]], + ['icalerror_5fclear_5ferrno_124',['icalerror_clear_errno',['../icalerror_8h.html#ae87b46acb90ce9fee0fa377fd9b57c28',1,'icalerror.c']]], + ['icalerror_5fcrash_5fhere_125',['icalerror_crash_here',['../icalerror_8h.html#a0cbc33f05e014e767bd92b04bfb92f62',1,'icalerror.c']]], + ['icalerror_5ferror_5ffrom_5fstring_126',['icalerror_error_from_string',['../icalerror_8h.html#a9b60700869241af095f0604f35b1c446',1,'icalerror.c']]], + ['icalerror_5fget_5ferror_5fstate_127',['icalerror_get_error_state',['../icalerror_8h.html#a5fe3cbc229f74250b59c077e21abf82d',1,'icalerror.c']]], + ['icalerror_5fget_5ferrors_5fare_5ffatal_128',['icalerror_get_errors_are_fatal',['../icalerror_8h.html#a44fa677ba623cdcebe9e38b03cd08389',1,'icalerror.c']]], + ['icalerror_5fperror_129',['icalerror_perror',['../icalerror_8h.html#a5c3975fee79ab587467be6531497dbbc',1,'icalerror.c']]], + ['icalerror_5frestore_130',['icalerror_restore',['../icalerror_8h.html#a8377dadcd17bf305d1931aa2518c321a',1,'icalerror.c']]], + ['icalerror_5fset_5ferrno_131',['icalerror_set_errno',['../icalerror_8h.html#a8266eaa216926b6703a0ef31cd99f0b2',1,'icalerror.c']]], + ['icalerror_5fset_5ferror_5fstate_132',['icalerror_set_error_state',['../icalerror_8h.html#a777a41722836b68ffb27ae5a746a14b4',1,'icalerror.c']]], + ['icalerror_5fset_5ferrors_5fare_5ffatal_133',['icalerror_set_errors_are_fatal',['../icalerror_8h.html#a05941b21472c45d4b3654cb7d94bf3e8',1,'icalerror.c']]], + ['icalerror_5fstate_134',['icalerror_state',['../structicalerror__state.html',1,'']]], + ['icalerror_5fstop_5fhere_135',['icalerror_stop_here',['../icalerror_8h.html#a9102f6b721a280151c7858860707171b',1,'icalerror.c']]], + ['icalerror_5fstrerror_136',['icalerror_strerror',['../icalerror_8h.html#a78e30857b73490e23848b92459510b8c',1,'icalerror.c']]], + ['icalerror_5fstring_5fmap_137',['icalerror_string_map',['../structicalerror__string__map.html',1,'']]], + ['icalerror_5fsupress_138',['icalerror_supress',['../icalerror_8h.html#af226f2c41272dabecd03ec9807d3a1e2',1,'icalerror.c']]], + ['icalerror_5fwarn_139',['icalerror_warn',['../icalerror_8h.html#a2ab760137cd4f66d205ef00235a0ecd4',1,'icalerror.h']]], + ['icalerrorenum_140',['icalerrorenum',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833',1,'icalerror.h']]], + ['icalerrorstate_141',['icalerrorstate',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3',1,'icalerror.h']]], + ['icalfileset_5fid_142',['icalfileset_id',['../structicalfileset__id.html',1,'']]], + ['icalfileset_5fimpl_143',['icalfileset_impl',['../structicalfileset__impl.html',1,'']]], + ['icalfileset_5foptions_144',['icalfileset_options',['../structicalfileset__options.html',1,'']]], + ['icalgauge_2eh_145',['icalgauge.h',['../icalgauge_8h.html',1,'']]], + ['icalgauge_5fcompare_146',['icalgauge_compare',['../icalgauge_8h.html#a9047a63c23d86af1b2ad3a2dd4ba63bd',1,'icalgauge.c']]], + ['icalgauge_5fdump_147',['icalgauge_dump',['../icalgauge_8h.html#a3000c05fd412869503e8499c07030f48',1,'icalgauge.c']]], + ['icalgauge_5fget_5fexpand_148',['icalgauge_get_expand',['../icalgauge_8h.html#a0e3a08b481636446b7d1cbefeba82998',1,'icalgauge.c']]], + ['icalgauge_5fimpl_149',['icalgauge_impl',['../structicalgauge__impl.html',1,'']]], + ['icalgauge_5fwhere_150',['icalgauge_where',['../structicalgauge__where.html',1,'']]], + ['icalgeotype_151',['icalgeotype',['../structicalgeotype.html',1,'']]], + ['icalmemory_2eh_152',['icalmemory.h',['../icalmemory_8h.html',1,'']]], + ['icalmemory_5fadd_5ftmp_5fbuffer_153',['icalmemory_add_tmp_buffer',['../icalmemory_8h.html#ae9f1799733a1577748a028181098be48',1,'icalmemory.c']]], + ['icalmemory_5fappend_5fchar_154',['icalmemory_append_char',['../icalmemory_8h.html#addac122edb16bc41a193895c86bd5ff5',1,'icalmemory.c']]], + ['icalmemory_5fappend_5fstring_155',['icalmemory_append_string',['../icalmemory_8h.html#a647bf5dab81fc5b83a0ed8f8ad769ea6',1,'icalmemory.c']]], + ['icalmemory_5ffree_5fbuffer_156',['icalmemory_free_buffer',['../icalmemory_8h.html#a2f164cb87c67f06b5dc04a5f21384879',1,'icalmemory.c']]], + ['icalmemory_5ffree_5fring_157',['icalmemory_free_ring',['../icalmemory_8h.html#a175daa67f089bae6aefd4360fcd0d664',1,'icalmemory.c']]], + ['icalmemory_5fnew_5fbuffer_158',['icalmemory_new_buffer',['../icalmemory_8h.html#a9b645edbcc1a05dbb64df5d86adbc367',1,'icalmemory.c']]], + ['icalmemory_5fresize_5fbuffer_159',['icalmemory_resize_buffer',['../icalmemory_8h.html#a6cf9578649d6f12bf8eae97e4ef537e9',1,'icalmemory.c']]], + ['icalmemory_5fstrdup_160',['icalmemory_strdup',['../icalmemory_8h.html#a313a5fd91cb6100f9ecc1b8f24acc336',1,'icalmemory.c']]], + ['icalmemory_5ftmp_5fbuffer_161',['icalmemory_tmp_buffer',['../icalmemory_8h.html#aeaf6a28b3908f695bb0a7e35d1dfc8f7',1,'icalmemory.c']]], + ['icalmemory_5ftmp_5fcopy_162',['icalmemory_tmp_copy',['../icalmemory_8h.html#aa5f6b34db6cc88a33bd1cd745d44f977',1,'icalmemory.c']]], + ['icalparameter_163',['ICalParameter',['../classLibICal_1_1ICalParameter.html',1,'LibICal']]], + ['icalparameter_2eh_164',['icalparameter.h',['../icalparameter_8h.html',1,'']]], + ['icalparameter_5fas_5fical_5fstring_165',['icalparameter_as_ical_string',['../icalparameter_8h.html#ab8222d0c7236fee6e6ae47a79955db45',1,'icalparameter.c']]], + ['icalparameter_5fas_5fical_5fstring_5fr_166',['icalparameter_as_ical_string_r',['../icalparameter_8h.html#afe13c2029af7332593df37d1ebbd8b3c',1,'icalparameter.c']]], + ['icalparameter_5fcxx_2eh_167',['icalparameter_cxx.h',['../icalparameter__cxx_8h.html',1,'']]], + ['icalparameter_5ffree_168',['icalparameter_free',['../icalparameter_8h.html#aafadb9fd4172bab0d17252d251c69800',1,'icalparameter.c']]], + ['icalparameter_5fget_5fiana_5fname_169',['icalparameter_get_iana_name',['../icalparameter_8h.html#ab644f9bab546eea75306f349914af05a',1,'icalparameter.c']]], + ['icalparameter_5fget_5fiana_5fvalue_170',['icalparameter_get_iana_value',['../icalparameter_8h.html#a93de301878e702d08cf89dae83c071f7',1,'icalparameter.c']]], + ['icalparameter_5fget_5fparent_171',['icalparameter_get_parent',['../icalproperty_8h.html#ab0fd104bb6eb9d30d2b03a3f35c6a1ea',1,'icalparameter.c']]], + ['icalparameter_5fget_5fxname_172',['icalparameter_get_xname',['../icalparameter_8h.html#a28c4415b82455f7551aa4c48b36be438',1,'icalparameter.c']]], + ['icalparameter_5fget_5fxvalue_173',['icalparameter_get_xvalue',['../icalparameter_8h.html#a1e2ee9baea3213f18d2b93cdf3892c72',1,'icalparameter.c']]], + ['icalparameter_5fhas_5fsame_5fname_174',['icalparameter_has_same_name',['../icalparameter_8h.html#add735467f8a84b476f5899e262a072a2',1,'icalparameter.c']]], + ['icalparameter_5fimpl_175',['icalparameter_impl',['../structicalparameter__impl.html',1,'']]], + ['icalparameter_5fisa_176',['icalparameter_isa',['../icalparameter_8h.html#a0671e8fcd545049a3fbc1b5d5d0f2b2b',1,'icalparameter.c']]], + ['icalparameter_5fisa_5fparameter_177',['icalparameter_isa_parameter',['../icalparameter_8h.html#a960908ba27797c51f965b997be99f284',1,'icalparameter.c']]], + ['icalparameter_5fkind_5fis_5fvalid_178',['icalparameter_kind_is_valid',['../icalparameter_8h.html#a236331311b5c8957e718f6abb205fb66',1,'icalparameter.h']]], + ['icalparameter_5fkind_5fto_5fstring_179',['icalparameter_kind_to_string',['../icalparameter_8h.html#a6a172a9cc1bc5cc1315f96e6cad70438',1,'icalparameter.h']]], + ['icalparameter_5fnew_180',['icalparameter_new',['../icalparameter_8h.html#a252cdad9d54b31b898ff273ce5439429',1,'icalparameter.c']]], + ['icalparameter_5fnew_5fclone_181',['icalparameter_new_clone',['../icalparameter_8h.html#a1e31c5f1e180763dccdeaa94b180cad1',1,'icalparameter.c']]], + ['icalparameter_5fnew_5ffrom_5fstring_182',['icalparameter_new_from_string',['../icalparameter_8h.html#aa3f2cce04d344d002ca83e797c05dd8b',1,'icalparameter.c']]], + ['icalparameter_5fnew_5ffrom_5fvalue_5fstring_183',['icalparameter_new_from_value_string',['../icalparameter_8h.html#abe33daa839d72261aab283d0f44f711f',1,'icalparameter.h']]], + ['icalparameter_5fset_5fiana_5fname_184',['icalparameter_set_iana_name',['../icalparameter_8h.html#aab70ecf438e02384a5a13ca6a71e7793',1,'icalparameter.c']]], + ['icalparameter_5fset_5fiana_5fvalue_185',['icalparameter_set_iana_value',['../icalparameter_8h.html#adf6329d175597783232853ff1ca53e24',1,'icalparameter.c']]], + ['icalparameter_5fset_5fparent_186',['icalparameter_set_parent',['../icalproperty_8h.html#add1ff57f4b9ffe33607a1629e68cdf1f',1,'icalparameter.c']]], + ['icalparameter_5fset_5fxname_187',['icalparameter_set_xname',['../icalparameter_8h.html#a2e77cb0c365e67a65487f916ece223da',1,'icalparameter.c']]], + ['icalparameter_5fset_5fxvalue_188',['icalparameter_set_xvalue',['../icalparameter_8h.html#aaf0fbf906d011f5af3ce38b626906691',1,'icalparameter.c']]], + ['icalparameter_5fstring_5fto_5fkind_189',['icalparameter_string_to_kind',['../icalparameter_8h.html#a4e659bfa64d0c6c7cc3da29aadc5d3d6',1,'icalparameter.h']]], + ['icalparser_190',['icalparser',['../icalparser_8h.html#a9332da05cc4922f68ae2b07f442c06fa',1,'icalparser.h']]], + ['icalparser_2eh_191',['icalparser.h',['../icalparser_8h.html',1,'']]], + ['icalparser_5fadd_5fline_192',['icalparser_add_line',['../icalparser_8h.html#a987113ea951dc55e37a764af168caaca',1,'icalparser.c']]], + ['icalparser_5fbegin_5fcomp_193',['ICALPARSER_BEGIN_COMP',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a0bfd41070e190cb87f0e8385e0c8031e',1,'icalparser.h']]], + ['icalparser_5fclean_194',['icalparser_clean',['../icalparser_8h.html#aa6e4c9c494345c51adf49a7e30255fb7',1,'icalparser.c']]], + ['icalparser_5fctrl_195',['icalparser_ctrl',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3',1,'icalparser.h']]], + ['icalparser_5fctrl_5ferror_196',['ICALPARSER_CTRL_ERROR',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3af461909a3196ea163ae9718975ae55e5',1,'icalparser.h']]], + ['icalparser_5fctrl_5fkeep_197',['ICALPARSER_CTRL_KEEP',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3a5cb2c7f392cabe9b95975fd5f04abf4c',1,'icalparser.h']]], + ['icalparser_5fctrl_5fomit_198',['ICALPARSER_CTRL_OMIT',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3a42056b68e7c47a6bc7c8cb1ffb52cdb1',1,'icalparser.h']]], + ['icalparser_5fend_5fcomp_199',['ICALPARSER_END_COMP',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a5a29afa239e509cc9f45a61a2c10feb2',1,'icalparser.h']]], + ['icalparser_5ferror_200',['ICALPARSER_ERROR',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7adc8fd0c6d697007e6b3fa12bd118a9c8',1,'icalparser.h']]], + ['icalparser_5ffree_201',['icalparser_free',['../icalparser_8h.html#a1cb8b8678b781d3d2ede0fbce613b90d',1,'icalparser.c']]], + ['icalparser_5fget_5fctrl_202',['icalparser_get_ctrl',['../icalparser_8h.html#a2d34db956d3cc609f2804bcadd0deee6',1,'icalparser.c']]], + ['icalparser_5fget_5fline_203',['icalparser_get_line',['../icalparser_8h.html#ada2de638b68de5146ae860631709f4a3',1,'icalparser.c']]], + ['icalparser_5fget_5fstate_204',['icalparser_get_state',['../icalparser_8h.html#a9a27d19ac53219bb65aeb9a031dbf027',1,'icalparser.c']]], + ['icalparser_5fimpl_205',['icalparser_impl',['../structicalparser__impl.html',1,'']]], + ['icalparser_5fin_5fprogress_206',['ICALPARSER_IN_PROGRESS',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a927206f107dfdc62cfd33a9115a997b2',1,'icalparser.h']]], + ['icalparser_5fnew_207',['icalparser_new',['../icalparser_8h.html#a9848e4dc69f814f49a5ece028c43be57',1,'icalparser.c']]], + ['icalparser_5fparse_208',['icalparser_parse',['../icalparser_8h.html#a00330df647417bb017a7daaaffafddec',1,'icalparser.c']]], + ['icalparser_5fparse_5fstring_209',['icalparser_parse_string',['../icalparser_8h.html#a5e1268344c61e44a0ec18085688f07fd',1,'icalparser.c']]], + ['icalparser_5fset_5fctrl_210',['icalparser_set_ctrl',['../icalparser_8h.html#a24ad1a0d37a10aa31a8dbd9977660281',1,'icalparser.c']]], + ['icalparser_5fset_5fgen_5fdata_211',['icalparser_set_gen_data',['../icalparser_8h.html#aae6d08b4084610e225621a25dddd7689',1,'icalparser.c']]], + ['icalparser_5fstate_212',['icalparser_state',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7',1,'icalparser.h']]], + ['icalparser_5fsuccess_213',['ICALPARSER_SUCCESS',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a2dc67ce9b2811c477a462025a9ed9090',1,'icalparser.h']]], + ['icalperiod_2eh_214',['icalperiod.h',['../icalperiod_8h.html',1,'']]], + ['icalperiodtype_215',['icalperiodtype',['../structicalperiodtype.html',1,'']]], + ['icalperiodtype_5fas_5fical_5fstring_216',['icalperiodtype_as_ical_string',['../icalperiod_8h.html#a28a5aa968b36182e39d7f3fd3491ecb3',1,'icalperiod.c']]], + ['icalperiodtype_5fas_5fical_5fstring_5fr_217',['icalperiodtype_as_ical_string_r',['../icalperiod_8h.html#a2f7c3f3e1623c9774596d1ef68789171',1,'icalperiod.c']]], + ['icalperiodtype_5ffrom_5fstring_218',['icalperiodtype_from_string',['../icalperiod_8h.html#a827e35abf4d6349e15aeaa9a483064fd',1,'icalperiod.c']]], + ['icalperiodtype_5fis_5fnull_5fperiod_219',['icalperiodtype_is_null_period',['../icalperiod_8h.html#ae184bb1351602b7763044c5167a96bdf',1,'icalperiod.c']]], + ['icalperiodtype_5fis_5fvalid_5fperiod_220',['icalperiodtype_is_valid_period',['../icalperiod_8h.html#af7feaf12370cd37d66d160c4d8fbf0c7',1,'icalperiod.c']]], + ['icalperiodtype_5fnull_5fperiod_221',['icalperiodtype_null_period',['../icalperiod_8h.html#a60e59a9f46a1efa9885829a4d23eddfa',1,'icalperiod.c']]], + ['icalproperty_222',['ICalProperty',['../classLibICal_1_1ICalProperty.html',1,'LibICal']]], + ['icalproperty_2eh_223',['icalproperty.h',['../icalproperty_8h.html',1,'']]], + ['icalproperty_5fcxx_2eh_224',['icalproperty_cxx.h',['../icalproperty__cxx_8h.html',1,'']]], + ['icalproperty_5fget_5fdatetime_5fwith_5fcomponent_225',['icalproperty_get_datetime_with_component',['../icalcomponent_8h.html#a611f811f8f86a6499077e6e03291a721',1,'icalproperty.c']]], + ['icalproperty_5fget_5fparent_226',['icalproperty_get_parent',['../icalcomponent_8h.html#a3d9f076b73a18e740c426329a6b969c7',1,'icalproperty.c']]], + ['icalproperty_5fget_5fproperty_5fname_227',['icalproperty_get_property_name',['../icalproperty_8h.html#a6a4e4af2200ccba5f48748f953968956',1,'icalproperty.c']]], + ['icalproperty_5fimpl_228',['icalproperty_impl',['../structicalproperty__impl.html',1,'']]], + ['icalproperty_5fkind_5fis_5fvalid_229',['icalproperty_kind_is_valid',['../icalproperty_8h.html#ae30c17db923194abbbc7d2fe3b252675',1,'icalproperty.h']]], + ['icalproperty_5fnormalize_230',['icalproperty_normalize',['../icalproperty_8h.html#a7b1e4b49622fbd0f1160b65c102fbcfa',1,'icalproperty.c']]], + ['icalproperty_5frecurrence_5fis_5fexcluded_231',['icalproperty_recurrence_is_excluded',['../icalcomponent_8h.html#aa996d31b8f96e451495b34777171242f',1,'icalcomponent.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fkind_232',['icalproperty_remove_parameter_by_kind',['../icalproperty_8h.html#a68baed35b3b1af4ababf2c62b2ced68d',1,'icalproperty.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fname_233',['icalproperty_remove_parameter_by_name',['../icalproperty_8h.html#a51587b7b70961ff814f964bf81a64afe',1,'icalproperty.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fref_234',['icalproperty_remove_parameter_by_ref',['../icalproperty_8h.html#a3e16fd227adaaa8ec34aea6d2d565c3e',1,'icalproperty.c']]], + ['icalproperty_5fset_5fparent_235',['icalproperty_set_parent',['../icalcomponent_8h.html#a81bb4666b9d6bdbc62a4fe9ef682e0e2',1,'icalproperty.c']]], + ['icalrecur_2eh_236',['icalrecur.h',['../icalrecur_8h.html',1,'']]], + ['icalrecur_5fexpand_5frecurrence_237',['icalrecur_expand_recurrence',['../icalrecur_8h.html#a08bc5e484eb46ba9e02fb037e2e01c29',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5ffree_238',['icalrecur_iterator_free',['../icalrecur_8h.html#a14daf9df313fdad9f536a7d9242b4cdc',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fimpl_239',['icalrecur_iterator_impl',['../structicalrecur__iterator__impl.html',1,'']]], + ['icalrecur_5fiterator_5fnew_240',['icalrecur_iterator_new',['../icalrecur_8h.html#a34c26e8377e120586398b06d37a1f63e',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fnext_241',['icalrecur_iterator_next',['../icalrecur_8h.html#a2e10af320612cd7ab8c6fb6177ade3e3',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fset_5fstart_242',['icalrecur_iterator_set_start',['../icalrecur_8h.html#ab632c95c37375ef11d62d8742e8406d5',1,'icalrecur.c']]], + ['icalrecur_5fparser_243',['icalrecur_parser',['../structicalrecur__parser.html',1,'']]], + ['icalrecurrencetype_244',['icalrecurrencetype',['../structicalrecurrencetype.html',1,'']]], + ['icalrecurrencetype_5fday_5fday_5fof_5fweek_245',['icalrecurrencetype_day_day_of_week',['../icalrecur_8h.html#a96c160e7e6b16e0e369c540f2ee164c7',1,'icalrecur.c']]], + ['icalrecurrencetype_5fday_5fposition_246',['icalrecurrencetype_day_position',['../icalrecur_8h.html#aa730e9ac327064456902076b718400f4',1,'icalrecur.c']]], + ['icalrecurrencetype_5ffrom_5fstring_247',['icalrecurrencetype_from_string',['../icalrecur_8h.html#a0e8ebcf355ba22299f553f8f5e657926',1,'icalrecur.c']]], + ['icalreqstattype_248',['icalreqstattype',['../structicalreqstattype.html',1,'']]], + ['icalrestriction_2eh_249',['icalrestriction.h',['../icalrestriction_8h.html',1,'']]], + ['icalrestriction_5fcheck_250',['icalrestriction_check',['../icalrestriction_8h.html#a36eeedfdce2344da44fd09d9e3f18b57',1,'icalrestriction.h']]], + ['icalrestriction_5fcompare_251',['icalrestriction_compare',['../icalrestriction_8h.html#acd3882ab8b58bf0e12cb9ed48234ce2d',1,'icalrestriction.h']]], + ['icalrestriction_5fkind_252',['icalrestriction_kind',['../icalrestriction_8h.html#ae380f8acbf3acc9650130ce17aa755f9',1,'icalrestriction_kind: icalrestriction.h'],['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1',1,'icalrestriction_kind: icalrestriction.h']]], + ['icalset_2eh_253',['icalset.h',['../icalset_8h.html',1,'']]], + ['icalset_5fcommit_254',['icalset_commit',['../icalset_8h.html#a2c852ee9d1ddd570809482ba56fee0e6',1,'icalset.c']]], + ['icalset_5ffetch_255',['icalset_fetch',['../icalset_8h.html#a98ebedc03e491568cf62830be8459921',1,'icalset.c']]], + ['icalset_5ffree_256',['icalset_free',['../icalset_8h.html#a2a602a0901474216b3dddbd21f5ff8f5',1,'icalset.c']]], + ['icalset_5fget_5fcurrent_5fcomponent_257',['icalset_get_current_component',['../icalset_8h.html#a420481c47762be041d21a8fc22a488c4',1,'icalset.c']]], + ['icalset_5fimpl_258',['icalset_impl',['../structicalset__impl.html',1,'']]], + ['icalset_5fmark_259',['icalset_mark',['../icalset_8h.html#a2caa3e1d3c665fe107dde1e4be8c49c1',1,'icalset.c']]], + ['icalset_5fmodify_260',['icalset_modify',['../icalset_8h.html#afb2fbb4b1dae61bd4e2ad78c70daa1df',1,'icalset.c']]], + ['icalset_5fnew_261',['icalset_new',['../icalset_8h.html#ad39065fe67efd5f3baf9f5af0379505e',1,'icalset.c']]], + ['icalset_5fregister_5fclass_262',['icalset_register_class',['../icalset_8h.html#a40ba946500e79218ae39f89db5397121',1,'icalset.h']]], + ['icalset_5fselect_263',['icalset_select',['../icalset_8h.html#a0d4a88d44364f1da9e107f99926a7217',1,'icalset.c']]], + ['icalsetiter_264',['icalsetiter',['../structicalsetiter.html',1,'']]], + ['icalsetiter_5fnext_265',['icalsetiter_next',['../icalset_8h.html#a309ac5871c9902f356f7a521dfcd0a62',1,'icalset.c']]], + ['icalsetiter_5fnull_266',['icalsetiter_null',['../icalset_8h.html#a66eebdc183a6a66a99d91a5275ccd6ec',1,'icalset.c']]], + ['icalsetiter_5fto_5fnext_267',['icalsetiter_to_next',['../icalset_8h.html#a47b0c14d98ea34c38315948bc9cc9097',1,'icalset.c']]], + ['icalspanlist_268',['ICalSpanList',['../classLibICal_1_1ICalSpanList.html#a009d494e48e9bd6401a80315e292e487',1,'LibICal::ICalSpanList::ICalSpanList(icalset *set, icaltimetype start, icaltimetype end)'],['../classLibICal_1_1ICalSpanList.html#a553e46923b9b8cdf5f45043eefab3190',1,'LibICal::ICalSpanList::ICalSpanList(icalcomponent *comp)'],['../classLibICal_1_1ICalSpanList.html#a677ad30a4a2d1753b3357fcdd38cfa85',1,'LibICal::ICalSpanList::ICalSpanList(VComponent &comp)'],['../classLibICal_1_1ICalSpanList.html',1,'LibICal::ICalSpanList']]], + ['icalspanlist_2eh_269',['icalspanlist.h',['../icalspanlist_8h.html',1,'']]], + ['icalspanlist_5fas_5ffreebusy_5fmatrix_270',['icalspanlist_as_freebusy_matrix',['../icalspanlist_8h.html#a7075f544806d8dec4696ccf80067f7d7',1,'icalspanlist.c']]], + ['icalspanlist_5fas_5fvfreebusy_271',['icalspanlist_as_vfreebusy',['../icalspanlist_8h.html#aed5ab46eeb595eb24cb99494f6837267',1,'icalspanlist.c']]], + ['icalspanlist_5fcxx_2eh_272',['icalspanlist_cxx.h',['../icalspanlist__cxx_8h.html',1,'']]], + ['icalspanlist_5fdump_273',['icalspanlist_dump',['../icalspanlist_8h.html#a31a026b29f6b18108e49b15c9593a7fa',1,'icalspanlist.c']]], + ['icalspanlist_5ffree_274',['icalspanlist_free',['../icalspanlist_8h.html#acb42d8b7053e8886c8ea895699f6fa9c',1,'icalspanlist.c']]], + ['icalspanlist_5ffrom_5fvfreebusy_275',['icalspanlist_from_vfreebusy',['../icalspanlist_8h.html#a980cdf00f77540c74dc44f7037aa82a5',1,'icalspanlist.c']]], + ['icalspanlist_5fimpl_276',['icalspanlist_impl',['../structicalspanlist__impl.html',1,'']]], + ['icalspanlist_5fnew_277',['icalspanlist_new',['../icalspanlist_8h.html#acbf0f85b59416bfc8e8a65970e191136',1,'icalspanlist.c']]], + ['icalspanlist_5fnext_5ffree_5ftime_278',['icalspanlist_next_free_time',['../icalspanlist_8h.html#af8686abb751773c3358c1a82fb79606c',1,'icalspanlist.c']]], + ['icaltime_2eh_279',['icaltime.h',['../icaltime_8h.html',1,'']]], + ['icaltime_5fadd_280',['icaltime_add',['../icalduration_8h.html#aacc4e7db2c4b8dd96fd428edee73acf5',1,'icalduration.c']]], + ['icaltime_5fadjust_281',['icaltime_adjust',['../icaltime_8h.html#aeeff97a90d535fd004d93057e49e8663',1,'icaltime.c']]], + ['icaltime_5fas_5fical_5fstring_282',['icaltime_as_ical_string',['../icaltime_8h.html#a96d92fa0eb3e7b3cc2f57628d8d2900e',1,'icaltime.c']]], + ['icaltime_5fas_5fical_5fstring_5fr_283',['icaltime_as_ical_string_r',['../icaltime_8h.html#aff3743be95ab23fecba3a1de69ffdc2e',1,'icaltime.c']]], + ['icaltime_5fas_5ftimet_284',['icaltime_as_timet',['../icaltime_8h.html#a7b39742d0f786f41df391c62ee56ec10',1,'icaltime.c']]], + ['icaltime_5fas_5ftimet_5fwith_5fzone_285',['icaltime_as_timet_with_zone',['../icaltime_8h.html#a4ec8d0734d00b761745ea55808db8237',1,'icaltime.c']]], + ['icaltime_5fcompare_286',['icaltime_compare',['../icaltime_8h.html#a123759194c6e8c44e1b05193cb61196a',1,'icaltime.c']]], + ['icaltime_5fcompare_5fdate_5fonly_287',['icaltime_compare_date_only',['../icaltime_8h.html#a178f667071ea4e8f22140ee8e2f4cdae',1,'icaltime.c']]], + ['icaltime_5fcompare_5fdate_5fonly_5ftz_288',['icaltime_compare_date_only_tz',['../icaltime_8h.html#abfa31574ddedeaf5e5b783b29ce0346d',1,'icaltime.c']]], + ['icaltime_5fconvert_5fto_5fzone_289',['icaltime_convert_to_zone',['../icaltime_8h.html#a9fd9b6de943eec5733b74d958951a9c8',1,'icaltime.c']]], + ['icaltime_5fcurrent_5ftime_5fwith_5fzone_290',['icaltime_current_time_with_zone',['../icaltime_8h.html#a35ab8c2fdc5766e30d3dd6c873af0151',1,'icaltime.c']]], + ['icaltime_5fday_5fof_5fweek_291',['icaltime_day_of_week',['../icaltime_8h.html#a6df493d8d79b6eef9fca25adefbb6d69',1,'icaltime.c']]], + ['icaltime_5fday_5fof_5fyear_292',['icaltime_day_of_year',['../icaltime_8h.html#a39606ca412bb507284a55356c9522b91',1,'icaltime.c']]], + ['icaltime_5fdays_5fin_5fmonth_293',['icaltime_days_in_month',['../icaltime_8h.html#a99e9d9e26bea0231d23eb171990a1e8f',1,'icaltime.c']]], + ['icaltime_5fdays_5fin_5fyear_294',['icaltime_days_in_year',['../icaltime_8h.html#ac50c6fc84b7b70f1678d1771c287b73b',1,'icaltime.c']]], + ['icaltime_5ffrom_5fday_5fof_5fyear_295',['icaltime_from_day_of_year',['../icaltime_8h.html#a2915233b392cc2a68aa5a9acf39e2307',1,'icaltime.c']]], + ['icaltime_5ffrom_5fstring_296',['icaltime_from_string',['../icaltime_8h.html#a1b66b9f52a9823b95e4cd33f9dd9b8e5',1,'icaltime.c']]], + ['icaltime_5ffrom_5ftimet_5fwith_5fzone_297',['icaltime_from_timet_with_zone',['../icaltime_8h.html#a86a8cb717a14ef07e75060e22711d401',1,'icaltime.c']]], + ['icaltime_5fget_5ftimezone_298',['icaltime_get_timezone',['../icaltime_8h.html#a5a59eb5d3951c49e5d62953fcffda3b0',1,'icaltime.c']]], + ['icaltime_5fget_5ftzid_299',['icaltime_get_tzid',['../icaltime_8h.html#a2189e2b4850921f206f87e7112e9e55b',1,'icaltime.c']]], + ['icaltime_5fis_5fdate_300',['icaltime_is_date',['../icaltime_8h.html#a738950db4a3f2751f414a2a71c1ea4d2',1,'icaltime.c']]], + ['icaltime_5fis_5fleap_5fyear_301',['icaltime_is_leap_year',['../icaltime_8h.html#accb8f16099b25c282dc4f7e33531dae4',1,'icaltime.c']]], + ['icaltime_5fis_5fnull_5ftime_302',['icaltime_is_null_time',['../icaltime_8h.html#a97483d9daf2fc8f8b1bbdc0c75ced095',1,'icaltime.c']]], + ['icaltime_5fis_5futc_303',['icaltime_is_utc',['../icaltime_8h.html#a097e18ea14aceb3dbc68c370f26f9b6c',1,'icaltime.c']]], + ['icaltime_5fis_5fvalid_5ftime_304',['icaltime_is_valid_time',['../icaltime_8h.html#aaa1991e79202eabe71080a83e1e5c08e',1,'icaltime.c']]], + ['icaltime_5fnormalize_305',['icaltime_normalize',['../icaltime_8h.html#ae02d3d34fd01c3d0e356cea4f789bace',1,'icaltime.c']]], + ['icaltime_5fnull_5fdate_306',['icaltime_null_date',['../icaltime_8h.html#a7c210823a8ad13687089f12ad285df25',1,'icaltime.c']]], + ['icaltime_5fnull_5ftime_307',['icaltime_null_time',['../icaltime_8h.html#af3f088ebb60b8716131742ef16eb7ce1',1,'icaltime.c']]], + ['icaltime_5fset_5ftimezone_308',['icaltime_set_timezone',['../icaltime_8h.html#aea5c3a433f2919943b42d7d6400f6304',1,'icaltime.c']]], + ['icaltime_5fspan_309',['icaltime_span',['../structicaltime__span.html',1,'']]], + ['icaltime_5fspan_5fcontains_310',['icaltime_span_contains',['../icaltime_8h.html#a1b02dd66ec510ce626aa12395d1fdf79',1,'icaltime.c']]], + ['icaltime_5fspan_5fnew_311',['icaltime_span_new',['../icaltime_8h.html#a4e024d5c8a41b226a31b573d0a86b722',1,'icaltime.c']]], + ['icaltime_5fspan_5foverlaps_312',['icaltime_span_overlaps',['../icaltime_8h.html#a87a564f5d5c8ebb0746a1799817cfa83',1,'icaltime.c']]], + ['icaltime_5fstart_5fdoy_5fweek_313',['icaltime_start_doy_week',['../icaltime_8h.html#a3e4ae35fd30b3d2b829f0e5bb7328e31',1,'icaltime.c']]], + ['icaltime_5fsubtract_314',['icaltime_subtract',['../icalduration_8h.html#aaafcb16e5d2aaa6eb0e20fdac419fc0d',1,'icalduration.c']]], + ['icaltime_5ftoday_315',['icaltime_today',['../icaltime_8h.html#a78f4440633835d80c182488b11df9372',1,'icaltime.c']]], + ['icaltime_5fweek_5fnumber_316',['icaltime_week_number',['../icaltime_8h.html#a5be09f07b9444f73a66d179ae61f137a',1,'icaltime.c']]], + ['icaltimetype_317',['icaltimetype',['../structicaltimetype.html',1,'']]], + ['icaltimezone_318',['icaltimezone',['../icaltimezone_8h.html#a8561e9d4374ca1e29cd5ade459a50208',1,'icaltimezone.h']]], + ['icaltimezone_2eh_319',['icaltimezone.h',['../icaltimezone_8h.html',1,'']]], + ['icaltimezone_5fdump_5fchanges_320',['icaltimezone_dump_changes',['../icaltimezone_8h.html#a12c7192c39744d49e4c23249926ae22a',1,'icaltimezone.c']]], + ['icaltimezone_5ffree_321',['icaltimezone_free',['../icaltimezone_8h.html#aa96c3397fd8bcce74e1f220ca3fc333d',1,'icaltimezone.c']]], + ['icaltimezone_5ffree_5fbuiltin_5ftimezones_322',['icaltimezone_free_builtin_timezones',['../icaltimezone_8h.html#a7596677c1f0c38bac7e687f37e19e397',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_323',['icaltimezone_get_builtin_timezone',['../icaltimezone_8h.html#a8670c0a0730ddb27a2a59efb9b476b24',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_5ffrom_5foffset_324',['icaltimezone_get_builtin_timezone_from_offset',['../icaltimezone_8h.html#a1224ff59d8d1618ee41f17b5c6357312',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_5ffrom_5ftzid_325',['icaltimezone_get_builtin_timezone_from_tzid',['../icaltimezone_8h.html#ad05c4a96c4e7095f574641dfb9ceafc5',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezones_326',['icaltimezone_get_builtin_timezones',['../icaltimezone_8h.html#a8b765c5eb599505d208c89a799e13d21',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fcomponent_327',['icaltimezone_get_component',['../icaltimezone_8h.html#a684813584e0e55460be636e8ebc81f53',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fdisplay_5fname_328',['icaltimezone_get_display_name',['../icaltimezone_8h.html#aaf3d9c36dca3dd4e2233aac2a88997bc',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flatitude_329',['icaltimezone_get_latitude',['../icaltimezone_8h.html#acfc51cb64dcc62ff668df02073c803d6',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flocation_330',['icaltimezone_get_location',['../icaltimezone_8h.html#a876e1b3dc89bc76961708fe6974a03c1',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flocation_5ffrom_5fvtimezone_331',['icaltimezone_get_location_from_vtimezone',['../icaltimezone_8h.html#a4666bfd001ff5654fc3ee851e2e2338e',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flongitude_332',['icaltimezone_get_longitude',['../icaltimezone_8h.html#a346caee2838d8dfbeb07bc9c66b04e2b',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftzid_333',['icaltimezone_get_tzid',['../icaltimezone_8h.html#a8d74150570a8a31e1fb8fe976fea9250',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftznames_334',['icaltimezone_get_tznames',['../icaltimezone_8h.html#a7de03feecf3cbb0c7899b36d1285fd63',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftznames_5ffrom_5fvtimezone_335',['icaltimezone_get_tznames_from_vtimezone',['../icaltimezone_8h.html#a48a804fe8f8d61aed3efbf86504baf79',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5foffset_336',['icaltimezone_get_utc_offset',['../icaltimezone_8h.html#a1ebe99e4975a461da82f4add92ca01d4',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5foffset_5fof_5futc_5ftime_337',['icaltimezone_get_utc_offset_of_utc_time',['../icaltimezone_8h.html#af6c4b7dc1e0c056bfbbd0f833d039b5d',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5ftimezone_338',['icaltimezone_get_utc_timezone',['../icaltimezone_8h.html#a8e9c520fc9a3ec85f5cc63fef1548583',1,'icaltimezone.c']]], + ['icaltimezone_5fnew_339',['icaltimezone_new',['../icaltimezone_8h.html#a01b653e3e1f9feefc63e7d71c036f330',1,'icaltimezone.c']]], + ['icaltimezone_5fset_5fcomponent_340',['icaltimezone_set_component',['../icaltimezone_8h.html#ac06a9a060f021b7f4bdff282b2638357',1,'icaltimezone.c']]], + ['icaltimezone_5fset_5ftzid_5fprefix_341',['icaltimezone_set_tzid_prefix',['../icaltimezone_8h.html#a04849ce67c1a529f19d695b74cb238fe',1,'icaltimezone.c']]], + ['icaltimezonephase_342',['icaltimezonephase',['../structicaltimezonephase.html',1,'']]], + ['icaltimezonetype_343',['icaltimezonetype',['../structicaltimezonetype.html',1,'']]], + ['icaltriggertype_344',['icaltriggertype',['../structicaltriggertype.html',1,'']]], + ['icalvalue_345',['ICalValue',['../classLibICal_1_1ICalValue.html',1,'LibICal']]], + ['icalvalue_2eh_346',['icalvalue.h',['../icalvalue_8h.html',1,'']]], + ['icalvalue_5fdecode_5fical_5fstring_347',['icalvalue_decode_ical_string',['../icalvalue_8h.html#ad809218d40ebb1e356f00c563e34e3d6',1,'icalvalue.c']]], + ['icalvalue_5fencode_5fical_5fstring_348',['icalvalue_encode_ical_string',['../icalvalue_8h.html#a47037dfa87d634a358c39055c01b9f79',1,'icalvalue.c']]], + ['icalvalue_5fget_5fparent_349',['icalvalue_get_parent',['../icalproperty_8h.html#aca3ee9b1a28fa212f294962bd84c6c93',1,'icalvalue.c']]], + ['icalvalue_5fimpl_350',['icalvalue_impl',['../structicalvalue__impl.html',1,'']]], + ['icalvalue_5fkind_5fis_5fvalid_351',['icalvalue_kind_is_valid',['../icalvalue_8h.html#ada00c51fccf5a71ec7e43fb6207b634a',1,'icalvalue.h']]], + ['icalvalue_5fset_5fparent_352',['icalvalue_set_parent',['../icalproperty_8h.html#a810f13ffbf32703b6f1e71ad3e0189c7',1,'icalvalue.c']]], + ['icpointerholder_353',['ICPointerHolder',['../classICPointerHolder.html',1,'']]], + ['icptrholder_5fcxx_2eh_354',['icptrholder_cxx.h',['../icptrholder__cxx_8h.html',1,'']]], + ['is_5fbusy_355',['is_busy',['../structicaltime__span.html#a8e328dae6c1e17b38a099071a4badbcf',1,'icaltime_span']]], + ['is_5fdate_356',['is_date',['../structicaltimetype.html#a48d5ac850b2675cd80bbcefe00d7ae96',1,'icaltimetype']]], + ['is_5fdaylight_357',['is_daylight',['../structicaltimetype.html#a8b90b6a7979294823e98a2dd3d7edd50',1,'icaltimetype::is_daylight'],['../struct__icaltimezonechange.html#a37d811204cf5d7129767b12de5302e37',1,'_icaltimezonechange::is_daylight']]] +]; diff --git a/static/apidocs/search/all_a.js b/static/apidocs/search/all_a.js new file mode 100644 index 00000000..8e2c079a --- /dev/null +++ b/static/apidocs/search/all_a.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['j_5fdate_0',['j_date',['../structut__instant.html#acc596fb9f5f6b26620c2869f1971d7b7',1,'ut_instant']]], + ['juldat_1',['juldat',['../astime_8h.html#adaeb2db35e791e5539b565e85e697cab',1,'astime.h']]] +]; diff --git a/static/apidocs/search/all_b.js b/static/apidocs/search/all_b.js new file mode 100644 index 00000000..12ddb5a9 --- /dev/null +++ b/static/apidocs/search/all_b.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['leap_0',['leap',['../structleap.html',1,'']]], + ['lexbuf_1',['LexBuf',['../structLexBuf.html',1,'']]], + ['libical_20_2d_20an_20implementation_20of_20icalendar_20protocols_20and_20data_20formats_2',['Libical - an implementation of iCalendar protocols and data formats',['../index.html',1,'']]], + ['location_3',['location',['../struct__icaltimezone.html#a90fc30929090b330fe1419602a0d7528',1,'_icaltimezone']]], + ['longitude_4',['longitude',['../struct__icaltimezone.html#a36ccaf1d81c7ec0463ed9ccf3eead700',1,'_icaltimezone']]] +]; diff --git a/static/apidocs/search/all_c.js b/static/apidocs/search/all_c.js new file mode 100644 index 00000000..15aa18c3 --- /dev/null +++ b/static/apidocs/search/all_c.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['magic_0',['MAGIC',['../structpvl__list__t.html#ae810b262dbf64bbdfb437979151d2eba',1,'pvl_list_t::MAGIC'],['../structpvl__elem__t.html#a259a4f64c59afeaca3a95aa77f4731d5',1,'pvl_elem_t::MAGIC']]], + ['major_5fcontent_5ftype_5fmap_1',['major_content_type_map',['../structmajor__content__type__map.html',1,'']]], + ['mime_5fimpl_2',['mime_impl',['../structmime__impl.html',1,'']]], + ['minor_5fcontent_5ftype_5fmap_3',['minor_content_type_map',['../structminor__content__type__map.html',1,'']]], + ['mode_4',['mode',['../structicalbdbset__options.html#ae592079436dc76e304ef567b340835ad',1,'icalbdbset_options::mode'],['../structicalfileset__options.html#a5e01006dc266beb9fd762ad4364218e9',1,'icalfileset_options::mode']]], + ['month_5',['month',['../structut__instant.html#a02a71f42b488eb4170228654451b9277',1,'ut_instant::month'],['../structicaltimetype.html#abfb15dfde907211cafd3cd6cafa5531d',1,'icaltimetype::month'],['../struct__icaltimezonechange.html#a0baa29db902c7456fa20108a50059b8d',1,'_icaltimezonechange::month']]] +]; diff --git a/static/apidocs/search/all_d.js b/static/apidocs/search/all_d.js new file mode 100644 index 00000000..d675551c --- /dev/null +++ b/static/apidocs/search/all_d.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['next_0',['next',['../structpvl__elem__t.html#a305009bdcf1759ce8f0d9f896403552d',1,'pvl_elem_t']]] +]; diff --git a/static/apidocs/search/all_e.js b/static/apidocs/search/all_e.js new file mode 100644 index 00000000..fbbcf2ed --- /dev/null +++ b/static/apidocs/search/all_e.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['observance_0',['observance',['../structobservance.html',1,'']]], + ['ofile_1',['OFile',['../structOFile.html',1,'']]], + ['operator_20icalspanlist_20_2a_2',['operator icalspanlist *',['../classLibICal_1_1ICalSpanList.html#a56cb25afba3592979d872608d2302243',1,'LibICal::ICalSpanList']]], + ['options_3',['options',['../structicaldirset__impl.html#a38725a769403aec56b2b1a352c441ef1',1,'icaldirset_impl::options'],['../structicalfileset__impl.html#a769a3b2bca98184ea77e3a4589e486d8',1,'icalfileset_impl::options']]], + ['orig_5fdata_4',['orig_data',['../structicalrecur__iterator__impl.html#a2e679fcea8b1e2c6233dd35f7014ee0f',1,'icalrecur_iterator_impl']]] +]; diff --git a/static/apidocs/search/all_f.js b/static/apidocs/search/all_f.js new file mode 100644 index 00000000..ca1c6c7f --- /dev/null +++ b/static/apidocs/search/all_f.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['p_0',['p',['../structpvl__list__t.html#a13d9f2a4ed1f60b9a885192a9cb1b359',1,'pvl_list_t']]], + ['path_1',['path',['../structicalfileset__impl.html#a4924243737e060acf24fd5daf9e732a0',1,'icalfileset_impl']]], + ['pfunc_2',['pfunc',['../structicalbdbset__options.html#af08565396096d8139ee9f54b523e4ebd',1,'icalbdbset_options']]], + ['predefprop_3',['PreDefProp',['../structPreDefProp.html',1,'']]], + ['prev_5futc_5foffset_4',['prev_utc_offset',['../struct__icaltimezonechange.html#a4c4c11ee948c011b073fa6f065739eb3',1,'_icaltimezonechange']]], + ['prior_5',['prior',['../structpvl__elem__t.html#a00350aa18847b00658ba476816cb0274',1,'pvl_elem_t']]], + ['pvl_5felem_5ft_6',['pvl_elem_t',['../structpvl__elem__t.html',1,'']]], + ['pvl_5flist_5ft_7',['pvl_list_t',['../structpvl__list__t.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_0.js b/static/apidocs/search/classes_0.js new file mode 100644 index 00000000..e76b2080 --- /dev/null +++ b/static/apidocs/search/classes_0.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['_5fcompat_5ftzids_0',['_compat_tzids',['../struct__compat__tzids.html',1,'']]], + ['_5ficalarray_1',['_icalarray',['../struct__icalarray.html',1,'']]], + ['_5ficaltimezone_2',['_icaltimezone',['../struct__icaltimezone.html',1,'']]], + ['_5ficaltimezonechange_3',['_icaltimezonechange',['../struct__icaltimezonechange.html',1,'']]], + ['_5ficalvcal_5fdefaults_4',['_icalvcal_defaults',['../struct__icalvcal__defaults.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_1.js b/static/apidocs/search/classes_1.js new file mode 100644 index 00000000..9dd4bd33 --- /dev/null +++ b/static/apidocs/search/classes_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['buffer_5fring_0',['buffer_ring',['../structbuffer__ring.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_10.js b/static/apidocs/search/classes_10.js new file mode 100644 index 00000000..a0700714 --- /dev/null +++ b/static/apidocs/search/classes_10.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['wd_5fmap_0',['wd_map',['../structwd__map.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_11.js b/static/apidocs/search/classes_11.js new file mode 100644 index 00000000..2e24410f --- /dev/null +++ b/static/apidocs/search/classes_11.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['xdaylight_0',['XDaylight',['../classLibICal_1_1XDaylight.html',1,'LibICal']]], + ['xstandard_1',['XStandard',['../classLibICal_1_1XStandard.html',1,'LibICal']]] +]; diff --git a/static/apidocs/search/classes_12.js b/static/apidocs/search/classes_12.js new file mode 100644 index 00000000..042e7eeb --- /dev/null +++ b/static/apidocs/search/classes_12.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['yy_5fbuffer_5fstate_0',['yy_buffer_state',['../structyy__buffer__state.html',1,'']]], + ['yy_5ftrans_5finfo_1',['yy_trans_info',['../structyy__trans__info.html',1,'']]], + ['yyalloc_2',['yyalloc',['../unionyyalloc.html',1,'']]], + ['yystype_3',['YYSTYPE',['../unionYYSTYPE.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_13.js b/static/apidocs/search/classes_13.js new file mode 100644 index 00000000..8dcd5236 --- /dev/null +++ b/static/apidocs/search/classes_13.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['zone_5fcontext_0',['zone_context',['../structzone__context.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_2.js b/static/apidocs/search/classes_2.js new file mode 100644 index 00000000..da2f23c6 --- /dev/null +++ b/static/apidocs/search/classes_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['conversion_5ftable_5fstruct_0',['conversion_table_struct',['../structconversion__table__struct.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_3.js b/static/apidocs/search/classes_3.js new file mode 100644 index 00000000..e8ec18ad --- /dev/null +++ b/static/apidocs/search/classes_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['data_0',['data',['../unionicalvalue__impl_1_1data.html',1,'icalvalue_impl']]] +]; diff --git a/static/apidocs/search/classes_4.js b/static/apidocs/search/classes_4.js new file mode 100644 index 00000000..47708f8d --- /dev/null +++ b/static/apidocs/search/classes_4.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['encoding_5fmap_0',['encoding_map',['../structencoding__map.html',1,'']]], + ['expand_5fsplit_5fmap_5fstruct_1',['expand_split_map_struct',['../structexpand__split__map__struct.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_5.js b/static/apidocs/search/classes_5.js new file mode 100644 index 00000000..c932da5b --- /dev/null +++ b/static/apidocs/search/classes_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['freq_5fmap_0',['freq_map',['../structfreq__map.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_6.js b/static/apidocs/search/classes_6.js new file mode 100644 index 00000000..bf2314b6 --- /dev/null +++ b/static/apidocs/search/classes_6.js @@ -0,0 +1,49 @@ +var searchData= +[ + ['icalattach_5fimpl_0',['icalattach_impl',['../structicalattach__impl.html',1,'']]], + ['icalbdbset_1',['ICalBDBSet',['../classLibICal_1_1ICalBDBSet.html',1,'LibICal']]], + ['icalbdbset_5fid_2',['icalbdbset_id',['../structicalbdbset__id.html',1,'']]], + ['icalbdbset_5fimpl_3',['icalbdbset_impl',['../structicalbdbset__impl.html',1,'']]], + ['icalbdbset_5foptions_4',['icalbdbset_options',['../structicalbdbset__options.html',1,'']]], + ['icalcalendar_5fimpl_5',['icalcalendar_impl',['../structicalcalendar__impl.html',1,'']]], + ['icalclassify_5fmap_6',['icalclassify_map',['../structicalclassify__map.html',1,'']]], + ['icalclassify_5fparts_7',['icalclassify_parts',['../structicalclassify__parts.html',1,'']]], + ['icalcluster_5fimpl_8',['icalcluster_impl',['../structicalcluster__impl.html',1,'']]], + ['icalcompiter_9',['icalcompiter',['../structicalcompiter.html',1,'']]], + ['icalcomponent_5fimpl_10',['icalcomponent_impl',['../structicalcomponent__impl.html',1,'']]], + ['icalcomponent_5fkind_5fmap_11',['icalcomponent_kind_map',['../structicalcomponent__kind__map.html',1,'']]], + ['icaldatetimeperiodtype_12',['icaldatetimeperiodtype',['../structicaldatetimeperiodtype.html',1,'']]], + ['icaldirset_5fimpl_13',['icaldirset_impl',['../structicaldirset__impl.html',1,'']]], + ['icaldirset_5foptions_14',['icaldirset_options',['../structicaldirset__options.html',1,'']]], + ['icaldurationtype_15',['icaldurationtype',['../structicaldurationtype.html',1,'']]], + ['icalerror_5fstate_16',['icalerror_state',['../structicalerror__state.html',1,'']]], + ['icalerror_5fstring_5fmap_17',['icalerror_string_map',['../structicalerror__string__map.html',1,'']]], + ['icalfileset_5fid_18',['icalfileset_id',['../structicalfileset__id.html',1,'']]], + ['icalfileset_5fimpl_19',['icalfileset_impl',['../structicalfileset__impl.html',1,'']]], + ['icalfileset_5foptions_20',['icalfileset_options',['../structicalfileset__options.html',1,'']]], + ['icalgauge_5fimpl_21',['icalgauge_impl',['../structicalgauge__impl.html',1,'']]], + ['icalgauge_5fwhere_22',['icalgauge_where',['../structicalgauge__where.html',1,'']]], + ['icalgeotype_23',['icalgeotype',['../structicalgeotype.html',1,'']]], + ['icalparameter_24',['ICalParameter',['../classLibICal_1_1ICalParameter.html',1,'LibICal']]], + ['icalparameter_5fimpl_25',['icalparameter_impl',['../structicalparameter__impl.html',1,'']]], + ['icalparser_5fimpl_26',['icalparser_impl',['../structicalparser__impl.html',1,'']]], + ['icalperiodtype_27',['icalperiodtype',['../structicalperiodtype.html',1,'']]], + ['icalproperty_28',['ICalProperty',['../classLibICal_1_1ICalProperty.html',1,'LibICal']]], + ['icalproperty_5fimpl_29',['icalproperty_impl',['../structicalproperty__impl.html',1,'']]], + ['icalrecur_5fiterator_5fimpl_30',['icalrecur_iterator_impl',['../structicalrecur__iterator__impl.html',1,'']]], + ['icalrecur_5fparser_31',['icalrecur_parser',['../structicalrecur__parser.html',1,'']]], + ['icalrecurrencetype_32',['icalrecurrencetype',['../structicalrecurrencetype.html',1,'']]], + ['icalreqstattype_33',['icalreqstattype',['../structicalreqstattype.html',1,'']]], + ['icalset_5fimpl_34',['icalset_impl',['../structicalset__impl.html',1,'']]], + ['icalsetiter_35',['icalsetiter',['../structicalsetiter.html',1,'']]], + ['icalspanlist_36',['ICalSpanList',['../classLibICal_1_1ICalSpanList.html',1,'LibICal']]], + ['icalspanlist_5fimpl_37',['icalspanlist_impl',['../structicalspanlist__impl.html',1,'']]], + ['icaltime_5fspan_38',['icaltime_span',['../structicaltime__span.html',1,'']]], + ['icaltimetype_39',['icaltimetype',['../structicaltimetype.html',1,'']]], + ['icaltimezonephase_40',['icaltimezonephase',['../structicaltimezonephase.html',1,'']]], + ['icaltimezonetype_41',['icaltimezonetype',['../structicaltimezonetype.html',1,'']]], + ['icaltriggertype_42',['icaltriggertype',['../structicaltriggertype.html',1,'']]], + ['icalvalue_43',['ICalValue',['../classLibICal_1_1ICalValue.html',1,'LibICal']]], + ['icalvalue_5fimpl_44',['icalvalue_impl',['../structicalvalue__impl.html',1,'']]], + ['icpointerholder_45',['ICPointerHolder',['../classICPointerHolder.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_7.js b/static/apidocs/search/classes_7.js new file mode 100644 index 00000000..5b6258c2 --- /dev/null +++ b/static/apidocs/search/classes_7.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['leap_0',['leap',['../structleap.html',1,'']]], + ['lexbuf_1',['LexBuf',['../structLexBuf.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_8.js b/static/apidocs/search/classes_8.js new file mode 100644 index 00000000..f3338df9 --- /dev/null +++ b/static/apidocs/search/classes_8.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['major_5fcontent_5ftype_5fmap_0',['major_content_type_map',['../structmajor__content__type__map.html',1,'']]], + ['mime_5fimpl_1',['mime_impl',['../structmime__impl.html',1,'']]], + ['minor_5fcontent_5ftype_5fmap_2',['minor_content_type_map',['../structminor__content__type__map.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_9.js b/static/apidocs/search/classes_9.js new file mode 100644 index 00000000..4fc8dd5c --- /dev/null +++ b/static/apidocs/search/classes_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['observance_0',['observance',['../structobservance.html',1,'']]], + ['ofile_1',['OFile',['../structOFile.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_a.js b/static/apidocs/search/classes_a.js new file mode 100644 index 00000000..25c82753 --- /dev/null +++ b/static/apidocs/search/classes_a.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['predefprop_0',['PreDefProp',['../structPreDefProp.html',1,'']]], + ['pvl_5felem_5ft_1',['pvl_elem_t',['../structpvl__elem__t.html',1,'']]], + ['pvl_5flist_5ft_2',['pvl_list_t',['../structpvl__list__t.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_b.js b/static/apidocs/search/classes_b.js new file mode 100644 index 00000000..b9e78fde --- /dev/null +++ b/static/apidocs/search/classes_b.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['rdate_0',['rdate',['../structrdate.html',1,'']]], + ['recur_5fmap_1',['recur_map',['../structrecur__map.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_c.js b/static/apidocs/search/classes_c.js new file mode 100644 index 00000000..ba5129b8 --- /dev/null +++ b/static/apidocs/search/classes_c.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['skip_5fmap_0',['skip_map',['../structskip__map.html',1,'']]], + ['slg_5fdata_1',['slg_data',['../structslg__data.html',1,'']]], + ['sspm_5faction_5fmap_2',['sspm_action_map',['../structsspm__action__map.html',1,'']]], + ['sspm_5fbuffer_3',['sspm_buffer',['../structsspm__buffer.html',1,'']]], + ['sspm_5fheader_4',['sspm_header',['../structsspm__header.html',1,'']]], + ['sspm_5fpart_5',['sspm_part',['../structsspm__part.html',1,'']]], + ['stritem_6',['StrItem',['../structStrItem.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_d.js b/static/apidocs/search/classes_d.js new file mode 100644 index 00000000..eff681ee --- /dev/null +++ b/static/apidocs/search/classes_d.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['text_5fpart_0',['text_part',['../structtext__part.html',1,'']]], + ['ttinfo_1',['ttinfo',['../structttinfo.html',1,'']]], + ['tzinfo_2',['tzinfo',['../structtzinfo.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_e.js b/static/apidocs/search/classes_e.js new file mode 100644 index 00000000..1629eab5 --- /dev/null +++ b/static/apidocs/search/classes_e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ut_5finstant_0',['ut_instant',['../structut__instant.html',1,'']]] +]; diff --git a/static/apidocs/search/classes_f.js b/static/apidocs/search/classes_f.js new file mode 100644 index 00000000..d43e5bd9 --- /dev/null +++ b/static/apidocs/search/classes_f.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['vagenda_0',['VAgenda',['../classLibICal_1_1VAgenda.html',1,'LibICal']]], + ['valarm_1',['VAlarm',['../classLibICal_1_1VAlarm.html',1,'LibICal']]], + ['valueitem_2',['ValueItem',['../unionValueItem.html',1,'']]], + ['vcalendar_3',['VCalendar',['../classLibICal_1_1VCalendar.html',1,'LibICal']]], + ['vcomponent_4',['VComponent',['../classLibICal_1_1VComponent.html',1,'LibICal']]], + ['vevent_5',['VEvent',['../classLibICal_1_1VEvent.html',1,'LibICal']]], + ['vfreebusy_6',['VFreeBusy',['../classLibICal_1_1VFreeBusy.html',1,'LibICal']]], + ['vjournal_7',['VJournal',['../classLibICal_1_1VJournal.html',1,'LibICal']]], + ['vobject_8',['VObject',['../structVObject.html',1,'']]], + ['vobjectiterator_9',['VObjectIterator',['../structVObjectIterator.html',1,'']]], + ['vquery_10',['VQuery',['../classLibICal_1_1VQuery.html',1,'LibICal']]], + ['vtimezone_11',['VTimezone',['../classLibICal_1_1VTimezone.html',1,'LibICal']]], + ['vtodo_12',['VToDo',['../classLibICal_1_1VToDo.html',1,'LibICal']]] +]; diff --git a/static/apidocs/search/close.svg b/static/apidocs/search/close.svg new file mode 100644 index 00000000..337d6cc1 --- /dev/null +++ b/static/apidocs/search/close.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/static/apidocs/search/defines_0.js b/static/apidocs/search/defines_0.js new file mode 100644 index 00000000..2f709d5b --- /dev/null +++ b/static/apidocs/search/defines_0.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['ical_5fby_5fsecond_5fsize_0',['ICAL_BY_SECOND_SIZE',['../icalrecur_8h.html#acec51b2d651f24e31b00627b60b12728',1,'icalrecur.h']]], + ['ical_5ferrors_5fare_5ffatal_1',['ICAL_ERRORS_ARE_FATAL',['../icalerror_8h.html#acb04e8e94ef9817f0a8d71c994412038',1,'icalerror.h']]], + ['icalerrno_2',['icalerrno',['../icalerror_8h.html#ad2562706150f5c5a4d9b0ca149d78e37',1,'icalerror.h']]], + ['icalerror_5fassert_3',['icalerror_assert',['../icalerror_8h.html#a44c46ab691b1a16f61b796350dc01bed',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_4',['icalerror_check_arg',['../icalerror_8h.html#afef4004abbb97d2599d131948655ae89',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5fre_5',['icalerror_check_arg_re',['../icalerror_8h.html#ae163052ebae24e2026bf54108b10b914',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frv_6',['icalerror_check_arg_rv',['../icalerror_8h.html#a00245be23d5c2d4801c9ed74e1da6f6a',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frx_7',['icalerror_check_arg_rx',['../icalerror_8h.html#a7a71f70509be32e3e54edbaf3b45571a',1,'icalerror.h']]], + ['icalerror_5fcheck_5farg_5frz_8',['icalerror_check_arg_rz',['../icalerror_8h.html#a95198bf515920804672520856c300666',1,'icalerror.h']]], + ['icalerror_5fwarn_9',['icalerror_warn',['../icalerror_8h.html#a2ab760137cd4f66d205ef00235a0ecd4',1,'icalerror.h']]] +]; diff --git a/static/apidocs/search/enums_0.js b/static/apidocs/search/enums_0.js new file mode 100644 index 00000000..123aef18 --- /dev/null +++ b/static/apidocs/search/enums_0.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['icalerrorenum_0',['icalerrorenum',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833',1,'icalerror.h']]], + ['icalerrorstate_1',['icalerrorstate',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3',1,'icalerror.h']]], + ['icalparser_5fctrl_2',['icalparser_ctrl',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3',1,'icalparser.h']]], + ['icalparser_5fstate_3',['icalparser_state',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7',1,'icalparser.h']]], + ['icalrestriction_5fkind_4',['icalrestriction_kind',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1',1,'icalrestriction.h']]] +]; diff --git a/static/apidocs/search/enumvalues_0.js b/static/apidocs/search/enumvalues_0.js new file mode 100644 index 00000000..e6e221d2 --- /dev/null +++ b/static/apidocs/search/enumvalues_0.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['ical_5fallocation_5ferror_0',['ICAL_ALLOCATION_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a3ed4d866c28acaaaf99348b1ab27cd78',1,'icalerror.h']]], + ['ical_5fbadarg_5ferror_1',['ICAL_BADARG_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a2cc8bbcd8c07fc9a16e36f7aae5757b1',1,'icalerror.h']]], + ['ical_5ferror_5fdefault_2',['ICAL_ERROR_DEFAULT',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3aa8624e525ff7c52b30310134230ba1e6',1,'icalerror.h']]], + ['ical_5ferror_5ffatal_3',['ICAL_ERROR_FATAL',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3a6a2c3dc27d17100317eadcc4156a9442',1,'icalerror.h']]], + ['ical_5ferror_5fnonfatal_4',['ICAL_ERROR_NONFATAL',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3aee5a5c75923a46b30105a272b75339b6',1,'icalerror.h']]], + ['ical_5ferror_5funknown_5',['ICAL_ERROR_UNKNOWN',['../icalerror_8h.html#a3cb9a92508be773fbb4dba7c658443d3a5afdd784a33990b7a717f827c077737f',1,'icalerror.h']]], + ['ical_5ffile_5ferror_6',['ICAL_FILE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a3e6aa7e2b3aa393f3c048d64cea6578d',1,'icalerror.h']]], + ['ical_5finternal_5ferror_7',['ICAL_INTERNAL_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a5b0fc2e091e6b7287a9855d171648cbd',1,'icalerror.h']]], + ['ical_5fmalformeddata_5ferror_8',['ICAL_MALFORMEDDATA_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a6ba07679ac440358c3090a351d27f0d8',1,'icalerror.h']]], + ['ical_5fnewfailed_5ferror_9',['ICAL_NEWFAILED_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a055394ffaf6701aa12491dc10767f07d',1,'icalerror.h']]], + ['ical_5fno_5ferror_10',['ICAL_NO_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833a6748acb6af24f11fe6efbe1a19602d0b',1,'icalerror.h']]], + ['ical_5fparse_5ferror_11',['ICAL_PARSE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ac7e8ee36834bde1f2ee7b680700a8deb',1,'icalerror.h']]], + ['ical_5frestriction_5fnone_12',['ICAL_RESTRICTION_NONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a8919e63bb091b6a78f508a212e3d2a36',1,'icalrestriction.h']]], + ['ical_5frestriction_5fone_13',['ICAL_RESTRICTION_ONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a4bc2d60b26b48e795abf26e05dd2fe17',1,'icalrestriction.h']]], + ['ical_5frestriction_5foneexclusive_14',['ICAL_RESTRICTION_ONEEXCLUSIVE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a6689f5056a7239a1f7d90eed1697d4f9',1,'icalrestriction.h']]], + ['ical_5frestriction_5fonemutual_15',['ICAL_RESTRICTION_ONEMUTUAL',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1aa27388029f05e9a1fae601d0ccbf69d9',1,'icalrestriction.h']]], + ['ical_5frestriction_5foneplus_16',['ICAL_RESTRICTION_ONEPLUS',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a772dd4b4cdfe5d5a264ec237a63e6c21',1,'icalrestriction.h']]], + ['ical_5frestriction_5funknown_17',['ICAL_RESTRICTION_UNKNOWN',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a166b57120ae7e1f7b2d321d36bbb7bce',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzero_18',['ICAL_RESTRICTION_ZERO',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1aace01bc6164411a18933716916c6c7ef',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzeroorone_19',['ICAL_RESTRICTION_ZEROORONE',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a941349ba77c59b895acc1f7133421a94',1,'icalrestriction.h']]], + ['ical_5frestriction_5fzeroplus_20',['ICAL_RESTRICTION_ZEROPLUS',['../icalrestriction_8h.html#ac6d836f345770d880b446d964f685db1a15c781ad15f9a8392a620559c278199e',1,'icalrestriction.h']]], + ['ical_5funimplemented_5ferror_21',['ICAL_UNIMPLEMENTED_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ad9376ffaf63b7fdb07eec0c0587c33f7',1,'icalerror.h']]], + ['ical_5funknown_5ferror_22',['ICAL_UNKNOWN_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833ab2452506d4ad884b16da429749bfb551',1,'icalerror.h']]], + ['ical_5fusage_5ferror_23',['ICAL_USAGE_ERROR',['../icalerror_8h.html#a601c122fcea522513b1b7732fa23e833adcf918ddc612831de72aa3749d39b5c6',1,'icalerror.h']]], + ['icalparser_5fbegin_5fcomp_24',['ICALPARSER_BEGIN_COMP',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a0bfd41070e190cb87f0e8385e0c8031e',1,'icalparser.h']]], + ['icalparser_5fctrl_5ferror_25',['ICALPARSER_CTRL_ERROR',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3af461909a3196ea163ae9718975ae55e5',1,'icalparser.h']]], + ['icalparser_5fctrl_5fkeep_26',['ICALPARSER_CTRL_KEEP',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3a5cb2c7f392cabe9b95975fd5f04abf4c',1,'icalparser.h']]], + ['icalparser_5fctrl_5fomit_27',['ICALPARSER_CTRL_OMIT',['../icalparser_8h.html#a6fcc054fab27a4491f52b0e1aba899c3a42056b68e7c47a6bc7c8cb1ffb52cdb1',1,'icalparser.h']]], + ['icalparser_5fend_5fcomp_28',['ICALPARSER_END_COMP',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a5a29afa239e509cc9f45a61a2c10feb2',1,'icalparser.h']]], + ['icalparser_5ferror_29',['ICALPARSER_ERROR',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7adc8fd0c6d697007e6b3fa12bd118a9c8',1,'icalparser.h']]], + ['icalparser_5fin_5fprogress_30',['ICALPARSER_IN_PROGRESS',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a927206f107dfdc62cfd33a9115a997b2',1,'icalparser.h']]], + ['icalparser_5fsuccess_31',['ICALPARSER_SUCCESS',['../icalparser_8h.html#aeec42cd09dd789c699d7b6741cbec3e7a2dc67ce9b2811c477a462025a9ed9090',1,'icalparser.h']]] +]; diff --git a/static/apidocs/search/files_0.js b/static/apidocs/search/files_0.js new file mode 100644 index 00000000..287d39d6 --- /dev/null +++ b/static/apidocs/search/files_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['astime_2eh_0',['astime.h',['../astime_8h.html',1,'']]] +]; diff --git a/static/apidocs/search/files_1.js b/static/apidocs/search/files_1.js new file mode 100644 index 00000000..245d4c85 --- /dev/null +++ b/static/apidocs/search/files_1.js @@ -0,0 +1,29 @@ +var searchData= +[ + ['icalarray_2eh_0',['icalarray.h',['../icalarray_8h.html',1,'']]], + ['icalattach_2eh_1',['icalattach.h',['../icalattach_8h.html',1,'']]], + ['icalbdbset_5fcxx_2eh_2',['icalbdbset_cxx.h',['../icalbdbset__cxx_8h.html',1,'']]], + ['icalcalendar_2eh_3',['icalcalendar.h',['../icalcalendar_8h.html',1,'']]], + ['icalcomponent_2eh_4',['icalcomponent.h',['../icalcomponent_8h.html',1,'']]], + ['icaldirset_2eh_5',['icaldirset.h',['../icaldirset_8h.html',1,'']]], + ['icalduration_2eh_6',['icalduration.h',['../icalduration_8h.html',1,'']]], + ['icalenums_2eh_7',['icalenums.h',['../icalenums_8h.html',1,'']]], + ['icalerror_2eh_8',['icalerror.h',['../icalerror_8h.html',1,'']]], + ['icalgauge_2eh_9',['icalgauge.h',['../icalgauge_8h.html',1,'']]], + ['icalmemory_2eh_10',['icalmemory.h',['../icalmemory_8h.html',1,'']]], + ['icalparameter_2eh_11',['icalparameter.h',['../icalparameter_8h.html',1,'']]], + ['icalparameter_5fcxx_2eh_12',['icalparameter_cxx.h',['../icalparameter__cxx_8h.html',1,'']]], + ['icalparser_2eh_13',['icalparser.h',['../icalparser_8h.html',1,'']]], + ['icalperiod_2eh_14',['icalperiod.h',['../icalperiod_8h.html',1,'']]], + ['icalproperty_2eh_15',['icalproperty.h',['../icalproperty_8h.html',1,'']]], + ['icalproperty_5fcxx_2eh_16',['icalproperty_cxx.h',['../icalproperty__cxx_8h.html',1,'']]], + ['icalrecur_2eh_17',['icalrecur.h',['../icalrecur_8h.html',1,'']]], + ['icalrestriction_2eh_18',['icalrestriction.h',['../icalrestriction_8h.html',1,'']]], + ['icalset_2eh_19',['icalset.h',['../icalset_8h.html',1,'']]], + ['icalspanlist_2eh_20',['icalspanlist.h',['../icalspanlist_8h.html',1,'']]], + ['icalspanlist_5fcxx_2eh_21',['icalspanlist_cxx.h',['../icalspanlist__cxx_8h.html',1,'']]], + ['icaltime_2eh_22',['icaltime.h',['../icaltime_8h.html',1,'']]], + ['icaltimezone_2eh_23',['icaltimezone.h',['../icaltimezone_8h.html',1,'']]], + ['icalvalue_2eh_24',['icalvalue.h',['../icalvalue_8h.html',1,'']]], + ['icptrholder_5fcxx_2eh_25',['icptrholder_cxx.h',['../icptrholder__cxx_8h.html',1,'']]] +]; diff --git a/static/apidocs/search/files_2.js b/static/apidocs/search/files_2.js new file mode 100644 index 00000000..0c76a61e --- /dev/null +++ b/static/apidocs/search/files_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['vcomponent_5fcxx_2eh_0',['vcomponent_cxx.h',['../vcomponent__cxx_8h.html',1,'']]] +]; diff --git a/static/apidocs/search/functions_0.js b/static/apidocs/search/functions_0.js new file mode 100644 index 00000000..e9ec7d72 --- /dev/null +++ b/static/apidocs/search/functions_0.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['add_5fproperty_0',['add_property',['../classLibICal_1_1VComponent.html#ab998f38057c9193b4125728d054ef80d',1,'LibICal::VComponent']]], + ['as_5fvector_1',['as_vector',['../classLibICal_1_1ICalSpanList.html#a90af8eaf10472184439c880382f137fc',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/functions_1.js b/static/apidocs/search/functions_1.js new file mode 100644 index 00000000..93c77a72 --- /dev/null +++ b/static/apidocs/search/functions_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['begin_5fcomponent_0',['begin_component',['../classLibICal_1_1VComponent.html#aef8e4c73dda1c6ea6777903ea52431c5',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/functions_2.js b/static/apidocs/search/functions_2.js new file mode 100644 index 00000000..c2374f5c --- /dev/null +++ b/static/apidocs/search/functions_2.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['caldat_0',['caldat',['../astime_8h.html#a71ea4b389d8486821b9c010c75445b34',1,'astime.h']]], + ['convert_5ferrors_1',['convert_errors',['../classLibICal_1_1VComponent.html#a31c1d2f710cae635a6ee1e5198135d47',1,'LibICal::VComponent']]], + ['count_5ferrors_2',['count_errors',['../classLibICal_1_1VComponent.html#a61649c7e528709b715668407ae514b82',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/functions_3.js b/static/apidocs/search/functions_3.js new file mode 100644 index 00000000..82d7e6f1 --- /dev/null +++ b/static/apidocs/search/functions_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['dump_0',['dump',['../classLibICal_1_1ICalSpanList.html#ae1c6dbf5f3b15806459f12ec4b89414b',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/functions_4.js b/static/apidocs/search/functions_4.js new file mode 100644 index 00000000..0ae4f6a9 --- /dev/null +++ b/static/apidocs/search/functions_4.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['free_5fzone_5fdirectory_0',['free_zone_directory',['../icaltimezone_8h.html#a431f7b425ec073cdd490431d4285f294',1,'icaltimezone.c']]] +]; diff --git a/static/apidocs/search/functions_5.js b/static/apidocs/search/functions_5.js new file mode 100644 index 00000000..1f69c679 --- /dev/null +++ b/static/apidocs/search/functions_5.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['get_5fcurrent_5fcomponent_0',['get_current_component',['../classLibICal_1_1VComponent.html#a3ec71c88c274db41235c90f98ee73b74',1,'LibICal::VComponent']]], + ['get_5fdtend_1',['get_dtend',['../classLibICal_1_1VComponent.html#ad4c61e11d937eb2d945915ef8abefa02',1,'LibICal::VComponent']]], + ['get_5ffirst_5fparameter_2',['get_first_parameter',['../classLibICal_1_1ICalProperty.html#a7cf59c3497829c43fe4d90f00ef9ad90',1,'LibICal::ICalProperty']]], + ['get_5ffirst_5freal_5fcomponent_3',['get_first_real_component',['../classLibICal_1_1VComponent.html#aff167a3bdffb0acf44b3562887aa92b1',1,'LibICal::VComponent']]], + ['get_5finner_4',['get_inner',['../classLibICal_1_1VComponent.html#a490ed40b1a5dffd2abaed17e49b79598',1,'LibICal::VComponent']]], + ['get_5fname_5',['get_name',['../classLibICal_1_1ICalProperty.html#af1cf1f6da567ebffdf9e59af1a3fe1e3',1,'LibICal::ICalProperty']]], + ['get_5fspan_6',['get_span',['../classLibICal_1_1VComponent.html#a853dd4369910c564d72cce30700206eb',1,'LibICal::VComponent']]], + ['get_5fvfreebusy_7',['get_vfreebusy',['../classLibICal_1_1ICalSpanList.html#a6b9c15908043937b51737641abda8e48',1,'LibICal::ICalSpanList']]], + ['get_5fzone_5fdirectory_8',['get_zone_directory',['../icaltimezone_8h.html#a66c3dfc5a5711444a4e543c6a673e195',1,'icaltimezone.c']]], + ['gettriggertime_9',['getTriggerTime',['../classLibICal_1_1VAlarm.html#a6f1393e3173f4c697c65ce9c62d9c878',1,'LibICal::VAlarm']]] +]; diff --git a/static/apidocs/search/functions_6.js b/static/apidocs/search/functions_6.js new file mode 100644 index 00000000..71ef0701 --- /dev/null +++ b/static/apidocs/search/functions_6.js @@ -0,0 +1,231 @@ +var searchData= +[ + ['ical_5fbt_0',['ical_bt',['../icalerror_8h.html#a1c741ef8219eebc325e53851aa9e8f00',1,'icalerror.c']]], + ['icalarray_5fappend_1',['icalarray_append',['../icalarray_8h.html#a9a11feb130b619af9dd7f4003d52d242',1,'icalarray.c']]], + ['icalarray_5fcopy_2',['icalarray_copy',['../icalarray_8h.html#a4e7b1165ef6a6a63e7d67dedfb789dc8',1,'icalarray.c']]], + ['icalarray_5felement_5fat_3',['icalarray_element_at',['../icalarray_8h.html#a2f12e8a9e9d70d80ad8a621b7d52af96',1,'icalarray.c']]], + ['icalarray_5ffree_4',['icalarray_free',['../icalarray_8h.html#a725724cdff58a12520abc7d6bfdf5e0f',1,'icalarray.c']]], + ['icalarray_5fnew_5',['icalarray_new',['../icalarray_8h.html#aeab98d02907573525bccdd548c6f8f1d',1,'icalarray.c']]], + ['icalarray_5fremove_5felement_5fat_6',['icalarray_remove_element_at',['../icalarray_8h.html#afeff7fd9edc32284b5fb34fb61ec8c0a',1,'icalarray.c']]], + ['icalarray_5fsort_7',['icalarray_sort',['../icalarray_8h.html#a7552d72058960fe92eeae36531275913',1,'icalarray.c']]], + ['icalattach_5fget_5fdata_8',['icalattach_get_data',['../icalattach_8h.html#ab2039dd2691006e33174e39fedb4adca',1,'icalattach.c']]], + ['icalattach_5fget_5fis_5furl_9',['icalattach_get_is_url',['../icalattach_8h.html#a87aa30954aa1f901d90ab816abdfebd1',1,'icalattach.c']]], + ['icalattach_5fget_5furl_10',['icalattach_get_url',['../icalattach_8h.html#abff756d83d05c46417c8cbdaa7e0fa04',1,'icalattach.c']]], + ['icalattach_5fnew_5ffrom_5fdata_11',['icalattach_new_from_data',['../icalattach_8h.html#a02add24fd5d06a4753df5e7b9e9ce94b',1,'icalattach.c']]], + ['icalattach_5fnew_5ffrom_5furl_12',['icalattach_new_from_url',['../icalattach_8h.html#ae01e1b8479c7f4f6205d05271a4a8021',1,'icalattach.c']]], + ['icalattach_5fref_13',['icalattach_ref',['../icalattach_8h.html#aa442cd17e95dd605f5df40194d910002',1,'icalattach.c']]], + ['icalattach_5funref_14',['icalattach_unref',['../icalattach_8h.html#a4f9e8fe048e58d1035f82ca47e51024f',1,'icalattach.c']]], + ['icalcomponent_5fconvert_5ferrors_15',['icalcomponent_convert_errors',['../icalcomponent_8h.html#a05f04c49a8dcbe21e87fd895cd7fcb3e',1,'icalcomponent.c']]], + ['icalcomponent_5fcount_5ferrors_16',['icalcomponent_count_errors',['../icalcomponent_8h.html#aa1f40109577b185be2e807c0f2f00146',1,'icalcomponent.c']]], + ['icalcomponent_5fforeach_5frecurrence_17',['icalcomponent_foreach_recurrence',['../icalcomponent_8h.html#a379c4880bf5ab8ccbf1d4af12aca232e',1,'icalcomponent.c']]], + ['icalcomponent_5fforeach_5ftzid_18',['icalcomponent_foreach_tzid',['../icalcomponent_8h.html#addacbedbeccb2e2d31ae9a6963e19e49',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdtend_19',['icalcomponent_get_dtend',['../icalcomponent_8h.html#a233d19ae5347cc66920e755c2c966f70',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdtstart_20',['icalcomponent_get_dtstart',['../icalcomponent_8h.html#a23e20161c54d3aeff51e1cc444eee063',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fdue_21',['icalcomponent_get_due',['../icalcomponent_8h.html#a914c732761507bf5333d246adfe80d85',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fduration_22',['icalcomponent_get_duration',['../icalcomponent_8h.html#aa40346bf15111b7f9eb0e629c7e8a6e6',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5ffirst_5freal_5fcomponent_23',['icalcomponent_get_first_real_component',['../icalcomponent_8h.html#a822e1ecadd06473da50dbcb52ebb759d',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5finner_24',['icalcomponent_get_inner',['../icalcomponent_8h.html#a744361f31ad6f28771035527ea00d11f',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fmethod_25',['icalcomponent_get_method',['../icalcomponent_8h.html#a36125a44be8baadb7d58b4f5d3c13ca7',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5frelcalid_26',['icalcomponent_get_relcalid',['../icalcomponent_8h.html#a8389c220f17ca9194ff35a53003fa7ff',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5fspan_27',['icalcomponent_get_span',['../icalcomponent_8h.html#ac1316a03cca77062e1e85a094a90c770',1,'icalcomponent.c']]], + ['icalcomponent_5fget_5ftimezone_28',['icalcomponent_get_timezone',['../icalcomponent_8h.html#abc399fff22411a68f6f28ff93f625f3d',1,'icalcomponent.c']]], + ['icalcomponent_5fmerge_5fcomponent_29',['icalcomponent_merge_component',['../icalcomponent_8h.html#a9a6e353e730464ff0f4ecf85475d648c',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_30',['icalcomponent_new',['../icalcomponent_8h.html#a727a14d0c14c66b4dbf1b58b2cb6ac2e',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5fclone_31',['icalcomponent_new_clone',['../icalcomponent_8h.html#a0811895d6b10925444b92975210a7afc',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5ffrom_5fstring_32',['icalcomponent_new_from_string',['../icalcomponent_8h.html#af4a04ae38f7633b65f629452aff3376a',1,'icalcomponent.c']]], + ['icalcomponent_5fnew_5fx_33',['icalcomponent_new_x',['../icalcomponent_8h.html#ad06faf0a54675bb708c3542b59f304dd',1,'icalcomponent.c']]], + ['icalcomponent_5fnormalize_34',['icalcomponent_normalize',['../icalcomponent_8h.html#a56150641c4d33ad4ec365c77a257e153',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdtend_35',['icalcomponent_set_dtend',['../icalcomponent_8h.html#ac0812f64b10457645c4e89b441c0a415',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdtstart_36',['icalcomponent_set_dtstart',['../icalcomponent_8h.html#a46f6c42c1190e84d2d34dd19591af07b',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fdue_37',['icalcomponent_set_due',['../icalcomponent_8h.html#ae9a61fb25f98f24b6b89276040c4f9f8',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fduration_38',['icalcomponent_set_duration',['../icalcomponent_8h.html#ad122989d32c8e8eebbc8ca14a1cdfb18',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5fmethod_39',['icalcomponent_set_method',['../icalcomponent_8h.html#a6db8db9455d888c5f9cab83a6033bee5',1,'icalcomponent.c']]], + ['icalcomponent_5fset_5frelcalid_40',['icalcomponent_set_relcalid',['../icalcomponent_8h.html#a06bc97a17e83ebbcc6b1ff227ea4d701',1,'icalcomponent.c']]], + ['icalcomponent_5fstrip_5ferrors_41',['icalcomponent_strip_errors',['../icalcomponent_8h.html#a51f8653df2976e849923ae4a93b993fa',1,'icalcomponent.c']]], + ['icalcomponent_5fvanew_42',['icalcomponent_vanew',['../icalcomponent_8h.html#a6d04f3e1a9fac62b7b06c88eecd3b194',1,'icalcomponent.c']]], + ['icaldirset_5fadd_5fcomponent_43',['icaldirset_add_component',['../icaldirset_8h.html#a123ff2d1b0887caafc027936bc9b921b',1,'icaldirset.c']]], + ['icaldirset_5fremove_5fcomponent_44',['icaldirset_remove_component',['../icaldirset_8h.html#ae3b06ab0380ffb7c0e4b7ce9251931ad',1,'icaldirset.c']]], + ['icaldurationtype_5fas_5fical_5fstring_45',['icaldurationtype_as_ical_string',['../icalduration_8h.html#adb753c6f52d493cfa9f31c2d7730ace1',1,'icalduration.c']]], + ['icaldurationtype_5fas_5fical_5fstring_5fr_46',['icaldurationtype_as_ical_string_r',['../icalduration_8h.html#ab87c9958f888dba23afa2249110ca137',1,'icalduration.c']]], + ['icaldurationtype_5fas_5fint_47',['icaldurationtype_as_int',['../icalduration_8h.html#a1828c484b9efb3cb1f08ec5eb58c7a18',1,'icalduration.c']]], + ['icaldurationtype_5fbad_5fduration_48',['icaldurationtype_bad_duration',['../icalduration_8h.html#a2578535a23fc5c6d4d61c09c880f03fd',1,'icalduration.c']]], + ['icaldurationtype_5ffrom_5fint_49',['icaldurationtype_from_int',['../icalduration_8h.html#a88157a8ae61263ea15af92a416889301',1,'icalduration.c']]], + ['icaldurationtype_5ffrom_5fstring_50',['icaldurationtype_from_string',['../icalduration_8h.html#a0d6d8cc773e19242448eaffb1368fef4',1,'icalduration.c']]], + ['icaldurationtype_5fis_5fbad_5fduration_51',['icaldurationtype_is_bad_duration',['../icalduration_8h.html#a88c5b90b57f9e1f79c00a544746687d6',1,'icalduration.c']]], + ['icaldurationtype_5fis_5fnull_5fduration_52',['icaldurationtype_is_null_duration',['../icalduration_8h.html#afcdeddc439488d8f586db0702593c270',1,'icalduration.c']]], + ['icaldurationtype_5fnull_5fduration_53',['icaldurationtype_null_duration',['../icalduration_8h.html#ad716774a6570e0be2eb11868deb86595',1,'icalduration.c']]], + ['icalenum_5fnum_5fto_5freqstat_54',['icalenum_num_to_reqstat',['../icalenums_8h.html#a53964f8e27e7e4db21c6e173e97d9169',1,'icalenums.c']]], + ['icalenum_5freqstat_5fcode_5fr_55',['icalenum_reqstat_code_r',['../icalenums_8h.html#ada0aa82f4ec0fb1c15550165fd49043c',1,'icalenums.c']]], + ['icalenum_5freqstat_5fdesc_56',['icalenum_reqstat_desc',['../icalenums_8h.html#a2b1eaf6c550ec93869dc760cf8d2e0f7',1,'icalenums.c']]], + ['icalenum_5freqstat_5fmajor_57',['icalenum_reqstat_major',['../icalenums_8h.html#a49c50e3cc8a770b11306605c58c84c7d',1,'icalenums.c']]], + ['icalenum_5freqstat_5fminor_58',['icalenum_reqstat_minor',['../icalenums_8h.html#a93c405d78c5d9589c823a7521ba7e3f9',1,'icalenums.c']]], + ['icalerrno_5freturn_59',['icalerrno_return',['../icalerror_8h.html#a03f44629289ba66eaf29e199ec9ec4b7',1,'icalerror.c']]], + ['icalerror_5fclear_5ferrno_60',['icalerror_clear_errno',['../icalerror_8h.html#ae87b46acb90ce9fee0fa377fd9b57c28',1,'icalerror.c']]], + ['icalerror_5fcrash_5fhere_61',['icalerror_crash_here',['../icalerror_8h.html#a0cbc33f05e014e767bd92b04bfb92f62',1,'icalerror.c']]], + ['icalerror_5ferror_5ffrom_5fstring_62',['icalerror_error_from_string',['../icalerror_8h.html#a9b60700869241af095f0604f35b1c446',1,'icalerror.c']]], + ['icalerror_5fget_5ferror_5fstate_63',['icalerror_get_error_state',['../icalerror_8h.html#a5fe3cbc229f74250b59c077e21abf82d',1,'icalerror.c']]], + ['icalerror_5fget_5ferrors_5fare_5ffatal_64',['icalerror_get_errors_are_fatal',['../icalerror_8h.html#a44fa677ba623cdcebe9e38b03cd08389',1,'icalerror.c']]], + ['icalerror_5fperror_65',['icalerror_perror',['../icalerror_8h.html#a5c3975fee79ab587467be6531497dbbc',1,'icalerror.c']]], + ['icalerror_5frestore_66',['icalerror_restore',['../icalerror_8h.html#a8377dadcd17bf305d1931aa2518c321a',1,'icalerror.c']]], + ['icalerror_5fset_5ferrno_67',['icalerror_set_errno',['../icalerror_8h.html#a8266eaa216926b6703a0ef31cd99f0b2',1,'icalerror.c']]], + ['icalerror_5fset_5ferror_5fstate_68',['icalerror_set_error_state',['../icalerror_8h.html#a777a41722836b68ffb27ae5a746a14b4',1,'icalerror.c']]], + ['icalerror_5fset_5ferrors_5fare_5ffatal_69',['icalerror_set_errors_are_fatal',['../icalerror_8h.html#a05941b21472c45d4b3654cb7d94bf3e8',1,'icalerror.c']]], + ['icalerror_5fstop_5fhere_70',['icalerror_stop_here',['../icalerror_8h.html#a9102f6b721a280151c7858860707171b',1,'icalerror.c']]], + ['icalerror_5fstrerror_71',['icalerror_strerror',['../icalerror_8h.html#a78e30857b73490e23848b92459510b8c',1,'icalerror.c']]], + ['icalerror_5fsupress_72',['icalerror_supress',['../icalerror_8h.html#af226f2c41272dabecd03ec9807d3a1e2',1,'icalerror.c']]], + ['icalgauge_5fcompare_73',['icalgauge_compare',['../icalgauge_8h.html#a9047a63c23d86af1b2ad3a2dd4ba63bd',1,'icalgauge.c']]], + ['icalgauge_5fdump_74',['icalgauge_dump',['../icalgauge_8h.html#a3000c05fd412869503e8499c07030f48',1,'icalgauge.c']]], + ['icalgauge_5fget_5fexpand_75',['icalgauge_get_expand',['../icalgauge_8h.html#a0e3a08b481636446b7d1cbefeba82998',1,'icalgauge.c']]], + ['icalmemory_5fadd_5ftmp_5fbuffer_76',['icalmemory_add_tmp_buffer',['../icalmemory_8h.html#ae9f1799733a1577748a028181098be48',1,'icalmemory.c']]], + ['icalmemory_5fappend_5fchar_77',['icalmemory_append_char',['../icalmemory_8h.html#addac122edb16bc41a193895c86bd5ff5',1,'icalmemory.c']]], + ['icalmemory_5fappend_5fstring_78',['icalmemory_append_string',['../icalmemory_8h.html#a647bf5dab81fc5b83a0ed8f8ad769ea6',1,'icalmemory.c']]], + ['icalmemory_5ffree_5fbuffer_79',['icalmemory_free_buffer',['../icalmemory_8h.html#a2f164cb87c67f06b5dc04a5f21384879',1,'icalmemory.c']]], + ['icalmemory_5ffree_5fring_80',['icalmemory_free_ring',['../icalmemory_8h.html#a175daa67f089bae6aefd4360fcd0d664',1,'icalmemory.c']]], + ['icalmemory_5fnew_5fbuffer_81',['icalmemory_new_buffer',['../icalmemory_8h.html#a9b645edbcc1a05dbb64df5d86adbc367',1,'icalmemory.c']]], + ['icalmemory_5fresize_5fbuffer_82',['icalmemory_resize_buffer',['../icalmemory_8h.html#a6cf9578649d6f12bf8eae97e4ef537e9',1,'icalmemory.c']]], + ['icalmemory_5fstrdup_83',['icalmemory_strdup',['../icalmemory_8h.html#a313a5fd91cb6100f9ecc1b8f24acc336',1,'icalmemory.c']]], + ['icalmemory_5ftmp_5fbuffer_84',['icalmemory_tmp_buffer',['../icalmemory_8h.html#aeaf6a28b3908f695bb0a7e35d1dfc8f7',1,'icalmemory.c']]], + ['icalmemory_5ftmp_5fcopy_85',['icalmemory_tmp_copy',['../icalmemory_8h.html#aa5f6b34db6cc88a33bd1cd745d44f977',1,'icalmemory.c']]], + ['icalparameter_5fas_5fical_5fstring_86',['icalparameter_as_ical_string',['../icalparameter_8h.html#ab8222d0c7236fee6e6ae47a79955db45',1,'icalparameter.c']]], + ['icalparameter_5fas_5fical_5fstring_5fr_87',['icalparameter_as_ical_string_r',['../icalparameter_8h.html#afe13c2029af7332593df37d1ebbd8b3c',1,'icalparameter.c']]], + ['icalparameter_5ffree_88',['icalparameter_free',['../icalparameter_8h.html#aafadb9fd4172bab0d17252d251c69800',1,'icalparameter.c']]], + ['icalparameter_5fget_5fiana_5fname_89',['icalparameter_get_iana_name',['../icalparameter_8h.html#ab644f9bab546eea75306f349914af05a',1,'icalparameter.c']]], + ['icalparameter_5fget_5fiana_5fvalue_90',['icalparameter_get_iana_value',['../icalparameter_8h.html#a93de301878e702d08cf89dae83c071f7',1,'icalparameter.c']]], + ['icalparameter_5fget_5fparent_91',['icalparameter_get_parent',['../icalproperty_8h.html#ab0fd104bb6eb9d30d2b03a3f35c6a1ea',1,'icalparameter.c']]], + ['icalparameter_5fget_5fxname_92',['icalparameter_get_xname',['../icalparameter_8h.html#a28c4415b82455f7551aa4c48b36be438',1,'icalparameter.c']]], + ['icalparameter_5fget_5fxvalue_93',['icalparameter_get_xvalue',['../icalparameter_8h.html#a1e2ee9baea3213f18d2b93cdf3892c72',1,'icalparameter.c']]], + ['icalparameter_5fhas_5fsame_5fname_94',['icalparameter_has_same_name',['../icalparameter_8h.html#add735467f8a84b476f5899e262a072a2',1,'icalparameter.c']]], + ['icalparameter_5fisa_95',['icalparameter_isa',['../icalparameter_8h.html#a0671e8fcd545049a3fbc1b5d5d0f2b2b',1,'icalparameter.c']]], + ['icalparameter_5fisa_5fparameter_96',['icalparameter_isa_parameter',['../icalparameter_8h.html#a960908ba27797c51f965b997be99f284',1,'icalparameter.c']]], + ['icalparameter_5fkind_5fis_5fvalid_97',['icalparameter_kind_is_valid',['../icalparameter_8h.html#a236331311b5c8957e718f6abb205fb66',1,'icalparameter.h']]], + ['icalparameter_5fkind_5fto_5fstring_98',['icalparameter_kind_to_string',['../icalparameter_8h.html#a6a172a9cc1bc5cc1315f96e6cad70438',1,'icalparameter.h']]], + ['icalparameter_5fnew_99',['icalparameter_new',['../icalparameter_8h.html#a252cdad9d54b31b898ff273ce5439429',1,'icalparameter.c']]], + ['icalparameter_5fnew_5fclone_100',['icalparameter_new_clone',['../icalparameter_8h.html#a1e31c5f1e180763dccdeaa94b180cad1',1,'icalparameter.c']]], + ['icalparameter_5fnew_5ffrom_5fstring_101',['icalparameter_new_from_string',['../icalparameter_8h.html#aa3f2cce04d344d002ca83e797c05dd8b',1,'icalparameter.c']]], + ['icalparameter_5fnew_5ffrom_5fvalue_5fstring_102',['icalparameter_new_from_value_string',['../icalparameter_8h.html#abe33daa839d72261aab283d0f44f711f',1,'icalparameter.h']]], + ['icalparameter_5fset_5fiana_5fname_103',['icalparameter_set_iana_name',['../icalparameter_8h.html#aab70ecf438e02384a5a13ca6a71e7793',1,'icalparameter.c']]], + ['icalparameter_5fset_5fiana_5fvalue_104',['icalparameter_set_iana_value',['../icalparameter_8h.html#adf6329d175597783232853ff1ca53e24',1,'icalparameter.c']]], + ['icalparameter_5fset_5fparent_105',['icalparameter_set_parent',['../icalproperty_8h.html#add1ff57f4b9ffe33607a1629e68cdf1f',1,'icalparameter.c']]], + ['icalparameter_5fset_5fxname_106',['icalparameter_set_xname',['../icalparameter_8h.html#a2e77cb0c365e67a65487f916ece223da',1,'icalparameter.c']]], + ['icalparameter_5fset_5fxvalue_107',['icalparameter_set_xvalue',['../icalparameter_8h.html#aaf0fbf906d011f5af3ce38b626906691',1,'icalparameter.c']]], + ['icalparameter_5fstring_5fto_5fkind_108',['icalparameter_string_to_kind',['../icalparameter_8h.html#a4e659bfa64d0c6c7cc3da29aadc5d3d6',1,'icalparameter.h']]], + ['icalparser_5fadd_5fline_109',['icalparser_add_line',['../icalparser_8h.html#a987113ea951dc55e37a764af168caaca',1,'icalparser.c']]], + ['icalparser_5fclean_110',['icalparser_clean',['../icalparser_8h.html#aa6e4c9c494345c51adf49a7e30255fb7',1,'icalparser.c']]], + ['icalparser_5ffree_111',['icalparser_free',['../icalparser_8h.html#a1cb8b8678b781d3d2ede0fbce613b90d',1,'icalparser.c']]], + ['icalparser_5fget_5fctrl_112',['icalparser_get_ctrl',['../icalparser_8h.html#a2d34db956d3cc609f2804bcadd0deee6',1,'icalparser.c']]], + ['icalparser_5fget_5fline_113',['icalparser_get_line',['../icalparser_8h.html#ada2de638b68de5146ae860631709f4a3',1,'icalparser.c']]], + ['icalparser_5fget_5fstate_114',['icalparser_get_state',['../icalparser_8h.html#a9a27d19ac53219bb65aeb9a031dbf027',1,'icalparser.c']]], + ['icalparser_5fnew_115',['icalparser_new',['../icalparser_8h.html#a9848e4dc69f814f49a5ece028c43be57',1,'icalparser.c']]], + ['icalparser_5fparse_116',['icalparser_parse',['../icalparser_8h.html#a00330df647417bb017a7daaaffafddec',1,'icalparser.c']]], + ['icalparser_5fparse_5fstring_117',['icalparser_parse_string',['../icalparser_8h.html#a5e1268344c61e44a0ec18085688f07fd',1,'icalparser.c']]], + ['icalparser_5fset_5fctrl_118',['icalparser_set_ctrl',['../icalparser_8h.html#a24ad1a0d37a10aa31a8dbd9977660281',1,'icalparser.c']]], + ['icalparser_5fset_5fgen_5fdata_119',['icalparser_set_gen_data',['../icalparser_8h.html#aae6d08b4084610e225621a25dddd7689',1,'icalparser.c']]], + ['icalperiodtype_5fas_5fical_5fstring_120',['icalperiodtype_as_ical_string',['../icalperiod_8h.html#a28a5aa968b36182e39d7f3fd3491ecb3',1,'icalperiod.c']]], + ['icalperiodtype_5fas_5fical_5fstring_5fr_121',['icalperiodtype_as_ical_string_r',['../icalperiod_8h.html#a2f7c3f3e1623c9774596d1ef68789171',1,'icalperiod.c']]], + ['icalperiodtype_5ffrom_5fstring_122',['icalperiodtype_from_string',['../icalperiod_8h.html#a827e35abf4d6349e15aeaa9a483064fd',1,'icalperiod.c']]], + ['icalperiodtype_5fis_5fnull_5fperiod_123',['icalperiodtype_is_null_period',['../icalperiod_8h.html#ae184bb1351602b7763044c5167a96bdf',1,'icalperiod.c']]], + ['icalperiodtype_5fis_5fvalid_5fperiod_124',['icalperiodtype_is_valid_period',['../icalperiod_8h.html#af7feaf12370cd37d66d160c4d8fbf0c7',1,'icalperiod.c']]], + ['icalperiodtype_5fnull_5fperiod_125',['icalperiodtype_null_period',['../icalperiod_8h.html#a60e59a9f46a1efa9885829a4d23eddfa',1,'icalperiod.c']]], + ['icalproperty_5fget_5fdatetime_5fwith_5fcomponent_126',['icalproperty_get_datetime_with_component',['../icalcomponent_8h.html#a611f811f8f86a6499077e6e03291a721',1,'icalproperty.c']]], + ['icalproperty_5fget_5fparent_127',['icalproperty_get_parent',['../icalcomponent_8h.html#a3d9f076b73a18e740c426329a6b969c7',1,'icalproperty.c']]], + ['icalproperty_5fget_5fproperty_5fname_128',['icalproperty_get_property_name',['../icalproperty_8h.html#a6a4e4af2200ccba5f48748f953968956',1,'icalproperty.c']]], + ['icalproperty_5fkind_5fis_5fvalid_129',['icalproperty_kind_is_valid',['../icalproperty_8h.html#ae30c17db923194abbbc7d2fe3b252675',1,'icalproperty.h']]], + ['icalproperty_5fnormalize_130',['icalproperty_normalize',['../icalproperty_8h.html#a7b1e4b49622fbd0f1160b65c102fbcfa',1,'icalproperty.c']]], + ['icalproperty_5frecurrence_5fis_5fexcluded_131',['icalproperty_recurrence_is_excluded',['../icalcomponent_8h.html#aa996d31b8f96e451495b34777171242f',1,'icalcomponent.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fkind_132',['icalproperty_remove_parameter_by_kind',['../icalproperty_8h.html#a68baed35b3b1af4ababf2c62b2ced68d',1,'icalproperty.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fname_133',['icalproperty_remove_parameter_by_name',['../icalproperty_8h.html#a51587b7b70961ff814f964bf81a64afe',1,'icalproperty.c']]], + ['icalproperty_5fremove_5fparameter_5fby_5fref_134',['icalproperty_remove_parameter_by_ref',['../icalproperty_8h.html#a3e16fd227adaaa8ec34aea6d2d565c3e',1,'icalproperty.c']]], + ['icalproperty_5fset_5fparent_135',['icalproperty_set_parent',['../icalcomponent_8h.html#a81bb4666b9d6bdbc62a4fe9ef682e0e2',1,'icalproperty.c']]], + ['icalrecur_5fexpand_5frecurrence_136',['icalrecur_expand_recurrence',['../icalrecur_8h.html#a08bc5e484eb46ba9e02fb037e2e01c29',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5ffree_137',['icalrecur_iterator_free',['../icalrecur_8h.html#a14daf9df313fdad9f536a7d9242b4cdc',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fnew_138',['icalrecur_iterator_new',['../icalrecur_8h.html#a34c26e8377e120586398b06d37a1f63e',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fnext_139',['icalrecur_iterator_next',['../icalrecur_8h.html#a2e10af320612cd7ab8c6fb6177ade3e3',1,'icalrecur.c']]], + ['icalrecur_5fiterator_5fset_5fstart_140',['icalrecur_iterator_set_start',['../icalrecur_8h.html#ab632c95c37375ef11d62d8742e8406d5',1,'icalrecur.c']]], + ['icalrecurrencetype_5fday_5fday_5fof_5fweek_141',['icalrecurrencetype_day_day_of_week',['../icalrecur_8h.html#a96c160e7e6b16e0e369c540f2ee164c7',1,'icalrecur.c']]], + ['icalrecurrencetype_5fday_5fposition_142',['icalrecurrencetype_day_position',['../icalrecur_8h.html#aa730e9ac327064456902076b718400f4',1,'icalrecur.c']]], + ['icalrecurrencetype_5ffrom_5fstring_143',['icalrecurrencetype_from_string',['../icalrecur_8h.html#a0e8ebcf355ba22299f553f8f5e657926',1,'icalrecur.c']]], + ['icalrestriction_5fcheck_144',['icalrestriction_check',['../icalrestriction_8h.html#a36eeedfdce2344da44fd09d9e3f18b57',1,'icalrestriction.h']]], + ['icalrestriction_5fcompare_145',['icalrestriction_compare',['../icalrestriction_8h.html#acd3882ab8b58bf0e12cb9ed48234ce2d',1,'icalrestriction.h']]], + ['icalset_5fcommit_146',['icalset_commit',['../icalset_8h.html#a2c852ee9d1ddd570809482ba56fee0e6',1,'icalset.c']]], + ['icalset_5ffetch_147',['icalset_fetch',['../icalset_8h.html#a98ebedc03e491568cf62830be8459921',1,'icalset.c']]], + ['icalset_5ffree_148',['icalset_free',['../icalset_8h.html#a2a602a0901474216b3dddbd21f5ff8f5',1,'icalset.c']]], + ['icalset_5fget_5fcurrent_5fcomponent_149',['icalset_get_current_component',['../icalset_8h.html#a420481c47762be041d21a8fc22a488c4',1,'icalset.c']]], + ['icalset_5fmark_150',['icalset_mark',['../icalset_8h.html#a2caa3e1d3c665fe107dde1e4be8c49c1',1,'icalset.c']]], + ['icalset_5fmodify_151',['icalset_modify',['../icalset_8h.html#afb2fbb4b1dae61bd4e2ad78c70daa1df',1,'icalset.c']]], + ['icalset_5fnew_152',['icalset_new',['../icalset_8h.html#ad39065fe67efd5f3baf9f5af0379505e',1,'icalset.c']]], + ['icalset_5fregister_5fclass_153',['icalset_register_class',['../icalset_8h.html#a40ba946500e79218ae39f89db5397121',1,'icalset.h']]], + ['icalset_5fselect_154',['icalset_select',['../icalset_8h.html#a0d4a88d44364f1da9e107f99926a7217',1,'icalset.c']]], + ['icalsetiter_5fnext_155',['icalsetiter_next',['../icalset_8h.html#a309ac5871c9902f356f7a521dfcd0a62',1,'icalset.c']]], + ['icalsetiter_5fto_5fnext_156',['icalsetiter_to_next',['../icalset_8h.html#a47b0c14d98ea34c38315948bc9cc9097',1,'icalset.c']]], + ['icalspanlist_157',['ICalSpanList',['../classLibICal_1_1ICalSpanList.html#a553e46923b9b8cdf5f45043eefab3190',1,'LibICal::ICalSpanList::ICalSpanList(icalcomponent *comp)'],['../classLibICal_1_1ICalSpanList.html#a009d494e48e9bd6401a80315e292e487',1,'LibICal::ICalSpanList::ICalSpanList(icalset *set, icaltimetype start, icaltimetype end)'],['../classLibICal_1_1ICalSpanList.html#a677ad30a4a2d1753b3357fcdd38cfa85',1,'LibICal::ICalSpanList::ICalSpanList(VComponent &comp)']]], + ['icalspanlist_5fas_5ffreebusy_5fmatrix_158',['icalspanlist_as_freebusy_matrix',['../icalspanlist_8h.html#a7075f544806d8dec4696ccf80067f7d7',1,'icalspanlist.c']]], + ['icalspanlist_5fas_5fvfreebusy_159',['icalspanlist_as_vfreebusy',['../icalspanlist_8h.html#aed5ab46eeb595eb24cb99494f6837267',1,'icalspanlist.c']]], + ['icalspanlist_5fdump_160',['icalspanlist_dump',['../icalspanlist_8h.html#a31a026b29f6b18108e49b15c9593a7fa',1,'icalspanlist.c']]], + ['icalspanlist_5ffree_161',['icalspanlist_free',['../icalspanlist_8h.html#acb42d8b7053e8886c8ea895699f6fa9c',1,'icalspanlist.c']]], + ['icalspanlist_5ffrom_5fvfreebusy_162',['icalspanlist_from_vfreebusy',['../icalspanlist_8h.html#a980cdf00f77540c74dc44f7037aa82a5',1,'icalspanlist.c']]], + ['icalspanlist_5fnew_163',['icalspanlist_new',['../icalspanlist_8h.html#acbf0f85b59416bfc8e8a65970e191136',1,'icalspanlist.c']]], + ['icalspanlist_5fnext_5ffree_5ftime_164',['icalspanlist_next_free_time',['../icalspanlist_8h.html#af8686abb751773c3358c1a82fb79606c',1,'icalspanlist.c']]], + ['icaltime_5fadd_165',['icaltime_add',['../icalduration_8h.html#aacc4e7db2c4b8dd96fd428edee73acf5',1,'icalduration.c']]], + ['icaltime_5fadjust_166',['icaltime_adjust',['../icaltime_8h.html#aeeff97a90d535fd004d93057e49e8663',1,'icaltime.c']]], + ['icaltime_5fas_5fical_5fstring_167',['icaltime_as_ical_string',['../icaltime_8h.html#a96d92fa0eb3e7b3cc2f57628d8d2900e',1,'icaltime.c']]], + ['icaltime_5fas_5fical_5fstring_5fr_168',['icaltime_as_ical_string_r',['../icaltime_8h.html#aff3743be95ab23fecba3a1de69ffdc2e',1,'icaltime.c']]], + ['icaltime_5fas_5ftimet_169',['icaltime_as_timet',['../icaltime_8h.html#a7b39742d0f786f41df391c62ee56ec10',1,'icaltime.c']]], + ['icaltime_5fas_5ftimet_5fwith_5fzone_170',['icaltime_as_timet_with_zone',['../icaltime_8h.html#a4ec8d0734d00b761745ea55808db8237',1,'icaltime.c']]], + ['icaltime_5fcompare_171',['icaltime_compare',['../icaltime_8h.html#a123759194c6e8c44e1b05193cb61196a',1,'icaltime.c']]], + ['icaltime_5fcompare_5fdate_5fonly_172',['icaltime_compare_date_only',['../icaltime_8h.html#a178f667071ea4e8f22140ee8e2f4cdae',1,'icaltime.c']]], + ['icaltime_5fcompare_5fdate_5fonly_5ftz_173',['icaltime_compare_date_only_tz',['../icaltime_8h.html#abfa31574ddedeaf5e5b783b29ce0346d',1,'icaltime.c']]], + ['icaltime_5fconvert_5fto_5fzone_174',['icaltime_convert_to_zone',['../icaltime_8h.html#a9fd9b6de943eec5733b74d958951a9c8',1,'icaltime.c']]], + ['icaltime_5fcurrent_5ftime_5fwith_5fzone_175',['icaltime_current_time_with_zone',['../icaltime_8h.html#a35ab8c2fdc5766e30d3dd6c873af0151',1,'icaltime.c']]], + ['icaltime_5fday_5fof_5fweek_176',['icaltime_day_of_week',['../icaltime_8h.html#a6df493d8d79b6eef9fca25adefbb6d69',1,'icaltime.c']]], + ['icaltime_5fday_5fof_5fyear_177',['icaltime_day_of_year',['../icaltime_8h.html#a39606ca412bb507284a55356c9522b91',1,'icaltime.c']]], + ['icaltime_5fdays_5fin_5fmonth_178',['icaltime_days_in_month',['../icaltime_8h.html#a99e9d9e26bea0231d23eb171990a1e8f',1,'icaltime.c']]], + ['icaltime_5fdays_5fin_5fyear_179',['icaltime_days_in_year',['../icaltime_8h.html#ac50c6fc84b7b70f1678d1771c287b73b',1,'icaltime.c']]], + ['icaltime_5ffrom_5fday_5fof_5fyear_180',['icaltime_from_day_of_year',['../icaltime_8h.html#a2915233b392cc2a68aa5a9acf39e2307',1,'icaltime.c']]], + ['icaltime_5ffrom_5fstring_181',['icaltime_from_string',['../icaltime_8h.html#a1b66b9f52a9823b95e4cd33f9dd9b8e5',1,'icaltime.c']]], + ['icaltime_5ffrom_5ftimet_5fwith_5fzone_182',['icaltime_from_timet_with_zone',['../icaltime_8h.html#a86a8cb717a14ef07e75060e22711d401',1,'icaltime.c']]], + ['icaltime_5fget_5ftimezone_183',['icaltime_get_timezone',['../icaltime_8h.html#a5a59eb5d3951c49e5d62953fcffda3b0',1,'icaltime.c']]], + ['icaltime_5fget_5ftzid_184',['icaltime_get_tzid',['../icaltime_8h.html#a2189e2b4850921f206f87e7112e9e55b',1,'icaltime.c']]], + ['icaltime_5fis_5fdate_185',['icaltime_is_date',['../icaltime_8h.html#a738950db4a3f2751f414a2a71c1ea4d2',1,'icaltime.c']]], + ['icaltime_5fis_5fleap_5fyear_186',['icaltime_is_leap_year',['../icaltime_8h.html#accb8f16099b25c282dc4f7e33531dae4',1,'icaltime.c']]], + ['icaltime_5fis_5fnull_5ftime_187',['icaltime_is_null_time',['../icaltime_8h.html#a97483d9daf2fc8f8b1bbdc0c75ced095',1,'icaltime.c']]], + ['icaltime_5fis_5futc_188',['icaltime_is_utc',['../icaltime_8h.html#a097e18ea14aceb3dbc68c370f26f9b6c',1,'icaltime.c']]], + ['icaltime_5fis_5fvalid_5ftime_189',['icaltime_is_valid_time',['../icaltime_8h.html#aaa1991e79202eabe71080a83e1e5c08e',1,'icaltime.c']]], + ['icaltime_5fnormalize_190',['icaltime_normalize',['../icaltime_8h.html#ae02d3d34fd01c3d0e356cea4f789bace',1,'icaltime.c']]], + ['icaltime_5fnull_5fdate_191',['icaltime_null_date',['../icaltime_8h.html#a7c210823a8ad13687089f12ad285df25',1,'icaltime.c']]], + ['icaltime_5fnull_5ftime_192',['icaltime_null_time',['../icaltime_8h.html#af3f088ebb60b8716131742ef16eb7ce1',1,'icaltime.c']]], + ['icaltime_5fset_5ftimezone_193',['icaltime_set_timezone',['../icaltime_8h.html#aea5c3a433f2919943b42d7d6400f6304',1,'icaltime.c']]], + ['icaltime_5fspan_5fcontains_194',['icaltime_span_contains',['../icaltime_8h.html#a1b02dd66ec510ce626aa12395d1fdf79',1,'icaltime.c']]], + ['icaltime_5fspan_5fnew_195',['icaltime_span_new',['../icaltime_8h.html#a4e024d5c8a41b226a31b573d0a86b722',1,'icaltime.c']]], + ['icaltime_5fspan_5foverlaps_196',['icaltime_span_overlaps',['../icaltime_8h.html#a87a564f5d5c8ebb0746a1799817cfa83',1,'icaltime.c']]], + ['icaltime_5fstart_5fdoy_5fweek_197',['icaltime_start_doy_week',['../icaltime_8h.html#a3e4ae35fd30b3d2b829f0e5bb7328e31',1,'icaltime.c']]], + ['icaltime_5fsubtract_198',['icaltime_subtract',['../icalduration_8h.html#aaafcb16e5d2aaa6eb0e20fdac419fc0d',1,'icalduration.c']]], + ['icaltime_5ftoday_199',['icaltime_today',['../icaltime_8h.html#a78f4440633835d80c182488b11df9372',1,'icaltime.c']]], + ['icaltime_5fweek_5fnumber_200',['icaltime_week_number',['../icaltime_8h.html#a5be09f07b9444f73a66d179ae61f137a',1,'icaltime.c']]], + ['icaltimezone_5fdump_5fchanges_201',['icaltimezone_dump_changes',['../icaltimezone_8h.html#a12c7192c39744d49e4c23249926ae22a',1,'icaltimezone.c']]], + ['icaltimezone_5ffree_202',['icaltimezone_free',['../icaltimezone_8h.html#aa96c3397fd8bcce74e1f220ca3fc333d',1,'icaltimezone.c']]], + ['icaltimezone_5ffree_5fbuiltin_5ftimezones_203',['icaltimezone_free_builtin_timezones',['../icaltimezone_8h.html#a7596677c1f0c38bac7e687f37e19e397',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_204',['icaltimezone_get_builtin_timezone',['../icaltimezone_8h.html#a8670c0a0730ddb27a2a59efb9b476b24',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_5ffrom_5foffset_205',['icaltimezone_get_builtin_timezone_from_offset',['../icaltimezone_8h.html#a1224ff59d8d1618ee41f17b5c6357312',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezone_5ffrom_5ftzid_206',['icaltimezone_get_builtin_timezone_from_tzid',['../icaltimezone_8h.html#ad05c4a96c4e7095f574641dfb9ceafc5',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fbuiltin_5ftimezones_207',['icaltimezone_get_builtin_timezones',['../icaltimezone_8h.html#a8b765c5eb599505d208c89a799e13d21',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fcomponent_208',['icaltimezone_get_component',['../icaltimezone_8h.html#a684813584e0e55460be636e8ebc81f53',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5fdisplay_5fname_209',['icaltimezone_get_display_name',['../icaltimezone_8h.html#aaf3d9c36dca3dd4e2233aac2a88997bc',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flatitude_210',['icaltimezone_get_latitude',['../icaltimezone_8h.html#acfc51cb64dcc62ff668df02073c803d6',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flocation_211',['icaltimezone_get_location',['../icaltimezone_8h.html#a876e1b3dc89bc76961708fe6974a03c1',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flocation_5ffrom_5fvtimezone_212',['icaltimezone_get_location_from_vtimezone',['../icaltimezone_8h.html#a4666bfd001ff5654fc3ee851e2e2338e',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5flongitude_213',['icaltimezone_get_longitude',['../icaltimezone_8h.html#a346caee2838d8dfbeb07bc9c66b04e2b',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftzid_214',['icaltimezone_get_tzid',['../icaltimezone_8h.html#a8d74150570a8a31e1fb8fe976fea9250',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftznames_215',['icaltimezone_get_tznames',['../icaltimezone_8h.html#a7de03feecf3cbb0c7899b36d1285fd63',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5ftznames_5ffrom_5fvtimezone_216',['icaltimezone_get_tznames_from_vtimezone',['../icaltimezone_8h.html#a48a804fe8f8d61aed3efbf86504baf79',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5foffset_217',['icaltimezone_get_utc_offset',['../icaltimezone_8h.html#a1ebe99e4975a461da82f4add92ca01d4',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5foffset_5fof_5futc_5ftime_218',['icaltimezone_get_utc_offset_of_utc_time',['../icaltimezone_8h.html#af6c4b7dc1e0c056bfbbd0f833d039b5d',1,'icaltimezone.c']]], + ['icaltimezone_5fget_5futc_5ftimezone_219',['icaltimezone_get_utc_timezone',['../icaltimezone_8h.html#a8e9c520fc9a3ec85f5cc63fef1548583',1,'icaltimezone.c']]], + ['icaltimezone_5fnew_220',['icaltimezone_new',['../icaltimezone_8h.html#a01b653e3e1f9feefc63e7d71c036f330',1,'icaltimezone.c']]], + ['icaltimezone_5fset_5fcomponent_221',['icaltimezone_set_component',['../icaltimezone_8h.html#ac06a9a060f021b7f4bdff282b2638357',1,'icaltimezone.c']]], + ['icaltimezone_5fset_5ftzid_5fprefix_222',['icaltimezone_set_tzid_prefix',['../icaltimezone_8h.html#a04849ce67c1a529f19d695b74cb238fe',1,'icaltimezone.c']]], + ['icalvalue_5fdecode_5fical_5fstring_223',['icalvalue_decode_ical_string',['../icalvalue_8h.html#ad809218d40ebb1e356f00c563e34e3d6',1,'icalvalue.c']]], + ['icalvalue_5fencode_5fical_5fstring_224',['icalvalue_encode_ical_string',['../icalvalue_8h.html#a47037dfa87d634a358c39055c01b9f79',1,'icalvalue.c']]], + ['icalvalue_5fget_5fparent_225',['icalvalue_get_parent',['../icalproperty_8h.html#aca3ee9b1a28fa212f294962bd84c6c93',1,'icalvalue.c']]], + ['icalvalue_5fkind_5fis_5fvalid_226',['icalvalue_kind_is_valid',['../icalvalue_8h.html#ada00c51fccf5a71ec7e43fb6207b634a',1,'icalvalue.h']]], + ['icalvalue_5fset_5fparent_227',['icalvalue_set_parent',['../icalproperty_8h.html#a810f13ffbf32703b6f1e71ad3e0189c7',1,'icalvalue.c']]] +]; diff --git a/static/apidocs/search/functions_7.js b/static/apidocs/search/functions_7.js new file mode 100644 index 00000000..620df0eb --- /dev/null +++ b/static/apidocs/search/functions_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['juldat_0',['juldat',['../astime_8h.html#adaeb2db35e791e5539b565e85e697cab',1,'astime.h']]] +]; diff --git a/static/apidocs/search/functions_8.js b/static/apidocs/search/functions_8.js new file mode 100644 index 00000000..d407381c --- /dev/null +++ b/static/apidocs/search/functions_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['operator_20icalspanlist_20_2a_0',['operator icalspanlist *',['../classLibICal_1_1ICalSpanList.html#a56cb25afba3592979d872608d2302243',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/functions_9.js b/static/apidocs/search/functions_9.js new file mode 100644 index 00000000..5e3622df --- /dev/null +++ b/static/apidocs/search/functions_9.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['remove_0',['remove',['../classLibICal_1_1VComponent.html#ae251ebedad802b6d982af2926ff289a2',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/functions_a.js b/static/apidocs/search/functions_a.js new file mode 100644 index 00000000..608244e1 --- /dev/null +++ b/static/apidocs/search/functions_a.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['set_5fvalue_0',['set_value',['../classLibICal_1_1ICalProperty.html#af229f40785452ed3893399e1dc4df356',1,'LibICal::ICalProperty']]], + ['set_5fzone_5fdirectory_1',['set_zone_directory',['../icaltimezone_8h.html#af35f72898e3992529e12c07c62659b22',1,'icaltimezone.c']]], + ['string_5fto_5fkind_2',['string_to_kind',['../classLibICal_1_1VComponent.html#a78439d802b6d94686b0aada243532ec4',1,'LibICal::VComponent']]], + ['strip_5ferrors_3',['strip_errors',['../classLibICal_1_1VComponent.html#abf328d7ef0ffcffa9099c57bfd092b30',1,'LibICal::VComponent']]] +]; diff --git a/static/apidocs/search/functions_b.js b/static/apidocs/search/functions_b.js new file mode 100644 index 00000000..2b7af3f5 --- /dev/null +++ b/static/apidocs/search/functions_b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_7eicalspanlist_0',['~ICalSpanList',['../classLibICal_1_1ICalSpanList.html#aa60a6309d691037928c20d06709e47c2',1,'LibICal::ICalSpanList']]] +]; diff --git a/static/apidocs/search/mag.svg b/static/apidocs/search/mag.svg new file mode 100644 index 00000000..ffb6cf0d --- /dev/null +++ b/static/apidocs/search/mag.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/static/apidocs/search/mag_d.svg b/static/apidocs/search/mag_d.svg new file mode 100644 index 00000000..4122773f --- /dev/null +++ b/static/apidocs/search/mag_d.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/static/apidocs/search/mag_sel.svg b/static/apidocs/search/mag_sel.svg new file mode 100644 index 00000000..553dba87 --- /dev/null +++ b/static/apidocs/search/mag_sel.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/static/apidocs/search/mag_seld.svg b/static/apidocs/search/mag_seld.svg new file mode 100644 index 00000000..c906f84c --- /dev/null +++ b/static/apidocs/search/mag_seld.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/static/apidocs/search/pages_0.js b/static/apidocs/search/pages_0.js new file mode 100644 index 00000000..2792ae9d --- /dev/null +++ b/static/apidocs/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['libical_20_2d_20an_20implementation_20of_20icalendar_20protocols_20and_20data_20formats_0',['Libical - an implementation of iCalendar protocols and data formats',['../index.html',1,'']]] +]; diff --git a/static/apidocs/search/search.css b/static/apidocs/search/search.css new file mode 100644 index 00000000..19f76f9d --- /dev/null +++ b/static/apidocs/search/search.css @@ -0,0 +1,291 @@ +/*---------------- Search Box positioning */ + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search box styling */ + +.SRPage * { + font-weight: normal; + line-height: normal; +} + +dark-mode-toggle { + margin-left: 5px; + display: flex; + float: right; +} + +#MSearchBox { + display: inline-block; + white-space : nowrap; + background: var(--search-background-color); + border-radius: 0.65em; + box-shadow: var(--search-box-shadow); + z-index: 102; +} + +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; +} + +#MSearchSelect { + display: inline-block; + vertical-align: middle; + width: 20px; + height: 19px; + background-image: var(--search-magnification-select-image); + margin: 0 0 0 0.3em; + padding: 0; +} + +#MSearchSelectExt { + display: inline-block; + vertical-align: middle; + width: 10px; + height: 19px; + background-image: var(--search-magnification-image); + margin: 0 0 0 0.5em; + padding: 0; +} + + +#MSearchField { + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 19px; + margin: 0 0.15em; + padding: 0; + line-height: 1em; + border:none; + color: var(--search-foreground-color); + outline: none; + font-family: var(--font-family-search); + -webkit-border-radius: 0px; + border-radius: 0px; + background: none; +} + +@media(hover: none) { + /* to avoid zooming on iOS */ + #MSearchField { + font-size: 16px; + } +} + +#MSearchBox .right { + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; +} + +#MSearchClose { + display: none; + font-size: inherit; + background : none; + border: none; + margin: 0; + padding: 0; + outline: none; + +} + +#MSearchCloseImg { + padding: 0.3em; + margin: 0; +} + +.MSearchBoxActive #MSearchField { + color: var(--search-active-color); +} + + + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid var(--search-filter-border-color); + background-color: var(--search-filter-background-color); + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt var(--font-family-search); + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: var(--font-family-monospace); + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: var(--search-filter-foreground-color); + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: var(--search-filter-foreground-color); + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: var(--search-filter-highlight-text-color); + background-color: var(--search-filter-highlight-bg-color); + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + /*width: 60ex;*/ + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid var(--search-results-border-color); + background-color: var(--search-results-background-color); + z-index:10000; + width: 300px; + height: 400px; + overflow: auto; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +div.SRPage { + margin: 5px 2px; + background-color: var(--search-results-background-color); +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); + font-size: 8pt; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; + font-family: var(--font-family-search); +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; + font-family: var(--font-family-search); +} + +.SRResult { + display: none; +} + +div.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: var(--nav-gradient-active-image-parent); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/static/apidocs/search/search.js b/static/apidocs/search/search.js new file mode 100644 index 00000000..9b7a52a1 --- /dev/null +++ b/static/apidocs/search/search.js @@ -0,0 +1,820 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var jsFile; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js'; + } + + var loadJS = function(url, impl, loc){ + var scriptTag = document.createElement('script'); + scriptTag.src = url; + scriptTag.onload = impl; + scriptTag.onreadystatechange = impl; + loc.appendChild(scriptTag); + } + + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + var domSearchBox = this.DOMSearchBox(); + var domPopupSearchResults = this.DOMPopupSearchResults(); + var domSearchClose = this.DOMSearchClose(); + var resultsPath = this.resultsPath; + + var handleResults = function() { + document.getElementById("Loading").style.display="none"; + if (typeof searchData !== 'undefined') { + createResults(resultsPath); + document.getElementById("NoMatches").style.display="none"; + } + + if (idx!=-1) { + searchResults.Search(searchValue); + } else { // no file with search results => force empty search results + searchResults.Search('===='); + } + + if (domPopupSearchResultsWindow.style.display!='block') + { + domSearchClose.style.display = 'inline-block'; + var left = getXPos(domSearchBox) + 150; + var top = getYPos(domSearchBox) + 20; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + var maxWidth = document.body.clientWidth; + var maxHeight = document.body.clientHeight; + var width = 300; + if (left<10) left=10; + if (width+left+8>maxWidth) width=maxWidth-left-8; + var height = 400; + if (height+top+8>maxHeight) height=maxHeight-top-8; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResultsWindow.style.height = height + 'px'; + } + } + + if (jsFile) { + loadJS(jsFile, handleResults, this.DOMPopupSearchResultsWindow()); + } else { + handleResults(); + } + + this.lastSearchValue = searchValue; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + this.searchActive = true; + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + this.DOMSearchField().value = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults(resultsPath) +{ + var results = document.getElementById("SRResults"); + results.innerHTML = ''; + for (var e=0; e + + + + + + +Libical API Documentation: sspm.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    sspm.h
    +
    +
    +
    1/*======================================================================
    +
    2 FILE: sspm.h Mime Parser
    +
    3 CREATOR: eric 25 June 2000
    +
    4
    +
    5 (C) COPYRIGHT 2000, Eric Busboom <eric@civicknowledge.com>
    +
    6
    +
    7 This library is free software; you can redistribute it and/or modify
    +
    8 it under the terms of either:
    +
    9
    +
    10 The LGPL as published by the Free Software Foundation, version
    +
    11 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
    +
    12
    +
    13 Or:
    +
    14
    +
    15 The Mozilla Public License Version 2.0. You may obtain a copy of
    +
    16 the License at https://www.mozilla.org/MPL/
    +
    17
    +
    18 This library is free software; you can redistribute it and/or modify
    +
    19 it under the terms of either:
    +
    20
    +
    21 The LGPL as published by the Free Software Foundation, version
    +
    22 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
    +
    23
    +
    24 Or:
    +
    25
    +
    26 The Mozilla Public License Version 2.0. You may obtain a copy of
    +
    27 the License at https://www.mozilla.org/MPL/
    +
    28
    +
    29 The Initial Developer of the Original Code is Eric Busboom
    +
    30======================================================================*/
    +
    31
    +
    32#ifndef ICAL_SSPM_H
    +
    33#define ICAL_SSPM_H
    +
    34
    +
    35#include "libical_ical_export.h"
    +
    36
    +
    37enum sspm_major_type
    +
    38{
    +
    39 SSPM_NO_MAJOR_TYPE,
    +
    40 SSPM_TEXT_MAJOR_TYPE,
    +
    41 SSPM_IMAGE_MAJOR_TYPE,
    +
    42 SSPM_AUDIO_MAJOR_TYPE,
    +
    43 SSPM_VIDEO_MAJOR_TYPE,
    +
    44 SSPM_APPLICATION_MAJOR_TYPE,
    +
    45 SSPM_MULTIPART_MAJOR_TYPE,
    +
    46 SSPM_MESSAGE_MAJOR_TYPE,
    +
    47 SSPM_UNKNOWN_MAJOR_TYPE
    +
    48};
    +
    49
    +
    50enum sspm_minor_type
    +
    51{
    +
    52 SSPM_NO_MINOR_TYPE,
    +
    53 SSPM_ANY_MINOR_TYPE,
    +
    54 SSPM_PLAIN_MINOR_TYPE,
    +
    55 SSPM_RFC822_MINOR_TYPE,
    +
    56 SSPM_DIGEST_MINOR_TYPE,
    +
    57 SSPM_CALENDAR_MINOR_TYPE,
    +
    58 SSPM_MIXED_MINOR_TYPE,
    +
    59 SSPM_RELATED_MINOR_TYPE,
    +
    60 SSPM_ALTERNATIVE_MINOR_TYPE,
    +
    61 SSPM_PARALLEL_MINOR_TYPE,
    +
    62 SSPM_UNKNOWN_MINOR_TYPE
    +
    63};
    +
    64
    +
    65enum sspm_encoding
    +
    66{
    +
    67 SSPM_NO_ENCODING,
    +
    68 SSPM_QUOTED_PRINTABLE_ENCODING,
    +
    69 SSPM_8BIT_ENCODING,
    +
    70 SSPM_7BIT_ENCODING,
    +
    71 SSPM_BINARY_ENCODING,
    +
    72 SSPM_BASE64_ENCODING,
    +
    73 SSPM_UNKNOWN_ENCODING
    +
    74};
    +
    75
    +
    76enum sspm_error
    +
    77{
    +
    78 SSPM_NO_ERROR,
    +
    79 SSPM_UNEXPECTED_BOUNDARY_ERROR,
    +
    80 SSPM_WRONG_BOUNDARY_ERROR,
    +
    81 SSPM_NO_BOUNDARY_ERROR,
    +
    82 SSPM_NO_HEADER_ERROR,
    +
    83 SSPM_MALFORMED_HEADER_ERROR
    +
    84};
    +
    85
    + +
    87{
    +
    88 int def;
    +
    89 char *boundary;
    +
    90 enum sspm_major_type major;
    +
    91 enum sspm_minor_type minor;
    +
    92 char *minor_text;
    +
    93 char **content_type_params;
    +
    94 char *charset;
    +
    95 enum sspm_encoding encoding;
    +
    96 char *filename;
    +
    97 char *content_id;
    +
    98 enum sspm_error error;
    +
    99 char *error_text;
    +
    100};
    +
    101
    + +
    103{
    +
    104 struct sspm_header header;
    +
    105 int level;
    +
    106 size_t data_size;
    +
    107 void *data;
    +
    108};
    +
    109
    + +
    111{
    +
    112 enum sspm_major_type major;
    +
    113 enum sspm_minor_type minor;
    +
    114 void *(*new_part) (void);
    +
    115 void (*add_line) (void *part, struct sspm_header * header, const char *line, size_t size);
    +
    116 void *(*end_part) (void *part);
    +
    117 void (*free_part) (void *part);
    +
    118};
    +
    119
    +
    120LIBICAL_ICAL_EXPORT const char *sspm_major_type_string(enum sspm_major_type type);
    +
    121
    +
    122LIBICAL_ICAL_EXPORT const char *sspm_minor_type_string(enum sspm_minor_type type);
    +
    123
    +
    124LIBICAL_ICAL_EXPORT const char *sspm_encoding_string(enum sspm_encoding type);
    +
    125
    +
    126LIBICAL_ICAL_EXPORT int sspm_parse_mime(struct sspm_part *parts,
    +
    127 size_t max_parts,
    +
    128 const struct sspm_action_map *actions,
    +
    129 char *(*get_string) (char *s, size_t size, void *data),
    +
    130 void *get_string_data, struct sspm_header *first_header);
    +
    131
    +
    132LIBICAL_ICAL_EXPORT void sspm_free_parts(struct sspm_part *parts, size_t max_parts);
    +
    133
    +
    134LIBICAL_ICAL_EXPORT char *decode_quoted_printable(char *dest, char *src, size_t *size);
    +
    135
    +
    136LIBICAL_ICAL_EXPORT char *decode_base64(char *dest, char *src, size_t *size);
    +
    137
    +
    138LIBICAL_ICAL_EXPORT int sspm_write_mime(struct sspm_part *parts, size_t num_parts,
    +
    139 char **output_string, const char *header);
    +
    140
    +
    141#endif /* ICAL_SSPM_H */
    +
    Definition sspm.h:111
    +
    Definition sspm.h:87
    +
    Definition sspm.h:103
    +
    + + + + diff --git a/static/apidocs/structLexBuf.html b/static/apidocs/structLexBuf.html new file mode 100644 index 00000000..d0baccd2 --- /dev/null +++ b/static/apidocs/structLexBuf.html @@ -0,0 +1,126 @@ + + + + + + + +Libical API Documentation: LexBuf Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    LexBuf Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +short buf [64]
     
    +unsigned long curPos
     
    +unsigned long getPtr
     
    +FILE * inputFile
     
    +unsigned long inputLen
     
    +char * inputString
     
    +unsigned long len
     
    +enum LexMode lexModeStack [10]
     
    +unsigned long lexModeStackTop
     
    +unsigned long maxToken
     
    +char * strs
     
    +unsigned long strsLen
     
    +
    The documentation for this struct was generated from the following file:
      +
    • vcc.c
    • +
    +
    + + + + diff --git a/static/apidocs/structOFile.html b/static/apidocs/structOFile.html new file mode 100644 index 00000000..3b21b1ee --- /dev/null +++ b/static/apidocs/structOFile.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: OFile Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    OFile Struct Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Data Fields

    +int alloc:1
     
    +unsigned int fail:1
     
    +FILE * fp
     
    +int len
     
    +int limit
     
    +char * s
     
    +
    The documentation for this struct was generated from the following file:
      +
    • vobject.c
    • +
    +
    + + + + diff --git a/static/apidocs/structPreDefProp.html b/static/apidocs/structPreDefProp.html new file mode 100644 index 00000000..ef79b938 --- /dev/null +++ b/static/apidocs/structPreDefProp.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: PreDefProp Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    PreDefProp Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +const char * alias
     
    +const char ** fields
     
    +unsigned int flags
     
    +const char * name
     
    +
    The documentation for this struct was generated from the following file:
      +
    • vobject.c
    • +
    +
    + + + + diff --git a/static/apidocs/structStrItem.html b/static/apidocs/structStrItem.html new file mode 100644 index 00000000..8aa4028d --- /dev/null +++ b/static/apidocs/structStrItem.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: StrItem Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    StrItem Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +StrItemnext
     
    +unsigned int refCnt
     
    +const char * s
     
    +
    The documentation for this struct was generated from the following file:
      +
    • vobject.c
    • +
    +
    + + + + diff --git a/static/apidocs/structVObject.html b/static/apidocs/structVObject.html new file mode 100644 index 00000000..8375c950 --- /dev/null +++ b/static/apidocs/structVObject.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: VObject Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    VObject Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +const char * id
     
    +VObjectnext
     
    +VObjectprop
     
    +ValueItem val
     
    +unsigned short valType
     
    +
    The documentation for this struct was generated from the following file:
      +
    • vobject.c
    • +
    +
    + + + + diff --git a/static/apidocs/structVObjectIterator.html b/static/apidocs/structVObjectIterator.html new file mode 100644 index 00000000..97fb54ae --- /dev/null +++ b/static/apidocs/structVObjectIterator.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: VObjectIterator Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    VObjectIterator Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +VObjectnext
     
    +VObjectstart
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/struct__compat__tzids.html b/static/apidocs/struct__compat__tzids.html new file mode 100644 index 00000000..846988ef --- /dev/null +++ b/static/apidocs/struct__compat__tzids.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: _compat_tzids Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    _compat_tzids Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +int slashes
     
    +const char * tzid
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltimezone.c
    • +
    +
    + + + + diff --git a/static/apidocs/struct__icalarray.html b/static/apidocs/struct__icalarray.html new file mode 100644 index 00000000..bd37f332 --- /dev/null +++ b/static/apidocs/struct__icalarray.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: _icalarray Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    _icalarray Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +void ** chunks
     
    +size_t element_size
     
    +size_t increment_size
     
    +size_t num_elements
     
    +size_t space_allocated
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/struct__icaltimezone.html b/static/apidocs/struct__icaltimezone.html new file mode 100644 index 00000000..27779a9e --- /dev/null +++ b/static/apidocs/struct__icaltimezone.html @@ -0,0 +1,230 @@ + + + + + + + +Libical API Documentation: _icaltimezone Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    _icaltimezone Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    icaltimezonebuiltin_timezone
     
    icalarraychanges
     
    icalcomponentcomponent
     
    int end_year
     
    +double latitude
     
    char * location
     
    double longitude
     
    char * tzid
     
    char * tznames
     
    +

    Field Documentation

    + +

    ◆ builtin_timezone

    + +
    +
    + + + + +
    icaltimezone* _icaltimezone::builtin_timezone
    +
    +

    If this is not NULL it points to the builtin icaltimezone that the above TZID refers to. This icaltimezone should be used instead when accessing the timezone changes data, so that the expanded timezone changes data is shared between calendar components.

    + +
    +
    + +

    ◆ changes

    + +
    +
    + + + + +
    icalarray* _icaltimezone::changes
    +
    +

    A dynamically-allocated array of time zone changes, sorted by the time of the change in local time. So we can do fast binary-searches to convert from local time to UTC.

    + +
    +
    + +

    ◆ component

    + +
    +
    + + + + +
    icalcomponent* _icaltimezone::component
    +
    +

    The toplevel VTIMEZONE component loaded from the .ics file for this timezone. If we need to regenerate the changes data we need this.

    + +
    +
    + +

    ◆ end_year

    + +
    +
    + + + + +
    int _icaltimezone::end_year
    +
    +

    This is the last year for which we have expanded the data to. If we need to calculate a date past this we need to expand the timezone component data from scratch.

    + +
    +
    + +

    ◆ location

    + +
    +
    + + + + +
    char* _icaltimezone::location
    +
    +

    The location for the timezone, e.g. "Africa/Accra" for the Olson database. We look for this in the "LOCATION" or "X-LIC-LOCATION" properties of the VTIMEZONE component. It isn't a standard property yet. This will be NULL if no location is found in the VTIMEZONE.

    + +
    +
    + +

    ◆ longitude

    + +
    +
    + + + + +
    double _icaltimezone::longitude
    +
    +

    The coordinates of the city, in degrees.

    + +
    +
    + +

    ◆ tzid

    + +
    +
    + + + + +
    char* _icaltimezone::tzid
    +
    +

    The unique ID of this timezone, e.g. "/citadel.org/Olson_20010601_1/Africa/Banjul". This should only be used to identify a VTIMEZONE. It is not meant to be displayed to the user in any form.

    + +
    +
    + +

    ◆ tznames

    + +
    +
    + + + + +
    char* _icaltimezone::tznames
    +
    +

    This will be set to a combination of the TZNAME properties from the last STANDARD and DAYLIGHT components in the VTIMEZONE, e.g. "EST/EDT". If they both use the same TZNAME, or only one type of component is found, then only one TZNAME will appear, e.g. "AZOT". If no TZNAME is found this will be NULL.

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/struct__icaltimezonechange.html b/static/apidocs/struct__icaltimezonechange.html new file mode 100644 index 00000000..316f3db3 --- /dev/null +++ b/static/apidocs/struct__icaltimezonechange.html @@ -0,0 +1,202 @@ + + + + + + + +Libical API Documentation: _icaltimezonechange Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    _icaltimezonechange Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +int day
     
    +int hour
     
    int is_daylight
     
    +int minute
     
    int month
     
    int prev_utc_offset
     
    int second
     
    int utc_offset
     
    int year
     
    +

    Field Documentation

    + +

    ◆ is_daylight

    + +
    +
    + + + + +
    int _icaltimezonechange::is_daylight
    +
    +

    Whether this is STANDARD or DAYLIGHT time.

    + +
    +
    + +

    ◆ month

    + +
    +
    + + + + +
    int _icaltimezonechange::month
    +
    +

    1 (Jan) to 12 (Dec).

    + +
    +
    + +

    ◆ prev_utc_offset

    + +
    +
    + + + + +
    int _icaltimezonechange::prev_utc_offset
    +
    +

    The offset to add to UTC, before this change, in seconds.

    + +
    +
    + +

    ◆ second

    + +
    +
    + + + + +
    int _icaltimezonechange::second
    +
    +

    The time that the change came into effect, in UTC. Note that the prev_utc_offset applies to this local time, since we haven't changed to the new offset yet.

    + +
    +
    + +

    ◆ utc_offset

    + +
    +
    + + + + +
    int _icaltimezonechange::utc_offset
    +
    +

    The offset to add to UTC to get local time, in seconds.

    + +
    +
    + +

    ◆ year

    + +
    +
    + + + + +
    int _icaltimezonechange::year
    +
    +

    Actual year, e.g. 2001.

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltimezone.c
    • +
    +
    + + + + diff --git a/static/apidocs/struct__icalvcal__defaults.html b/static/apidocs/struct__icalvcal__defaults.html new file mode 100644 index 00000000..8b7ec3c5 --- /dev/null +++ b/static/apidocs/struct__icalvcal__defaults.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: _icalvcal_defaults Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    _icalvcal_defaults Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +char * alarm_audio_fmttype
     
    +char * alarm_audio_url
     
    +char * alarm_description
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structbuffer__ring.html b/static/apidocs/structbuffer__ring.html new file mode 100644 index 00000000..ee709816 --- /dev/null +++ b/static/apidocs/structbuffer__ring.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: buffer_ring Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    buffer_ring Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +int pos
     
    +void * ring [2500]
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalmemory.c
    • +
    +
    + + + + diff --git a/static/apidocs/structconversion__table__struct.html b/static/apidocs/structconversion__table__struct.html new file mode 100644 index 00000000..e33a58a1 --- /dev/null +++ b/static/apidocs/structconversion__table__struct.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: conversion_table_struct Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    conversion_table_struct Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +void *(* conversion_func )(int icaltype, VObject *o, icalcomponent *comp, icalvcal_defaults *defaults)
     
    +int icaltype
     
    +enum datatype type
     
    +const char * vcalname
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalvcal.c
    • +
    +
    + + + + diff --git a/static/apidocs/structencoding__map.html b/static/apidocs/structencoding__map.html new file mode 100644 index 00000000..78c8e9ec --- /dev/null +++ b/static/apidocs/structencoding__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: encoding_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    encoding_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +enum sspm_encoding encoding
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • sspm.c
    • +
    +
    + + + + diff --git a/static/apidocs/structexpand__split__map__struct.html b/static/apidocs/structexpand__split__map__struct.html new file mode 100644 index 00000000..00d4c4ae --- /dev/null +++ b/static/apidocs/structexpand__split__map__struct.html @@ -0,0 +1,98 @@ + + + + + + + +Libical API Documentation: expand_split_map_struct Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    expand_split_map_struct Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +icalrecurrencetype_frequency frequency
     
    +short map [BY_SET_POS+1]
     
    +

    Detailed Description

    +

    The split map indicates, for a particular interval, whether a BY_* rule part expands the number of instances in the occurrence set or contracts it. 1=> contract, 2=>expand, and 3 means the pairing is not allowed.

    +

    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structfreq__map.html b/static/apidocs/structfreq__map.html new file mode 100644 index 00000000..6f984c53 --- /dev/null +++ b/static/apidocs/structfreq__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: freq_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    freq_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +icalrecurrencetype_frequency kind
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalattach__impl.html b/static/apidocs/structicalattach__impl.html new file mode 100644 index 00000000..2bec603d --- /dev/null +++ b/static/apidocs/structicalattach__impl.html @@ -0,0 +1,123 @@ + + + + + + + +Libical API Documentation: icalattach_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalattach_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +unsigned int is_url:1
     
    +int refcount
     
    +union { 
     
    +   struct { 
     
    +      char *   data 
     
    +      icalattach_free_fn_t   free_fn 
     
    +      void *   free_fn_data 
     
       }   data 
     
    +   struct { 
     
    +      char *   url 
     
       }   url 
     
    u 
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalbdbset__id.html b/static/apidocs/structicalbdbset__id.html new file mode 100644 index 00000000..2bfe69f0 --- /dev/null +++ b/static/apidocs/structicalbdbset__id.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: icalbdbset_id Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalbdbset_id Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +char * recurrence_id
     
    +int sequence
     
    +char * uid
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalbdbset.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalbdbset__impl.html b/static/apidocs/structicalbdbset__impl.html new file mode 100644 index 00000000..9333a16d --- /dev/null +++ b/static/apidocs/structicalbdbset__impl.html @@ -0,0 +1,147 @@ + + + + + + + +Libical API Documentation: icalbdbset_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalbdbset_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +int changed
     
    +icalcomponentcluster
     
    +void * data
     
    +int datasize
     
    +DBC * dbcp
     
    +DB_ENV * dbenv
     
    +DB * dbp
     
    +icalgaugegauge
     
    +const char * key
     
    +const char * path
     
    +DB * sdbp
     
    +const char * sindex
     
    +const char * subdb
     
    icalset super
     
    +

    Field Documentation

    + +

    ◆ super

    + +
    +
    + + + + +
    icalset icalbdbset_impl::super
    +
    +

    parent class

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalbdbset__options.html b/static/apidocs/structicalbdbset__options.html new file mode 100644 index 00000000..05e25700 --- /dev/null +++ b/static/apidocs/structicalbdbset__options.html @@ -0,0 +1,179 @@ + + + + + + + +Libical API Documentation: icalbdbset_options Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalbdbset_options Struct Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Data Fields

    +int(* callback )(DB *db, const DBT *dbt1, const DBT *dbt2, DBT *dbt3)
     
    int dbtype
     
    u_int32_t flag
     
    int mode
     
    char *(* pfunc )(const DBT *dbt)
     
    icalbdbset_subdb_type subdb
     
    +

    Field Documentation

    + +

    ◆ dbtype

    + +
    +
    + + + + +
    int icalbdbset_options::dbtype
    +
    +

    db_open type: DB_HASH | DB_BTREE

    + +
    +
    + +

    ◆ flag

    + +
    +
    + + + + +
    u_int32_t icalbdbset_options::flag
    +
    +

    DB->set_flags(): DB_DUP | DB_DUPSORT

    + +
    +
    + +

    ◆ mode

    + +
    +
    + + + + +
    int icalbdbset_options::mode
    +
    +

    file mode

    + +
    +
    + +

    ◆ pfunc

    + +
    +
    + + + + +
    char *(* icalbdbset_options::pfunc) (const DBT *dbt)
    +
    +

    parsing function

    + +
    +
    + +

    ◆ subdb

    + +
    +
    + + + + +
    icalbdbset_subdb_type icalbdbset_options::subdb
    +
    +

    the subdatabase to open

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalcalendar__impl.html b/static/apidocs/structicalcalendar__impl.html new file mode 100644 index 00000000..28da547b --- /dev/null +++ b/static/apidocs/structicalcalendar__impl.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: icalcalendar_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalcalendar_impl Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +icalsetbooked
     
    +char * dir
     
    +icalsetfreebusy
     
    +icalsetincoming
     
    +icalsetproperties
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalcalendar.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalclassify__map.html b/static/apidocs/structicalclassify__map.html new file mode 100644 index 00000000..050c97ad --- /dev/null +++ b/static/apidocs/structicalclassify__map.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: icalclassify_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalclassify_map Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +icalproperty_xlicclass class
     
    +int(* fn )(struct icalclassify_parts *comp, struct icalclassify_parts *match, const char *user)
     
    +icalproperty_method method
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalclassify.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalclassify__parts.html b/static/apidocs/structicalclassify__parts.html new file mode 100644 index 00000000..4e225b97 --- /dev/null +++ b/static/apidocs/structicalclassify__parts.html @@ -0,0 +1,120 @@ + + + + + + + +Libical API Documentation: icalclassify_parts Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalclassify_parts Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +icalcomponentc
     
    +struct icaltimetype dtstamp
     
    +icalcomponent_kind inner_kind
     
    +icalproperty_method method
     
    +char * organizer
     
    +struct icaltimetype recurrence_id
     
    +char * reply_attendee
     
    +icalparameter_partstat reply_partstat
     
    +int sequence
     
    +char * uid
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalclassify.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalcluster__impl.html b/static/apidocs/structicalcluster__impl.html new file mode 100644 index 00000000..c33f7598 --- /dev/null +++ b/static/apidocs/structicalcluster__impl.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: icalcluster_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalcluster_impl Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +int changed
     
    +icalcomponentdata
     
    +char id [5]
     
    +char * key
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalcompiter.html b/static/apidocs/structicalcompiter.html new file mode 100644 index 00000000..aeed989b --- /dev/null +++ b/static/apidocs/structicalcompiter.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icalcompiter Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalcompiter Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +pvl_elem iter
     
    +icalcomponent_kind kind
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalcomponent__impl.html b/static/apidocs/structicalcomponent__impl.html new file mode 100644 index 00000000..0bfb024b --- /dev/null +++ b/static/apidocs/structicalcomponent__impl.html @@ -0,0 +1,135 @@ + + + + + + + +Libical API Documentation: icalcomponent_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalcomponent_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +pvl_elem component_iterator
     
    +pvl_list components
     
    +char id [5]
     
    +icalcomponent_kind kind
     
    +struct icalcomponent_implparent
     
    +pvl_list properties
     
    +pvl_elem property_iterator
     
    icalarraytimezones
     
    +int timezones_sorted
     
    +char * x_name
     
    +

    Field Documentation

    + +

    ◆ timezones

    + +
    +
    + + + + +
    icalarray* icalcomponent_impl::timezones
    +
    +

    An array of icaltimezone structs. We use this so we can do fast lookup of timezones using binary searches. timezones_sorted is set to 0 whenever we add a timezone, so we remember to sort the array before doing a binary search.

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • icalcomponent.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalcomponent__kind__map.html b/static/apidocs/structicalcomponent__kind__map.html new file mode 100644 index 00000000..c1e623f3 --- /dev/null +++ b/static/apidocs/structicalcomponent__kind__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icalcomponent_kind_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalcomponent_kind_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +icalcomponent_kind kind
     
    +char name [20]
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalcomponent.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicaldatetimeperiodtype.html b/static/apidocs/structicaldatetimeperiodtype.html new file mode 100644 index 00000000..7992f459 --- /dev/null +++ b/static/apidocs/structicaldatetimeperiodtype.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icaldatetimeperiodtype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaldatetimeperiodtype Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +struct icalperiodtype period
     
    +struct icaltimetype time
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaldirset__impl.html b/static/apidocs/structicaldirset__impl.html new file mode 100644 index 00000000..a46199f9 --- /dev/null +++ b/static/apidocs/structicaldirset__impl.html @@ -0,0 +1,229 @@ + + + + + + + +Libical API Documentation: icaldirset_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaldirset_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + +

    +Data Fields

    icalclustercluster
     
    char * dir
     
    pvl_list directory
     
    pvl_elem directory_iterator
     
    int first_component
     
    icalgaugegauge
     
    icaldirset_options options
     
    icalset super
     
    +

    Field Documentation

    + +

    ◆ cluster

    + +
    +
    + + + + +
    icalcluster* icaldirset_impl::cluster
    +
    +

    cluster containing data

    + +
    +
    + +

    ◆ dir

    + +
    +
    + + + + +
    char* icaldirset_impl::dir
    +
    +

    directory containing ics files
    +

    + +
    +
    + +

    ◆ directory

    + +
    +
    + + + + +
    pvl_list icaldirset_impl::directory
    +
    +

    ???

    + +
    +
    + +

    ◆ directory_iterator

    + +
    +
    + + + + +
    pvl_elem icaldirset_impl::directory_iterator
    +
    +

    ???

    + +
    +
    + +

    ◆ first_component

    + +
    +
    + + + + +
    int icaldirset_impl::first_component
    +
    +

    ???

    + +
    +
    + +

    ◆ gauge

    + +
    +
    + + + + +
    icalgauge* icaldirset_impl::gauge
    +
    +

    gauge for filtering out data
    +

    + +
    +
    + +

    ◆ options

    + +
    +
    + + + + +
    icaldirset_options icaldirset_impl::options
    +
    +

    copy of options passed to icalset_new()

    + +
    +
    + +

    ◆ super

    + +
    +
    + + + + +
    icalset icaldirset_impl::super
    +
    +

    parent class

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaldirset__options.html b/static/apidocs/structicaldirset__options.html new file mode 100644 index 00000000..fddb1b20 --- /dev/null +++ b/static/apidocs/structicaldirset__options.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: icaldirset_options Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaldirset_options Struct Reference
    +
    +
    + + + + +

    +Data Fields

    int flags
     
    +

    Field Documentation

    + +

    ◆ flags

    + +
    +
    + + + + +
    int icaldirset_options::flags
    +
    +

    flags corresponding to the open() system call O_RDWR, etc.

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaldurationtype.html b/static/apidocs/structicaldurationtype.html new file mode 100644 index 00000000..055f1e80 --- /dev/null +++ b/static/apidocs/structicaldurationtype.html @@ -0,0 +1,115 @@ + + + + + + + +Libical API Documentation: icaldurationtype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaldurationtype Struct Reference
    +
    +
    + +

    A struct representing a duration. + More...

    + +

    #include <icalduration.h>

    + + + + + + + + + + + + + + +

    +Data Fields

    +unsigned int days
     
    +unsigned int hours
     
    +int is_neg
     
    +unsigned int minutes
     
    +unsigned int seconds
     
    +unsigned int weeks
     
    +

    Detailed Description

    +

    A struct representing a duration.

    +

    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalerror__state.html b/static/apidocs/structicalerror__state.html new file mode 100644 index 00000000..cd4649a1 --- /dev/null +++ b/static/apidocs/structicalerror__state.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icalerror_state Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalerror_state Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +icalerrorenum error
     
    +icalerrorstate state
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalerror.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalerror__string__map.html b/static/apidocs/structicalerror__string__map.html new file mode 100644 index 00000000..609df3d7 --- /dev/null +++ b/static/apidocs/structicalerror__string__map.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: icalerror_string_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalerror_string_map Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +icalerrorenum error
     
    +char name [160]
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalerror.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalfileset__id.html b/static/apidocs/structicalfileset__id.html new file mode 100644 index 00000000..a07cfcbd --- /dev/null +++ b/static/apidocs/structicalfileset__id.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: icalfileset_id Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalfileset_id Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +char * recurrence_id
     
    +int sequence
     
    +char * uid
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalfileset.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalfileset__impl.html b/static/apidocs/structicalfileset__impl.html new file mode 100644 index 00000000..8adb2814 --- /dev/null +++ b/static/apidocs/structicalfileset__impl.html @@ -0,0 +1,210 @@ + + + + + + + +Libical API Documentation: icalfileset_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalfileset_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + +

    +Data Fields

    int changed
     
    icalcomponentcluster
     
    int fd
     
    icalgaugegauge
     
    icalfileset_options options
     
    char * path
     
    icalset super
     
    +

    Field Documentation

    + +

    ◆ changed

    + +
    +
    + + + + +
    int icalfileset_impl::changed
    +
    +

    boolean flag, 1 if data has changed

    + +
    +
    + +

    ◆ cluster

    + +
    +
    + + + + +
    icalcomponent* icalfileset_impl::cluster
    +
    +

    cluster containing data

    + +
    +
    + +

    ◆ fd

    + +
    +
    + + + + +
    int icalfileset_impl::fd
    +
    +

    file descriptor

    + +
    +
    + +

    ◆ gauge

    + +
    +
    + + + + +
    icalgauge* icalfileset_impl::gauge
    +
    +

    gauge for filtering out data

    + +
    +
    + +

    ◆ options

    + +
    +
    + + + + +
    icalfileset_options icalfileset_impl::options
    +
    +

    copy of options passed to icalset_new()

    + +
    +
    + +

    ◆ path

    + +
    +
    + + + + +
    char* icalfileset_impl::path
    +
    +

    pathname of file

    + +
    +
    + +

    ◆ super

    + +
    +
    + + + + +
    icalset icalfileset_impl::super
    +
    +

    parent class

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalfileset__options.html b/static/apidocs/structicalfileset__options.html new file mode 100644 index 00000000..4c043552 --- /dev/null +++ b/static/apidocs/structicalfileset__options.html @@ -0,0 +1,168 @@ + + + + + + + +Libical API Documentation: icalfileset_options Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalfileset_options Struct Reference
    +
    +
    + +

    Options for opening an icalfileset. + More...

    + +

    #include <icalfileset.h>

    + + + + + + + + + + +

    +Data Fields

    icalclustercluster
     
    int flags
     
    int mode
     
    int safe_saves
     
    +

    Detailed Description

    +

    Options for opening an icalfileset.

    +

    These options should be passed to the icalset_new() function

    +

    Field Documentation

    + +

    ◆ cluster

    + +
    +
    + + + + +
    icalcluster* icalfileset_options::cluster
    +
    +

    use this cluster to initialize data

    + +
    +
    + +

    ◆ flags

    + +
    +
    + + + + +
    int icalfileset_options::flags
    +
    +

    flags for open() O_RDONLY, etc
    +

    + +
    +
    + +

    ◆ mode

    + +
    +
    + + + + +
    int icalfileset_options::mode
    +
    +

    file mode

    + +
    +
    + +

    ◆ safe_saves

    + +
    +
    + + + + +
    int icalfileset_options::safe_saves
    +
    +

    to lock or not

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalgauge__impl.html b/static/apidocs/structicalgauge__impl.html new file mode 100644 index 00000000..02949bff --- /dev/null +++ b/static/apidocs/structicalgauge__impl.html @@ -0,0 +1,145 @@ + + + + + + + +Libical API Documentation: icalgauge_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalgauge_impl Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +int expand
     
    pvl_list from
     
    pvl_list select
     
    pvl_list where
     
    +

    Field Documentation

    + +

    ◆ from

    + +
    +
    + + + + +
    pvl_list icalgauge_impl::from
    +
    +

    List of component_kinds, as integers

    + +
    +
    + +

    ◆ select

    + +
    +
    + + + + +
    pvl_list icalgauge_impl::select
    +
    +

    Of icalgaugecompare, using only prop and comp fields

    + +
    +
    + +

    ◆ where

    + +
    +
    + + + + +
    pvl_list icalgauge_impl::where
    +
    +

    List of icalgaugecompare

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalgauge__where.html b/static/apidocs/structicalgauge__where.html new file mode 100644 index 00000000..a074422c --- /dev/null +++ b/static/apidocs/structicalgauge__where.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: icalgauge_where Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalgauge_where Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +icalcomponent_kind comp
     
    +icalgaugecompare compare
     
    +icalgaugelogic logic
     
    +icalproperty_kind prop
     
    +char * value
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalgeotype.html b/static/apidocs/structicalgeotype.html new file mode 100644 index 00000000..68f246a0 --- /dev/null +++ b/static/apidocs/structicalgeotype.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icalgeotype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalgeotype Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +double lat
     
    +double lon
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalparameter__impl.html b/static/apidocs/structicalparameter__impl.html new file mode 100644 index 00000000..ad30fa29 --- /dev/null +++ b/static/apidocs/structicalparameter__impl.html @@ -0,0 +1,111 @@ + + + + + + + +Libical API Documentation: icalparameter_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalparameter_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + +

    +Data Fields

    +int data
     
    +char id [5]
     
    +icalparameter_kind kind
     
    +icalproperty * parent
     
    +int size
     
    +const char * string
     
    +const char * x_name
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalparser__impl.html b/static/apidocs/structicalparser__impl.html new file mode 100644 index 00000000..5671407e --- /dev/null +++ b/static/apidocs/structicalparser__impl.html @@ -0,0 +1,123 @@ + + + + + + + +Libical API Documentation: icalparser_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalparser_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +int buffer_full
     
    +pvl_list components
     
    +int continuation_line
     
    +int level
     
    +void * line_gen_data
     
    +int lineno
     
    +icalcomponentroot_component
     
    +icalparser_state state
     
    +char temp [80]
     
    +size_t tmp_buf_size
     
    +int version
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalparser.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalperiodtype.html b/static/apidocs/structicalperiodtype.html new file mode 100644 index 00000000..3498b61f --- /dev/null +++ b/static/apidocs/structicalperiodtype.html @@ -0,0 +1,106 @@ + + + + + + + +Libical API Documentation: icalperiodtype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalperiodtype Struct Reference
    +
    +
    + +

    Struct to represent a period in time. + More...

    + +

    #include <icalperiod.h>

    + + + + + + + + +

    +Data Fields

    +struct icaldurationtype duration
     
    +struct icaltimetype end
     
    +struct icaltimetype start
     
    +

    Detailed Description

    +

    Struct to represent a period in time.

    +

    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalproperty__impl.html b/static/apidocs/structicalproperty__impl.html new file mode 100644 index 00000000..563a80bd --- /dev/null +++ b/static/apidocs/structicalproperty__impl.html @@ -0,0 +1,111 @@ + + + + + + + +Libical API Documentation: icalproperty_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalproperty_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + +

    +Data Fields

    +char id [5]
     
    +icalproperty_kind kind
     
    +pvl_elem parameter_iterator
     
    +pvl_list parameters
     
    +icalcomponentparent
     
    +icalvalue * value
     
    +char * x_name
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalproperty.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalrecur__iterator__impl.html b/static/apidocs/structicalrecur__iterator__impl.html new file mode 100644 index 00000000..da975ced --- /dev/null +++ b/static/apidocs/structicalrecur__iterator__impl.html @@ -0,0 +1,158 @@ + + + + + + + +Libical API Documentation: icalrecur_iterator_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalrecur_iterator_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +short by_indices [9]
     
    short * by_ptrs [9]
     
    +enum byrule byrule
     
    +unsigned long days [(((367+7)+(8 *sizeof(unsigned long)) -1)/(8 *sizeof(unsigned long)))]
     
    +short days_index
     
    +struct icaltimetype dtstart
     
    +struct icaltimetype istart
     
    +struct icaltimetype last
     
    +int occurrence_no
     
    short orig_data [9]
     
    +struct icaltimetype period_start
     
    +struct icaltimetype rstart
     
    +struct icalrecurrencetype rule
     
    +

    Field Documentation

    + +

    ◆ by_ptrs

    + +
    +
    + + + + +
    short* icalrecur_iterator_impl::by_ptrs[9]
    +
    +

    Pointers into the by_* array elements of the rule

    + +
    +
    + +

    ◆ orig_data

    + +
    +
    + + + + +
    short icalrecur_iterator_impl::orig_data[9]
    +
    +

    1 if there was data in the byrule

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalrecur__parser.html b/static/apidocs/structicalrecur__parser.html new file mode 100644 index 00000000..c20e59a3 --- /dev/null +++ b/static/apidocs/structicalrecur__parser.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: icalrecur_parser Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalrecur_parser Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +char * copy
     
    +char * next_clause
     
    +struct icalrecurrencetype rt
     
    +const char * rule
     
    +char * this_clause
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicalrecurrencetype.html b/static/apidocs/structicalrecurrencetype.html new file mode 100644 index 00000000..14045c21 --- /dev/null +++ b/static/apidocs/structicalrecurrencetype.html @@ -0,0 +1,179 @@ + + + + + + + +Libical API Documentation: icalrecurrencetype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalrecurrencetype Struct Reference
    +
    +
    + +

    #include <icalrecur.h>

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    short by_day [7 *(56 -1)+1]
     Encoded value.
     
    +short by_hour [25]
     
    +short by_minute [61]
     
    short by_month [14]
     Encoded value.
     
    +short by_month_day [32]
     
    +short by_second [62]
     
    +short by_set_pos [386]
     
    +short by_week_no [56]
     
    +short by_year_day [386]
     
    +int count
     
    +icalrecurrencetype_frequency freq
     
    +short interval
     
    +char * rscale
     
    +icalrecurrencetype_skip skip
     
    +struct icaltimetype until
     
    +icalrecurrencetype_weekday week_start
     
    +

    Detailed Description

    +

    Main struct for holding digested recurrence rules

    +

    Field Documentation

    + +

    ◆ by_day

    + +
    +
    + + + + +
    short icalrecurrencetype::by_day[7 *(56 -1)+1]
    +
    + +

    Encoded value.

    +

    The 'day' element of the by_day array is encoded to allow representation of both the day of the week ( Monday, Tuesday), but also the Nth day of the week (first Tuesday of the month, last Thursday of the year).

    +

    These values are decoded by icalrecurrencetype_day_day_of_week() and icalrecurrencetype_day_position().

    + +
    +
    + +

    ◆ by_month

    + +
    +
    + + + + +
    short icalrecurrencetype::by_month[14]
    +
    + +

    Encoded value.

    +

    The 'month' element of the by_month array is encoded to allow representation of the "L" leap suffix (RFC 7529).

    +

    These values are decoded by icalrecurrencetype_month_is_leap() and icalrecurrencetype_month_month().

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalreqstattype.html b/static/apidocs/structicalreqstattype.html new file mode 100644 index 00000000..4f34e461 --- /dev/null +++ b/static/apidocs/structicalreqstattype.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: icalreqstattype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalreqstattype Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +icalrequeststatus code
     
    +const char * debug
     
    +const char * desc
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalset__impl.html b/static/apidocs/structicalset__impl.html new file mode 100644 index 00000000..4f2d424a --- /dev/null +++ b/static/apidocs/structicalset__impl.html @@ -0,0 +1,159 @@ + + + + + + + +Libical API Documentation: icalset_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalset_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +icalerrorenum(* add_component )(icalset *set, icalcomponent *comp)
     
    +void(* clear )(icalset *set)
     
    +icalerrorenum(* commit )(icalset *set)
     
    +int(* count_components )(icalset *set, icalcomponent_kind kind)
     
    +char * dsn
     
    +icalcomponent *(* fetch )(icalset *set, icalcomponent_kind kind, const char *uid)
     
    +icalcomponent *(* fetch_match )(icalset *set, icalcomponent *comp)
     
    +void(* free )(icalset *set)
     
    +icalcomponent *(* get_current_component )(icalset *set)
     
    +icalcomponent *(* get_first_component )(icalset *set)
     
    +icalcomponent *(* get_next_component )(icalset *set)
     
    +int(* has_uid )(icalset *set, const char *uid)
     
    +icalsetiter(* icalset_begin_component )(icalset *set, icalcomponent_kind kind, icalgauge *gauge, const char *tzid)
     
    +icalcomponent *(* icalsetiter_to_next )(icalset *set, icalsetiter *i)
     
    +icalcomponent *(* icalsetiter_to_prior )(icalset *set, icalsetiter *i)
     
    +icalset *(* init )(icalset *set, const char *dsn, void *options)
     
    +icalset_kind kind
     
    +void(* mark )(icalset *set)
     
    +icalerrorenum(* modify )(icalset *set, icalcomponent *old, icalcomponent *newc)
     
    +const char *(* path )(icalset *set)
     
    +icalerrorenum(* remove_component )(icalset *set, icalcomponent *comp)
     
    +icalerrorenum(* select )(icalset *set, icalgauge *gauge)
     
    +size_t size
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalsetiter.html b/static/apidocs/structicalsetiter.html new file mode 100644 index 00000000..327ffc36 --- /dev/null +++ b/static/apidocs/structicalsetiter.html @@ -0,0 +1,105 @@ + + + + + + + +Libical API Documentation: icalsetiter Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalsetiter Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    +icalgaugegauge
     
    +icalcompiter iter
     
    +icalcomponentlast_component
     
    +icalrecur_iteratorritr
     
    +const char * tzid
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalspanlist__impl.html b/static/apidocs/structicalspanlist__impl.html new file mode 100644 index 00000000..d2db8a66 --- /dev/null +++ b/static/apidocs/structicalspanlist__impl.html @@ -0,0 +1,142 @@ + + + + + + + +Libical API Documentation: icalspanlist_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalspanlist_impl Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    struct icaltimetype end
     
    pvl_list spans
     
    struct icaltimetype start
     
    +

    Field Documentation

    + +

    ◆ end

    + +
    +
    + + + + +
    struct icaltimetype icalspanlist_impl::end
    +
    +

    end time of span

    + +
    +
    + +

    ◆ spans

    + +
    +
    + + + + +
    pvl_list icalspanlist_impl::spans
    +
    +

    list of icaltime_span data

    + +
    +
    + +

    ◆ start

    + +
    +
    + + + + +
    struct icaltimetype icalspanlist_impl::start
    +
    +

    start time of span

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • icalspanlist.c
    • +
    +
    + + + + diff --git a/static/apidocs/structicaltime__span.html b/static/apidocs/structicaltime__span.html new file mode 100644 index 00000000..47fa0051 --- /dev/null +++ b/static/apidocs/structicaltime__span.html @@ -0,0 +1,146 @@ + + + + + + + +Libical API Documentation: icaltime_span Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaltime_span Struct Reference
    +
    +
    + +

    #include <icaltime.h>

    + + + + + + + + +

    +Data Fields

    time_t end
     
    int is_busy
     
    time_t start
     
    +

    Detailed Description

    +

    icaltime_span is returned by icalcomponent_get_span()

    +

    Field Documentation

    + +

    ◆ end

    + +
    +
    + + + + +
    time_t icaltime_span::end
    +
    +

    in UTC

    + +
    +
    + +

    ◆ is_busy

    + +
    +
    + + + + +
    int icaltime_span::is_busy
    +
    +

    1->busy time, 0-> free time

    + +
    +
    + +

    ◆ start

    + +
    +
    + + + + +
    time_t icaltime_span::start
    +
    +

    in UTC

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaltimetype.html b/static/apidocs/structicaltimetype.html new file mode 100644 index 00000000..9c6c18ac --- /dev/null +++ b/static/apidocs/structicaltimetype.html @@ -0,0 +1,188 @@ + + + + + + + +Libical API Documentation: icaltimetype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaltimetype Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +int day
     
    +int hour
     
    int is_date
     
    int is_daylight
     
    +int minute
     
    int month
     
    +int second
     
    int year
     
    const icaltimezonezone
     
    +

    Field Documentation

    + +

    ◆ is_date

    + +
    +
    + + + + +
    int icaltimetype::is_date
    +
    +

    1 -> interpret this as date.

    + +
    +
    + +

    ◆ is_daylight

    + +
    +
    + + + + +
    int icaltimetype::is_daylight
    +
    +

    1 -> time is in daylight savings time.

    + +
    +
    + +

    ◆ month

    + +
    +
    + + + + +
    int icaltimetype::month
    +
    +

    1 (Jan) to 12 (Dec).

    + +
    +
    + +

    ◆ year

    + +
    +
    + + + + +
    int icaltimetype::year
    +
    +

    Actual year, e.g. 2001.

    + +
    +
    + +

    ◆ zone

    + +
    +
    + + + + +
    const icaltimezone* icaltimetype::zone
    +
    +

    timezone

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaltimezonephase.html b/static/apidocs/structicaltimezonephase.html new file mode 100644 index 00000000..ecb0d26e --- /dev/null +++ b/static/apidocs/structicaltimezonephase.html @@ -0,0 +1,114 @@ + + + + + + + +Libical API Documentation: icaltimezonephase Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaltimezonephase Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +const char * comment
     
    +struct icaltimetype dtstart
     
    +int is_stdandard
     
    +int offsetto
     
    +struct icaldatetimeperiodtype rdate
     
    +const char * rrule
     
    +const char * tzname
     
    +int tzoffsetfrom
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaltimezonetype.html b/static/apidocs/structicaltimezonetype.html new file mode 100644 index 00000000..782ca9d2 --- /dev/null +++ b/static/apidocs/structicaltimezonetype.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: icaltimezonetype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaltimezonetype Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +struct icaltimetype last_mod
     
    +struct icaltimezonephasephases
     
    +const char * tzid
     
    +const char * tzurl
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicaltriggertype.html b/static/apidocs/structicaltriggertype.html new file mode 100644 index 00000000..01066a0d --- /dev/null +++ b/static/apidocs/structicaltriggertype.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: icaltriggertype Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icaltriggertype Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +struct icaldurationtype duration
     
    +struct icaltimetype time
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structicalvalue__impl.html b/static/apidocs/structicalvalue__impl.html new file mode 100644 index 00000000..3ab3a34a --- /dev/null +++ b/static/apidocs/structicalvalue__impl.html @@ -0,0 +1,114 @@ + + + + + + + +Libical API Documentation: icalvalue_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    icalvalue_impl Struct Reference
    +
    +
    + + + + +

    +Data Structures

    union  data
     
    + + + + + + + + + + + + + +

    +Data Fields

    +union icalvalue_impl::data data
     
    +char id [5]
     
    +icalvalue_kind kind
     
    +icalproperty * parent
     
    +int size
     
    +char * x_value
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structleap.html b/static/apidocs/structleap.html new file mode 100644 index 00000000..f15b4188 --- /dev/null +++ b/static/apidocs/structleap.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: leap Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    leap Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +long int change
     
    +time_t transition
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltz-util.c
    • +
    +
    + + + + diff --git a/static/apidocs/structmajor__content__type__map.html b/static/apidocs/structmajor__content__type__map.html new file mode 100644 index 00000000..a11ec094 --- /dev/null +++ b/static/apidocs/structmajor__content__type__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: major_content_type_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    major_content_type_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +const char * str
     
    +enum sspm_major_type type
     
    +
    The documentation for this struct was generated from the following file:
      +
    • sspm.c
    • +
    +
    + + + + diff --git a/static/apidocs/structmime__impl.html b/static/apidocs/structmime__impl.html new file mode 100644 index 00000000..62b299b7 --- /dev/null +++ b/static/apidocs/structmime__impl.html @@ -0,0 +1,117 @@ + + + + + + + +Libical API Documentation: mime_impl Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    mime_impl Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +const struct sspm_action_mapactions
     
    +char *(* get_string )(char *s, size_t size, void *data)
     
    +void * get_string_data
     
    +int level
     
    +size_t max_parts
     
    +int part_no
     
    +struct sspm_partparts
     
    +enum mime_state state
     
    +char temp [1024]
     
    +
    The documentation for this struct was generated from the following file:
      +
    • sspm.c
    • +
    +
    + + + + diff --git a/static/apidocs/structminor__content__type__map.html b/static/apidocs/structminor__content__type__map.html new file mode 100644 index 00000000..12d53904 --- /dev/null +++ b/static/apidocs/structminor__content__type__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: minor_content_type_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    minor_content_type_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +const char * str
     
    +enum sspm_minor_type type
     
    +
    The documentation for this struct was generated from the following file:
      +
    • sspm.c
    • +
    +
    + + + + diff --git a/static/apidocs/structobservance.html b/static/apidocs/structobservance.html new file mode 100644 index 00000000..3bc071b3 --- /dev/null +++ b/static/apidocs/structobservance.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: observance Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    observance Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +const char * name
     
    +int offset_from
     
    +int offset_to
     
    +icaltimetype onset
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltimezone.c
    • +
    +
    + + + + diff --git a/static/apidocs/structpvl__elem__t.html b/static/apidocs/structpvl__elem__t.html new file mode 100644 index 00000000..a988eb78 --- /dev/null +++ b/static/apidocs/structpvl__elem__t.html @@ -0,0 +1,163 @@ + + + + + + + +Libical API Documentation: pvl_elem_t Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    pvl_elem_t Struct Reference
    +
    +
    + +

    #include <pvl.h>

    + + + + + + + + + + +

    +Data Fields

    void * d
     
    int MAGIC
     
    struct pvl_elem_tnext
     
    struct pvl_elem_tprior
     
    +

    Detailed Description

    +

    This type is private. Always use pvl_elem instead. The struct would not even appear in this header except to make code in the USE_MACROS blocks work

    +

    Field Documentation

    + +

    ◆ d

    + +
    +
    + + + + +
    void* pvl_elem_t::d
    +
    +

    Pointer to data user is storing

    + +
    +
    + +

    ◆ MAGIC

    + +
    +
    + + + + +
    int pvl_elem_t::MAGIC
    +
    +

    Magic Identifier

    + +
    +
    + +

    ◆ next

    + +
    +
    + + + + +
    struct pvl_elem_t* pvl_elem_t::next
    +
    +

    Next element

    + +
    +
    + +

    ◆ prior

    + +
    +
    + + + + +
    struct pvl_elem_t* pvl_elem_t::prior
    +
    +

    Prior element

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structpvl__list__t.html b/static/apidocs/structpvl__list__t.html new file mode 100644 index 00000000..630c1917 --- /dev/null +++ b/static/apidocs/structpvl__list__t.html @@ -0,0 +1,180 @@ + + + + + + + +Libical API Documentation: pvl_list_t Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    pvl_list_t Struct Reference
    +
    +
    + + + + + + + + + + + + +

    +Data Fields

    int count
     
    struct pvl_elem_thead
     
    int MAGIC
     
    struct pvl_elem_tp
     
    struct pvl_elem_ttail
     
    +

    Detailed Description

    +

    struct pvl_list_t

    +

    The list structure. This is the handle for the entire list

    +

    This type is also private. Use pvl_list instead

    +

    Field Documentation

    + +

    ◆ count

    + +
    +
    + + + + +
    int pvl_list_t::count
    +
    +

    Number of items in the list

    + +
    +
    + +

    ◆ head

    + +
    +
    + + + + +
    struct pvl_elem_t* pvl_list_t::head
    +
    +

    Head of list

    + +
    +
    + +

    ◆ MAGIC

    + +
    +
    + + + + +
    int pvl_list_t::MAGIC
    +
    +

    Magic Identifier

    + +
    +
    + +

    ◆ p

    + +
    +
    + + + + +
    struct pvl_elem_t* pvl_list_t::p
    +
    +

    Pointer used for iterators

    + +
    +
    + +

    ◆ tail

    + +
    +
    + + + + +
    struct pvl_elem_t* pvl_list_t::tail
    +
    +

    Tail of list

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • pvl.c
    • +
    +
    + + + + diff --git a/static/apidocs/structrdate.html b/static/apidocs/structrdate.html new file mode 100644 index 00000000..2fc680f0 --- /dev/null +++ b/static/apidocs/structrdate.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: rdate Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    rdate Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +struct icaldatetimeperiodtype date
     
    +icalproperty * prop
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltimezone.c
    • +
    +
    + + + + diff --git a/static/apidocs/structrecur__map.html b/static/apidocs/structrecur__map.html new file mode 100644 index 00000000..8f59a688 --- /dev/null +++ b/static/apidocs/structrecur__map.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: recur_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    recur_map Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +int limit
     
    +size_t offset
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structskip__map.html b/static/apidocs/structskip__map.html new file mode 100644 index 00000000..9a352e9e --- /dev/null +++ b/static/apidocs/structskip__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: skip_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    skip_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +icalrecurrencetype_skip kind
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structslg__data.html b/static/apidocs/structslg__data.html new file mode 100644 index 00000000..943b0197 --- /dev/null +++ b/static/apidocs/structslg__data.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: slg_data Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    slg_data Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +const char * pos
     
    +const char * str
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalparser.c
    • +
    +
    + + + + diff --git a/static/apidocs/structsspm__action__map.html b/static/apidocs/structsspm__action__map.html new file mode 100644 index 00000000..3722b8d5 --- /dev/null +++ b/static/apidocs/structsspm__action__map.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: sspm_action_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    sspm_action_map Struct Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Data Fields

    +void(* add_line )(void *part, struct sspm_header *header, const char *line, size_t size)
     
    +void *(* end_part )(void *part)
     
    +void(* free_part )(void *part)
     
    +enum sspm_major_type major
     
    +enum sspm_minor_type minor
     
    +void *(* new_part )(void)
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structsspm__buffer.html b/static/apidocs/structsspm__buffer.html new file mode 100644 index 00000000..775496b7 --- /dev/null +++ b/static/apidocs/structsspm__buffer.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: sspm_buffer Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    sspm_buffer Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +size_t buf_size
     
    +char * buffer
     
    +int line_pos
     
    +char * pos
     
    +
    The documentation for this struct was generated from the following file:
      +
    • sspm.c
    • +
    +
    + + + + diff --git a/static/apidocs/structsspm__header.html b/static/apidocs/structsspm__header.html new file mode 100644 index 00000000..fa4e57b7 --- /dev/null +++ b/static/apidocs/structsspm__header.html @@ -0,0 +1,126 @@ + + + + + + + +Libical API Documentation: sspm_header Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    sspm_header Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +char * boundary
     
    +char * charset
     
    +char * content_id
     
    +char ** content_type_params
     
    +int def
     
    +enum sspm_encoding encoding
     
    +enum sspm_error error
     
    +char * error_text
     
    +char * filename
     
    +enum sspm_major_type major
     
    +enum sspm_minor_type minor
     
    +char * minor_text
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structsspm__part.html b/static/apidocs/structsspm__part.html new file mode 100644 index 00000000..e6ae1c3a --- /dev/null +++ b/static/apidocs/structsspm__part.html @@ -0,0 +1,102 @@ + + + + + + + +Libical API Documentation: sspm_part Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    sspm_part Struct Reference
    +
    +
    + + + + + + + + + + +

    +Data Fields

    +void * data
     
    +size_t data_size
     
    +struct sspm_header header
     
    +int level
     
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structtext__part.html b/static/apidocs/structtext__part.html new file mode 100644 index 00000000..5a3cb468 --- /dev/null +++ b/static/apidocs/structtext__part.html @@ -0,0 +1,99 @@ + + + + + + + +Libical API Documentation: text_part Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    text_part Struct Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +char * buf
     
    +char * buf_pos
     
    +size_t buf_size
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalmime.c
    • +
    +
    + + + + diff --git a/static/apidocs/structttinfo.html b/static/apidocs/structttinfo.html new file mode 100644 index 00000000..24148051 --- /dev/null +++ b/static/apidocs/structttinfo.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: ttinfo Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    ttinfo Struct Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Data Fields

    +unsigned int abbr
     
    +long int gmtoff
     
    +unsigned char isdst
     
    +unsigned char isgmt
     
    +unsigned char isstd
     
    +char * zname
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltz-util.c
    • +
    +
    + + + + diff --git a/static/apidocs/structtzinfo.html b/static/apidocs/structtzinfo.html new file mode 100644 index 00000000..d59b94dd --- /dev/null +++ b/static/apidocs/structtzinfo.html @@ -0,0 +1,117 @@ + + + + + + + +Libical API Documentation: tzinfo Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    tzinfo Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +char charcnt [4]
     
    +char leapcnt [4]
     
    +char magic [4]
     
    +char timecnt [4]
     
    +char ttisgmtcnt [4]
     
    +char ttisstdcnt [4]
     
    +char typecnt [4]
     
    +char unused [15]
     
    +char version
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltz-util.c
    • +
    +
    + + + + diff --git a/static/apidocs/structut__instant.html b/static/apidocs/structut__instant.html new file mode 100644 index 00000000..6009821b --- /dev/null +++ b/static/apidocs/structut__instant.html @@ -0,0 +1,303 @@ + + + + + + + +Libical API Documentation: ut_instant Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    ut_instant Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    double d_hour
     
    double d_minute
     
    double d_second
     
    int day
     
    int day_of_year
     
    int i_hour
     
    int i_minute
     
    int i_second
     
    double j_date
     
    int month
     
    int weekday
     
    long year
     
    +

    Field Documentation

    + +

    ◆ d_hour

    + +
    +
    + + + + +
    double ut_instant::d_hour
    +
    +

    [0.0-23.9999] includes minute and second

    + +
    +
    + +

    ◆ d_minute

    + +
    +
    + + + + +
    double ut_instant::d_minute
    +
    +

    [0.0-59.9999] includes second
    +

    + +
    +
    + +

    ◆ d_second

    + +
    +
    + + + + +
    double ut_instant::d_second
    +
    +

    [0.0-59.9999]
    +

    + +
    +
    + +

    ◆ day

    + +
    +
    + + + + +
    int ut_instant::day
    +
    +

    [1-31]
    +

    + +
    +
    + +

    ◆ day_of_year

    + +
    +
    + + + + +
    int ut_instant::day_of_year
    +
    +

    [1-366]

    + +
    +
    + +

    ◆ i_hour

    + +
    +
    + + + + +
    int ut_instant::i_hour
    +
    +

    [0-23]
    +

    + +
    +
    + +

    ◆ i_minute

    + +
    +
    + + + + +
    int ut_instant::i_minute
    +
    +

    [0-59]
    +

    + +
    +
    + +

    ◆ i_second

    + +
    +
    + + + + +
    int ut_instant::i_second
    +
    +

    [0-59]
    +

    + +
    +
    + +

    ◆ j_date

    + +
    +
    + + + + +
    double ut_instant::j_date
    +
    +

    Julian decimal date, 0 = 01 Jan 4713 BC 12 HR UT

    + +
    +
    + +

    ◆ month

    + +
    +
    + + + + +
    int ut_instant::month
    +
    +

    [1-12]
    +

    + +
    +
    + +

    ◆ weekday

    + +
    +
    + + + + +
    int ut_instant::weekday
    +
    +

    [0-6]
    +

    + +
    +
    + +

    ◆ year

    + +
    +
    + + + + +
    long ut_instant::year
    +
    +

    year, valid range [-4,713, +2,147,483,647]

    + +
    +
    +
    The documentation for this struct was generated from the following file: +
    + + + + diff --git a/static/apidocs/structwd__map.html b/static/apidocs/structwd__map.html new file mode 100644 index 00000000..64a9fac1 --- /dev/null +++ b/static/apidocs/structwd__map.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: wd_map Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    wd_map Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +const char * str
     
    +icalrecurrencetype_weekday wd
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalrecur.c
    • +
    +
    + + + + diff --git a/static/apidocs/structyy__buffer__state.html b/static/apidocs/structyy__buffer__state.html new file mode 100644 index 00000000..2b116414 --- /dev/null +++ b/static/apidocs/structyy__buffer__state.html @@ -0,0 +1,155 @@ + + + + + + + +Libical API Documentation: yy_buffer_state Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    yy_buffer_state Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +int yy_at_bol
     
    int yy_bs_column
     
    int yy_bs_lineno
     
    +char * yy_buf_pos
     
    +yy_size_t yy_buf_size
     
    +int yy_buffer_status
     
    +char * yy_ch_buf
     
    +int yy_fill_buffer
     
    +FILE * yy_input_file
     
    +int yy_is_interactive
     
    +int yy_is_our_buffer
     
    +int yy_n_chars
     
    +

    Field Documentation

    + +

    ◆ yy_bs_column

    + +
    +
    + + + + +
    int yy_buffer_state::yy_bs_column
    +
    +

    The column count.

    + +
    +
    + +

    ◆ yy_bs_lineno

    + +
    +
    + + + + +
    int yy_buffer_state::yy_bs_lineno
    +
    +

    The line count.

    + +
    +
    +
    The documentation for this struct was generated from the following file:
      +
    • icalsslexer.c
    • +
    +
    + + + + diff --git a/static/apidocs/structyy__trans__info.html b/static/apidocs/structyy__trans__info.html new file mode 100644 index 00000000..8dcba386 --- /dev/null +++ b/static/apidocs/structyy__trans__info.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: yy_trans_info Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    yy_trans_info Struct Reference
    +
    +
    + + + + + + +

    +Data Fields

    +flex_int32_t yy_nxt
     
    +flex_int32_t yy_verify
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icalsslexer.c
    • +
    +
    + + + + diff --git a/static/apidocs/structzone__context.html b/static/apidocs/structzone__context.html new file mode 100644 index 00000000..75a08712 --- /dev/null +++ b/static/apidocs/structzone__context.html @@ -0,0 +1,126 @@ + + + + + + + +Libical API Documentation: zone_context Struct Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    zone_context Struct Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +struct icalrecurrencetype final_recur
     
    +long gmtoff_from
     
    +long gmtoff_to
     
    +enum icalcomponent_kind kind
     
    +const char * name
     
    +short num_monthdays
     
    +icaltimetype prev_time
     
    +icalcomponentrdate_comp
     
    +struct icalrecurrencetype recur
     
    +icalcomponentrrule_comp
     
    +icalproperty * rrule_prop
     
    +icaltimetype time
     
    +
    The documentation for this struct was generated from the following file:
      +
    • icaltz-util.c
    • +
    +
    + + + + diff --git a/static/apidocs/sync_off.png b/static/apidocs/sync_off.png new file mode 100644 index 00000000..3b443fc6 Binary files /dev/null and b/static/apidocs/sync_off.png differ diff --git a/static/apidocs/sync_on.png b/static/apidocs/sync_on.png new file mode 100644 index 00000000..e08320fb Binary files /dev/null and b/static/apidocs/sync_on.png differ diff --git a/static/apidocs/tab_a.png b/static/apidocs/tab_a.png new file mode 100644 index 00000000..3b725c41 Binary files /dev/null and b/static/apidocs/tab_a.png differ diff --git a/static/apidocs/tab_ad.png b/static/apidocs/tab_ad.png new file mode 100644 index 00000000..e34850ac Binary files /dev/null and b/static/apidocs/tab_ad.png differ diff --git a/static/apidocs/tab_b.png b/static/apidocs/tab_b.png new file mode 100644 index 00000000..e2b4a863 Binary files /dev/null and b/static/apidocs/tab_b.png differ diff --git a/static/apidocs/tab_bd.png b/static/apidocs/tab_bd.png new file mode 100644 index 00000000..91c25249 Binary files /dev/null and b/static/apidocs/tab_bd.png differ diff --git a/static/apidocs/tab_h.png b/static/apidocs/tab_h.png new file mode 100644 index 00000000..fd5cb705 Binary files /dev/null and b/static/apidocs/tab_h.png differ diff --git a/static/apidocs/tab_hd.png b/static/apidocs/tab_hd.png new file mode 100644 index 00000000..2489273d Binary files /dev/null and b/static/apidocs/tab_hd.png differ diff --git a/static/apidocs/tab_s.png b/static/apidocs/tab_s.png new file mode 100644 index 00000000..ab478c95 Binary files /dev/null and b/static/apidocs/tab_s.png differ diff --git a/static/apidocs/tab_sd.png b/static/apidocs/tab_sd.png new file mode 100644 index 00000000..757a565c Binary files /dev/null and b/static/apidocs/tab_sd.png differ diff --git a/static/apidocs/tabs.css b/static/apidocs/tabs.css new file mode 100644 index 00000000..71c8a470 --- /dev/null +++ b/static/apidocs/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:var(--nav-menu-button-color);-webkit-transition:all .25s;transition:all .25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px,1px,1px,1px)}#main-menu-state:not(:checked) ~ #main-menu{display:none}#main-menu-state:checked ~ #main-menu{display:block}@media(min-width:768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked) ~ #main-menu{display:block}}.sm-dox{background-image:var(--nav-gradient-image)}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:var(--font-family-nav);font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:var(--nav-text-normal-shadow);color:var(--nav-text-normal-color);outline:0}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:var(--nav-menu-toggle-color);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:var(--nav-menu-background-color)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:var(--nav-menu-background-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:var(--nav-gradient-image);line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:var(--nav-text-normal-color) transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:var(--nav-separator-image);background-repeat:no-repeat;background-position:right;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a:hover span.sub-arrow{border-color:var(--nav-text-hover-color) transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent var(--nav-menu-background-color) transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:var(--nav-menu-background-color);-moz-border-radius:5px !important;-webkit-border-radius:5px;border-radius:5px !important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--nav-menu-foreground-color);border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:var(--nav-menu-foreground-color);background-image:none;border:0 !important;color:var(--nav-menu-foreground-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent var(--nav-text-hover-color)}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:var(--nav-menu-background-color);height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent var(--nav-menu-foreground-color) transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:var(--nav-menu-foreground-color) transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:var(--nav-gradient-image)}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:var(--nav-menu-background-color)}} \ No newline at end of file diff --git a/static/apidocs/unionValueItem.html b/static/apidocs/unionValueItem.html new file mode 100644 index 00000000..d39f99d3 --- /dev/null +++ b/static/apidocs/unionValueItem.html @@ -0,0 +1,108 @@ + + + + + + + +Libical API Documentation: ValueItem Union Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    ValueItem Union Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Data Fields

    +void * any
     
    +unsigned int i
     
    +unsigned long l
     
    +const char * strs
     
    +const wchar_t * ustrs
     
    +VObjectvobj
     
    +
    The documentation for this union was generated from the following file:
      +
    • vobject.c
    • +
    +
    + + + + diff --git a/static/apidocs/unionYYSTYPE.html b/static/apidocs/unionYYSTYPE.html new file mode 100644 index 00000000..f49836e4 --- /dev/null +++ b/static/apidocs/unionYYSTYPE.html @@ -0,0 +1,101 @@ + + + + + + + +Libical API Documentation: YYSTYPE Union Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    YYSTYPE Union Reference
    +
    +
    + + + + + + + + +

    +Data Fields

    +char * str
     
    +char * v_string
     
    +VObjectvobj
     
    +
    The documentation for this union was generated from the following files: +
    + + + + diff --git a/static/apidocs/unionicalvalue__impl_1_1data.html b/static/apidocs/unionicalvalue__impl_1_1data.html new file mode 100644 index 00000000..5b0cca27 --- /dev/null +++ b/static/apidocs/unionicalvalue__impl_1_1data.html @@ -0,0 +1,127 @@ + + + + + + + +Libical API Documentation: icalvalue_impl::data Union Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    + +
    icalvalue_impl::data Union Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Fields

    +icalattachv_attach
     
    +struct icaldurationtype v_duration
     
    +int v_enum
     
    +float v_float
     
    +struct icalgeotype v_geo
     
    +int v_int
     
    +struct icalperiodtype v_period
     
    +struct icalrecurrencetypev_recur
     
    +struct icalreqstattype v_requeststatus
     
    +const char * v_string
     
    +struct icaltimetype v_time
     
    +
    The documentation for this union was generated from the following file: +
    + + + + diff --git a/static/apidocs/unionyyalloc.html b/static/apidocs/unionyyalloc.html new file mode 100644 index 00000000..a87c283e --- /dev/null +++ b/static/apidocs/unionyyalloc.html @@ -0,0 +1,96 @@ + + + + + + + +Libical API Documentation: yyalloc Union Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    +
    + +
    yyalloc Union Reference
    +
    +
    + + + + + + +

    +Data Fields

    +yytype_int16 yyss
     
    +YYSTYPE yyvs
     
    +
    The documentation for this union was generated from the following file:
      +
    • icalssyacc.c
    • +
    +
    + + + + diff --git a/static/apidocs/vcaltmp_8h_source.html b/static/apidocs/vcaltmp_8h_source.html new file mode 100644 index 00000000..93f20317 --- /dev/null +++ b/static/apidocs/vcaltmp_8h_source.html @@ -0,0 +1,185 @@ + + + + + + + +Libical API Documentation: vcaltmp.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    vcaltmp.h
    +
    +
    +
    1/***************************************************************************
    +
    2(C) Copyright 1996 Apple Computer, Inc., AT&T Corp., International
    +
    3Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    4
    +
    5For purposes of this license notice, the term Licensors shall mean,
    +
    6collectively, Apple Computer, Inc., AT&T Corp., International
    +
    7Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    8The term Licensor shall mean any of the Licensors.
    +
    9
    +
    10Subject to acceptance of the following conditions, permission is hereby
    +
    11granted by Licensors without the need for written agreement and without
    +
    12license or royalty fees, to use, copy, modify and distribute this
    +
    13software for any purpose.
    +
    14
    +
    15The above copyright notice and the following four paragraphs must be
    +
    16reproduced in all copies of this software and any software including
    +
    17this software.
    +
    18
    +
    19THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS AND NO LICENSOR SHALL HAVE
    +
    20ANY OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR
    +
    21MODIFICATIONS.
    +
    22
    +
    23IN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY FOR DIRECT,
    +
    24INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
    +
    25OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
    +
    26DAMAGE.
    +
    27
    +
    28EACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED,
    +
    29INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE
    +
    30IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    +
    31PURPOSE.
    +
    32
    +
    33The software is provided with RESTRICTED RIGHTS. Use, duplication, or
    +
    34disclosure by the government are subject to restrictions set forth in
    +
    35DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable.
    +
    36
    +
    37***************************************************************************/
    +
    38
    +
    39#ifndef VCALTMP_H
    +
    40#define VCALTMP_H
    +
    41
    +
    42#include "libical_vcal_export.h"
    +
    43#include "vcc.h"
    +
    44
    +
    45#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    46extern "C"
    +
    47{
    +
    48#endif
    +
    49
    +
    50 LIBICAL_VCAL_EXPORT VObject *vcsCreateVCal(char *date_created,
    +
    51 char *location,
    +
    52 char *product_id, char *time_zone, char *version);
    +
    53
    +
    54 LIBICAL_VCAL_EXPORT VObject *vcsAddEvent(VObject *vcal,
    +
    55 char *start_date_time,
    +
    56 char *end_date_time,
    +
    57 char *description,
    +
    58 char *summary,
    +
    59 char *categories,
    +
    60 char *classification,
    +
    61 char *status, char *transparency, char *uid,
    +
    62 char *url);
    +
    63
    +
    64 LIBICAL_VCAL_EXPORT VObject *vcsAddTodo(VObject *vcal,
    +
    65 char *start_date_time,
    +
    66 char *due_date_time,
    +
    67 char *date_time_complete,
    +
    68 char *description,
    +
    69 char *summary,
    +
    70 char *priority,
    +
    71 char *classification, char *status, char *uid,
    +
    72 char *url);
    +
    73
    +
    74 LIBICAL_VCAL_EXPORT VObject *vcsAddAAlarm(VObject *vevent,
    +
    75 char *run_time,
    +
    76 char *snooze_time,
    +
    77 char *repeat_count, char *audio_content);
    +
    78
    +
    79 LIBICAL_VCAL_EXPORT VObject *vcsAddMAlarm(VObject *vevent,
    +
    80 char *run_time,
    +
    81 char *snooze_time,
    +
    82 char *repeat_count, char *email_address, char *note);
    +
    83
    +
    84 LIBICAL_VCAL_EXPORT VObject *vcsAddDAlarm(VObject *vevent,
    +
    85 char *run_time,
    +
    86 char *snooze_time,
    +
    87 char *repeat_count, char *display_string);
    +
    88
    +
    89 LIBICAL_VCAL_EXPORT VObject *vcsAddPAlarm(VObject *vevent,
    +
    90 char *run_time,
    +
    91 char *snooze_time,
    +
    92 char *repeat_count, char *procedure_name);
    +
    93
    +
    94#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    95}
    +
    96
    +
    97#endif
    +
    98
    +
    99#endif /* VCALTMP_H */
    +
    Definition vobject.c:69
    +
    + + + + diff --git a/static/apidocs/vcc_8h_source.html b/static/apidocs/vcc_8h_source.html new file mode 100644 index 00000000..3cd7e80b --- /dev/null +++ b/static/apidocs/vcc_8h_source.html @@ -0,0 +1,166 @@ + + + + + + + +Libical API Documentation: vcc.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    vcc.h
    +
    +
    +
    1/***************************************************************************
    +
    2(C) Copyright 1996 Apple Computer, Inc., AT&T Corp., International
    +
    3Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    4
    +
    5For purposes of this license notice, the term Licensors shall mean,
    +
    6collectively, Apple Computer, Inc., AT&T Corp., International
    +
    7Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    8The term Licensor shall mean any of the Licensors.
    +
    9
    +
    10Subject to acceptance of the following conditions, permission is hereby
    +
    11granted by Licensors without the need for written agreement and without
    +
    12license or royalty fees, to use, copy, modify and distribute this
    +
    13software for any purpose.
    +
    14
    +
    15The above copyright notice and the following four paragraphs must be
    +
    16reproduced in all copies of this software and any software including
    +
    17this software.
    +
    18
    +
    19THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS AND NO LICENSOR SHALL HAVE
    +
    20ANY OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR
    +
    21MODIFICATIONS.
    +
    22
    +
    23IN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY FOR DIRECT,
    +
    24INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
    +
    25OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
    +
    26DAMAGE.
    +
    27
    +
    28EACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED,
    +
    29INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE
    +
    30IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    +
    31PURPOSE.
    +
    32
    +
    33The software is provided with RESTRICTED RIGHTS. Use, duplication, or
    +
    34disclosure by the government are subject to restrictions set forth in
    +
    35DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable.
    +
    36
    +
    37***************************************************************************/
    +
    38
    +
    39#ifndef VCC_H
    +
    40#define VCC_H
    +
    41
    +
    42#include "libical_vcal_export.h"
    +
    43#include "vobject.h"
    +
    44
    +
    45#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    46extern "C"
    +
    47{
    +
    48#endif
    +
    49
    +
    50 typedef void (*MimeErrorHandler) (char *);
    +
    51
    +
    52 LIBICAL_VCAL_EXPORT void registerMimeErrorHandler(MimeErrorHandler);
    +
    53
    +
    54 LIBICAL_VCAL_EXPORT VObject *Parse_MIME(const char *input, unsigned long len);
    +
    55
    +
    56 LIBICAL_VCAL_EXPORT VObject *Parse_MIME_FromFileName(const char *fname);
    +
    57
    +
    58/* NOTE regarding Parse_MIME_FromFile
    +
    59The function above, Parse_MIME_FromFile, comes in two flavors,
    +
    60neither of which is exported from the DLL. Each version takes
    +
    61a CFile or FILE* as a parameter, neither of which can be
    +
    62passed across a DLL interface (at least that is my experience).
    +
    63If you are linking this code into your build directly then
    +
    64you may find them a more convenient API that the other flavors
    +
    65that take a file name. If you use them with the DLL LIB you
    +
    66will get a link error.
    +
    67*/
    +
    68
    +
    69#ifdef INCLUDEMFC
    +
    70 LIBICAL_VCAL_EXPORT VObject *Parse_MIME_FromFile(CFile * file);
    +
    71#else
    +
    72 LIBICAL_VCAL_EXPORT VObject *Parse_MIME_FromFile(FILE * file);
    +
    73#endif
    +
    74
    +
    75#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    76}
    +
    77
    +
    78#endif
    +
    79
    +
    80#endif /* VCC_H */
    +
    Definition vobject.c:69
    +
    + + + + diff --git a/static/apidocs/vcomponent__cxx_8h.html b/static/apidocs/vcomponent__cxx_8h.html new file mode 100644 index 00000000..b5ee1b57 --- /dev/null +++ b/static/apidocs/vcomponent__cxx_8h.html @@ -0,0 +1,136 @@ + + + + + + + +Libical API Documentation: vcomponent_cxx.h File Reference + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    + +
    vcomponent_cxx.h File Reference
    +
    +
    + +

    C++ classes for the icalcomponent wrapper (VToDo VEvent, etc..). +More...

    + +

    Go to the source code of this file.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +Data Structures

    class  LibICal::VAgenda
     
    class  LibICal::VAlarm
     
    class  LibICal::VCalendar
     
    class  LibICal::VComponent
     A class wrapping the libical icalcomponent functions. More...
     
    class  LibICal::VEvent
     
    class  LibICal::VFreeBusy
     
    class  LibICal::VJournal
     
    class  LibICal::VQuery
     
    class  LibICal::VTimezone
     
    class  LibICal::VToDo
     
    class  LibICal::XDaylight
     
    class  LibICal::XStandard
     
    + + + +

    +Typedefs

    +typedef ICPointerHolder< LibICal::VComponentVComponentTmpPtr
     
    +

    Detailed Description

    +

    C++ classes for the icalcomponent wrapper (VToDo VEvent, etc..).

    +
    Author
    fnguyen (12/10/01)
    +

    (C) COPYRIGHT 2001, Critical Path

    +

    This library is free software; you can redistribute it and/or modify it under the terms of either:

    +

    The LGPL as published by the Free Software Foundation, version 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html

    +

    Or:

    +

    The Mozilla Public License Version 2.0. You may obtain a copy of the License at https://www.mozilla.org/MPL/

    +
    + + + + diff --git a/static/apidocs/vcomponent__cxx_8h_source.html b/static/apidocs/vcomponent__cxx_8h_source.html new file mode 100644 index 00000000..81bdd37e --- /dev/null +++ b/static/apidocs/vcomponent__cxx_8h_source.html @@ -0,0 +1,415 @@ + + + + + + + +Libical API Documentation: vcomponent_cxx.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    vcomponent_cxx.h
    +
    +
    +Go to the documentation of this file.
    1
    +
    20#ifndef ICAL_VCOMPONENT_CXX_H
    +
    21#define ICAL_VCOMPONENT_CXX_H
    +
    22
    +
    23#include "libical_ical_export.h"
    +
    24#include "icptrholder_cxx.h"
    +
    25
    +
    26extern "C"
    +
    27{
    +
    28#include "icalerror.h"
    +
    29#include "icalcomponent.h"
    +
    30}
    +
    31
    +
    32#include <string>
    +
    33
    +
    34namespace LibICal
    +
    35{
    +
    36
    +
    37class ICalProperty;
    +
    38
    +
    47class LIBICAL_ICAL_EXPORT VComponent
    +
    48{
    +
    49public:
    +
    50 VComponent();
    +
    51 VComponent(const VComponent &);
    +
    52 VComponent &operator=(const VComponent &);
    +
    53 virtual ~VComponent();
    +
    54
    +
    55 explicit VComponent(icalcomponent *v);
    +
    56 explicit VComponent(const std::string &str);
    +
    57 explicit VComponent(const icalcomponent_kind &kind);
    +
    58
    +
    59 operator icalcomponent *()
    +
    60 {
    +
    61 return imp;
    +
    62 }
    +
    63
    +
    64 void new_from_string(const std::string &str);
    +
    65
    +
    66 // detach imp to this object. use with caution. it would cause
    +
    67 // memory leak if you are not careful.
    +
    68 void detach();
    +
    69
    +
    70public:
    +
    71 std::string as_ical_string();
    +
    72 bool is_valid();
    +
    73 icalcomponent_kind isa();
    +
    74 int isa_component(void *component);
    +
    75
    +
    77 void add_property(ICalProperty *property);
    +
    78 void remove_property(ICalProperty *property);
    +
    79 int count_properties(const icalproperty_kind &kind);
    +
    80
    +
    81 // Iterate through the properties
    +
    82 ICalProperty *get_current_property();
    +
    83 ICalProperty *get_first_property(const icalproperty_kind &kind);
    +
    84 ICalProperty *get_next_property(const icalproperty_kind &kind);
    +
    85
    +
    86 // Working with components
    +
    87
    + +
    94
    +
    95 void add_component(VComponent *child);
    +
    96 void remove_component(VComponent *child);
    +
    97 int count_components(const icalcomponent_kind &kind);
    +
    98
    + +
    109 VComponent *get_first_component(const icalcomponent_kind &kind);
    +
    110 VComponent *get_next_component(const icalcomponent_kind &kind);
    +
    111
    +
    113 icalcompiter begin_component(const icalcomponent_kind &kind);
    +
    114 icalcompiter end_component(const icalcomponent_kind &kind);
    +
    115 VComponent *next(icalcompiter *i);
    +
    116 VComponent *prev(icalcompiter *i);
    +
    117 VComponent *current(icalcompiter *i);
    +
    118
    + +
    121
    + +
    124
    + +
    127
    +
    129 static icalcomponent_kind string_to_kind(const std::string &str);
    +
    130 static std::string kind_to_string(const icalcomponent_kind &kind);
    +
    131
    +
    132public:
    +
    133 struct icaltimetype get_dtstart() const;
    +
    134 void set_dtstart(const struct icaltimetype &v);
    +
    135
    +
    147 struct icaltimetype get_dtend() const;
    +
    148 void set_dtend(const struct icaltimetype &v);
    +
    149
    +
    150 struct icaltimetype get_due() const;
    +
    151 void set_due(const struct icaltimetype &v);
    +
    152
    +
    153 struct icaldurationtype get_duration() const;
    +
    154 void set_duration(const struct icaldurationtype &v);
    +
    155
    +
    156 icalproperty_method get_method() const;
    +
    157 void set_method(const icalproperty_method &method);
    +
    158
    +
    159 struct icaltimetype get_dtstamp() const;
    +
    160 void set_dtstamp(const struct icaltimetype &v);
    +
    161
    +
    162 std::string get_summary() const;
    +
    163 void set_summary(const std::string &v);
    +
    164
    +
    165 std::string get_location() const;
    +
    166 void set_location(const std::string &v);
    +
    167
    +
    168 std::string get_description() const;
    +
    169 void set_description(const std::string &v);
    +
    170
    +
    171 std::string get_comment() const;
    +
    172 void set_comment(const std::string &v);
    +
    173
    +
    174 std::string get_uid() const;
    +
    175 void set_uid(const std::string &v);
    +
    176
    +
    177 std::string get_relcalid() const;
    +
    178 void set_relcalid(const std::string &v);
    +
    179
    +
    180 struct icaltimetype get_recurrenceid() const;
    +
    181 void set_recurrenceid(const struct icaltimetype &v);
    +
    182
    +
    183 int get_sequence() const;
    +
    184 void set_sequence(const int &v);
    +
    185
    +
    186 int get_status() const;
    +
    187 void set_status(const enum icalproperty_status &v);
    +
    188
    +
    189public:
    + +
    195
    +
    200 virtual struct icaltime_span get_span();
    +
    201
    +
    202 int recurrence_is_excluded(struct icaltimetype *dtstart, struct icaltimetype *recurtime);
    +
    203
    +
    204public:
    +
    205 /* helper functions for adding/removing/updating property and sub-components */
    +
    206
    +
    208
    +
    209 bool remove(VComponent &, bool ignoreValue);
    +
    210 bool update(VComponent &, bool removeMissing);
    +
    211 bool add(VComponent &);
    +
    212
    +
    213private:
    +
    214 /* Internal operations. They are private, and you should not be using them. */
    +
    215 VComponent *get_parent();
    +
    216 void set_parent(VComponent *parent);
    +
    217
    +
    218 char *quote_ical_string(char *str);
    +
    219
    +
    220private:
    +
    221 icalcomponent *imp;
    +
    222};
    +
    223
    +
    224class LIBICAL_ICAL_EXPORT VCalendar: public VComponent
    +
    225{
    +
    226public:
    +
    227 VCalendar();
    +
    228 VCalendar(const VCalendar &);
    +
    229 VCalendar &operator=(const VCalendar &);
    +
    230 ~VCalendar();
    +
    231
    +
    232 explicit VCalendar(icalcomponent *v);
    +
    233 explicit VCalendar(const std::string &str);
    +
    234};
    +
    235
    +
    236class LIBICAL_ICAL_EXPORT VEvent: public VComponent
    +
    237{
    +
    238public:
    +
    239 VEvent();
    +
    240 VEvent(const VEvent &);
    +
    241 VEvent &operator=(const VEvent &);
    +
    242 ~VEvent();
    +
    243
    +
    244 explicit VEvent(icalcomponent *v);
    +
    245 explicit VEvent(const std::string &str);
    +
    246};
    +
    247
    +
    248class LIBICAL_ICAL_EXPORT VToDo: public VComponent
    +
    249{
    +
    250public:
    +
    251 VToDo();
    +
    252 VToDo(const VToDo &);
    +
    253 VToDo &operator=(const VToDo &);
    +
    254 ~VToDo();
    +
    255
    +
    256 explicit VToDo(icalcomponent *v);
    +
    257 explicit VToDo(const std::string &str);
    +
    258};
    +
    259
    +
    260class LIBICAL_ICAL_EXPORT VAgenda: public VComponent
    +
    261{
    +
    262public:
    +
    263 VAgenda();
    +
    264 VAgenda(const VAgenda &);
    +
    265 VAgenda &operator=(const VAgenda &);
    +
    266 ~VAgenda();
    +
    267
    +
    268 explicit VAgenda(icalcomponent *v);
    +
    269 explicit VAgenda(const std::string &str);
    +
    270};
    +
    271
    +
    272class LIBICAL_ICAL_EXPORT VQuery: public VComponent
    +
    273{
    +
    274public:
    +
    275 VQuery();
    +
    276 VQuery(const VQuery &);
    +
    277 VQuery &operator=(const VQuery &);
    +
    278 ~VQuery();
    +
    279
    +
    280 explicit VQuery(icalcomponent *v);
    +
    281 explicit VQuery(const std::string &str);
    +
    282};
    +
    283
    +
    284class LIBICAL_ICAL_EXPORT VJournal: public VComponent
    +
    285{
    +
    286public:
    +
    287 VJournal();
    +
    288 VJournal(const VJournal &);
    +
    289 VJournal &operator=(const VJournal &);
    +
    290 ~VJournal();
    +
    291
    +
    292 explicit VJournal(icalcomponent *v);
    +
    293 explicit VJournal(const std::string &str);
    +
    294};
    +
    295
    +
    296class LIBICAL_ICAL_EXPORT VAlarm: public VComponent
    +
    297{
    +
    298public:
    +
    299 VAlarm();
    +
    300 VAlarm(const VAlarm &);
    +
    301 VAlarm &operator=(const VAlarm &);
    +
    302 ~VAlarm();
    +
    303
    +
    304 explicit VAlarm(icalcomponent *v);
    +
    305 explicit VAlarm(const std::string &str);
    +
    306
    +
    312 icalrequeststatus getTriggerTime(VComponent &c, struct icaltriggertype *tr);
    +
    313};
    +
    314
    +
    315class LIBICAL_ICAL_EXPORT VFreeBusy: public VComponent
    +
    316{
    +
    317public:
    +
    318 VFreeBusy();
    +
    319 VFreeBusy(const VFreeBusy &);
    +
    320 VFreeBusy &operator=(const VFreeBusy &);
    +
    321 ~VFreeBusy();
    +
    322
    +
    323 explicit VFreeBusy(icalcomponent *v);
    +
    324 explicit VFreeBusy(const std::string &str);
    +
    325};
    +
    326
    +
    327class LIBICAL_ICAL_EXPORT VTimezone: public VComponent
    +
    328{
    +
    329public:
    +
    330 VTimezone();
    +
    331 VTimezone(const VTimezone &);
    +
    332 VTimezone &operator=(const VTimezone &);
    +
    333 ~VTimezone();
    +
    334
    +
    335 explicit VTimezone(icalcomponent *v);
    +
    336 explicit VTimezone(const std::string &str);
    +
    337};
    +
    338
    +
    339class LIBICAL_ICAL_EXPORT XStandard: public VComponent
    +
    340{
    +
    341public:
    +
    342 XStandard();
    +
    343 XStandard(const XStandard &);
    +
    344 XStandard &operator=(const XStandard &);
    +
    345 ~XStandard();
    +
    346
    +
    347 explicit XStandard(icalcomponent *v);
    +
    348 explicit XStandard(const std::string &str);
    +
    349};
    +
    350
    +
    351class LIBICAL_ICAL_EXPORT XDaylight: public VComponent
    +
    352{
    +
    353public:
    +
    354 XDaylight();
    +
    355 XDaylight(const XDaylight &);
    +
    356 XDaylight &operator=(const XDaylight &);
    +
    357 ~XDaylight();
    +
    358
    +
    359 explicit XDaylight(icalcomponent *v);
    +
    360 explicit XDaylight(const std::string &str);
    +
    361};
    +
    362
    +
    363} // namespace LibICal;
    +
    364
    +
    365typedef ICPointerHolder < LibICal::VComponent > VComponentTmpPtr;
    +
    366
    +
    367#endif /* ICAL_VCOMPONENT_H */
    +
    Definition icptrholder_cxx.h:48
    +
    Definition icalproperty_cxx.h:41
    +
    Definition vcomponent_cxx.h:261
    +
    Definition vcomponent_cxx.h:297
    +
    icalrequeststatus getTriggerTime(VComponent &c, struct icaltriggertype *tr)
    +
    Definition vcomponent_cxx.h:225
    +
    A class wrapping the libical icalcomponent functions.
    Definition vcomponent_cxx.h:48
    +
    void convert_errors()
    Convert some X-LIC-ERROR properties into RETURN-STATUS properties.
    +
    VComponent * get_current_component()
    Iterate through components.
    +
    VComponent * get_inner()
    +
    int count_errors()
    Working with embedded error properties.
    +
    static icalcomponent_kind string_to_kind(const std::string &str)
    Kind conversion routines.
    +
    void add_property(ICalProperty *property)
    Working with properties.
    +
    void strip_errors()
    Remove all X-LIC-ERROR properties.
    +
    bool remove(VComponent &, bool ignoreValue)
    Note: the VComponent kind have to be the same.
    +
    icalcompiter begin_component(const icalcomponent_kind &kind)
    Using external iterators.
    +
    VComponent * get_first_real_component()
    +
    Definition vcomponent_cxx.h:237
    +
    Definition vcomponent_cxx.h:316
    +
    Definition vcomponent_cxx.h:285
    +
    Definition vcomponent_cxx.h:273
    +
    Definition vcomponent_cxx.h:328
    +
    Definition vcomponent_cxx.h:249
    +
    Definition vcomponent_cxx.h:352
    +
    Definition vcomponent_cxx.h:340
    + +
    Error handling for libical.
    +
    C++ template classes for managing C++ pointers returned by VComponent::get_..._component,...
    +
    Definition icalcomponent.h:36
    +
    Definition icalcomponent.c:36
    +
    A struct representing a duration.
    Definition icalduration.h:37
    +
    Definition icaltime.h:96
    +
    Definition icaltime.h:105
    +
    Definition icaltypes.h:40
    +
    + + + + diff --git a/static/apidocs/vobject_8h_source.html b/static/apidocs/vobject_8h_source.html new file mode 100644 index 00000000..89babde8 --- /dev/null +++ b/static/apidocs/vobject_8h_source.html @@ -0,0 +1,443 @@ + + + + + + + +Libical API Documentation: vobject.h Source File + + + + + + + + + +
    +
    + + + + + + +
    +
    Libical API Documentation 3.0 +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + + +
    +
    +
    vobject.h
    +
    +
    +
    1/***************************************************************************
    +
    2(C) Copyright 1996 Apple Computer, Inc., AT&T Corp., International
    +
    3Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    4
    +
    5For purposes of this license notice, the term Licensors shall mean,
    +
    6collectively, Apple Computer, Inc., AT&T Corp., International
    +
    7Business Machines Corporation and Siemens Rolm Communications Inc.
    +
    8The term Licensor shall mean any of the Licensors.
    +
    9
    +
    10Subject to acceptance of the following conditions, permission is hereby
    +
    11granted by Licensors without the need for written agreement and without
    +
    12license or royalty fees, to use, copy, modify and distribute this
    +
    13software for any purpose.
    +
    14
    +
    15The above copyright notice and the following four paragraphs must be
    +
    16reproduced in all copies of this software and any software including
    +
    17this software.
    +
    18
    +
    19THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS AND NO LICENSOR SHALL HAVE
    +
    20ANY OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR
    +
    21MODIFICATIONS.
    +
    22
    +
    23IN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY FOR DIRECT,
    +
    24INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
    +
    25OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
    +
    26DAMAGE.
    +
    27
    +
    28EACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED,
    +
    29INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE
    +
    30IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    +
    31PURPOSE.
    +
    32
    +
    33The software is provided with RESTRICTED RIGHTS. Use, duplication, or
    +
    34disclosure by the government are subject to restrictions set forth in
    +
    35DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable.
    +
    36
    +
    37***************************************************************************/
    +
    38
    +
    39/*
    +
    40
    +
    41The vCard/vCalendar C interface is implemented in the set
    +
    42of files as follows:
    +
    43
    +
    44vcc.y, yacc source, and vcc.c, the yacc output you will use
    +
    45implements the core parser
    +
    46
    +
    47vobject.c implements an API that insulates the caller from
    +
    48the parser and changes in the vCard/vCalendar BNF
    +
    49
    +
    50vcc.h and vobject.h are header files for their .c counterparts
    +
    51
    +
    52vcaltmp.h and vcaltmp.c implement vCalendar "macro" functions
    +
    53which you may find useful.
    +
    54
    +
    55test.c is a standalone test driver that exercises some of
    +
    56the features of the APIs provided. Invoke test.exe on a
    +
    57VCARD/VCALENDAR input text file and you will see the pretty
    +
    58print output of the internal representation (this pretty print
    +
    59output should give you a good idea of how the internal
    +
    60representation looks like -- there is one such output in the
    +
    61following too). Also, a file with the .out suffix is generated
    +
    62to show that the internal representation can be written back
    +
    63in the original text format.
    +
    64
    +
    65For more information on this API see the readme.txt file
    +
    66which accompanied this distribution.
    +
    67*/
    +
    68
    +
    69#ifndef VOBJECT_H
    +
    70#define VOBJECT_H
    +
    71
    +
    72#include "libical_vcal_export.h"
    +
    73#include <stdlib.h>
    +
    74#include <stdio.h>
    +
    75
    +
    76#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    77extern "C"
    +
    78{
    +
    79#endif
    +
    80
    +
    81#define VC7bitProp "7BIT"
    +
    82#define VC8bitProp "8BIT"
    +
    83#define VCAAlarmProp "AALARM"
    +
    84#define VCAdditionalNamesProp "ADDN"
    +
    85#define VCAdrProp "ADR"
    +
    86#define VCAgentProp "AGENT"
    +
    87#define VCAIFFProp "AIFF"
    +
    88#define VCAOLProp "AOL"
    +
    89#define VCAppleLinkProp "APPLELINK"
    +
    90#define VCAttachProp "ATTACH"
    +
    91#define VCAttendeeProp "ATTENDEE"
    +
    92#define VCATTMailProp "ATTMAIL"
    +
    93#define VCAudioContentProp "AUDIOCONTENT"
    +
    94#define VCAVIProp "AVI"
    +
    95#define VCBase64Prop "BASE64"
    +
    96#define VCBBSProp "BBS"
    +
    97#define VCBirthDateProp "BDAY"
    +
    98#define VCBMPProp "BMP"
    +
    99#define VCBodyProp "BODY"
    +
    100#define VCBusinessRoleProp "ROLE"
    +
    101#define VCCalProp "VCALENDAR"
    +
    102#define VCCaptionProp "CAP"
    +
    103#define VCCardProp "VCARD"
    +
    104#define VCCarProp "CAR"
    +
    105#define VCCategoriesProp "CATEGORIES"
    +
    106#define VCCellularProp "CELL"
    +
    107#define VCCGMProp "CGM"
    +
    108#define VCCharSetProp "CS"
    +
    109#define VCCIDProp "CID"
    +
    110#define VCCISProp "CIS"
    +
    111#define VCCityProp "L"
    +
    112#define VCClassProp "CLASS"
    +
    113#define VCCommentProp "NOTE"
    +
    114#define VCCompletedProp "COMPLETED"
    +
    115#define VCContentIDProp "CONTENT-ID"
    +
    116#define VCCountryNameProp "C"
    +
    117#define VCDAlarmProp "DALARM"
    +
    118#define VCDataSizeProp "DATASIZE"
    +
    119#define VCDayLightProp "DAYLIGHT"
    +
    120#define VCDCreatedProp "DCREATED"
    +
    121#define VCDeliveryLabelProp "LABEL"
    +
    122#define VCDescriptionProp "DESCRIPTION"
    +
    123#define VCDIBProp "DIB"
    +
    124#define VCDisplayStringProp "DISPLAYSTRING"
    +
    125#define VCDomesticProp "DOM"
    +
    126#define VCDTendProp "DTEND"
    +
    127#define VCDTstartProp "DTSTART"
    +
    128#define VCDueProp "DUE"
    +
    129#define VCEmailAddressProp "EMAIL"
    +
    130#define VCEncodingProp "ENCODING"
    +
    131#define VCEndProp "END"
    +
    132#define VCEventProp "VEVENT"
    +
    133#define VCEWorldProp "EWORLD"
    +
    134#define VCExNumProp "EXNUM"
    +
    135#define VCExpDateProp "EXDATE"
    +
    136#define VCExpectProp "EXPECT"
    +
    137#define VCExtAddressProp "EXT ADD"
    +
    138#define VCFamilyNameProp "F"
    +
    139#define VCFaxProp "FAX"
    +
    140#define VCFullNameProp "FN"
    +
    141#define VCGeoProp "GEO"
    +
    142#define VCGeoLocationProp "GEO"
    +
    143#define VCGIFProp "GIF"
    +
    144#define VCGivenNameProp "G"
    +
    145#define VCGroupingProp "Grouping"
    +
    146#define VCHomeProp "HOME"
    +
    147#define VCIBMMailProp "IBMMail"
    +
    148#define VCInlineProp "INLINE"
    +
    149#define VCInternationalProp "INTL"
    +
    150#define VCInternetProp "INTERNET"
    +
    151#define VCISDNProp "ISDN"
    +
    152#define VCJPEGProp "JPEG"
    +
    153#define VCLanguageProp "LANG"
    +
    154#define VCLastModifiedProp "LAST-MODIFIED"
    +
    155#define VCLastRevisedProp "REV"
    +
    156#define VCLocationProp "LOCATION"
    +
    157#define VCLogoProp "LOGO"
    +
    158#define VCMailerProp "MAILER"
    +
    159#define VCMAlarmProp "MALARM"
    +
    160#define VCMCIMailProp "MCIMAIL"
    +
    161#define VCMessageProp "MSG"
    +
    162#define VCMETProp "MET"
    +
    163#define VCModemProp "MODEM"
    +
    164#define VCMPEG2Prop "MPEG2"
    +
    165#define VCMPEGProp "MPEG"
    +
    166#define VCMSNProp "MSN"
    +
    167#define VCNamePrefixesProp "NPRE"
    +
    168#define VCNameProp "N"
    +
    169#define VCNameSuffixesProp "NSUF"
    +
    170#define VCNoteProp "NOTE"
    +
    171#define VCOrgNameProp "ORGNAME"
    +
    172#define VCOrgProp "ORG"
    +
    173#define VCOrgUnit2Prop "OUN2"
    +
    174#define VCOrgUnit3Prop "OUN3"
    +
    175#define VCOrgUnit4Prop "OUN4"
    +
    176#define VCOrgUnitProp "OUN"
    +
    177#define VCPagerProp "PAGER"
    +
    178#define VCPAlarmProp "PALARM"
    +
    179#define VCParcelProp "PARCEL"
    +
    180#define VCPartProp "PART"
    +
    181#define VCPCMProp "PCM"
    +
    182#define VCPDFProp "PDF"
    +
    183#define VCPGPProp "PGP"
    +
    184#define VCPhotoProp "PHOTO"
    +
    185#define VCPICTProp "PICT"
    +
    186#define VCPMBProp "PMB"
    +
    187#define VCPostalBoxProp "BOX"
    +
    188#define VCPostalCodeProp "PC"
    +
    189#define VCPostalProp "POSTAL"
    +
    190#define VCPowerShareProp "POWERSHARE"
    +
    191#define VCPreferredProp "PREF"
    +
    192#define VCPriorityProp "PRIORITY"
    +
    193#define VCProcedureNameProp "PROCEDURENAME"
    +
    194#define VCProdIdProp "PRODID"
    +
    195#define VCProdigyProp "PRODIGY"
    +
    196#define VCPronunciationProp "SOUND"
    +
    197#define VCPSProp "PS"
    +
    198#define VCPublicKeyProp "KEY"
    +
    199#define VCQPProp "QP"
    +
    200#define VCQuickTimeProp "QTIME"
    +
    201#define VCQuotedPrintableProp "QUOTED-PRINTABLE"
    +
    202#define VCRDateProp "RDATE"
    +
    203#define VCRegionProp "R"
    +
    204#define VCRelatedToProp "RELATED-TO"
    +
    205#define VCRepeatCountProp "REPEATCOUNT"
    +
    206#define VCResourcesProp "RESOURCES"
    +
    207#define VCRNumProp "RNUM"
    +
    208#define VCRoleProp "ROLE"
    +
    209#define VCRRuleProp "RRULE"
    +
    210#define VCRSVPProp "RSVP"
    +
    211#define VCRunTimeProp "RUNTIME"
    +
    212#define VCSequenceProp "SEQUENCE"
    +
    213#define VCSnoozeTimeProp "SNOOZETIME"
    +
    214#define VCStartProp "START"
    +
    215#define VCStatusProp "STATUS"
    +
    216#define VCStreetAddressProp "STREET"
    +
    217#define VCSubTypeProp "SUBTYPE"
    +
    218#define VCSummaryProp "SUMMARY"
    +
    219#define VCTelephoneProp "TEL"
    +
    220#define VCTIFFProp "TIFF"
    +
    221#define VCTimeZoneProp "TZ"
    +
    222#define VCTitleProp "TITLE"
    +
    223#define VCTLXProp "TLX"
    +
    224#define VCTodoProp "VTODO"
    +
    225#define VCTranspProp "TRANSP"
    +
    226#define VCUniqueStringProp "UID"
    +
    227#define VCURLProp "URL"
    +
    228#define VCURLValueProp "URLVAL"
    +
    229#define VCValueProp "VALUE"
    +
    230#define VCVersionProp "VERSION"
    +
    231#define VCVideoProp "VIDEO"
    +
    232#define VCVoiceProp "VOICE"
    +
    233#define VCWAVEProp "WAVE"
    +
    234#define VCWMFProp "WMF"
    +
    235#define VCWorkProp "WORK"
    +
    236#define VCX400Prop "X400"
    +
    237#define VCX509Prop "X509"
    +
    238#define VCXRuleProp "XRULE"
    +
    239
    +
    240/* Extensions */
    +
    241
    +
    242#define XPilotIdProp "X-PILOTID"
    +
    243#define XPilotStatusProp "X-PILOTSTAT"
    +
    244
    +
    245 typedef struct VObject VObject;
    +
    246
    +
    247 typedef struct VObjectIterator
    +
    248 {
    +
    249 VObject *start;
    +
    250 VObject *next;
    + +
    252
    +
    253 LIBICAL_VCAL_EXPORT VObject *newVObject(const char *id);
    +
    254 LIBICAL_VCAL_EXPORT void deleteVObject(VObject *p);
    +
    255 LIBICAL_VCAL_EXPORT char *dupStr(const char *s, size_t size);
    +
    256 LIBICAL_VCAL_EXPORT void deleteStr(const char *p);
    +
    257 LIBICAL_VCAL_EXPORT void unUseStr(const char *s);
    +
    258
    +
    259 LIBICAL_VCAL_EXPORT void setVObjectName(VObject *o, const char *id);
    +
    260 LIBICAL_VCAL_EXPORT void setVObjectStringZValue(VObject *o, const char *s);
    +
    261 LIBICAL_VCAL_EXPORT void setVObjectStringZValue_(VObject *o, const char *s);
    +
    262 LIBICAL_VCAL_EXPORT void setVObjectUStringZValue(VObject *o, const wchar_t *s);
    +
    263 LIBICAL_VCAL_EXPORT void setVObjectUStringZValue_(VObject *o, const wchar_t *s);
    +
    264 LIBICAL_VCAL_EXPORT void setVObjectIntegerValue(VObject *o, unsigned int i);
    +
    265 LIBICAL_VCAL_EXPORT void setVObjectLongValue(VObject *o, unsigned long l);
    +
    266 LIBICAL_VCAL_EXPORT void setVObjectAnyValue(VObject *o, void *t);
    +
    267 LIBICAL_VCAL_EXPORT VObject *setValueWithSize(VObject *prop, void *val, unsigned int size);
    +
    268 LIBICAL_VCAL_EXPORT VObject *setValueWithSize_(VObject *prop, void *val, unsigned int size);
    +
    269
    +
    270 LIBICAL_VCAL_EXPORT const char *vObjectName(VObject *o);
    +
    271 LIBICAL_VCAL_EXPORT const char *vObjectStringZValue(VObject *o);
    +
    272 LIBICAL_VCAL_EXPORT const wchar_t *vObjectUStringZValue(VObject *o);
    +
    273 LIBICAL_VCAL_EXPORT unsigned int vObjectIntegerValue(VObject *o);
    +
    274 LIBICAL_VCAL_EXPORT unsigned long vObjectLongValue(VObject *o);
    +
    275 LIBICAL_VCAL_EXPORT void *vObjectAnyValue(VObject *o);
    +
    276 LIBICAL_VCAL_EXPORT VObject *vObjectVObjectValue(VObject *o);
    +
    277 LIBICAL_VCAL_EXPORT void setVObjectVObjectValue(VObject *o, VObject *p);
    +
    278
    +
    279 LIBICAL_VCAL_EXPORT VObject *addVObjectProp(VObject *o, VObject *p);
    +
    280 LIBICAL_VCAL_EXPORT VObject *addProp(VObject *o, const char *id);
    +
    281 LIBICAL_VCAL_EXPORT VObject *addPropValue(VObject *o, const char *p, const char *v);
    +
    282 LIBICAL_VCAL_EXPORT VObject *addPropSizedValue_(VObject *o, const char *p, const char *v,
    +
    283 unsigned int size);
    +
    284 LIBICAL_VCAL_EXPORT VObject *addPropSizedValue(VObject *o, const char *p, const char *v,
    +
    285 unsigned int size);
    +
    286 LIBICAL_VCAL_EXPORT VObject *addGroup(VObject *o, const char *g);
    +
    287 LIBICAL_VCAL_EXPORT void addList(VObject ** o, VObject *p);
    +
    288
    +
    289 LIBICAL_VCAL_EXPORT VObject *isAPropertyOf(VObject *o, const char *id);
    +
    290
    +
    291 LIBICAL_VCAL_EXPORT VObject *nextVObjectInList(VObject *o);
    +
    292 LIBICAL_VCAL_EXPORT void initPropIterator(VObjectIterator * i, VObject *o);
    +
    293 LIBICAL_VCAL_EXPORT int moreIteration(VObjectIterator * i);
    +
    294 LIBICAL_VCAL_EXPORT VObject *nextVObject(VObjectIterator * i);
    +
    295
    +
    296 LIBICAL_VCAL_EXPORT char *writeMemVObject(char *s, int *len, VObject *o);
    +
    297 LIBICAL_VCAL_EXPORT char *writeMemVObjects(char *s, int *len, VObject *list);
    +
    298
    +
    299 LIBICAL_VCAL_EXPORT const char *lookupStr(const char *s);
    +
    300 LIBICAL_VCAL_EXPORT void cleanStrTbl(void);
    +
    301
    +
    302 LIBICAL_VCAL_EXPORT void cleanVObject(VObject *o);
    +
    303 LIBICAL_VCAL_EXPORT void cleanVObjects(VObject *list);
    +
    304
    +
    305 LIBICAL_VCAL_EXPORT const char *lookupProp(const char *str);
    +
    306 LIBICAL_VCAL_EXPORT const char *lookupProp_(const char *str);
    +
    307
    +
    308 LIBICAL_VCAL_EXPORT wchar_t *fakeUnicode(const char *ps, size_t *bytes);
    +
    309 LIBICAL_VCAL_EXPORT int uStrLen(const wchar_t *u);
    +
    310 LIBICAL_VCAL_EXPORT char *fakeCString(const wchar_t *u);
    +
    311
    +
    312 LIBICAL_VCAL_EXPORT void printVObjectToFile(char *fname, VObject *o);
    +
    313 LIBICAL_VCAL_EXPORT void printVObjectsToFile(char *fname, VObject *list);
    +
    314 LIBICAL_VCAL_EXPORT void writeVObjectToFile(char *fname, VObject *o);
    +
    315 LIBICAL_VCAL_EXPORT void writeVObjectsToFile(char *fname, VObject *list);
    +
    316
    +
    317 LIBICAL_VCAL_EXPORT int vObjectValueType(VObject *o);
    +
    318
    +
    319/* return type of vObjectValueType: */
    +
    320#define VCVT_NOVALUE 0
    +
    321 /* if the VObject has no value associated with it. */
    +
    322#define VCVT_STRINGZ 1
    +
    323 /* if the VObject has value set by setVObjectStringZValue. */
    +
    324#define VCVT_USTRINGZ 2
    +
    325 /* if the VObject has value set by setVObjectUStringZValue. */
    +
    326#define VCVT_UINT 3
    +
    327 /* if the VObject has value set by setVObjectIntegerValue. */
    +
    328#define VCVT_ULONG 4
    +
    329 /* if the VObject has value set by setVObjectLongValue. */
    +
    330#define VCVT_RAW 5
    +
    331 /* if the VObject has value set by setVObjectAnyValue. */
    +
    332#define VCVT_VOBJECT 6
    +
    333 /* if the VObject has value set by setVObjectVObjectValue. */
    +
    334
    +
    335 extern const char **fieldedProp;
    +
    336
    +
    337/* NOTE regarding printVObject and writeVObject
    +
    338
    +
    339The functions below are not exported from the DLL because they
    +
    340take a FILE* as a parameter, which cannot be passed across a DLL
    +
    341interface (at least that is my experience). Instead you can use
    +
    342their companion functions which take file names or pointers
    +
    343to memory. However, if you are linking this code into
    +
    344your build directly then you may find them a more convenient API
    +
    345and you can go ahead and use them. If you try to use them with
    +
    346the DLL LIB you will get a link error.
    +
    347*/
    +
    348 extern void printVObject(FILE *fp, VObject *o);
    +
    349 extern void writeVObject(FILE *fp, VObject *o);
    +
    350
    +
    351#if defined(__CPLUSPLUS__) || defined(__cplusplus)
    +
    352}
    +
    353
    +
    354#endif
    +
    355
    +
    356#endif /* VOBJECT_H */
    +
    Definition vobject.h:248
    +
    Definition vobject.c:69
    +
    + + + + diff --git a/static/libical-glib/callback.ComponentForeachRecurrenceFunc.html b/static/libical-glib/callback.ComponentForeachRecurrenceFunc.html new file mode 100644 index 00000000..8bf43a39 --- /dev/null +++ b/static/libical-glib/callback.ComponentForeachRecurrenceFunc.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.ComponentForeachRecurrenceFunc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibComponentForeachRecurrenceFunc

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + + +

    + +
    +
    void
    +(* ICalComponentForeachRecurrenceFunc) (
    +  ICalComponent* comp,
    +  ICalTimeSpan* span,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    No description available.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    span
    +
    +

    Type: ICalTimeSpan

    +

    No description available.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    No description available.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/callback.ComponentForeachTZIDFunc.html b/static/libical-glib/callback.ComponentForeachTZIDFunc.html new file mode 100644 index 00000000..fc134350 --- /dev/null +++ b/static/libical-glib/callback.ComponentForeachTZIDFunc.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.ComponentForeachTZIDFunc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibComponentForeachTZIDFunc

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + + +

    + +
    +
    void
    +(* ICalComponentForeachTZIDFunc) (
    +  ICalParameter* param,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    param
    +
    +

    Type: ICalParameter

    +

    No description available.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    No description available.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/callback.MimeParseFunc.html b/static/libical-glib/callback.MimeParseFunc.html new file mode 100644 index 00000000..8ec22967 --- /dev/null +++ b/static/libical-glib/callback.MimeParseFunc.html @@ -0,0 +1,248 @@ + + + + + + ICalGLib.MimeParseFunc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibMimeParseFunc

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + + +

    + +
    +
    gchar*
    +(* ICalMimeParseFunc) (
    +  gchar* bytes,
    +  size_t size,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    bytes
    +
    +

    Type: An array of char

    +

    The bytes to process.

    + + + + + + + + + + +
    The length of the array is specified in the size argument.
    The data is owned by the caller of the function.
    +
    + +
    size
    +
    +

    Type: size_t

    +

    The length of the bytes array.

    + + + + + + + + + + +
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The user data.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    A ICalComponent as a string.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/callback.ParserLineGenFunc.html b/static/libical-glib/callback.ParserLineGenFunc.html new file mode 100644 index 00000000..37abc738 --- /dev/null +++ b/static/libical-glib/callback.ParserLineGenFunc.html @@ -0,0 +1,248 @@ + + + + + + ICalGLib.ParserLineGenFunc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParserLineGenFunc

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + + +

    + +
    +
    gchar*
    +(* ICalParserLineGenFunc) (
    +  gchar* bytes,
    +  size_t size,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    bytes
    +
    +

    Type: An array of char

    +

    The bytes to process.

    + + + + + + + + + + +
    The length of the array is specified in the size argument.
    The data is owned by the caller of the function.
    +
    + +
    size
    +
    +

    Type: size_t

    +

    The length of the bytes array.

    + + + + + + + + + + +
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The user data.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    One content line per invocation.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Array.html b/static/libical-glib/class.Array.html new file mode 100644 index 00000000..d1ecd762 --- /dev/null +++ b/static/libical-glib/class.Array.html @@ -0,0 +1,655 @@ + + + + + + ICalGLib.Array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibArray

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Array : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalArray instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalArray + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_array_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_array_copy
    +
    +

    Creates a deep copy of ICalArray with the same properties as the array.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_array_element_at
    +
    +

    Gets the element located in the position in the array. NULL if position if out of bound.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_array_free
    +
    +

    Frees the ICalArray.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_array_remove_element_at
    +
    +

    Removes the element at the position from the array.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_array_size
    +
    +

    Gets the size of the array.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_array_sort
    +
    +

    Does not work right now. Sorts the array using the sort function compare.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibArrayClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalArray class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Attach.html b/static/libical-glib/class.Attach.html new file mode 100644 index 00000000..038cc789 --- /dev/null +++ b/static/libical-glib/class.Attach.html @@ -0,0 +1,681 @@ + + + + + + ICalGLib.Attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibAttach

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Attach : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalAttach instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalAttach + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_attach_new_from_bytes
    +
    +

    Creates a new ICalAttach from the data in bytes. Takes a reference of bytes, increase the reference +before calling this function if you with to use it afterward. The stored bytes should be already encoded +with used encoding (like base64).

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_new_from_data
    +
    +

    Creates a new ICalAttach from the data.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_new_from_url
    +
    +

    Creates a new ICalAttach from the url.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_attach_get_data
    +
    +

    Gets the data, if the ICalAttach is built from the data.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_get_is_url
    +
    +

    Checks whether the ICalAttach is built from url.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_get_url
    +
    +

    Gets the url, if the ICalAttach is built from the url.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_ref
    +
    +

    Increases the reference counter by 1 for the attach.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_attach_unref
    +
    +

    Decreases the reference counter by 1 for the attach.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibAttachClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalAttach class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.CompIter.html b/static/libical-glib/class.CompIter.html new file mode 100644 index 00000000..e83c604b --- /dev/null +++ b/static/libical-glib/class.CompIter.html @@ -0,0 +1,651 @@ + + + + + + ICalGLib.CompIter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibCompIter

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.CompIter : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalCompIter instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalCompIter + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_comp_iter_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_comp_iter_new_default
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_comp_iter_deref
    +
    +

    Gets the current ICalComponent pointed by ICalCompIter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_comp_iter_next
    +
    +

    Gets the next ICalComponent pointed by ICalCompIter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_comp_iter_prior
    +
    +

    Gets the prior ICalComponent pointed by ICalCompIter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibCompIterClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalCompIter class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Component.html b/static/libical-glib/class.Component.html new file mode 100644 index 00000000..26cb2044 --- /dev/null +++ b/static/libical-glib/class.Component.html @@ -0,0 +1,1711 @@ + + + + + + ICalGLib.Component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibComponent

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Component : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalComponent instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalComponent + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_component_new
    +
    +

    Creates a new ICalComponent with specific type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_from_string
    +
    +

    Creates a new ICalComponent based on a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_participant
    +
    +

    Creates a ICalComponent of type I_CAL_PARTICIPANT_COMPONENT.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_new_vagenda
    +
    +

    Creates a ICalComponent with the type to be vagenda.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_valarm
    +
    +

    Creates a ICalComponent with the type to be valarm.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vavailability
    +
    +

    Creates a ICalComponent with the type to be vavailability.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vcalendar
    +
    +

    Creates a ICalComponent with the type to be vcalendar.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vevent
    +
    +

    Creates a ICalComponent with the type to be vevent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vfreebusy
    +
    +

    Creates a ICalComponent with the type to be vfreebusy.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vjournal
    +
    +

    Creates a ICalComponent with the type to be vjournal.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vlocation
    +
    +

    Creates a ICalComponent of type I_CAL_VLOCATION_COMPONENT.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_new_vpatch
    +
    +

    Creates a ICalComponent of type I_CAL_VPATCH_COMPONENT.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_new_vpoll
    +
    +

    Creates a ICalComponent with the type to be vpoll.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vquery
    +
    +

    Creates a ICalComponent with the type to be vquery.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vresource
    +
    +

    Creates a ICalComponent of type I_CAL_VRESOURCE_COMPONENT.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_new_vtimezone
    +
    +

    Creates a ICalComponent with the type to be vtimezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vtodo
    +
    +

    Creates a ICalComponent with the type to be vtodo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_vvoter
    +
    +

    Creates a ICalComponent with the type to be vvoter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_x
    +
    +

    Creates a new ICalComponent based on name of x property.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_xavailable
    +
    +

    Creates a ICalComponent with the type to be xavailable.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_xdaylight
    +
    +

    Creates a ICalComponent with the type to be xdaylight.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_xpatch
    +
    +

    Creates a ICalComponent of type I_CAL_XPATCH_COMPONENT.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_new_xstandard
    +
    +

    Creates a ICalComponent with the type to be xstandard.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_new_xvote
    +
    +

    Creates a ICalComponent with the type to be xvote.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_component_kind_from_string
    +
    +

    Converts a string to a ICalComponentKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_kind_is_valid
    +
    +

    Checks if a ICalComponentKind is valid.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_kind_to_string
    +
    +

    Converts a ICalComponentKind to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_component_add_component
    +
    +

    Adds a ICalComponent into another ICalComponent as a child component.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_add_property
    +
    +

    Adds an ICalProperty into ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_as_ical_string
    +
    +

    Converts a ICalComponent to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_begin_component
    +
    +

    Gets the ICalCompIter pointing to the first child ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_check_restrictions
    +
    +

    Checks the number of restrictions in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_clone
    +
    +

    Deeply clone a ICalComponent.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_component_convert_errors
    +
    +

    Converts some X-LIC-ERROR properties into RETURN-STATUS properties.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_count_components
    +
    +

    Counts the child ICalComponent with the target kind in the parent one.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_count_errors
    +
    +

    Counts the number of errors in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_count_properties
    +
    +

    Counts the number of ICalProperty in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_end_component
    +
    +

    Gets the ICalCompIter pointing to the end child ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_foreach_recurrence
    +
    +

    Cycles through all recurrences of an event. This function will call the specified callback function for +once for the base value of DTSTART, and foreach recurring date/time value. It will filter out events +that are specified as an EXDATE or an EXRULE.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_component_foreach_tzid
    +
    +

    Applies the same manipulation on every tzid in ICalComponent.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_component_free
    +
    +

    Frees a ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_comment
    +
    +

    Gets the comment of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_current_component
    +
    +

    Gets the current ICalComponent in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_current_property
    +
    +

    Gets the current ICalProperty in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_description
    +
    +

    Gets the description of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_dtend
    +
    +

    Gets the dtend of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_dtstamp
    +
    +

    Gets the dtstamp of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_dtstart
    +
    +

    Gets the dtstart of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_due
    +
    +

    Gets the due of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_duration
    +
    +

    Gets the duration of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_first_component
    +
    +

    Gets the first ICalComponent with specific kind in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_first_property
    +
    +

    Gets the first ICalProperty with specific kind in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_first_real_component
    +
    +

    For VCOMPONENT: Returns a reference to the first VEVENT, VTODO or VJOURNAL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_inner
    +
    +

    Returns the first VEVENT, VTODO or VJOURNAL sub-component of cop, or comp if it is one of those types.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_location
    +
    +

    Gets the location of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_method
    +
    +

    Gets the method of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_next_component
    +
    +

    Gets the next ICalComponent with specific kind in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_next_property
    +
    +

    Gets the next ICalProperty with specific kind in ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_parent
    +
    +

    Gets the parent component of the component.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_component_get_recurrenceid
    +
    +

    Gets the recurrenceid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_relcalid
    +
    +

    Gets the relcalid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_sequence
    +
    +

    Gets the sequence of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_span
    +
    +

    For VEVENT, VTODO, VJOURNAL and VTIMEZONE: reports the start and end times of an event in UTC.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_status
    +
    +

    Gets the status of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_summary
    +
    +

    Gets the summary of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_timezone
    +
    +

    Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can’t be found.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_get_uid
    +
    +

    Gets the uid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_is_valid
    +
    +

    Checks whether ICalComponent is valid.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_isa
    +
    +

    Gets the type of ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_isa_component
    +
    +

    Checks whether the native part of ICalComponent is icalcomponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_merge_component
    +
    +

    Takes 2 VCALENDAR components and merges the second one into the first, resolving any problems with conflicting +TZIDs. comp_to_merge will no longer exist after calling this function.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_remove_component
    +
    +

    Removes a child ICalComponent from another ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_remove_property
    +
    +

    Removes ICalProperty from ICalComponent. Caution: The compare is based on address. So you must use +the original ICalProperty as the target.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_comment
    +
    +

    Sets the comment of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_description
    +
    +

    Sets the description of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_dtend
    +
    +

    Sets the dtend of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_dtstamp
    +
    +

    Sets the dtstamp of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_dtstart
    +
    +

    Sets the dtstart of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_due
    +
    +

    Sets the due of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_duration
    +
    +

    Sets the duration of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_location
    +
    +

    Sets the location of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_method
    +
    +

    Sets the method of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_parent
    +
    +

    Sets the parent ICalComponent of the specified component.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_component_set_recurrenceid
    +
    +

    Sets the recurrenceid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_relcalid
    +
    +

    Sets the relcalid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_sequence
    +
    +

    Sets the sequence of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_status
    +
    +

    Sets the status of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_summary
    +
    +

    Sets the summary of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_set_uid
    +
    +

    Sets the uid of the ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_strip_errors
    +
    +

    Removes all X-LIC-ERROR properties.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_take_component
    +
    +

    Adds the child into the parent as a child component and unrefs the child.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_component_take_property
    +
    +

    Adds the property into the component and unrefs the property.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibComponentClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalComponent class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Datetimeperiod.html b/static/libical-glib/class.Datetimeperiod.html new file mode 100644 index 00000000..a9ec8a9f --- /dev/null +++ b/static/libical-glib/class.Datetimeperiod.html @@ -0,0 +1,675 @@ + + + + + + ICalGLib.Datetimeperiod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibDatetimeperiod

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Datetimeperiod : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalDatetimeperiod instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalDatetimeperiod + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_datetimeperiod_new
    +
    +

    Creates a new ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_datetimeperiod_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_datetimeperiod_new_default
    +
    +

    Creates a new default ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_datetimeperiod_get_period
    +
    +

    Gets the period attribute of ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_datetimeperiod_get_time
    +
    +

    Gets the time attribute of ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_datetimeperiod_set_period
    +
    +

    Sets the period attribute of ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_datetimeperiod_set_time
    +
    +

    Sets the time attribute of ICalDatetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibDatetimeperiodClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalDatetimeperiod class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Duration.html b/static/libical-glib/class.Duration.html new file mode 100644 index 00000000..d028341e --- /dev/null +++ b/static/libical-glib/class.Duration.html @@ -0,0 +1,823 @@ + + + + + + ICalGLib.Duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibDuration

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Duration : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalDuration instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalDuration + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_duration_new_bad_duration
    +
    +

    Creates a bad ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_new_from_int
    +
    +

    Creates a ICalDuration from the duration in second.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_new_from_string
    +
    +

    Creates a ICalDuration from the duration in string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_new_null_duration
    +
    +

    Creates a ICalDuration with all the fields to be zero.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_duration_as_ical_string
    +
    +

    Converts the ICalDuration to the representation in string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_as_int
    +
    +

    Converts the ICalDuration to the representation in second.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_get_days
    +
    +

    Gets the days of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_get_hours
    +
    +

    Gets the hours of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_get_minutes
    +
    +

    Gets the minutes of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_get_seconds
    +
    +

    Gets the seconds of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_get_weeks
    +
    +

    Gets the weeks of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_is_bad_duration
    +
    +

    Checks whether the ICalDuration is the bad_duration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_is_neg
    +
    +

    Gets the is_neg of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_is_null_duration
    +
    +

    Checks whether the ICalDuration is the null_duration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_days
    +
    +

    Sets the days of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_hours
    +
    +

    Sets the hours of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_is_neg
    +
    +

    Sets the is_neg of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_minutes
    +
    +

    Sets the minutes of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_seconds
    +
    +

    Sets the seconds of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_duration_set_weeks
    +
    +

    Sets the weeks of ICalDuration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibDurationClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalDuration class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Geo.html b/static/libical-glib/class.Geo.html new file mode 100644 index 00000000..b755d6b8 --- /dev/null +++ b/static/libical-glib/class.Geo.html @@ -0,0 +1,687 @@ + + + + + + ICalGLib.Geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibGeo

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Geo : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalGeo instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalGeo + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_geo_new
    +
    +

    Creates a new ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_geo_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_geo_new_default
    +
    +

    Creates a new default ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_geo_clone
    +
    +

    Creates a new ICalGeo, copy of geo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_geo_get_lat
    +
    +

    Gets the latitude of ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_geo_get_lon
    +
    +

    Gets the longitude of ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_geo_set_lat
    +
    +

    Sets the latitude of ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_geo_set_lon
    +
    +

    Sets the longitude of ICalGeo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibGeoClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalGeo class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Object.html b/static/libical-glib/class.Object.html new file mode 100644 index 00000000..e95ae359 --- /dev/null +++ b/static/libical-glib/class.Object.html @@ -0,0 +1,706 @@ + + + + + + ICalGLib.Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibObject

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    abstract class ICalGLib.Object : GObject.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is an ICalObject instance struct.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalObject + + + + + +ancestor_0 + + +GObject + + + + + +ancestor_0--this + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + + + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_object_construct
    +
    +

    Creates an ICalObject descendant of type type and initialize private members +of it. The descendants should call this function in their _new() function, or use +corresponding properties during the construction time. This should not be mixed, +either use properties or this function.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_free_global_objects
    +
    +

    Frees all global objects. Any references to them are invalidated +by this call, unless they had been g_object_ref()-ed manually.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_object_add_depender
    +
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_get_always_destroy
    +
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    +
    + +
    +
    i_cal_object_get_is_global_memory
    +
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_get_native
    +
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_get_native_destroy_func
    +
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_ref_owner
    +
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_remove_depender
    +
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_remove_owner
    +
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_set_always_destroy
    +
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    +
    + +
    +
    i_cal_object_set_native_destroy_func
    +
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_set_owner
    +
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_object_steal_native
    +
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + +
    + +
    +
    ICalGLib.Object:always-destroy
    +
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    +
    + +
    +
    ICalGLib.Object:is-global-memory
    +
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    ICalGLib.Object:native
    +
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    ICalGLib.Object:native-destroy-func
    +
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    ICalGLib.Object:owner
    +
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    + + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibObjectClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is an ICalObject class struct.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Parameter.html b/static/libical-glib/class.Parameter.html new file mode 100644 index 00000000..7869b59a --- /dev/null +++ b/static/libical-glib/class.Parameter.html @@ -0,0 +1,2787 @@ + + + + + + ICalGLib.Parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibParameter

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Parameter : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalParameter instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalParameter + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_parameter_new
    +
    +

    Creates a new ICalParameter according to the kind type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_actionparam
    +
    +

    Creates a new ICalParameter according to the action type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_altrep
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_charset
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_cn
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_cutype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_delegatedfrom
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_delegatedto
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_derived
    +
    +

    Creates a new ICalParameter of kind I_CAL_DERIVED_PARAMETER holding value v of type ICalParameterDerived.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_new_dir
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_display
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_new_email
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_new_enable
    +
    +

    Creates a new ICalParameter according to the enable type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_encoding
    +
    +

    Creates a new ICalParameter according to the encoding type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_fbtype
    +
    +

    Creates a new ICalParameter according to the fbtype type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_feature
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_new_filename
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_fmttype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_from_string
    +
    +

    Creates a ICalParameter from a string of form “PARAMNAME=VALUE”.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_from_value_string
    +
    +

    Creates a new ICalParameter from just the value, the part after the “=”

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_iana
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_id
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_label
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_new_language
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_latency
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_local
    +
    +

    Creates a new ICalParameter according to the local type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_localize
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_managedid
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_member
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_modified
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_options
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_order
    +
    +

    Creates a new ICalParameter of kind I_CAL_ORDER_PARAMETER holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_new_partstat
    +
    +

    Creates a new ICalParameter according to the partstat type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_patchaction
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_new_publiccomment
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_range
    +
    +

    Creates a new ICalParameter according to the range type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_reason
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_related
    +
    +

    Creates a new ICalParameter according to the related type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_reltype
    +
    +

    Creates a new ICalParameter according to the reltype type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_required
    +
    +

    Creates a new ICalParameter according to the required type.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_response
    +
    +

    Creates a new ICalParameter according to the response type.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_role
    +
    +

    Creates a new ICalParameter according to the role type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_rsvp
    +
    +

    Creates a new ICalParameter according to the rsvp type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_scheduleagent
    +
    +

    Creates a new ICalParameter according to the scheduleagent type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_scheduleforcesend
    +
    +

    Creates a new ICalParameter according to the scheduleforcesend type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_schedulestatus
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_schema
    +
    +

    Creates a new ICalParameter of kind I_CAL_SCHEMA_PARAMETER holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_new_sentby
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_size
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_stayinformed
    +
    +

    Creates a new ICalParameter according to the stayinformed type.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_new_substate
    +
    +

    Creates a new ICalParameter according to the substate type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_tzid
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_value
    +
    +

    Creates a new ICalParameter according to the value type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_x
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_xliccomparetype
    +
    +

    Creates a new ICalParameter according to the xliccomparetype type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_new_xlicerrortype
    +
    +

    Creates a new ICalParameter according to the xlicerrortype type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_parameter_kind_from_string
    +
    +

    Converts a string to the ICalParameterKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_kind_is_valid
    +
    +

    Checks whether ICalParameterKind is valid.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_parameter_kind_to_string
    +
    +

    Converts the ICalParameter to the string representation.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_value_to_value_kind
    +
    +

    Converts the ICalParameterValue to ICalValueKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_parameter_as_ical_string
    +
    +

    Converts an ICalParameter to the string representation.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_clone
    +
    +

    Deep clone a ICalParameter.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_free
    +
    +

    Frees the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_actionparam
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_altrep
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_charset
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_cn
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_cutype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_delegatedfrom
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_delegatedto
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_derived
    +
    +

    Gets value of the param of kind I_CAL_DERIVED_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_get_dir
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_display
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_get_email
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_get_enable
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_encoding
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_fbtype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_feature
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_get_filename
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_fmttype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_iana
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_iana_name
    +
    +

    Gets the iana_name property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_iana_value
    +
    +

    Gets the iana_value property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_id
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_label
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_get_language
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_latency
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_local
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_localize
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_managedid
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_member
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_modified
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_options
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_order
    +
    +

    Gets value of the param of kind I_CAL_ORDER_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_get_parent
    +
    +

    Gets the parent ICalProperty of the specified ICalParameter.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_parameter_get_partstat
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_patchaction
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_get_publiccomment
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_range
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_reason
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_related
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_reltype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_required
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_response
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_role
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_rsvp
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_scheduleagent
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_scheduleforcesend
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_schedulestatus
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_schema
    +
    +

    Gets value of the param of kind I_CAL_SCHEMA_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_get_sentby
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_size
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_stayinformed
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_get_substate
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_tzid
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_value
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_x
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_xliccomparetype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_xlicerrortype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_xname
    +
    +

    Gets the xname property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_get_xvalue
    +
    +

    Gets the xvalue property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_has_same_name
    +
    +

    Checks whether native parts of two ICalParameters have the same name.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_isa
    +
    +

    Checks the type of a ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_isa_parameter
    +
    +

    Checks whether the native part of the ICalParameter is of type icalparameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_actionparam
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_altrep
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_charset
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_cn
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_cutype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_delegatedfrom
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_delegatedto
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_derived
    +
    +

    Sets value v to parameter param of kind I_CAL_DERIVED_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_set_dir
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_display
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_set_email
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_set_enable
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_encoding
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_fbtype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_feature
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_set_filename
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_fmttype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_iana
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_iana_name
    +
    +

    Sets the iana_name property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_iana_value
    +
    +

    Sets the iana_value property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_id
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_label
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_set_language
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_latency
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_local
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_localize
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_managedid
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_member
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_modified
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_options
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_order
    +
    +

    Sets value v to parameter param of kind I_CAL_ORDER_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_set_parent
    +
    +

    Sets the parent ICalProperty of an ICalParameter.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_parameter_set_partstat
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_patchaction
    +
    + No description available. +
    +
    +

    unstable since: 3.0.15

    +
    +
    + +
    +
    i_cal_parameter_set_publiccomment
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_range
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_reason
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_related
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_reltype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_required
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_response
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_role
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_rsvp
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_scheduleagent
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_scheduleforcesend
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_schedulestatus
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_schema
    +
    +

    Sets value v to parameter param of kind I_CAL_SCHEMA_PARAMETER.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_parameter_set_sentby
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_size
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_stayinformed
    +
    + No description available. +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_parameter_set_substate
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_tzid
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_value
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_x
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_xliccomparetype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_xlicerrortype
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_xname
    +
    +

    Sets the xname property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parameter_set_xvalue
    +
    +

    Sets the xvalue property of the native part of the ICalParameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibParameterClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalParameter class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Parser.html b/static/libical-glib/class.Parser.html new file mode 100644 index 00000000..9b7c6f9c --- /dev/null +++ b/static/libical-glib/class.Parser.html @@ -0,0 +1,702 @@ + + + + + + ICalGLib.Parser + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibParser

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Parser : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalParser instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalParser + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_parser_new
    +
    +

    Creates a default ICalParser.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_parser_parse_string
    +
    +

    Parses the string into a ICalComponent.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_parser_add_line
    +
    +

    Add a line at one time into the ICalParser until the parsing is complete and ICalComponent will be returned.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_clean
    +
    +

    We won’t get a clean exit if some components did not have an “END” tag. Clear off any component that +may be left in the list.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_free
    +
    +

    Frees a ICalParser.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_get_line
    +
    +

    Given a line generator function, returns a single iCal content line.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_get_state
    +
    +

    Gets the state of the target parser.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_parser_parse
    +
    +

    Icalparser_parse takes a string that holds the text ( in RFC 2445 format ) and returns a pointer to an +ICalComponent. The caller owns the memory. func is a pointer to a function that returns one content +line per invocation.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibParserClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalParser class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Period.html b/static/libical-glib/class.Period.html new file mode 100644 index 00000000..f4ac0f4c --- /dev/null +++ b/static/libical-glib/class.Period.html @@ -0,0 +1,715 @@ + + + + + + ICalGLib.Period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibPeriod

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Period : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalPeriod instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalPeriod + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_period_new_from_string
    +
    +

    Creates a ICalPeriod from a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_new_null_period
    +
    +

    Creates a default ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_period_as_ical_string
    +
    +

    Translates ICalPeriod to string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_get_duration
    +
    +

    Gets the duration from an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_get_end
    +
    +

    Gets the end time from an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_get_start
    +
    +

    Gets the start time from an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_is_null_period
    +
    +

    Checks the ICalPeriod is null_period.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_is_valid_period
    +
    +

    Checks the ICalPeriod is valid_period.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_set_duration
    +
    +

    Sets the duration of an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_set_end
    +
    +

    Sets the end time of an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_period_set_start
    +
    +

    Sets the start time of an ICalPeriod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibPeriodClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalPeriod class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Property.html b/static/libical-glib/class.Property.html new file mode 100644 index 00000000..45f56443 --- /dev/null +++ b/static/libical-glib/class.Property.html @@ -0,0 +1,5783 @@ + + + + + + ICalGLib.Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibProperty

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Property : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalProperty instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalProperty + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_property_new
    +
    +

    Creates a ICalProperty of the target type.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_acceptresponse
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_acknowledged
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_action
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_allowconflict
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_attach
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_attendee
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_busytype
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_calendaraddress
    +
    +

    Creates a new ICalProperty of kind I_CAL_CALENDARADDRESS_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_calid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_calmaster
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_calscale
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_capversion
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_carid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_carlevel
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_categories
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_class
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_cmd
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_color
    +
    +

    Creates a new color ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_comment
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_completed
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_components
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_conference
    +
    +

    Creates a new ICalProperty of kind I_CAL_CONFERENCE_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_contact
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_created
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_csid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_datemax
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_datemin
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_decreed
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_defaultcharset
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_defaultlocale
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_defaulttzid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_defaultvcars
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_deny
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_description
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_dtend
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_dtstamp
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_dtstart
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_due
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_duration
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_estimatedduration
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_exdate
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_expand
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_exrule
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_freebusy
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_from_string
    +
    +

    Creates a ICalProperty from a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_geo
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_grant
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_image
    +
    +

    Creates a new ICalProperty of kind I_CAL_IMAGE_PROPERTY holding value v of type ICalAttach.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_itipversion
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_lastmodified
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_location
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_locationtype
    +
    +

    Creates a new ICalProperty of kind I_CAL_LOCATIONTYPE_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_maxcomponentsize
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_maxdate
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_maxresults
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_maxresultssize
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_method
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_mindate
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_multipart
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_name
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_organizer
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_owner
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_participanttype
    +
    +

    Creates a new ICalProperty of kind I_CAL_PARTICIPANTTYPE_PROPERTY holding value v of type ICalPropertyParticipanttype.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_patchdelete
    +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHDELETE_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_patchorder
    +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHORDER_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_patchparameter
    +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHPARAMETER_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_patchtarget
    +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHTARGET_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_patchversion
    +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHVERSION_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_percentcomplete
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_permission
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_pollcompletion
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_pollitemid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_pollmode
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_pollproperties
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_pollwinner
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_priority
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_prodid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_proximity
    +
    +

    Creates a new ICalProperty of kind I_CAL_PROXIMITY_PROPERTY holding value v of type ICalPropertyProximity.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_query
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_queryid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_querylevel
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_queryname
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_rdate
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_recuraccepted
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_recurexpand
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_recurlimit
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_recurrenceid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_refreshinterval
    +
    +

    Creates a new ICalProperty of kind I_CAL_REFRESHINTERVAL_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_relatedto
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_relcalid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_repeat
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_replyurl
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_requeststatus
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_resources
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_resourcetype
    +
    +

    Creates a new ICalProperty of kind I_CAL_RESOURCETYPE_PROPERTY holding value v of type ICalPropertyResourcetype.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_response
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_restriction
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_rrule
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_scope
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_sequence
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_source
    +
    +

    Creates a new ICalProperty of kind I_CAL_SOURCE_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_status
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_storesexpanded
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_structureddata
    +
    +

    Creates a new ICalProperty of kind I_CAL_STRUCTUREDDATA_PROPERTY holding value v of type ICalAttach.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_styleddescription
    +
    +

    Creates a new ICalProperty of kind I_CAL_STYLEDDESCRIPTION_PROPERTY holding value v.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_new_summary
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_target
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_taskmode
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_transp
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_trigger
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_tzid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_tzidaliasof
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_tzname
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_tzoffsetfrom
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_tzoffsetto
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_tzuntil
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_tzurl
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_uid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_url
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_version
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_voter
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_new_x
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicclass
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicclustercount
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicerror
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimecharset
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimecid
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimecontenttype
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimeencoding
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimefilename
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_new_xlicmimeoptinfo
    +
    +

    Creates a new ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_property_enum_to_string
    +
    +

    Converts the enum to string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_and_string_to_enum
    +
    +

    Converts an integer and string into an enum.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_from_string
    +
    +

    Converts the string to ICalPropertyKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_has_property
    +
    +

    Checks whether the enum belongs to the ICalPropertyKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_is_valid
    +
    +

    Checks whether ICalPropertyKind is valid.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_to_string
    +
    +

    Converts the ICalPropertyKind to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_kind_to_value_kind
    +
    +

    Converts the ICalPropertyKind to ICalValueKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_method_from_string
    +
    +

    Converts the string to ICalPropertyKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_method_to_string
    +
    +

    Converts the ICalPropertyMethod to string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_recurrence_is_excluded
    +
    +

    Decides if this recurrence is acceptable. This function decides if a specific recurrence value is excluded +by EXRULE or EXDATE properties.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_status_from_string
    +
    +

    Converts the string to ICalPropertyKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_status_to_string
    +
    +

    Converts the ICalPropertyStatus to string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_property_add_parameter
    +
    +

    Adds a ICalParameter into the ICalProperty. It behaves like set the copy of the ICalParameter. Upon +completion the native part of ICalParameter will be set to NULL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_as_ical_string
    +
    +

    Converts a ICalProperty to a string representation.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_clone
    +
    +

    Deeply clone a ICalProperty.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_count_parameters
    +
    +

    Counts the parameters in the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_free
    +
    +

    Frees a ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_acceptresponse
    +
    +

    Gets the acceptresponse of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_acknowledged
    +
    +

    Gets the acknowledged time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_action
    +
    +

    Gets the action of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_allowconflict
    +
    +

    Gets the allowconflict of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_attach
    +
    +

    Gets the attach of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_attendee
    +
    +

    Gets the attendee of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_busytype
    +
    +

    Gets the busytype of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_calendaraddress
    +
    +

    Gets value of the prop of kind I_CAL_CALENDARADDRESS_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_calid
    +
    +

    Gets the calid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_calmaster
    +
    +

    Gets the calmaster of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_calscale
    +
    +

    Gets the calscale of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_capversion
    +
    +

    Gets the capversion of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_carid
    +
    +

    Gets the carid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_carlevel
    +
    +

    Gets the carlevel of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_categories
    +
    +

    Gets the categories of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_class
    +
    +

    Gets the class of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_cmd
    +
    +

    Gets the cmd of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_color
    +
    +

    Gets the color property of the prop.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_property_get_comment
    +
    +

    Gets the comment of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_completed
    +
    +

    Gets the completed time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_components
    +
    +

    Gets the components of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_conference
    +
    +

    Gets value of the prop of kind I_CAL_CONFERENCE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_contact
    +
    +

    Gets the contact of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_created
    +
    +

    Gets the created time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_csid
    +
    +

    Gets the csid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_datemax
    +
    +

    Gets the datemax time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_datemin
    +
    +

    Gets the datemin time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_datetime_with_component
    +
    +

    If the property is a DATE-TIME with a TZID parameter and a corresponding VTIMEZONE is present in the +component, the returned component will already be in the correct timezone; otherwise the caller is responsible +for converting it.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_property_get_decreed
    +
    +

    Gets the decreed of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_defaultcharset
    +
    +

    Gets the defaultcharset of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_defaultlocale
    +
    +

    Gets the defaultlocale of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_defaulttzid
    +
    +

    Gets the defaulttzid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_defaultvcars
    +
    +

    Gets the defaultvcars of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_deny
    +
    +

    Gets the deny of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_description
    +
    +

    Gets the description of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_dtend
    +
    +

    Gets the dtend time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_dtstamp
    +
    +

    Gets the dtstamp time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_dtstart
    +
    +

    Gets the dtstart time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_due
    +
    +

    Gets the due time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_duration
    +
    +

    Gets the duration of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_estimatedduration
    +
    +

    Gets the estimatedduration of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_exdate
    +
    +

    Gets the exdate time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_expand
    +
    +

    Gets the expand of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_exrule
    +
    +

    Gets the exrule recurrence type of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_first_parameter
    +
    +

    Gets the first ICalParameter from the parent ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_freebusy
    +
    +

    Gets the freebusy period type of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_geo
    +
    +

    Gets the geo type of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_grant
    +
    +

    Gets the grant of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_image
    +
    +

    Gets value of the prop of kind I_CAL_IMAGE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_itipversion
    +
    +

    Gets the itipversion of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_lastmodified
    +
    +

    Gets the lastmodified time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_location
    +
    +

    Gets the location of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_locationtype
    +
    +

    Gets value of the prop of kind I_CAL_LOCATIONTYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_maxcomponentsize
    +
    +

    Gets the maxcomponentsize of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_maxdate
    +
    +

    Gets the maxdate time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_maxresults
    +
    +

    Gets the maxresults of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_maxresultssize
    +
    +

    Gets the maxresultssize of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_method
    +
    +

    Gets the method of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_mindate
    +
    +

    Gets the mindate time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_multipart
    +
    +

    Gets the multipart of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_name
    +
    +

    Gets the name of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_next_parameter
    +
    +

    Gets the next ICalParameter from the parent ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_organizer
    +
    +

    Gets the organizer of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_owner
    +
    +

    Gets the owner of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_parameter_as_string
    +
    +

    Gets the string representation of the target parameter in the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_parent
    +
    +

    Gets the parent component of the property. Use with caution. When icalproperty is deallocated, it won’t +deallocate its parent. However the ICalComponent object created using this method will be deallocated +(if no reference in other places). So You need to make sure there is another reference except the one +in ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_participanttype
    +
    +

    Gets value of the prop of kind I_CAL_PARTICIPANTTYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_patchdelete
    +
    +

    Gets value of the prop of kind I_CAL_PATCHDELETE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_patchorder
    +
    +

    Gets value of the prop of kind I_CAL_PATCHORDER_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_patchparameter
    +
    +

    Gets value of the prop of kind I_CAL_PATCHPARAMETER_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_patchtarget
    +
    +

    Gets value of the prop of kind I_CAL_PATCHTARGET_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_patchversion
    +
    +

    Gets value of the prop of kind I_CAL_PATCHVERSION_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_percentcomplete
    +
    +

    Gets the percentcomplete of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_permission
    +
    +

    Gets the permission of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_pollcompletion
    +
    +

    Gets the pollcompletion of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_pollitemid
    +
    +

    Gets the pollitemid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_pollmode
    +
    +

    Gets the pollmode of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_pollproperties
    +
    +

    Gets the pollproperties of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_pollwinner
    +
    +

    Gets the pollwinner of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_priority
    +
    +

    Gets the priority of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_prodid
    +
    +

    Gets the prodid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_property_name
    +
    +

    Gets the property name of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_proximity
    +
    +

    Gets value of the prop of kind I_CAL_PROXIMITY_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_query
    +
    +

    Gets the query of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_queryid
    +
    +

    Gets the queryid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_querylevel
    +
    +

    Gets the querylevel of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_queryname
    +
    +

    Gets the queryname of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_rdate
    +
    +

    Gets the rdate of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_recuraccepted
    +
    +

    Gets the recuraccepted of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_recurexpand
    +
    +

    Gets the recurexpand of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_recurlimit
    +
    +

    Gets the recurlimit of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_recurrenceid
    +
    +

    Gets the recurrenceid time of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_refreshinterval
    +
    +

    Gets value of the prop of kind I_CAL_REFRESHINTERVAL_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_relatedto
    +
    +

    Gets the relatedto of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_relcalid
    +
    +

    Gets the relcalid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_repeat
    +
    +

    Gets the repeat of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_replyurl
    +
    +

    Gets the replyurl of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_requeststatus
    +
    +

    Gets the requeststatus of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_resources
    +
    +

    Gets the resources of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_resourcetype
    +
    +

    Gets value of the prop of kind I_CAL_RESOURCETYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_response
    +
    +

    Gets the response of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_restriction
    +
    +

    Gets the restriction of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_rrule
    +
    +

    Gets the rrule recurrence type of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_scope
    +
    +

    Gets the scope of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_sequence
    +
    +

    Gets the sequence of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_source
    +
    +

    Gets value of the prop of kind I_CAL_SOURCE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_status
    +
    +

    Gets the status of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_storesexpanded
    +
    +

    Gets the storesexpanded of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_structureddata
    +
    +

    Gets value of the prop of kind I_CAL_STRUCTUREDDATA_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_styleddescription
    +
    +

    Gets value of the prop of kind I_CAL_STYLEDDESCRIPTION_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_get_summary
    +
    +

    Gets the summary of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_target
    +
    +

    Gets the target of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_taskmode
    +
    +

    Gets the taskmode of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_transp
    +
    +

    Gets the transp of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_trigger
    +
    +

    Gets the trigger period type of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_tzid
    +
    +

    Gets the tzid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_tzidaliasof
    +
    +

    Gets the tzidaliasof of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_tzname
    +
    +

    Gets the tzname of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_tzoffsetfrom
    +
    +

    Gets the tzoffsetfrom of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_tzoffsetto
    +
    +

    Gets the tzoffsetto of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_tzuntil
    +
    +

    Gets the tzuntil time of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_tzurl
    +
    +

    Gets the tzurl of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_uid
    +
    +

    Gets the uid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_url
    +
    +

    Gets the url of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_value
    +
    +

    Gets the ICalValue of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_value_as_string
    +
    +

    Gets the string representation of the value in ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_version
    +
    +

    Gets the version of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_voter
    +
    +

    Gets the voter of ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_get_x
    +
    +

    Gets the x of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_x_name
    +
    +

    Gets the name of x property.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicclass
    +
    +

    Gets the xlicclass of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicclustercount
    +
    +

    Gets the xlicclustercount of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicerror
    +
    +

    Gets the xlicerror of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimecharset
    +
    +

    Gets the xlicmimecharset of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimecid
    +
    +

    Gets the xlicmimecid of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimecontenttype
    +
    +

    Gets the xlicmimecontenttype of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimeencoding
    +
    +

    Gets the xlicmimeencoding of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimefilename
    +
    +

    Gets the xlicmimefilename of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_get_xlicmimeoptinfo
    +
    +

    Gets the xlicmimeoptinfo of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_isa
    +
    +

    Gets the kind of ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_isa_property
    +
    +

    Checks whether the native part of ICalProperty is of the type icalproperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_remove_parameter_by_kind
    +
    +

    Removes the target kind of the parameters in the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_remove_parameter_by_name
    +
    +

    Removes parameter in the ICalProperty by name.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_remove_parameter_by_ref
    +
    +

    Removes the parameter in the ICalProperty by ref.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_acceptresponse
    +
    +

    Sets the acceptresponse for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_acknowledged
    +
    +

    Sets the acknowledged time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_action
    +
    +

    Sets the action for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_allowconflict
    +
    +

    Sets the allowconflict for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_attach
    +
    +

    Sets the attach for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_attendee
    +
    +

    Sets the attendee for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_busytype
    +
    +

    Sets the busytype for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_calendaraddress
    +
    +

    Sets value v to prop of kind I_CAL_CALENDARADDRESS_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_calid
    +
    +

    Sets the calid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_calmaster
    +
    +

    Sets the calmaster for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_calscale
    +
    +

    Sets the calscale for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_capversion
    +
    +

    Sets the capversion for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_carid
    +
    +

    Sets the carid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_carlevel
    +
    +

    Sets the carlevel for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_categories
    +
    +

    Sets the categories for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_class
    +
    +

    Sets the class for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_cmd
    +
    +

    Sets the cmd for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_color
    +
    +

    Sets the color for the prop.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_comment
    +
    +

    Sets the comment for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_completed
    +
    +

    Sets the completed time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_components
    +
    +

    Sets the components for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_conference
    +
    +

    Sets value v to prop of kind I_CAL_CONFERENCE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_contact
    +
    +

    Sets the contact for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_created
    +
    +

    Sets the created time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_csid
    +
    +

    Sets the csid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_datemax
    +
    +

    Sets the datemax time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_datemin
    +
    +

    Sets the datemin time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_decreed
    +
    +

    Sets the decreed for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_defaultcharset
    +
    +

    Sets the defaultcharset for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_defaultlocale
    +
    +

    Sets the defaultlocale for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_defaulttzid
    +
    +

    Sets the defaulttzid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_defaultvcars
    +
    +

    Sets the defaultvcars for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_deny
    +
    +

    Sets the deny for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_description
    +
    +

    Sets the description for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_dtend
    +
    +

    Sets the dtend time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_dtstamp
    +
    +

    Sets the dtstamp time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_dtstart
    +
    +

    Sets the dtstart time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_due
    +
    +

    Sets the due time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_duration
    +
    +

    Sets the duration for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_estimatedduration
    +
    +

    Sets the estimatedduration for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_exdate
    +
    +

    Sets the exdate time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_expand
    +
    +

    Sets the expand for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_exrule
    +
    +

    Sets the exrule time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_freebusy
    +
    +

    Sets the freebusy time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_geo
    +
    +

    Sets the geo for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_grant
    +
    +

    Sets the grant for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_image
    +
    +

    Sets value v to prop of kind I_CAL_IMAGE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_itipversion
    +
    +

    Sets the itipversion for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_lastmodified
    +
    +

    Sets the lastmodified time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_location
    +
    +

    Sets the location for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_locationtype
    +
    +

    Sets value v to prop of kind I_CAL_LOCATIONTYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_maxcomponentsize
    +
    +

    Sets the maxcomponentsize for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_maxdate
    +
    +

    Sets the maxdate time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_maxresults
    +
    +

    Sets the maxresults for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_maxresultssize
    +
    +

    Sets the maxresultssize for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_method
    +
    +

    Sets the method for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_mindate
    +
    +

    Sets the mindate time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_multipart
    +
    +

    Sets the multipart for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_name
    +
    +

    Sets the name for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_organizer
    +
    +

    Sets the organizer for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_owner
    +
    +

    Sets the owner for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_parameter
    +
    +

    Sets a ICalParameter into the ICalProperty. It behaves like set the copy of the ICalParameter. Upon +completion the native part of ICalParameter will be set to NULL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_parameter_from_string
    +
    +

    Sets the ICalProperty with the parameter defined by the name and value.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_parent
    +
    +

    Sets the parent ICalComponent of the specified ICalProperty.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_property_set_participanttype
    +
    +

    Sets value v to prop of kind I_CAL_PARTICIPANTTYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_patchdelete
    +
    +

    Sets value v to prop of kind I_CAL_PATCHDELETE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_patchorder
    +
    +

    Sets value v to prop of kind I_CAL_PATCHORDER_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_patchparameter
    +
    +

    Sets value v to prop of kind I_CAL_PATCHPARAMETER_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_patchtarget
    +
    +

    Sets value v to prop of kind I_CAL_PATCHTARGET_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_patchversion
    +
    +

    Sets value v to prop of kind I_CAL_PATCHVERSION_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_percentcomplete
    +
    +

    Sets the percentcomplete for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_permission
    +
    +

    Sets the permission for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_pollcompletion
    +
    +

    Sets the pollcompletion for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_pollitemid
    +
    +

    Sets the pollitemid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_pollmode
    +
    +

    Sets the pollmode for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_pollproperties
    +
    +

    Sets the pollproperties for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_pollwinner
    +
    +

    Sets the pollwinner for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_priority
    +
    +

    Sets the priority for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_prodid
    +
    +

    Sets the prodid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_proximity
    +
    +

    Sets value v to prop of kind I_CAL_PROXIMITY_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_query
    +
    +

    Sets the query for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_queryid
    +
    +

    Sets the queryid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_querylevel
    +
    +

    Sets the querylevel for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_queryname
    +
    +

    Sets the queryname for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_rdate
    +
    +

    Sets the rdate for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_recuraccepted
    +
    +

    Sets the recuraccepted for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_recurexpand
    +
    +

    Sets the recurexpand for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_recurlimit
    +
    +

    Sets the recurlimit for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_recurrenceid
    +
    +

    Sets the recurrenceid time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_refreshinterval
    +
    +

    Sets value v to prop of kind I_CAL_REFRESHINTERVAL_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_relatedto
    +
    +

    Sets the relatedto for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_relcalid
    +
    +

    Sets the relcalid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_repeat
    +
    +

    Sets the repeat for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_replyurl
    +
    +

    Sets the replyurl for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_requeststatus
    +
    +

    Sets the requeststatus for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_resources
    +
    +

    Sets the resources for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_resourcetype
    +
    +

    Sets value v to prop of kind I_CAL_RESOURCETYPE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_response
    +
    +

    Sets the response for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_restriction
    +
    +

    Sets the restriction for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_rrule
    +
    +

    Sets the rrule for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_scope
    +
    +

    Sets the scope for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_sequence
    +
    +

    Sets the sequence for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_source
    +
    +

    Sets value v to prop of kind I_CAL_SOURCE_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_status
    +
    +

    Sets the status for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_storesexpanded
    +
    +

    Sets the storesexpanded for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_structureddata
    +
    +

    Sets value v to prop of kind I_CAL_STRUCTUREDDATA_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_styleddescription
    +
    +

    Sets value v to prop of kind I_CAL_STYLEDDESCRIPTION_PROPERTY.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_property_set_summary
    +
    +

    Sets the summary for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_target
    +
    +

    Sets the target for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_taskmode
    +
    +

    Sets the taskmode for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_transp
    +
    +

    Sets the transp for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_trigger
    +
    +

    Sets the trigger time for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_tzid
    +
    +

    Sets the tzid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_tzidaliasof
    +
    +

    Sets the tzidaliasof for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_tzname
    +
    +

    Sets the tzname for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_tzoffsetfrom
    +
    +

    Sets the tzoffsetfrom for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_tzoffsetto
    +
    +

    Sets the tzoffsetto for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_tzuntil
    +
    +

    Sets the tzuntil time for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_tzurl
    +
    +

    Sets the tzurl for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_uid
    +
    +

    Sets the uid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_url
    +
    +

    Sets the url for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_value
    +
    +

    Sets the ICalProperty with the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_value_from_string
    +
    +

    Sets the ICalProperty with the ICalValue constructed from string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_version
    +
    +

    Sets the version for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_voter
    +
    +

    Sets the voter for the ICalProperty.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_property_set_x
    +
    +

    Sets the x for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_x_name
    +
    +

    Sets the name of x property for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicclass
    +
    +

    Sets the xlicclass for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicclustercount
    +
    +

    Sets the xlicclustercount for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicerror
    +
    +

    Sets the xlicerror for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimecharset
    +
    +

    Sets the xlicmimecharset for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimecid
    +
    +

    Sets the xlicmimecid for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimecontenttype
    +
    +

    Sets the xlicmimecontenttype for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimeencoding
    +
    +

    Sets the xlicmimeencoding for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimefilename
    +
    +

    Sets the xlicmimefilename for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_set_xlicmimeoptinfo
    +
    +

    Sets the xlicmimeoptinfo for the ICalProperty.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_take_parameter
    +
    +

    Adds the parameter into the prop and free the parameter.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_property_take_value
    +
    +

    Sets the prop with the value and unrefs the value.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibPropertyClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalProperty class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.RecurIterator.html b/static/libical-glib/class.RecurIterator.html new file mode 100644 index 00000000..2847f624 --- /dev/null +++ b/static/libical-glib/class.RecurIterator.html @@ -0,0 +1,646 @@ + + + + + + ICalGLib.RecurIterator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibRecurIterator

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.RecurIterator : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalRecurIterator instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalRecurIterator + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_recur_iterator_new
    +
    +

    Creates an ICalRecurIterator.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recur_iterator_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_recur_iterator_free
    +
    +

    Frees an iterator.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recur_iterator_next
    +
    +

    Gets the next occurrence from an iterator.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recur_iterator_set_end
    +
    +

    Sets the date-time at which the iterator will stop at the latest. Values equal to or greater than end +will not be returned by the iterator.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_recur_iterator_set_start
    +
    +

    Sets the date-time at which the iterator will start, where ‘start’ is a value between DTSTART and UNTIL. +Note: +CAN NOT be used with RRULEs that contain COUNT.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibRecurIteratorClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalRecurIterator class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Recurrence.html b/static/libical-glib/class.Recurrence.html new file mode 100644 index 00000000..9fad4314 --- /dev/null +++ b/static/libical-glib/class.Recurrence.html @@ -0,0 +1,1049 @@ + + + + + + ICalGLib.Recurrence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibRecurrence

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Recurrence : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalRecurrence instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalRecurrence + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_recurrence_new
    +
    +

    Creates a new ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_new_from_string
    +
    +

    Converts a string to a ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_recurrence_day_day_of_week
    +
    +

    Decodes a day to a weekday in a week.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_day_position
    +
    +

    Decodes a day to a position of the weekday.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_encode_day
    +
    +

    Encodes the weekday and position into a single value, which can by split by i_cal_recurrence_day_day_of_week() +and i_cal_recurrence_day_position().

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_recurrence_encode_month
    +
    +

    Encodes the month and the is_leap flag into a single value, which can be split by i_cal_recurrence_month_is_leap() +and i_cal_recurrence_month_month().

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_recurrence_frequency_from_string
    +
    +

    Converts a string representation to an enum representation for the frequency.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_frequency_to_string
    +
    +

    Converts an enum representation to a string representation for the frequency.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_month_is_leap
    +
    +

    Decodes a month and check whether it is a leap month.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_month_month
    +
    +

    Decode a month from an encoded value by i_cal_recurrence_encode_month().

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_new_default
    +
    + No description available. +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_rscale_is_supported
    +
    +

    Checks whether rscale is supported.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_rscale_supported_calendars
    +
    +

    Gets an array of calendars supporting rscale (currently always return NULL).

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_skip_from_string
    +
    +

    Converts a string representation to an enum representation for the skip.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_skip_to_string
    +
    +

    Converts an enum representation to a string representation for the skip.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_recurrence_weekday_from_string
    +
    +

    Converts a string representation to an enum representation for the weekday.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_weekday_to_string
    +
    +

    Converts an enum representation to a string representation for the weekday.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_recurrence_clone
    +
    +

    Creates a copy of the src.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_get_by
    +
    +

    Returns the element at the specified index of the ‘by’ array if it exists, 0 otherwise.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_get_by_array
    +
    +

    Gets the by[byrule] array from ICalRecurrence.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_get_by_array_size
    +
    +

    Returns the size of given ‘by’ array from ICalRecurrence.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_get_count
    +
    +

    Gets the count from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_get_freq
    +
    +

    Gets the freq from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_get_interval
    +
    +

    Gets the interval from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_get_until
    +
    +

    Gets the until from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_get_week_start
    +
    +

    Gets the week_start from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_ref
    +
    +

    Increases the reference counter by 1 for the self.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_resize_by_array
    +
    +

    Resizes the ‘by’ array to the given size.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_set_by
    +
    +

    Sets the by array at the given index. Resizes the array to have a size of at least index+1 elements if necessary.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_set_by_array
    +
    +

    Sets the given ‘by’ array.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    +
    i_cal_recurrence_set_count
    +
    +

    Sets the count from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_set_freq
    +
    +

    Sets the freq from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_set_interval
    +
    +

    Sets the interval from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_set_until
    +
    +

    Sets the until from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_set_week_start
    +
    +

    Sets the week_start from ICalRecurrence.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_to_string
    +
    +

    Converts a ICalRecurrence to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_recurrence_unref
    +
    +

    Decreases the reference counter by 1 for the self.

    +
    +
    +

    unstable since: 4.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibRecurrenceClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalRecurrence class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Reqstat.html b/static/libical-glib/class.Reqstat.html new file mode 100644 index 00000000..f866d5c4 --- /dev/null +++ b/static/libical-glib/class.Reqstat.html @@ -0,0 +1,687 @@ + + + + + + ICalGLib.Reqstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibReqstat

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Reqstat : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalReqstat instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalReqstat + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_reqstat_new_from_string
    +
    +

    Creates a ICalReqstat from string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_reqstat_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_reqstat_new_default
    +
    +

    Creates a new default ICalReqstat.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_reqstat_get_code
    +
    +

    Gets the code of ICalReqstat.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_reqstat_get_debug
    +
    +

    Gets the debug of ICalReqstat.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_reqstat_get_desc
    +
    +

    Gets the desc of ICalReqstat.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_reqstat_set_code
    +
    +

    Sets the code of ICalReqstat.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_reqstat_to_string
    +
    +

    Converts ICalReqstat to a string representation.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibReqstatClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalReqstat class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Time.html b/static/libical-glib/class.Time.html new file mode 100644 index 00000000..3b204fa6 --- /dev/null +++ b/static/libical-glib/class.Time.html @@ -0,0 +1,1289 @@ + + + + + + ICalGLib.Time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibTime

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Time : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalTime instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalTime + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_time_new
    +
    +

    Creates a new ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_current_with_zone
    +
    +

    Creates a ICalTime according to the timezone and current time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_from_day_of_year
    +
    +

    Creates a new time, given a day of year and a year.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_from_string
    +
    +

    Creates a time from an ISO format string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_from_timet_with_zone
    +
    +

    Converts seconds past UNIX epoch to a timetype, using timezones.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_null_date
    +
    +

    Creates a null date, which indicates no time has been set.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_null_time
    +
    +

    Creates a default time which is an epoch time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_new_today
    +
    +

    Creates a ICalTime representing today.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_time_days_in_month
    +
    +

    Gets the number of days in the target month in the target year.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_days_in_year
    +
    +

    Returns the number of days in this year.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_time_days_is_leap_year
    +
    +

    Checks whether a year is a leap year.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_timezone_expand_vtimezone
    +
    +

    Applies a list of timezone changes on the array of components until the end year.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_time_add
    +
    +

    Adds a time duration on the time.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_time_adjust
    +
    +

    Adds or subtracts a number of days, hours, minutes and seconds from tt.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_as_ical_string
    +
    +

    Returns a string representation of the time, in RFC2445 format.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_as_timet
    +
    +

    Returns the time as seconds past the UNIX epoch.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_as_timet_with_zone
    +
    +

    Returns the time as seconds past the UNIX epoch, using timezones.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_clone
    +
    +

    Creates a new ICalTime, copy of timetype.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_compare
    +
    +

    I_cal_time_compare returns an integer indicating the result of the comparison, as follow:

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_compare_date_only
    +
    +

    Like i_cal_time_compare(), but only use the date parts.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_compare_date_only_tz
    +
    +

    Like i_cal_time_compare_tz(), but only use the date parts; accepts timezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_convert_timezone
    +
    +

    Convert time from one timezone to another.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_convert_to_zone
    +
    +

    Converts tt to zone and return new ICalTime object.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_convert_to_zone_inplace
    +
    +

    Converts tt to zone and store the result into tt.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_time_day_of_week
    +
    +

    Returns the day of the week of the given time. Sunday is 1.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_day_of_year
    +
    +

    Returns the day of the year of the given time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_date
    +
    +

    Gets the year/month/date parts of the timetype in one call.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_day
    +
    +

    Gets the day of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_hour
    +
    +

    Gets the hour of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_minute
    +
    +

    Gets the minute of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_month
    +
    +

    Gets the month of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_second
    +
    +

    Gets the second of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_time
    +
    +

    Gets the hour/minute/second parts of the timetype in one call.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_timezone
    +
    +

    Returns the timezone, the ICalTimezone object is cached and can be either unreferenced once the last +instance is used or can be kept until i_cal_object_free_global_objects() is called (usually at the very +end of the program).

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_tzid
    +
    +

    Returns the tzid, or NULL for a floating time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_get_year
    +
    +

    Gets the year of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_is_date
    +
    +

    Returns true if time is of DATE type, false if DATE-TIME.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_is_daylight
    +
    +

    Gets the is_daylight of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_is_null_time
    +
    +

    Returns true if the time is null.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_is_utc
    +
    +

    Returns true if time is relative to UTC zone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_is_valid_time
    +
    +

    Returns true if the time is null.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_normalize
    +
    +

    Normalizes the icaltime, so that all fields are within the normal range.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_normalize_inplace
    +
    +

    Normalizes the tt, so that all fields are within the normal range.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_time_set_date
    +
    +

    Sets the year/month/date parts of the timetype in one call. This doesn’t verify validity of the given date.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_day
    +
    +

    Sets the day of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_hour
    +
    +

    Sets the hour of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_is_date
    +
    +

    Sets the is_date of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_is_daylight
    +
    +

    Sets the is_daylight of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_minute
    +
    +

    Sets the minute of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_month
    +
    +

    Sets the month of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_second
    +
    +

    Sets the second of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_time
    +
    +

    Sets the hour/minute/second parts of the timetype in one call. This doesn’t verify validity of the given time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_timezone
    +
    +

    Sets the timezone of the tt.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_set_year
    +
    +

    Sets the year of ICalTime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_start_doy_week
    +
    +

    Returns the day of the year for the first day of the week that the given time is within.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_subtract
    +
    +

    Gets the duration between two time.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_time_week_number
    +
    +

    Returns the week number for the week the given time is within.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibTimeClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalTime class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.TimeSpan.html b/static/libical-glib/class.TimeSpan.html new file mode 100644 index 00000000..8c03f7d5 --- /dev/null +++ b/static/libical-glib/class.TimeSpan.html @@ -0,0 +1,715 @@ + + + + + + ICalGLib.TimeSpan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibTimeSpan

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.TimeSpan : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalTimeSpan instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalTimeSpan + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_time_span_new
    +
    +

    Creates a new ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_new_timet
    +
    +

    Creates a new ICalTimeSpan. Free it with g_object_unref(), when no longer needed.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_time_span_clone
    +
    +

    Creates a new ICalTimeSpan, clone of src. Free it with g_object_unref(), when no longer needed.

    +
    +
    +

    unstable since: 3.0.5

    +
    +
    + +
    +
    i_cal_time_span_contains
    +
    +

    Checks whether one ICalTimeSpan is contained in another ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_get_end
    +
    +

    Gets the end of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_get_is_busy
    +
    +

    Gets the is_busy of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_get_start
    +
    +

    Gets the start of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_overlaps
    +
    +

    Checks whether two spans overlap.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_set_end
    +
    +

    Sets the end of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_set_is_busy
    +
    +

    Sets the is_busy of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_time_span_set_start
    +
    +

    Sets the start of ICalTimeSpan.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibTimeSpanClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalTimeSpan class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Timezone.html b/static/libical-glib/class.Timezone.html new file mode 100644 index 00000000..918f79d1 --- /dev/null +++ b/static/libical-glib/class.Timezone.html @@ -0,0 +1,1031 @@ + + + + + + ICalGLib.Timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibTimezone

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Timezone : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalTimezone instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalTimezone + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_timezone_array_new
    +
    +

    Creates a new array of timezones.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_new
    +
    +

    The constructor of the type ICalTimezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_timezone_array_append_from_vtimezone
    +
    +

    Populate the array of timezones with a component.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_array_destroy
    +
    +

    The destructor of the icalarray of icaltimezone elements to fully destroy the native object.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_array_element_at
    +
    +

    Gets the ICalTimezone at specified position in array.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_array_free
    +
    +

    Frees an array of timezones.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_destroy
    +
    +

    The destructor of the type ICalTimezone to fully destroy the object by providing 1 as the second argument +of i_cal_time_zone_free. The method is used as a default destructor for introspection.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_free_builtin_timezones
    +
    +

    Frees any builtin timezone information.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_free_zone_directory
    +
    +

    Frees memory dedicated to the zonefile directory.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_builtin_timezone
    +
    +

    Returns a single builtin timezone, given its Olson city name.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_builtin_timezone_from_offset
    +
    +

    Returns a single builtin timezone, given its offset.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_builtin_timezone_from_tzid
    +
    +

    Returns a single builtin timezone, given its TZID.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_builtin_timezones
    +
    +

    Returns a list of builtin timezones.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_builtin_tzdata
    +
    +

    Gets whether to use builtin timezones files.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_timezone_get_location_from_vtimezone
    +
    +

    Gets the location of the vtimezone in component.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_timezone_get_tznames_from_vtimezone
    +
    +

    Gets the name of the vtimezone in component.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_timezone_get_utc_timezone
    +
    +

    Returns the UTC timezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_zone_directory
    +
    +

    Gets the directory to look for the zonefiles.

    +
    +
    +

    unstable since: 3.0.17

    +
    +
    + +
    +
    i_cal_timezone_release_zone_tab
    +
    +

    Frees memory dedicated to the zonefile directory.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_set_builtin_tzdata
    +
    +

    Sets whether to use builtin timezones files.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_timezone_set_tzid_prefix
    +
    +

    Sets the prefix to be used for tzid’s generated from system tzdata. Must be globally unique (such as +a domain name owned by the developer of the calling application), and begin and end with forward slashes. +Do not change or de-allocate the string buffer after calling this.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_set_zone_directory
    +
    +

    Sets the directory to look for the zonefiles.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_timezone_copy
    +
    +

    The clone method for ICalTimezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_dump_changes
    +
    +

    Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year given.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_free
    +
    +

    The destructor of ICalTimezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_component
    +
    +

    Returns the VTIMEZONE component of a timezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_display_name
    +
    +

    Gets the display name of the zone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_latitude
    +
    +

    Returns the latitude of a builtin timezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_location
    +
    +

    Returns the city name of a timezone, or NULL, when none is set or when zone is also NULL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_longitude
    +
    +

    Returns the longitude of a builtin timezone.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_tzid
    +
    +

    Returns the TZID of a timezone, or NULL, when none is set or when zone is also NULL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_tznames
    +
    +

    Returns the TZNAME properties used in the latest STANDARD and DAYLIGHT components. If they are the same +it will return just one, e.g. “LMT”. If they are different it will format them like “EST/EDT”. Note that +this may also return NULL.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_utc_offset
    +
    +

    Calculates the UTC offset of a given local time in the given timezone. It is the number of seconds to +add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_get_utc_offset_of_utc_time
    +
    +

    Calculates the UTC offset of a given UTC time in the given timezone. It is the number of seconds to +add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_timezone_set_component
    +
    +

    Sets the VTIMEZONE component of ICalTimezone, initializing the tzid, location and tzname fields. It +returns 1 on success or 0 on failure, i.e. no TZID was found.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibTimezoneClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalTimezone class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Trigger.html b/static/libical-glib/class.Trigger.html new file mode 100644 index 00000000..e2645114 --- /dev/null +++ b/static/libical-glib/class.Trigger.html @@ -0,0 +1,679 @@ + + + + + + ICalGLib.Trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibTrigger

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Trigger : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalTrigger instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalTrigger + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_trigger_new_from_int
    +
    +

    Creates a ICalTrigger from integer.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_new_from_string
    +
    +

    Creates a ICalTrigger from a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_trigger_get_duration
    +
    +

    Gets the duration from ICalTrigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_get_time
    +
    +

    Gets the time from ICalTrigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_is_bad_trigger
    +
    +

    Checks if a ICalTrigger is a bad trigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_is_null_trigger
    +
    +

    Checks if a ICalTrigger is a null trigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_set_duration
    +
    +

    Sets the duration from ICalTrigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_trigger_set_time
    +
    +

    Sets the time from ICalTrigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibTriggerClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalTrigger class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/class.Value.html b/static/libical-glib/class.Value.html new file mode 100644 index 00000000..e3870de8 --- /dev/null +++ b/static/libical-glib/class.Value.html @@ -0,0 +1,2187 @@ + + + + + + ICalGLib.Value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Class

    +

    ICalGLibValue

    +
    + +
    + +
    +

    since: 3.0

    +
    + +
    +

    + Description + + + [src] + +

    + +
    final class ICalGLib.Value : ICalGLib.Object
    +{
    +  /* No available fields */
    +}
    + +
    +

    This is the ICalValue instance.

    +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + +
    +

    + Hierarchy + +

    +
    + + + + + + +hierarchy + + +this + + +ICalValue + + + + + +ancestor_0 + + +ICalObject + + + + + +ancestor_0--this + + + + +ancestor_1 + + +GObject + + + + + +ancestor_1--ancestor_0 + + + + + +
    +
    + + + +
    +

    + Ancestors + +

    + +
    + +
    +
    + + + + + + + +
    +

    + Constructors + +

    + +
    + +
    +
    i_cal_value_new
    +
    +

    Creates a new ICalValue with specific kind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_action
    +
    +

    Creates a new ICalValue with the type action.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_attach
    +
    +

    Creates a new ICalValue with the type attach.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_binary
    +
    +

    Creates a new ICalValue with the type binary.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_boolean
    +
    +

    Creates a new ICalValue with the type boolean.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_busytype
    +
    +

    Creates a new ICalValue with the type busytype.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_new_caladdress
    +
    +

    Creates a new ICalValue with the type caladdress.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_carlevel
    +
    +

    Creates a new ICalValue with the type carlevel.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_class
    +
    +

    Creates a new ICalValue with the type class.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_cmd
    +
    +

    Creates a new ICalValue with the type cmd.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_date
    +
    +

    Creates a new ICalValue with the type date.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_datetime
    +
    +

    Creates a new ICalValue with the type datetime.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_datetimedate
    +
    +

    Creates a new ICalValue with the type datetimedate (DATE-TIME or DATE).

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_value_new_datetimeperiod
    +
    +

    Creates a new ICalValue with the type datetimeperiod.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_duration
    +
    +

    Creates a new ICalValue with the type duration.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_float
    +
    +

    Creates a new ICalValue with the type float.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_from_string
    +
    +

    Creates a new ICalValue based on the ICalValueKind and a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_full
    +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_geo
    +
    +

    Creates a new ICalValue with the type geo.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_integer
    +
    +

    Creates a new ICalValue with the type integer.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_method
    +
    +

    Creates a new ICalValue with the type method.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_participanttype
    +
    +

    Creates a new ICalValue of kind I_CAL_PARTICIPANTTYPE_VALUE holding value v of type ICalPropertyParticipanttype.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_new_period
    +
    +

    Creates a new ICalValue with the type period.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_pollcompletion
    +
    +

    Creates a new ICalValue with the type pollcompletion.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_new_pollmode
    +
    +

    Creates a new ICalValue with the type pollmode.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_new_proximity
    +
    +

    Creates a new ICalValue of kind I_CAL_PROXIMITY_VALUE holding value v of type ICalPropertyProximity.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_new_query
    +
    +

    Creates a new ICalValue with the type query.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_querylevel
    +
    +

    Creates a new ICalValue with the type querylevel.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_recur
    +
    +

    Creates a new ICalValue with the type recur.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_requeststatus
    +
    +

    Creates a new ICalValue with the type requeststatus.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_resourcetype
    +
    +

    Creates a new ICalValue of kind I_CAL_RESOURCETYPE_VALUE holding value v of type ICalPropertyResourcetype.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_new_status
    +
    +

    Creates a new ICalValue with the type status.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_string
    +
    +

    Creates a new ICalValue with the type string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_taskmode
    +
    +

    Creates a new ICalValue with the type taskmode.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_new_text
    +
    +

    Creates a new ICalValue with the type text.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_transp
    +
    +

    Creates a new ICalValue with the type transp.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_trigger
    +
    +

    Creates a new ICalValue with the type trigger.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_uri
    +
    +

    Creates a new ICalValue with the type uri.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_utcoffset
    +
    +

    Creates a new ICalValue with the type utcoffset.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_x
    +
    +

    Creates a new ICalValue with the type x.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_new_xlicclass
    +
    +

    Creates a new ICalValue with the type xlicclass.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Functions + +

    + +
    + +
    +
    i_cal_value_decode_ical_string
    +
    +

    Extracts the original character string encoded by the above function.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_encode_ical_string
    +
    +

    Encodes a character string in ical format, escape certain characters, etc.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_kind_from_string
    +
    +

    Converts a string to ICalValueKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_kind_is_valid
    +
    +

    Checks whether the ICalValueKind is valid.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_kind_to_property_kind
    +
    +

    Converts a ICalValueKind to a ICalPropertyKind.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_kind_to_string
    +
    +

    Converts the ICalValueKind to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    + + + +
    +

    + Instance methods + +

    + +
    + +
    +
    i_cal_value_as_ical_string
    +
    +

    Converts the ICalValue to a string.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_clone
    +
    +

    Deeply clone a ICalValue.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_compare
    +
    +

    Compares two ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_free
    +
    +

    Frees a ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_action
    +
    +

    Gets the action of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_attach
    +
    +

    Gets the attach of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_binary
    +
    +

    Gets the binary of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_boolean
    +
    +

    Gets the boolean of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_busytype
    +
    +

    Gets the busytype of ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_get_caladdress
    +
    +

    Gets the caladdress of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_carlevel
    +
    +

    Gets the carlevel of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_class
    +
    +

    Gets the class of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_cmd
    +
    +

    Gets the cmd of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_date
    +
    +

    Gets the date of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_datetime
    +
    +

    Gets the datetime of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_datetimedate
    +
    +

    Gets the datetimedate (DATE-TIME or DATE) of ICalValue.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_value_get_datetimeperiod
    +
    +

    Gets the datetimeperiod of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_duration
    +
    +

    Gets the duration of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_float
    +
    +

    Gets the float of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_geo
    +
    +

    Gets the geo of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_integer
    +
    +

    Gets the integer of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_method
    +
    +

    Gets the method of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_parent
    +
    +

    Gets the parent ICalProperty of the specified ICalValue.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_value_get_participanttype
    +
    +

    Gets value of the val of kind I_CAL_PARTICIPANTTYPE_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_get_period
    +
    +

    Gets the period of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_pollcompletion
    +
    +

    Gets the pollcompletion of ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_get_pollmode
    +
    +

    Gets the pollmode of ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_get_proximity
    +
    +

    Gets value of the val of kind I_CAL_PROXIMITY_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_get_query
    +
    +

    Gets the query of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_querylevel
    +
    +

    Gets the querylevel of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_recur
    +
    +

    Gets the recur of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_requeststatus
    +
    +

    Gets the requeststatus of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_resourcetype
    +
    +

    Gets value of the val of kind I_CAL_RESOURCETYPE_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_get_status
    +
    +

    Gets the status of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_string
    +
    +

    Gets the string of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_taskmode
    +
    +

    Gets the taskmode of ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_get_text
    +
    +

    Gets the text of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_transp
    +
    +

    Gets the transp of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_trigger
    +
    +

    Gets the trigger of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_uri
    +
    +

    Gets the uri of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_utcoffset
    +
    +

    Gets the utcoffset of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_x
    +
    +

    Gets the x of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_get_xlicclass
    +
    +

    Gets the xlicclass of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_is_valid
    +
    +

    Checks if ICalValue is valid.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_isa
    +
    +

    Gets the kind of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_isa_value
    +
    +

    Checks whether the native part of ICalValue is an icalvalue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_reset_kind
    +
    +

    Resets the kind of ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_action
    +
    +

    Sets the action in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_attach
    +
    +

    Sets the attach in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_binary
    +
    +

    Sets the binary in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_boolean
    +
    +

    Sets the boolean in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_busytype
    +
    +

    Sets the busytype in the ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_set_caladdress
    +
    +

    Sets the caladdress in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_carlevel
    +
    +

    Sets the carlevel in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_class
    +
    +

    Sets the class in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_cmd
    +
    +

    Sets the cmd in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_date
    +
    +

    Sets the date in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_datetime
    +
    +

    Sets the datetime in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_datetimedate
    +
    +

    Sets the datetimedate (DATE-TIME or DATE) in the ICalValue.

    +
    +
    +

    since: 3.0

    +
    +
    + +
    +
    i_cal_value_set_datetimeperiod
    +
    +

    Sets the datetimeperiod in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_duration
    +
    +

    Sets the duration in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_float
    +
    +

    Sets the float in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_geo
    +
    +

    Sets the geo in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_integer
    +
    +

    Sets the integer in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_method
    +
    +

    Sets the method in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_parent
    +
    +

    Sets the parent property of a value.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_set_participanttype
    +
    +

    Sets value v to val of kind I_CAL_PARTICIPANTTYPE_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_set_period
    +
    +

    Sets the period in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_pollcompletion
    +
    +

    Sets the pollcompletion in the ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_set_pollmode
    +
    +

    Sets the pollmode in the ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_set_proximity
    +
    +

    Sets value v to val of kind I_CAL_PROXIMITY_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_set_query
    +
    +

    Sets the query in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_querylevel
    +
    +

    Sets the querylevel in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_recur
    +
    +

    Sets the recur in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_requeststatus
    +
    +

    Sets the requeststatus in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_resourcetype
    +
    +

    Sets value v to val of kind I_CAL_RESOURCETYPE_VALUE.

    +
    +
    +

    unstable since: 3.1

    +
    +
    + +
    +
    i_cal_value_set_status
    +
    +

    Sets the status in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_string
    +
    +

    Sets the string in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_taskmode
    +
    +

    Sets the taskmode in the ICalValue.

    +
    +
    +

    since: 2.0

    +
    +
    + +
    +
    i_cal_value_set_text
    +
    +

    Sets the text in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_transp
    +
    +

    Sets the transp in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_trigger
    +
    +

    Sets the trigger in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_uri
    +
    +

    Sets the uri in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_utcoffset
    +
    +

    Sets the utcoffset in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_x
    +
    +

    Sets the x in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    +
    i_cal_value_set_xlicclass
    +
    +

    Sets the xlicclass in the ICalValue.

    +
    +
    +

    since: 1.0

    +
    +
    + +
    + + + +
    +
    Methods inherited from ICalObject (12)
    + +
    i_cal_object_add_depender
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_always_destroy
    +

    Obtain the ICalObject::always-destroy property value.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_get_is_global_memory
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_get_native_destroy_func
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_ref_owner
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_depender
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_remove_owner
    +

    Unref and remove the owner.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_always_destroy
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    i_cal_object_set_native_destroy_func
    +

    Sets a function to be used to destroy the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_set_owner
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    +
    +

    since: 1.0

    +
    + +
    i_cal_object_steal_native
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    +
    +

    since: 1.0

    +
    + +
    +
    + + + +
    Methods inherited from GObject (43)
    +
    + +
    +

    Please see GObject for a full list of methods.

    +
    + +
    +
    + + + + +
    + + + +
    +

    + Properties + +

    + + + + + +
    +
    Properties inherited from ICalObject (5)
    + +
    ICalGLib.Object:always-destroy
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    +
    +

    unstable since: 3.0.11

    +
    + +
    ICalGLib.Object:is-global-memory
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native
    +

    The native libical structure for this ICalObject.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:native-destroy-func
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    +
    +

    since: 3.0

    +
    + +
    ICalGLib.Object:owner
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    +
    +

    since: 3.0

    +
    + +
    +
    + + + + + + + +
    + + + +
    +

    + Signals + +

    + + + + + + + +
    Signals inherited from GObject (1)
    +
    +
    GObject::notify
    +
    +

    The notify signal is emitted on an object when one of its properties has +its value set through g_object_set_property(), g_object_set(), et al.

    +
    +
    +

    since: 2.0

    +
    + +
    +
    + + + + + +
    + + + +
    +

    + Class structure + +

    + +
    +
    struct ICalGLibValueClass {
    +  /* no available fields */
    +}
    +
    + +
    +

    This is the ICalValue class.

    +
    + + +
    + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/classes_hierarchy.html b/static/libical-glib/classes_hierarchy.html new file mode 100644 index 00000000..5f811f17 --- /dev/null +++ b/static/libical-glib/classes_hierarchy.html @@ -0,0 +1,164 @@ + + + + + + ICalGLib – 3.0: Classes Hierarchy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    + +

    + Classes Hierarchy + + +

    + +
    +
    +

    Classes Hierarchy

    + +
    +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Array.new_full.html b/static/libical-glib/ctor.Array.new_full.html new file mode 100644 index 00000000..edb0e30e --- /dev/null +++ b/static/libical-glib/ctor.Array.new_full.html @@ -0,0 +1,256 @@ + + + + + + ICalGLib.Array.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibArraynew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalArray*
    +i_cal_array_new_full (
    +  icalarray* native,
    +  GObject* owner,
    +  gboolean is_global_memory
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalarray*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    is_global_memory
    +
    +

    Type: gboolean

    +

    Whether it is allocated in the global memory.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalArray

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Attach.new_from_bytes.html b/static/libical-glib/ctor.Attach.new_from_bytes.html new file mode 100644 index 00000000..07beaa7d --- /dev/null +++ b/static/libical-glib/ctor.Attach.new_from_bytes.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Attach.new_from_bytes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibAttachnew_from_bytes

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_attach_new_from_bytes (
    +  GBytes* bytes
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalAttach from the data in bytes. Takes a reference of bytes, increase the reference +before calling this function if you with to use it afterward. The stored bytes should be already encoded +with used encoding (like base64).

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    bytes
    +
    +

    Type: GBytes

    +

    The GBytes holding the data used to create the ICalAttach.

    + + + + + + + + + + +
    The called function takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The newly created ICalAttach.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Attach.new_from_data.html b/static/libical-glib/ctor.Attach.new_from_data.html new file mode 100644 index 00000000..0af2778f --- /dev/null +++ b/static/libical-glib/ctor.Attach.new_from_data.html @@ -0,0 +1,262 @@ + + + + + + ICalGLib.Attach.new_from_data + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibAttachnew_from_data

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_attach_new_from_data (
    +  const gchar* data,
    +  GFunc free_fn,
    +  void* free_fn_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalAttach from the data.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    data
    +
    +

    Type: const gchar*

    +

    The data used to create the ICalAttach.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + +
    free_fn
    +
    +

    Type: GFunc

    +

    The function used to free the data when the create ICalAttach is destroyed.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + +
    free_fn_data
    +
    +

    Type: void*

    +

    The userdata used for the free function free_fn.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The newly created ICalAttach.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Attach.new_from_url.html b/static/libical-glib/ctor.Attach.new_from_url.html new file mode 100644 index 00000000..dbb8796d --- /dev/null +++ b/static/libical-glib/ctor.Attach.new_from_url.html @@ -0,0 +1,226 @@ + + + + + + ICalGLib.Attach.new_from_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibAttachnew_from_url

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_attach_new_from_url (
    +  const gchar* url
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalAttach from the url.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    url
    +
    +

    Type: const gchar*

    +

    The url from which the object is created.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The newly created ICalAttach from the url.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Attach.new_full.html b/static/libical-glib/ctor.Attach.new_full.html new file mode 100644 index 00000000..f5c5436a --- /dev/null +++ b/static/libical-glib/ctor.Attach.new_full.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Attach.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibAttachnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_attach_new_full (
    +  icalattach* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalattach*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.CompIter.new_full.html b/static/libical-glib/ctor.CompIter.new_full.html new file mode 100644 index 00000000..19ae6243 --- /dev/null +++ b/static/libical-glib/ctor.CompIter.new_full.html @@ -0,0 +1,220 @@ + + + + + + ICalGLib.CompIter.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibCompIternew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalCompIter*
    +i_cal_comp_iter_new_full (
    +  icalcompiter native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalcompiter

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalCompIter

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new.html b/static/libical-glib/ctor.Component.new.html new file mode 100644 index 00000000..a3e0c5c7 --- /dev/null +++ b/static/libical-glib/ctor.Component.new.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.Component.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new (
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalComponent with specific type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    The ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_from_string.html b/static/libical-glib/ctor.Component.new_from_string.html new file mode 100644 index 00000000..5c4a059a --- /dev/null +++ b/static/libical-glib/ctor.Component.new_from_string.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.Component.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalComponent based on a string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string used to create ICalComponent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent based on str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_full.html b/static/libical-glib/ctor.Component.new_full.html new file mode 100644 index 00000000..aea7ed8f --- /dev/null +++ b/static/libical-glib/ctor.Component.new_full.html @@ -0,0 +1,286 @@ + + + + + + ICalGLib.Component.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_full (
    +  icalcomponent* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalcomponent*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_participant.html b/static/libical-glib/ctor.Component.new_participant.html new file mode 100644 index 00000000..e9f96222 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_participant.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_participant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_participant

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_participant (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent of type I_CAL_PARTICIPANT_COMPONENT.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vagenda.html b/static/libical-glib/ctor.Component.new_vagenda.html new file mode 100644 index 00000000..37c3b631 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vagenda.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vagenda + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vagenda

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vagenda (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vagenda.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_valarm.html b/static/libical-glib/ctor.Component.new_valarm.html new file mode 100644 index 00000000..a8f072b7 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_valarm.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_valarm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_valarm

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_valarm (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be valarm.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vavailability.html b/static/libical-glib/ctor.Component.new_vavailability.html new file mode 100644 index 00000000..a226161b --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vavailability.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vavailability + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vavailability

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vavailability (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vavailability.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vcalendar.html b/static/libical-glib/ctor.Component.new_vcalendar.html new file mode 100644 index 00000000..a4cb7972 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vcalendar.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vcalendar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vcalendar

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vcalendar (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vcalendar.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vevent.html b/static/libical-glib/ctor.Component.new_vevent.html new file mode 100644 index 00000000..81d56553 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vevent.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vevent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vevent

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vevent (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vevent.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vfreebusy.html b/static/libical-glib/ctor.Component.new_vfreebusy.html new file mode 100644 index 00000000..a35e9a86 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vfreebusy.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vfreebusy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vfreebusy

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vfreebusy (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vfreebusy.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vjournal.html b/static/libical-glib/ctor.Component.new_vjournal.html new file mode 100644 index 00000000..7605b950 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vjournal.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vjournal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vjournal

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vjournal (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vjournal.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vlocation.html b/static/libical-glib/ctor.Component.new_vlocation.html new file mode 100644 index 00000000..424e199d --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vlocation.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vlocation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vlocation

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vlocation (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent of type I_CAL_VLOCATION_COMPONENT.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vpatch.html b/static/libical-glib/ctor.Component.new_vpatch.html new file mode 100644 index 00000000..12bd8b2c --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vpatch.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vpatch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vpatch

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vpatch (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent of type I_CAL_VPATCH_COMPONENT.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vpoll.html b/static/libical-glib/ctor.Component.new_vpoll.html new file mode 100644 index 00000000..c3cc058d --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vpoll.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vpoll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vpoll

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vpoll (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vpoll.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vquery.html b/static/libical-glib/ctor.Component.new_vquery.html new file mode 100644 index 00000000..612e6e39 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vquery.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vquery + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vquery

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vquery (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vquery.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vresource.html b/static/libical-glib/ctor.Component.new_vresource.html new file mode 100644 index 00000000..8a288737 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vresource.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vresource + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vresource

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vresource (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent of type I_CAL_VRESOURCE_COMPONENT.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vtimezone.html b/static/libical-glib/ctor.Component.new_vtimezone.html new file mode 100644 index 00000000..1ecf7fe9 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vtimezone.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vtimezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vtimezone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vtimezone (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vtimezone.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vtodo.html b/static/libical-glib/ctor.Component.new_vtodo.html new file mode 100644 index 00000000..c9f49658 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vtodo.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vtodo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vtodo

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vtodo (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vtodo.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_vvoter.html b/static/libical-glib/ctor.Component.new_vvoter.html new file mode 100644 index 00000000..959b6df6 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_vvoter.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_vvoter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_vvoter

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_vvoter (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be vvoter.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_x.html b/static/libical-glib/ctor.Component.new_x.html new file mode 100644 index 00000000..33284444 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_x.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.Component.new_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_x

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_x (
    +  const gchar* x_name
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalComponent based on name of x property.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    x_name
    +
    +

    Type: const gchar*

    +

    The name of x property.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_xavailable.html b/static/libical-glib/ctor.Component.new_xavailable.html new file mode 100644 index 00000000..99c77999 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_xavailable.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_xavailable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_xavailable

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_xavailable (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be xavailable.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_xdaylight.html b/static/libical-glib/ctor.Component.new_xdaylight.html new file mode 100644 index 00000000..2934c251 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_xdaylight.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_xdaylight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_xdaylight

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_xdaylight (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be xdaylight.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_xpatch.html b/static/libical-glib/ctor.Component.new_xpatch.html new file mode 100644 index 00000000..49ff630a --- /dev/null +++ b/static/libical-glib/ctor.Component.new_xpatch.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_xpatch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_xpatch

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_xpatch (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent of type I_CAL_XPATCH_COMPONENT.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_xstandard.html b/static/libical-glib/ctor.Component.new_xstandard.html new file mode 100644 index 00000000..b4092705 --- /dev/null +++ b/static/libical-glib/ctor.Component.new_xstandard.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_xstandard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_xstandard

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_xstandard (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be xstandard.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Component.new_xvote.html b/static/libical-glib/ctor.Component.new_xvote.html new file mode 100644 index 00000000..5230315c --- /dev/null +++ b/static/libical-glib/ctor.Component.new_xvote.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Component.new_xvote + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibComponentnew_xvote

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_new_xvote (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalComponent with the type to be xvote.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly created ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Datetimeperiod.new.html b/static/libical-glib/ctor.Datetimeperiod.new.html new file mode 100644 index 00000000..02e1f0f7 --- /dev/null +++ b/static/libical-glib/ctor.Datetimeperiod.new.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Datetimeperiod.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDatetimeperiodnew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDatetimeperiod*
    +i_cal_datetimeperiod_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDatetimeperiod

    +

    The newly created ICalDatetimeperiod.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Datetimeperiod.new_full.html b/static/libical-glib/ctor.Datetimeperiod.new_full.html new file mode 100644 index 00000000..b86ba368 --- /dev/null +++ b/static/libical-glib/ctor.Datetimeperiod.new_full.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Datetimeperiod.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDatetimeperiodnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDatetimeperiod*
    +i_cal_datetimeperiod_new_full (
    +  icaldatetimeperiodtype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaldatetimeperiodtype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDatetimeperiod

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Duration.new_bad_duration.html b/static/libical-glib/ctor.Duration.new_bad_duration.html new file mode 100644 index 00000000..9e87057d --- /dev/null +++ b/static/libical-glib/ctor.Duration.new_bad_duration.html @@ -0,0 +1,196 @@ + + + + + + ICalGLib.Duration.new_bad_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDurationnew_bad_duration

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_duration_new_bad_duration (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a bad ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The newly created ICalDuration.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Duration.new_from_int.html b/static/libical-glib/ctor.Duration.new_from_int.html new file mode 100644 index 00000000..33211465 --- /dev/null +++ b/static/libical-glib/ctor.Duration.new_from_int.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Duration.new_from_int + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDurationnew_from_int

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_duration_new_from_int (
    +  gint t
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalDuration from the duration in second.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    t
    +
    +

    Type: gint

    +

    The duration in second.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The newly created ICalDuration.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Duration.new_from_string.html b/static/libical-glib/ctor.Duration.new_from_string.html new file mode 100644 index 00000000..b25a5573 --- /dev/null +++ b/static/libical-glib/ctor.Duration.new_from_string.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Duration.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDurationnew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_duration_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalDuration from the duration in string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string representation of the duration.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The newly created ICalDuration.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Duration.new_full.html b/static/libical-glib/ctor.Duration.new_full.html new file mode 100644 index 00000000..7ffb531b --- /dev/null +++ b/static/libical-glib/ctor.Duration.new_full.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Duration.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDurationnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_duration_new_full (
    +  icaldurationtype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaldurationtype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Duration.new_null_duration.html b/static/libical-glib/ctor.Duration.new_null_duration.html new file mode 100644 index 00000000..28daddb8 --- /dev/null +++ b/static/libical-glib/ctor.Duration.new_null_duration.html @@ -0,0 +1,196 @@ + + + + + + ICalGLib.Duration.new_null_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibDurationnew_null_duration

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_duration_new_null_duration (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalDuration with all the fields to be zero.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The newly created ICalDuration.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Geo.new.html b/static/libical-glib/ctor.Geo.new.html new file mode 100644 index 00000000..35067ea9 --- /dev/null +++ b/static/libical-glib/ctor.Geo.new.html @@ -0,0 +1,240 @@ + + + + + + ICalGLib.Geo.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibGeonew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalGeo*
    +i_cal_geo_new (
    +  gdouble lat,
    +  gdouble lon
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    lat
    +
    +

    Type: gdouble

    +

    Latitude.

    + + + + + + + + + + +
    +
    + +
    lon
    +
    +

    Type: gdouble

    +

    Longitude.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalGeo

    +

    The newly created ICalGeo.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Geo.new_full.html b/static/libical-glib/ctor.Geo.new_full.html new file mode 100644 index 00000000..8352b290 --- /dev/null +++ b/static/libical-glib/ctor.Geo.new_full.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Geo.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibGeonew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalGeo*
    +i_cal_geo_new_full (
    +  icalgeotype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalgeotype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalGeo

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new.html b/static/libical-glib/ctor.Parameter.new.html new file mode 100644 index 00000000..b0ba4000 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new (
    +  ICalParameterKind v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the kind type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterKind

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_actionparam.html b/static/libical-glib/ctor.Parameter.new_actionparam.html new file mode 100644 index 00000000..2e4388ba --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_actionparam.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_actionparam + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_actionparam

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_actionparam (
    +  ICalParameterAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the action type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterAction

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_altrep.html b/static/libical-glib/ctor.Parameter.new_altrep.html new file mode 100644 index 00000000..58acc4d3 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_altrep.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_altrep + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_altrep

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_altrep (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_charset.html b/static/libical-glib/ctor.Parameter.new_charset.html new file mode 100644 index 00000000..80412b84 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_charset.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_charset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_charset

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_charset (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_cn.html b/static/libical-glib/ctor.Parameter.new_cn.html new file mode 100644 index 00000000..1f103a30 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_cn.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_cn + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_cn

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_cn (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_cutype.html b/static/libical-glib/ctor.Parameter.new_cutype.html new file mode 100644 index 00000000..b3e44d89 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_cutype.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_cutype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_cutype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_cutype (
    +  ICalParameterCutype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterCutype

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_delegatedfrom.html b/static/libical-glib/ctor.Parameter.new_delegatedfrom.html new file mode 100644 index 00000000..5f2e029b --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_delegatedfrom.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_delegatedfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_delegatedfrom

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_delegatedfrom (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_delegatedto.html b/static/libical-glib/ctor.Parameter.new_delegatedto.html new file mode 100644 index 00000000..63355184 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_delegatedto.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_delegatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_delegatedto

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_delegatedto (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_derived.html b/static/libical-glib/ctor.Parameter.new_derived.html new file mode 100644 index 00000000..9e104d46 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_derived.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_derived + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_derived

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_derived (
    +  ICalParameterDerived v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter of kind I_CAL_DERIVED_PARAMETER holding value v of type ICalParameterDerived.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterDerived

    +

    An initial value for the new ICalParameter.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_dir.html b/static/libical-glib/ctor.Parameter.new_dir.html new file mode 100644 index 00000000..03db35ac --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_dir.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_dir + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_dir

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_dir (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_display.html b/static/libical-glib/ctor.Parameter.new_display.html new file mode 100644 index 00000000..49c13803 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_display.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_display + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_display

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_display (
    +  ICalParameterDisplay value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterDisplay

    +

    The ICalParameterDisplay value of the new ICalParameter.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_email.html b/static/libical-glib/ctor.Parameter.new_email.html new file mode 100644 index 00000000..ecb65ef9 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_email.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_email + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_email

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_email (
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string value of the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_enable.html b/static/libical-glib/ctor.Parameter.new_enable.html new file mode 100644 index 00000000..4d15f3b5 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_enable.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_enable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_enable

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_enable (
    +  ICalParameterEnable v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the enable type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterEnable

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_encoding.html b/static/libical-glib/ctor.Parameter.new_encoding.html new file mode 100644 index 00000000..0f7d9519 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_encoding.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_encoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_encoding

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_encoding (
    +  ICalParameterEncoding v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the encoding type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterEncoding

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_fbtype.html b/static/libical-glib/ctor.Parameter.new_fbtype.html new file mode 100644 index 00000000..4b0bd8b4 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_fbtype.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_fbtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_fbtype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_fbtype (
    +  ICalParameterFbtype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the fbtype type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterFbtype

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_feature.html b/static/libical-glib/ctor.Parameter.new_feature.html new file mode 100644 index 00000000..80291f33 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_feature.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_feature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_feature

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_feature (
    +  ICalParameterFeature value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterFeature

    +

    The ICalParameterFeature value of the new ICalParameter.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_filename.html b/static/libical-glib/ctor.Parameter.new_filename.html new file mode 100644 index 00000000..2849520b --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_filename.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_filename

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_filename (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_fmttype.html b/static/libical-glib/ctor.Parameter.new_fmttype.html new file mode 100644 index 00000000..3bf2f2ce --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_fmttype.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_fmttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_fmttype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_fmttype (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_from_string.html b/static/libical-glib/ctor.Parameter.new_from_string.html new file mode 100644 index 00000000..6cb3bd02 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_from_string.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_from_string (
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalParameter from a string of form “PARAMNAME=VALUE”.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string from which the ICalParameter is created.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created $ICalParameter with the properties specified in the value.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_from_value_string.html b/static/libical-glib/ctor.Parameter.new_from_value_string.html new file mode 100644 index 00000000..792e02a2 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_from_value_string.html @@ -0,0 +1,350 @@ + + + + + + ICalGLib.Parameter.new_from_value_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_from_value_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_from_value_string (
    +  ICalParameterKind kind,
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter from just the value, the part after the “=”

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The kind of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string from which ICalParameter to be created.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_full.html b/static/libical-glib/ctor.Parameter.new_full.html new file mode 100644 index 00000000..266683ec --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_full.html @@ -0,0 +1,350 @@ + + + + + + ICalGLib.Parameter.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_full (
    +  icalparameter* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalparameter*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_iana.html b/static/libical-glib/ctor.Parameter.new_iana.html new file mode 100644 index 00000000..3d4567e9 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_iana.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_iana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_iana

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_iana (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_id.html b/static/libical-glib/ctor.Parameter.new_id.html new file mode 100644 index 00000000..806b397a --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_id.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_id + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_id

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_id (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_label.html b/static/libical-glib/ctor.Parameter.new_label.html new file mode 100644 index 00000000..8544ebf8 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_label.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_label + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_label

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_label (
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string value of the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_language.html b/static/libical-glib/ctor.Parameter.new_language.html new file mode 100644 index 00000000..9dca33e5 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_language.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_language + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_language

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_language (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_latency.html b/static/libical-glib/ctor.Parameter.new_latency.html new file mode 100644 index 00000000..d1b343f4 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_latency.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_latency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_latency

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_latency (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_local.html b/static/libical-glib/ctor.Parameter.new_local.html new file mode 100644 index 00000000..bc47ad51 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_local.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_local + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_local

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_local (
    +  ICalParameterLocal v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the local type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterLocal

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_localize.html b/static/libical-glib/ctor.Parameter.new_localize.html new file mode 100644 index 00000000..84865fa2 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_localize.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_localize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_localize

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_localize (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_managedid.html b/static/libical-glib/ctor.Parameter.new_managedid.html new file mode 100644 index 00000000..42e9b491 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_managedid.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_managedid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_managedid

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_managedid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_member.html b/static/libical-glib/ctor.Parameter.new_member.html new file mode 100644 index 00000000..01bd62a2 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_member.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_member + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_member

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_member (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_modified.html b/static/libical-glib/ctor.Parameter.new_modified.html new file mode 100644 index 00000000..7f8003c3 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_modified.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_modified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_modified

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_modified (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_options.html b/static/libical-glib/ctor.Parameter.new_options.html new file mode 100644 index 00000000..5f876b3f --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_options.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_options

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_options (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_order.html b/static/libical-glib/ctor.Parameter.new_order.html new file mode 100644 index 00000000..47551320 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_order.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_order + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_order

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_order (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter of kind I_CAL_ORDER_PARAMETER holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    An initial value for the new ICalParameter.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_partstat.html b/static/libical-glib/ctor.Parameter.new_partstat.html new file mode 100644 index 00000000..5c5ecb6a --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_partstat.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_partstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_partstat

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_partstat (
    +  ICalParameterPartstat v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the partstat type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterPartstat

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_patchaction.html b/static/libical-glib/ctor.Parameter.new_patchaction.html new file mode 100644 index 00000000..297625f0 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_patchaction.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_patchaction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_patchaction

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_patchaction (
    +  ICalParameterPatchaction value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterPatchaction

    +

    The ICalParameterPatchaction value of the new ICalParameter.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_publiccomment.html b/static/libical-glib/ctor.Parameter.new_publiccomment.html new file mode 100644 index 00000000..05983492 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_publiccomment.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_publiccomment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_publiccomment

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_publiccomment (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_range.html b/static/libical-glib/ctor.Parameter.new_range.html new file mode 100644 index 00000000..c54d13ce --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_range.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_range + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_range

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_range (
    +  ICalParameterRange v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the range type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRange

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_reason.html b/static/libical-glib/ctor.Parameter.new_reason.html new file mode 100644 index 00000000..1ec0de7b --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_reason.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_reason + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_reason

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_reason (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_related.html b/static/libical-glib/ctor.Parameter.new_related.html new file mode 100644 index 00000000..3e949046 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_related.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_related + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_related

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_related (
    +  ICalParameterRelated v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the related type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRelated

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_reltype.html b/static/libical-glib/ctor.Parameter.new_reltype.html new file mode 100644 index 00000000..897fca17 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_reltype.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_reltype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_reltype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_reltype (
    +  ICalParameterReltype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the reltype type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterReltype

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_required.html b/static/libical-glib/ctor.Parameter.new_required.html new file mode 100644 index 00000000..426b9315 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_required.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_required

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_required (
    +  ICalParameterRequired v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the required type.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRequired

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_response.html b/static/libical-glib/ctor.Parameter.new_response.html new file mode 100644 index 00000000..74d02ecc --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_response.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_response

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_response (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the response type.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_role.html b/static/libical-glib/ctor.Parameter.new_role.html new file mode 100644 index 00000000..8432926e --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_role.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_role

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_role (
    +  ICalParameterRole v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the role type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRole

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_rsvp.html b/static/libical-glib/ctor.Parameter.new_rsvp.html new file mode 100644 index 00000000..9ef508ed --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_rsvp.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_rsvp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_rsvp

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_rsvp (
    +  ICalParameterRsvp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the rsvp type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRsvp

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_scheduleagent.html b/static/libical-glib/ctor.Parameter.new_scheduleagent.html new file mode 100644 index 00000000..5e87fe49 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_scheduleagent.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_scheduleagent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_scheduleagent

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_scheduleagent (
    +  ICalParameterScheduleagent v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the scheduleagent type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterScheduleagent

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_scheduleforcesend.html b/static/libical-glib/ctor.Parameter.new_scheduleforcesend.html new file mode 100644 index 00000000..e91de207 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_scheduleforcesend.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_scheduleforcesend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_scheduleforcesend

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_scheduleforcesend (
    +  ICalParameterScheduleforcesend v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the scheduleforcesend type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterScheduleforcesend

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_schedulestatus.html b/static/libical-glib/ctor.Parameter.new_schedulestatus.html new file mode 100644 index 00000000..5b2b3ac3 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_schedulestatus.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_schedulestatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_schedulestatus

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_schedulestatus (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_schema.html b/static/libical-glib/ctor.Parameter.new_schema.html new file mode 100644 index 00000000..e1f6127c --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_schema.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_schema + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_schema

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_schema (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter of kind I_CAL_SCHEMA_PARAMETER holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_sentby.html b/static/libical-glib/ctor.Parameter.new_sentby.html new file mode 100644 index 00000000..15b7b15e --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_sentby.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_sentby + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_sentby

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_sentby (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_size.html b/static/libical-glib/ctor.Parameter.new_size.html new file mode 100644 index 00000000..c729843a --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_size.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_size

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_size (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_stayinformed.html b/static/libical-glib/ctor.Parameter.new_stayinformed.html new file mode 100644 index 00000000..2e77bde0 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_stayinformed.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_stayinformed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_stayinformed

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_stayinformed (
    +  ICalParameterStayinformed v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the stayinformed type.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterStayinformed

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_substate.html b/static/libical-glib/ctor.Parameter.new_substate.html new file mode 100644 index 00000000..ee0237f3 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_substate.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_substate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_substate

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_substate (
    +  ICalParameterSubstate v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the substate type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterSubstate

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_tzid.html b/static/libical-glib/ctor.Parameter.new_tzid.html new file mode 100644 index 00000000..5fe47fd2 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_tzid.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_tzid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_value.html b/static/libical-glib/ctor.Parameter.new_value.html new file mode 100644 index 00000000..fd0250a3 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_value.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_value

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_value (
    +  ICalParameterValue v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the value type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterValue

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_x.html b/static/libical-glib/ctor.Parameter.new_x.html new file mode 100644 index 00000000..b8bbbad1 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_x.html @@ -0,0 +1,330 @@ + + + + + + ICalGLib.Parameter.new_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_x

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_x (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to create the new ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_xliccomparetype.html b/static/libical-glib/ctor.Parameter.new_xliccomparetype.html new file mode 100644 index 00000000..24eacfb9 --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_xliccomparetype.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_xliccomparetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_xliccomparetype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_xliccomparetype (
    +  ICalParameterXliccomparetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the xliccomparetype type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterXliccomparetype

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parameter.new_xlicerrortype.html b/static/libical-glib/ctor.Parameter.new_xlicerrortype.html new file mode 100644 index 00000000..30a31c6c --- /dev/null +++ b/static/libical-glib/ctor.Parameter.new_xlicerrortype.html @@ -0,0 +1,332 @@ + + + + + + ICalGLib.Parameter.new_xlicerrortype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParameternew_xlicerrortype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_new_xlicerrortype (
    +  ICalParameterXlicerrortype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalParameter according to the xlicerrortype type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterXlicerrortype

    +

    The type of ICalParameter to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parser.new.html b/static/libical-glib/ctor.Parser.new.html new file mode 100644 index 00000000..9b18a43b --- /dev/null +++ b/static/libical-glib/ctor.Parser.new.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Parser.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParsernew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParser*
    +i_cal_parser_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a default ICalParser.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParser

    +

    The newly created ICalParser.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Parser.new_full.html b/static/libical-glib/ctor.Parser.new_full.html new file mode 100644 index 00000000..52332199 --- /dev/null +++ b/static/libical-glib/ctor.Parser.new_full.html @@ -0,0 +1,240 @@ + + + + + + ICalGLib.Parser.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibParsernew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParser*
    +i_cal_parser_new_full (
    +  icalparser* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalparser*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParser

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Period.new_from_string.html b/static/libical-glib/ctor.Period.new_from_string.html new file mode 100644 index 00000000..38e9fc06 --- /dev/null +++ b/static/libical-glib/ctor.Period.new_from_string.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Period.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPeriodnew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_period_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalPeriod from a string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string used to create the ICalPeriod.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    The newly created ICalPeriod.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Period.new_full.html b/static/libical-glib/ctor.Period.new_full.html new file mode 100644 index 00000000..b90d9403 --- /dev/null +++ b/static/libical-glib/ctor.Period.new_full.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Period.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPeriodnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_period_new_full (
    +  icalperiodtype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalperiodtype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Period.new_null_period.html b/static/libical-glib/ctor.Period.new_null_period.html new file mode 100644 index 00000000..6125089d --- /dev/null +++ b/static/libical-glib/ctor.Period.new_null_period.html @@ -0,0 +1,192 @@ + + + + + + ICalGLib.Period.new_null_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPeriodnew_null_period

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_period_new_null_period (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a default ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    The newly created default ICalPeriod.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new.html b/static/libical-glib/ctor.Property.new.html new file mode 100644 index 00000000..64f43ac4 --- /dev/null +++ b/static/libical-glib/ctor.Property.new.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new (
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalProperty of the target type.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    The kind of ICalProperty to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty with the type kind.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_acceptresponse.html b/static/libical-glib/ctor.Property.new_acceptresponse.html new file mode 100644 index 00000000..e5e626cd --- /dev/null +++ b/static/libical-glib/ctor.Property.new_acceptresponse.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_acceptresponse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_acceptresponse

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_acceptresponse (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The acceptresponse.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_acknowledged.html b/static/libical-glib/ctor.Property.new_acknowledged.html new file mode 100644 index 00000000..1c1de930 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_acknowledged.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_acknowledged + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_acknowledged

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_acknowledged (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of acknowledgement.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_action.html b/static/libical-glib/ctor.Property.new_action.html new file mode 100644 index 00000000..8354a182 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_action.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_action

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_action (
    +  ICalPropertyAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyAction

    +

    The action.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_allowconflict.html b/static/libical-glib/ctor.Property.new_allowconflict.html new file mode 100644 index 00000000..60db36c4 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_allowconflict.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_allowconflict + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_allowconflict

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_allowconflict (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The allowconflict.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_attach.html b/static/libical-glib/ctor.Property.new_attach.html new file mode 100644 index 00000000..f370c91a --- /dev/null +++ b/static/libical-glib/ctor.Property.new_attach.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_attach

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_attach (
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The ICalAttach.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_attendee.html b/static/libical-glib/ctor.Property.new_attendee.html new file mode 100644 index 00000000..37ddb999 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_attendee.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_attendee + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_attendee

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_attendee (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The attendee.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_busytype.html b/static/libical-glib/ctor.Property.new_busytype.html new file mode 100644 index 00000000..6a633083 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_busytype.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_busytype (
    +  ICalPropertyBusytype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyBusytype

    +

    The busytype.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_calendaraddress.html b/static/libical-glib/ctor.Property.new_calendaraddress.html new file mode 100644 index 00000000..a03f4912 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_calendaraddress.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_calendaraddress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_calendaraddress

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_calendaraddress (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_CALENDARADDRESS_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_calid.html b/static/libical-glib/ctor.Property.new_calid.html new file mode 100644 index 00000000..0cba9f08 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_calid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_calid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_calid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_calid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_calmaster.html b/static/libical-glib/ctor.Property.new_calmaster.html new file mode 100644 index 00000000..be9c2cd5 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_calmaster.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_calmaster + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_calmaster

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_calmaster (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calmaster.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_calscale.html b/static/libical-glib/ctor.Property.new_calscale.html new file mode 100644 index 00000000..a97d1c96 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_calscale.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_calscale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_calscale

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_calscale (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calscale.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_capversion.html b/static/libical-glib/ctor.Property.new_capversion.html new file mode 100644 index 00000000..f786902c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_capversion.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_capversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_capversion

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_capversion (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The capversion.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_carid.html b/static/libical-glib/ctor.Property.new_carid.html new file mode 100644 index 00000000..8c574482 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_carid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_carid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_carid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_carid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The carid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_carlevel.html b/static/libical-glib/ctor.Property.new_carlevel.html new file mode 100644 index 00000000..a7011010 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_carlevel.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_carlevel (
    +  ICalPropertyCarlevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCarlevel

    +

    The carlevel.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_categories.html b/static/libical-glib/ctor.Property.new_categories.html new file mode 100644 index 00000000..2c56377b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_categories.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_categories + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_categories

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_categories (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The categories.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_class.html b/static/libical-glib/ctor.Property.new_class.html new file mode 100644 index 00000000..8be62912 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_class.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_class

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_class (
    +  ICalProperty_Class v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalProperty_Class

    +

    The class.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_cmd.html b/static/libical-glib/ctor.Property.new_cmd.html new file mode 100644 index 00000000..6b666f64 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_cmd.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_cmd (
    +  ICalPropertyCmd v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCmd

    +

    The cmd.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_color.html b/static/libical-glib/ctor.Property.new_color.html new file mode 100644 index 00000000..ce00dd61 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_color.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_color + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_color

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_color (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new color ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The color.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_comment.html b/static/libical-glib/ctor.Property.new_comment.html new file mode 100644 index 00000000..f265dcc4 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_comment.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_comment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_comment

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_comment (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The comment.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_completed.html b/static/libical-glib/ctor.Property.new_completed.html new file mode 100644 index 00000000..11ec806c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_completed.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_completed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_completed

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_completed (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of completed.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_components.html b/static/libical-glib/ctor.Property.new_components.html new file mode 100644 index 00000000..d028a7c9 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_components.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_components + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_components

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_components (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The components.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_conference.html b/static/libical-glib/ctor.Property.new_conference.html new file mode 100644 index 00000000..9d38128a --- /dev/null +++ b/static/libical-glib/ctor.Property.new_conference.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_conference + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_conference

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_conference (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_CONFERENCE_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_contact.html b/static/libical-glib/ctor.Property.new_contact.html new file mode 100644 index 00000000..780a928f --- /dev/null +++ b/static/libical-glib/ctor.Property.new_contact.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_contact + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_contact

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_contact (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The contact.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_created.html b/static/libical-glib/ctor.Property.new_created.html new file mode 100644 index 00000000..2db1bdc5 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_created.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_created + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_created

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_created (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of created.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_csid.html b/static/libical-glib/ctor.Property.new_csid.html new file mode 100644 index 00000000..d74b58eb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_csid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_csid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_csid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_csid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The csid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_datemax.html b/static/libical-glib/ctor.Property.new_datemax.html new file mode 100644 index 00000000..f23f1d4a --- /dev/null +++ b/static/libical-glib/ctor.Property.new_datemax.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_datemax + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_datemax

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_datemax (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of datemax.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_datemin.html b/static/libical-glib/ctor.Property.new_datemin.html new file mode 100644 index 00000000..866efe8d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_datemin.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_datemin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_datemin

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_datemin (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of datemin.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_decreed.html b/static/libical-glib/ctor.Property.new_decreed.html new file mode 100644 index 00000000..d10c7702 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_decreed.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_decreed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_decreed

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_decreed (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The decreed.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_defaultcharset.html b/static/libical-glib/ctor.Property.new_defaultcharset.html new file mode 100644 index 00000000..216d3dd2 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_defaultcharset.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_defaultcharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_defaultcharset

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_defaultcharset (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultcharset.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_defaultlocale.html b/static/libical-glib/ctor.Property.new_defaultlocale.html new file mode 100644 index 00000000..27b2a092 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_defaultlocale.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_defaultlocale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_defaultlocale

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_defaultlocale (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultlocale.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_defaulttzid.html b/static/libical-glib/ctor.Property.new_defaulttzid.html new file mode 100644 index 00000000..8b2bc0af --- /dev/null +++ b/static/libical-glib/ctor.Property.new_defaulttzid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_defaulttzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_defaulttzid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_defaulttzid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaulttzid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_defaultvcars.html b/static/libical-glib/ctor.Property.new_defaultvcars.html new file mode 100644 index 00000000..51fa27c0 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_defaultvcars.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_defaultvcars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_defaultvcars

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_defaultvcars (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultvcars.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_deny.html b/static/libical-glib/ctor.Property.new_deny.html new file mode 100644 index 00000000..e7882440 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_deny.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_deny + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_deny

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_deny (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The deny.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_description.html b/static/libical-glib/ctor.Property.new_description.html new file mode 100644 index 00000000..53a27feb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_description.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_description

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_description (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The description.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_dtend.html b/static/libical-glib/ctor.Property.new_dtend.html new file mode 100644 index 00000000..1d254987 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_dtend.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_dtend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_dtend

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_dtend (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of dtend.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_dtstamp.html b/static/libical-glib/ctor.Property.new_dtstamp.html new file mode 100644 index 00000000..15c55a00 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_dtstamp.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_dtstamp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_dtstamp

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_dtstamp (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of dtstamp.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_dtstart.html b/static/libical-glib/ctor.Property.new_dtstart.html new file mode 100644 index 00000000..e0df7f6d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_dtstart.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_dtstart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_dtstart

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_dtstart (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of dtstart.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_due.html b/static/libical-glib/ctor.Property.new_due.html new file mode 100644 index 00000000..ee9b4afb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_due.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_due + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_due

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_due (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of due.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_duration.html b/static/libical-glib/ctor.Property.new_duration.html new file mode 100644 index 00000000..9a859edf --- /dev/null +++ b/static/libical-glib/ctor.Property.new_duration.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_duration

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_duration (
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The duration.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_estimatedduration.html b/static/libical-glib/ctor.Property.new_estimatedduration.html new file mode 100644 index 00000000..b9180800 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_estimatedduration.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_estimatedduration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_estimatedduration

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_estimatedduration (
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The estimatedduration.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_exdate.html b/static/libical-glib/ctor.Property.new_exdate.html new file mode 100644 index 00000000..5b18243c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_exdate.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_exdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_exdate

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_exdate (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of exdate.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_expand.html b/static/libical-glib/ctor.Property.new_expand.html new file mode 100644 index 00000000..043f1196 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_expand.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_expand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_expand

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_expand (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The expand.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_exrule.html b/static/libical-glib/ctor.Property.new_exrule.html new file mode 100644 index 00000000..7bbc6633 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_exrule.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_exrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_exrule

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_exrule (
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The exrule recurrence type.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_freebusy.html b/static/libical-glib/ctor.Property.new_freebusy.html new file mode 100644 index 00000000..d61bc96c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_freebusy.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_freebusy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_freebusy

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_freebusy (
    +  ICalPeriod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPeriod

    +

    The freebusy period type.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_from_string.html b/static/libical-glib/ctor.Property.new_from_string.html new file mode 100644 index 00000000..e445f6da --- /dev/null +++ b/static/libical-glib/ctor.Property.new_from_string.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalProperty from a string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string used to construct a ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty from str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_full.html b/static/libical-glib/ctor.Property.new_full.html new file mode 100644 index 00000000..b7565e4f --- /dev/null +++ b/static/libical-glib/ctor.Property.new_full.html @@ -0,0 +1,502 @@ + + + + + + ICalGLib.Property.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_full (
    +  icalproperty* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalproperty*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_geo.html b/static/libical-glib/ctor.Property.new_geo.html new file mode 100644 index 00000000..23e08278 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_geo.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_geo

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_geo (
    +  ICalGeo* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalGeo

    +

    The geo type.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_grant.html b/static/libical-glib/ctor.Property.new_grant.html new file mode 100644 index 00000000..f38fec38 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_grant.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_grant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_grant

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_grant (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The grant.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_image.html b/static/libical-glib/ctor.Property.new_image.html new file mode 100644 index 00000000..4e00f8a3 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_image.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_image + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_image

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_image (
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_IMAGE_PROPERTY holding value v of type ICalAttach.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_itipversion.html b/static/libical-glib/ctor.Property.new_itipversion.html new file mode 100644 index 00000000..e6a74074 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_itipversion.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_itipversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_itipversion

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_itipversion (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The itipversion.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_lastmodified.html b/static/libical-glib/ctor.Property.new_lastmodified.html new file mode 100644 index 00000000..8b40cb95 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_lastmodified.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_lastmodified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_lastmodified

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_lastmodified (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of lastmodified.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_location.html b/static/libical-glib/ctor.Property.new_location.html new file mode 100644 index 00000000..71d862d6 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_location.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_location

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_location (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The location.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_locationtype.html b/static/libical-glib/ctor.Property.new_locationtype.html new file mode 100644 index 00000000..fdae9ad1 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_locationtype.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_locationtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_locationtype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_locationtype (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_LOCATIONTYPE_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_maxcomponentsize.html b/static/libical-glib/ctor.Property.new_maxcomponentsize.html new file mode 100644 index 00000000..5fcba414 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_maxcomponentsize.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_maxcomponentsize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_maxcomponentsize

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_maxcomponentsize (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxcomponentsize.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_maxdate.html b/static/libical-glib/ctor.Property.new_maxdate.html new file mode 100644 index 00000000..c7d29873 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_maxdate.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_maxdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_maxdate

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_maxdate (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of maxdate.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_maxresults.html b/static/libical-glib/ctor.Property.new_maxresults.html new file mode 100644 index 00000000..0b7d0cea --- /dev/null +++ b/static/libical-glib/ctor.Property.new_maxresults.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_maxresults + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_maxresults

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_maxresults (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxresults.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_maxresultssize.html b/static/libical-glib/ctor.Property.new_maxresultssize.html new file mode 100644 index 00000000..dca756cc --- /dev/null +++ b/static/libical-glib/ctor.Property.new_maxresultssize.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_maxresultssize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_maxresultssize

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_maxresultssize (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxresultssize.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_method.html b/static/libical-glib/ctor.Property.new_method.html new file mode 100644 index 00000000..5bed2289 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_method.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_method

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_method (
    +  ICalPropertyMethod v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyMethod

    +

    The method.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_mindate.html b/static/libical-glib/ctor.Property.new_mindate.html new file mode 100644 index 00000000..f469025b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_mindate.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_mindate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_mindate

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_mindate (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of mindate.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_multipart.html b/static/libical-glib/ctor.Property.new_multipart.html new file mode 100644 index 00000000..96da5d10 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_multipart.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_multipart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_multipart

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_multipart (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The multipart.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_name.html b/static/libical-glib/ctor.Property.new_name.html new file mode 100644 index 00000000..c56db77d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_name.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_name

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_name (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The name.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_organizer.html b/static/libical-glib/ctor.Property.new_organizer.html new file mode 100644 index 00000000..2dbb3998 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_organizer.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_organizer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_organizer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_organizer (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The organizer.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_owner.html b/static/libical-glib/ctor.Property.new_owner.html new file mode 100644 index 00000000..479c500a --- /dev/null +++ b/static/libical-glib/ctor.Property.new_owner.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_owner

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_owner (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The owner.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_participanttype.html b/static/libical-glib/ctor.Property.new_participanttype.html new file mode 100644 index 00000000..f8e4fd08 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_participanttype.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_participanttype (
    +  ICalPropertyParticipanttype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PARTICIPANTTYPE_PROPERTY holding value v of type ICalPropertyParticipanttype.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyParticipanttype

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_patchdelete.html b/static/libical-glib/ctor.Property.new_patchdelete.html new file mode 100644 index 00000000..6c8de42f --- /dev/null +++ b/static/libical-glib/ctor.Property.new_patchdelete.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_patchdelete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_patchdelete

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_patchdelete (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHDELETE_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_patchorder.html b/static/libical-glib/ctor.Property.new_patchorder.html new file mode 100644 index 00000000..84da585c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_patchorder.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_patchorder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_patchorder

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_patchorder (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHORDER_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_patchparameter.html b/static/libical-glib/ctor.Property.new_patchparameter.html new file mode 100644 index 00000000..b73aad73 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_patchparameter.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_patchparameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_patchparameter

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_patchparameter (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHPARAMETER_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_patchtarget.html b/static/libical-glib/ctor.Property.new_patchtarget.html new file mode 100644 index 00000000..39a98153 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_patchtarget.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_patchtarget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_patchtarget

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_patchtarget (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHTARGET_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_patchversion.html b/static/libical-glib/ctor.Property.new_patchversion.html new file mode 100644 index 00000000..7788e628 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_patchversion.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_patchversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_patchversion

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_patchversion (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PATCHVERSION_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_percentcomplete.html b/static/libical-glib/ctor.Property.new_percentcomplete.html new file mode 100644 index 00000000..6155aa6d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_percentcomplete.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_percentcomplete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_percentcomplete

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_percentcomplete (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The percentcomplete.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_permission.html b/static/libical-glib/ctor.Property.new_permission.html new file mode 100644 index 00000000..38227961 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_permission.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_permission + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_permission

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_permission (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The permission.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_pollcompletion.html b/static/libical-glib/ctor.Property.new_pollcompletion.html new file mode 100644 index 00000000..52678b55 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_pollcompletion.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_pollcompletion

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_pollcompletion (
    +  ICalPropertyPollcompletion v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollcompletion

    +

    The pollcompletion.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_pollitemid.html b/static/libical-glib/ctor.Property.new_pollitemid.html new file mode 100644 index 00000000..2bc630bb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_pollitemid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_pollitemid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_pollitemid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_pollitemid (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The pollitemid.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_pollmode.html b/static/libical-glib/ctor.Property.new_pollmode.html new file mode 100644 index 00000000..c7ac66f5 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_pollmode.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_pollmode

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_pollmode (
    +  ICalPropertyPollmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollmode

    +

    The pollmode.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_pollproperties.html b/static/libical-glib/ctor.Property.new_pollproperties.html new file mode 100644 index 00000000..ff956177 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_pollproperties.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_pollproperties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_pollproperties

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_pollproperties (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The pollproperties.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_pollwinner.html b/static/libical-glib/ctor.Property.new_pollwinner.html new file mode 100644 index 00000000..27ddeeed --- /dev/null +++ b/static/libical-glib/ctor.Property.new_pollwinner.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_pollwinner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_pollwinner

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_pollwinner (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The pollwinner.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_priority.html b/static/libical-glib/ctor.Property.new_priority.html new file mode 100644 index 00000000..beb23887 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_priority.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_priority + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_priority

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_priority (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The priority.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_prodid.html b/static/libical-glib/ctor.Property.new_prodid.html new file mode 100644 index 00000000..7bf79ff4 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_prodid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_prodid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_prodid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_prodid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The prodid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_proximity.html b/static/libical-glib/ctor.Property.new_proximity.html new file mode 100644 index 00000000..7a497a1b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_proximity.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_proximity (
    +  ICalPropertyProximity v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_PROXIMITY_PROPERTY holding value v of type ICalPropertyProximity.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyProximity

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_query.html b/static/libical-glib/ctor.Property.new_query.html new file mode 100644 index 00000000..514b6aad --- /dev/null +++ b/static/libical-glib/ctor.Property.new_query.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_query

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_query (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The query.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_queryid.html b/static/libical-glib/ctor.Property.new_queryid.html new file mode 100644 index 00000000..5f45bebb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_queryid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_queryid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_queryid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_queryid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The queryid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_querylevel.html b/static/libical-glib/ctor.Property.new_querylevel.html new file mode 100644 index 00000000..2dd456ed --- /dev/null +++ b/static/libical-glib/ctor.Property.new_querylevel.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_querylevel (
    +  ICalPropertyQuerylevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyQuerylevel

    +

    The querylevel.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_queryname.html b/static/libical-glib/ctor.Property.new_queryname.html new file mode 100644 index 00000000..b39cc734 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_queryname.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_queryname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_queryname

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_queryname (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The queryname.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_rdate.html b/static/libical-glib/ctor.Property.new_rdate.html new file mode 100644 index 00000000..6a04cf6d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_rdate.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_rdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_rdate

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_rdate (
    +  ICalDatetimeperiod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDatetimeperiod

    +

    The rdate.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_recuraccepted.html b/static/libical-glib/ctor.Property.new_recuraccepted.html new file mode 100644 index 00000000..afe11c23 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_recuraccepted.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_recuraccepted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_recuraccepted

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_recuraccepted (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recuraccepted.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_recurexpand.html b/static/libical-glib/ctor.Property.new_recurexpand.html new file mode 100644 index 00000000..7b108098 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_recurexpand.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_recurexpand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_recurexpand

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_recurexpand (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recurexpand.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_recurlimit.html b/static/libical-glib/ctor.Property.new_recurlimit.html new file mode 100644 index 00000000..2e570608 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_recurlimit.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_recurlimit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_recurlimit

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_recurlimit (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recurlimit.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_recurrenceid.html b/static/libical-glib/ctor.Property.new_recurrenceid.html new file mode 100644 index 00000000..f249bbe7 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_recurrenceid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_recurrenceid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_recurrenceid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_recurrenceid (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of recurrenceid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_refreshinterval.html b/static/libical-glib/ctor.Property.new_refreshinterval.html new file mode 100644 index 00000000..08df1373 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_refreshinterval.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_refreshinterval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_refreshinterval

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_refreshinterval (
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_REFRESHINTERVAL_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_relatedto.html b/static/libical-glib/ctor.Property.new_relatedto.html new file mode 100644 index 00000000..3d300108 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_relatedto.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_relatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_relatedto

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_relatedto (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The relatedto.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_relcalid.html b/static/libical-glib/ctor.Property.new_relcalid.html new file mode 100644 index 00000000..0385ce7b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_relcalid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_relcalid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_relcalid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_relcalid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The relcalid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_repeat.html b/static/libical-glib/ctor.Property.new_repeat.html new file mode 100644 index 00000000..9f03ad2e --- /dev/null +++ b/static/libical-glib/ctor.Property.new_repeat.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_repeat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_repeat

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_repeat (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The repeat.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_replyurl.html b/static/libical-glib/ctor.Property.new_replyurl.html new file mode 100644 index 00000000..09fa5f28 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_replyurl.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_replyurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_replyurl

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_replyurl (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The replyurl.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_requeststatus.html b/static/libical-glib/ctor.Property.new_requeststatus.html new file mode 100644 index 00000000..51a59529 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_requeststatus.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_requeststatus (
    +  ICalReqstat* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalReqstat

    +

    The requeststatus.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_resources.html b/static/libical-glib/ctor.Property.new_resources.html new file mode 100644 index 00000000..8dccc5ca --- /dev/null +++ b/static/libical-glib/ctor.Property.new_resources.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_resources + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_resources

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_resources (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The resources.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_resourcetype.html b/static/libical-glib/ctor.Property.new_resourcetype.html new file mode 100644 index 00000000..17740847 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_resourcetype.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_resourcetype (
    +  ICalPropertyResourcetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_RESOURCETYPE_PROPERTY holding value v of type ICalPropertyResourcetype.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyResourcetype

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_response.html b/static/libical-glib/ctor.Property.new_response.html new file mode 100644 index 00000000..dc75d58d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_response.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_response

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_response (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The response.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_restriction.html b/static/libical-glib/ctor.Property.new_restriction.html new file mode 100644 index 00000000..980ef70b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_restriction.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_restriction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_restriction

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_restriction (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The restriction.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_rrule.html b/static/libical-glib/ctor.Property.new_rrule.html new file mode 100644 index 00000000..9446e455 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_rrule.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_rrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_rrule

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_rrule (
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The rrule recurrence type.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_scope.html b/static/libical-glib/ctor.Property.new_scope.html new file mode 100644 index 00000000..4933650d --- /dev/null +++ b/static/libical-glib/ctor.Property.new_scope.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_scope + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_scope

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_scope (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The scope.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_sequence.html b/static/libical-glib/ctor.Property.new_sequence.html new file mode 100644 index 00000000..eebf33b8 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_sequence.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_sequence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_sequence

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_sequence (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The sequence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_source.html b/static/libical-glib/ctor.Property.new_source.html new file mode 100644 index 00000000..446a246c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_source.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_source + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_source

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_source (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_SOURCE_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_status.html b/static/libical-glib/ctor.Property.new_status.html new file mode 100644 index 00000000..7710c70b --- /dev/null +++ b/static/libical-glib/ctor.Property.new_status.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_status

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_status (
    +  ICalPropertyStatus v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyStatus

    +

    The status.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_storesexpanded.html b/static/libical-glib/ctor.Property.new_storesexpanded.html new file mode 100644 index 00000000..4e819521 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_storesexpanded.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_storesexpanded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_storesexpanded

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_storesexpanded (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The storesexpanded.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_structureddata.html b/static/libical-glib/ctor.Property.new_structureddata.html new file mode 100644 index 00000000..7fc08bda --- /dev/null +++ b/static/libical-glib/ctor.Property.new_structureddata.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_structureddata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_structureddata

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_structureddata (
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_STRUCTUREDDATA_PROPERTY holding value v of type ICalAttach.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_styleddescription.html b/static/libical-glib/ctor.Property.new_styleddescription.html new file mode 100644 index 00000000..0da2fbd2 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_styleddescription.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_styleddescription + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_styleddescription

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_styleddescription (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty of kind I_CAL_STYLEDDESCRIPTION_PROPERTY holding value v.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    An initial value for the new ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_summary.html b/static/libical-glib/ctor.Property.new_summary.html new file mode 100644 index 00000000..00aac217 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_summary.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_summary

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_summary (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The summary.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_target.html b/static/libical-glib/ctor.Property.new_target.html new file mode 100644 index 00000000..eea29b46 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_target.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_target + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_target

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_target (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The target.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_taskmode.html b/static/libical-glib/ctor.Property.new_taskmode.html new file mode 100644 index 00000000..3a49e44f --- /dev/null +++ b/static/libical-glib/ctor.Property.new_taskmode.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_taskmode (
    +  ICalPropertyTaskmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTaskmode

    +

    The taskmode.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_transp.html b/static/libical-glib/ctor.Property.new_transp.html new file mode 100644 index 00000000..7df0b642 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_transp.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_transp

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_transp (
    +  ICalPropertyTransp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTransp

    +

    The transp.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_trigger.html b/static/libical-glib/ctor.Property.new_trigger.html new file mode 100644 index 00000000..3697cbac --- /dev/null +++ b/static/libical-glib/ctor.Property.new_trigger.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_trigger (
    +  ICalTrigger* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTrigger

    +

    The trigger period type.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzid.html b/static/libical-glib/ctor.Property.new_tzid.html new file mode 100644 index 00000000..8609e8c9 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzidaliasof.html b/static/libical-glib/ctor.Property.new_tzidaliasof.html new file mode 100644 index 00000000..a0db5e57 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzidaliasof.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzidaliasof + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzidaliasof

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzidaliasof (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzidaliasof.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzname.html b/static/libical-glib/ctor.Property.new_tzname.html new file mode 100644 index 00000000..4f18d9c9 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzname.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzname

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzname (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzname.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzoffsetfrom.html b/static/libical-glib/ctor.Property.new_tzoffsetfrom.html new file mode 100644 index 00000000..640a8088 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzoffsetfrom.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzoffsetfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzoffsetfrom

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzoffsetfrom (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The tzoffsetfrom.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzoffsetto.html b/static/libical-glib/ctor.Property.new_tzoffsetto.html new file mode 100644 index 00000000..8bcca2db --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzoffsetto.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzoffsetto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzoffsetto

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzoffsetto (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The tzoffsetto.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzuntil.html b/static/libical-glib/ctor.Property.new_tzuntil.html new file mode 100644 index 00000000..8085104e --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzuntil.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzuntil + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzuntil

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzuntil (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The time of acknowledgement.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_tzurl.html b/static/libical-glib/ctor.Property.new_tzurl.html new file mode 100644 index 00000000..5c87c937 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_tzurl.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_tzurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_tzurl

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_tzurl (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzurl.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_uid.html b/static/libical-glib/ctor.Property.new_uid.html new file mode 100644 index 00000000..d6028609 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_uid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_uid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_uid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The uid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_url.html b/static/libical-glib/ctor.Property.new_url.html new file mode 100644 index 00000000..b528ac9c --- /dev/null +++ b/static/libical-glib/ctor.Property.new_url.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_url

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_url (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The url.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_version.html b/static/libical-glib/ctor.Property.new_version.html new file mode 100644 index 00000000..9fbabe13 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_version.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_version + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_version

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_version (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The version.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_voter.html b/static/libical-glib/ctor.Property.new_voter.html new file mode 100644 index 00000000..4cd457c3 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_voter.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_voter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_voter

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_voter (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The voter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_x.html b/static/libical-glib/ctor.Property.new_x.html new file mode 100644 index 00000000..ceb1aff5 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_x.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_x

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_x (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The x.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicclass.html b/static/libical-glib/ctor.Property.new_xlicclass.html new file mode 100644 index 00000000..6b025089 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicclass.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicclass (
    +  ICalPropertyXlicclass v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyXlicclass

    +

    The xlicclass.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicclustercount.html b/static/libical-glib/ctor.Property.new_xlicclustercount.html new file mode 100644 index 00000000..bff51673 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicclustercount.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicclustercount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicclustercount

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicclustercount (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicclustercount.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicerror.html b/static/libical-glib/ctor.Property.new_xlicerror.html new file mode 100644 index 00000000..4144f146 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicerror.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicerror + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicerror

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicerror (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicerror.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimecharset.html b/static/libical-glib/ctor.Property.new_xlicmimecharset.html new file mode 100644 index 00000000..c650ecc5 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimecharset.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimecharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimecharset

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimecharset (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecharset.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimecid.html b/static/libical-glib/ctor.Property.new_xlicmimecid.html new file mode 100644 index 00000000..918458e6 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimecid.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimecid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimecid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimecid (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecid.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimecontenttype.html b/static/libical-glib/ctor.Property.new_xlicmimecontenttype.html new file mode 100644 index 00000000..2c6626bb --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimecontenttype.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimecontenttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimecontenttype

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimecontenttype (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecontenttype.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimeencoding.html b/static/libical-glib/ctor.Property.new_xlicmimeencoding.html new file mode 100644 index 00000000..816cf70e --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimeencoding.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimeencoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimeencoding

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimeencoding (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimeencoding.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimefilename.html b/static/libical-glib/ctor.Property.new_xlicmimefilename.html new file mode 100644 index 00000000..c20a9d28 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimefilename.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimefilename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimefilename

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimefilename (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimefilename.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Property.new_xlicmimeoptinfo.html b/static/libical-glib/ctor.Property.new_xlicmimeoptinfo.html new file mode 100644 index 00000000..41abc710 --- /dev/null +++ b/static/libical-glib/ctor.Property.new_xlicmimeoptinfo.html @@ -0,0 +1,484 @@ + + + + + + ICalGLib.Property.new_xlicmimeoptinfo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibPropertynew_xlicmimeoptinfo

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_new_xlicmimeoptinfo (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimeoptinfo.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.RecurIterator.new.html b/static/libical-glib/ctor.RecurIterator.new.html new file mode 100644 index 00000000..158d9fe4 --- /dev/null +++ b/static/libical-glib/ctor.RecurIterator.new.html @@ -0,0 +1,240 @@ + + + + + + ICalGLib.RecurIterator.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibRecurIteratornew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurIterator*
    +i_cal_recur_iterator_new (
    +  ICalRecurrence* rule,
    +  ICalTime* dtstart
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates an ICalRecurIterator.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    rule
    +
    +

    Type: ICalRecurrence

    +

    The rule applied on the ICalRecurIterator.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    dtstart
    +
    +

    Type: ICalTime

    +

    The start time of the recurrence.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurIterator

    +

    The newly created ICalRecurIterator.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.RecurIterator.new_full.html b/static/libical-glib/ctor.RecurIterator.new_full.html new file mode 100644 index 00000000..423e869c --- /dev/null +++ b/static/libical-glib/ctor.RecurIterator.new_full.html @@ -0,0 +1,240 @@ + + + + + + ICalGLib.RecurIterator.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibRecurIteratornew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurIterator*
    +i_cal_recur_iterator_new_full (
    +  icalrecur_iterator* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalrecur_iterator*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurIterator

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Recurrence.new.html b/static/libical-glib/ctor.Recurrence.new.html new file mode 100644 index 00000000..6147e4b9 --- /dev/null +++ b/static/libical-glib/ctor.Recurrence.new.html @@ -0,0 +1,192 @@ + + + + + + ICalGLib.Recurrence.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibRecurrencenew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_recurrence_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    The newly created ICalRecurrence.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Recurrence.new_from_string.html b/static/libical-glib/ctor.Recurrence.new_from_string.html new file mode 100644 index 00000000..1de97e9c --- /dev/null +++ b/static/libical-glib/ctor.Recurrence.new_from_string.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Recurrence.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibRecurrencenew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_recurrence_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string to a ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string representation of the ICalRecurrence.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    The ICalRecurrence converted from str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Recurrence.new_full.html b/static/libical-glib/ctor.Recurrence.new_full.html new file mode 100644 index 00000000..e8f3f4f2 --- /dev/null +++ b/static/libical-glib/ctor.Recurrence.new_full.html @@ -0,0 +1,242 @@ + + + + + + ICalGLib.Recurrence.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibRecurrencenew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_recurrence_new_full (
    +  icalrecurrencetype* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalrecurrencetype*

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Reqstat.new_from_string.html b/static/libical-glib/ctor.Reqstat.new_from_string.html new file mode 100644 index 00000000..3325cc89 --- /dev/null +++ b/static/libical-glib/ctor.Reqstat.new_from_string.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Reqstat.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibReqstatnew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalReqstat*
    +i_cal_reqstat_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalReqstat from string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalReqstat

    +

    The newly created ICalReqstat.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Reqstat.new_full.html b/static/libical-glib/ctor.Reqstat.new_full.html new file mode 100644 index 00000000..88f10241 --- /dev/null +++ b/static/libical-glib/ctor.Reqstat.new_full.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Reqstat.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibReqstatnew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalReqstat*
    +i_cal_reqstat_new_full (
    +  icalreqstattype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalreqstattype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalReqstat

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new.html b/static/libical-glib/ctor.Time.new.html new file mode 100644 index 00000000..d78c22e8 --- /dev/null +++ b/static/libical-glib/ctor.Time.new.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Time.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime. It is a null time.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_current_with_zone.html b/static/libical-glib/ctor.Time.new_current_with_zone.html new file mode 100644 index 00000000..fddadc55 --- /dev/null +++ b/static/libical-glib/ctor.Time.new_current_with_zone.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Time.new_current_with_zone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_current_with_zone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_current_with_zone (
    +  ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalTime according to the timezone and current time.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The timezone used to create a ICalTime according to the current time.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_from_day_of_year.html b/static/libical-glib/ctor.Time.new_from_day_of_year.html new file mode 100644 index 00000000..b5c9b418 --- /dev/null +++ b/static/libical-glib/ctor.Time.new_from_day_of_year.html @@ -0,0 +1,254 @@ + + + + + + ICalGLib.Time.new_from_day_of_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_from_day_of_year

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_from_day_of_year (
    +  const gint day,
    +  const gint year
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new time, given a day of year and a year.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    day
    +
    +

    Type: const gint

    +

    The day of a year.

    + + + + + + + + + + +
    +
    + +
    year
    +
    +

    Type: const gint

    +

    The year.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_from_string.html b/static/libical-glib/ctor.Time.new_from_string.html new file mode 100644 index 00000000..7bed91fa --- /dev/null +++ b/static/libical-glib/ctor.Time.new_from_string.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Time.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a time from an ISO format string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The ISO format string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_from_timet_with_zone.html b/static/libical-glib/ctor.Time.new_from_timet_with_zone.html new file mode 100644 index 00000000..5e06afb8 --- /dev/null +++ b/static/libical-glib/ctor.Time.new_from_timet_with_zone.html @@ -0,0 +1,272 @@ + + + + + + ICalGLib.Time.new_from_timet_with_zone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_from_timet_with_zone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_from_timet_with_zone (
    +  const time_t v,
    +  gint is_date,
    +  ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts seconds past UNIX epoch to a timetype, using timezones.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const time_t

    +

    The seconds past since epoch time.

    + + + + + + + + + + +
    +
    + +
    is_date
    +
    +

    Type: gint

    +

    Whether it is a date type, 1 if yes, 0 if not.

    + + + + + + + + + + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The timezone, or NULL.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_full.html b/static/libical-glib/ctor.Time.new_full.html new file mode 100644 index 00000000..7e33730b --- /dev/null +++ b/static/libical-glib/ctor.Time.new_full.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Time.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_full (
    +  icaltimetype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaltimetype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_null_date.html b/static/libical-glib/ctor.Time.new_null_date.html new file mode 100644 index 00000000..7dddf627 --- /dev/null +++ b/static/libical-glib/ctor.Time.new_null_date.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Time.new_null_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_null_date

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_null_date (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a null date, which indicates no time has been set.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_null_time.html b/static/libical-glib/ctor.Time.new_null_time.html new file mode 100644 index 00000000..b0aea5ff --- /dev/null +++ b/static/libical-glib/ctor.Time.new_null_time.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Time.new_null_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_null_time

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_null_time (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a default time which is an epoch time.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Time.new_today.html b/static/libical-glib/ctor.Time.new_today.html new file mode 100644 index 00000000..33f9d7e6 --- /dev/null +++ b/static/libical-glib/ctor.Time.new_today.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Time.new_today + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimenew_today

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_new_today (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalTime representing today.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.TimeSpan.new.html b/static/libical-glib/ctor.TimeSpan.new.html new file mode 100644 index 00000000..d6473cde --- /dev/null +++ b/static/libical-glib/ctor.TimeSpan.new.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.TimeSpan.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimeSpannew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimeSpan*
    +i_cal_time_span_new (
    +  ICalTime* dtstart,
    +  ICalTime* dtend,
    +  gint is_busy
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    dtstart
    +
    +

    Type: ICalTime

    +

    The start of ICalTimeSpan.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    dtend
    +
    +

    Type: ICalTime

    +

    The end of ICalTimeSpan.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    is_busy
    +
    +

    Type: gint

    +

    Whether this span is busy.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimeSpan

    +

    The newly created ICalTimeSpan.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.TimeSpan.new_full.html b/static/libical-glib/ctor.TimeSpan.new_full.html new file mode 100644 index 00000000..3d2c022a --- /dev/null +++ b/static/libical-glib/ctor.TimeSpan.new_full.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.TimeSpan.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimeSpannew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimeSpan*
    +i_cal_time_span_new_full (
    +  icaltime_span native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaltime_span

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimeSpan

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.TimeSpan.new_timet.html b/static/libical-glib/ctor.TimeSpan.new_timet.html new file mode 100644 index 00000000..eaa05f5f --- /dev/null +++ b/static/libical-glib/ctor.TimeSpan.new_timet.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.TimeSpan.new_timet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimeSpannew_timet

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimeSpan*
    +i_cal_time_span_new_timet (
    +  time_t start,
    +  time_t end,
    +  gboolean is_busy
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalTimeSpan. Free it with g_object_unref(), when no longer needed.

    +
    + +
    + +

    Available since: 3.0.5

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    start
    +
    +

    Type: time_t

    +

    Start of the time span.

    + + + + + + + + + + +
    +
    + +
    end
    +
    +

    Type: time_t

    +

    End of the time span.

    + + + + + + + + + + +
    +
    + +
    is_busy
    +
    +

    Type: gboolean

    +

    Whether the time span is busy.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimeSpan

    +

    The newly created ICalTimeSpan.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Timezone.array_new.html b/static/libical-glib/ctor.Timezone.array_new.html new file mode 100644 index 00000000..44ece968 --- /dev/null +++ b/static/libical-glib/ctor.Timezone.array_new.html @@ -0,0 +1,192 @@ + + + + + + ICalGLib.Timezone.array_new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimezonearray_new

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalArray*
    +i_cal_timezone_array_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new array of timezones.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalArray

    +

    Create a new array.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Timezone.new.html b/static/libical-glib/ctor.Timezone.new.html new file mode 100644 index 00000000..80e71b61 --- /dev/null +++ b/static/libical-glib/ctor.Timezone.new.html @@ -0,0 +1,192 @@ + + + + + + ICalGLib.Timezone.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimezonenew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_new (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The constructor of the type ICalTimezone.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The newly created object of the type ICalTimezone.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Timezone.new_full.html b/static/libical-glib/ctor.Timezone.new_full.html new file mode 100644 index 00000000..ce1c13f2 --- /dev/null +++ b/static/libical-glib/ctor.Timezone.new_full.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.Timezone.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTimezonenew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_new_full (
    +  icaltimezone* native,
    +  GObject* owner,
    +  gboolean is_global_memory
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaltimezone*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    is_global_memory
    +
    +

    Type: gboolean

    +

    Whether it is allocated in the global memory.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Trigger.new_from_int.html b/static/libical-glib/ctor.Trigger.new_from_int.html new file mode 100644 index 00000000..791c1665 --- /dev/null +++ b/static/libical-glib/ctor.Trigger.new_from_int.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Trigger.new_from_int + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTriggernew_from_int

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTrigger*
    +i_cal_trigger_new_from_int (
    +  const gint reltime
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalTrigger from integer.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    reltime
    +
    +

    Type: const gint

    +

    An integer.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTrigger

    +

    The newly created ICalTrigger.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Trigger.new_from_string.html b/static/libical-glib/ctor.Trigger.new_from_string.html new file mode 100644 index 00000000..5f417c7f --- /dev/null +++ b/static/libical-glib/ctor.Trigger.new_from_string.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Trigger.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTriggernew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTrigger*
    +i_cal_trigger_new_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a ICalTrigger from a string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTrigger

    +

    The newly created ICalTrigger.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Trigger.new_full.html b/static/libical-glib/ctor.Trigger.new_full.html new file mode 100644 index 00000000..843b289c --- /dev/null +++ b/static/libical-glib/ctor.Trigger.new_full.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Trigger.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibTriggernew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTrigger*
    +i_cal_trigger_new_full (
    +  icaltriggertype native
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icaltriggertype

    +

    The native libical object.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTrigger

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new.html b/static/libical-glib/ctor.Value.new.html new file mode 100644 index 00000000..ff736da2 --- /dev/null +++ b/static/libical-glib/ctor.Value.new.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new (
    +  ICalValueKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with specific kind.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalValueKind

    +

    A ICalValueKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_action.html b/static/libical-glib/ctor.Value.new_action.html new file mode 100644 index 00000000..e9c940dd --- /dev/null +++ b/static/libical-glib/ctor.Value.new_action.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_action

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_action (
    +  ICalPropertyAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type action.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyAction

    +

    The action value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_attach.html b/static/libical-glib/ctor.Value.new_attach.html new file mode 100644 index 00000000..eeb05828 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_attach.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_attach

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_attach (
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type attach.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The attach value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_binary.html b/static/libical-glib/ctor.Value.new_binary.html new file mode 100644 index 00000000..5afba309 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_binary.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_binary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_binary

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_binary (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type binary.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The binary value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_boolean.html b/static/libical-glib/ctor.Value.new_boolean.html new file mode 100644 index 00000000..c4ecfffc --- /dev/null +++ b/static/libical-glib/ctor.Value.new_boolean.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_boolean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_boolean

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_boolean (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type boolean.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The boolean value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_busytype.html b/static/libical-glib/ctor.Value.new_busytype.html new file mode 100644 index 00000000..f69a4d92 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_busytype.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_busytype (
    +  ICalPropertyBusytype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type busytype.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyBusytype

    +

    The busytype value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_caladdress.html b/static/libical-glib/ctor.Value.new_caladdress.html new file mode 100644 index 00000000..52d2be10 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_caladdress.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_caladdress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_caladdress

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_caladdress (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type caladdress.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The caladdress value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_carlevel.html b/static/libical-glib/ctor.Value.new_carlevel.html new file mode 100644 index 00000000..036c353b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_carlevel.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_carlevel (
    +  ICalPropertyCarlevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type carlevel.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCarlevel

    +

    The carlevel value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_class.html b/static/libical-glib/ctor.Value.new_class.html new file mode 100644 index 00000000..8fa834cc --- /dev/null +++ b/static/libical-glib/ctor.Value.new_class.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_class

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_class (
    +  ICalProperty_Class v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type class.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalProperty_Class

    +

    The class value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_cmd.html b/static/libical-glib/ctor.Value.new_cmd.html new file mode 100644 index 00000000..3c0d1637 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_cmd.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_cmd (
    +  ICalPropertyCmd v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type cmd.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCmd

    +

    The cmd value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_date.html b/static/libical-glib/ctor.Value.new_date.html new file mode 100644 index 00000000..3d7d8ff6 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_date.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_date

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_date (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type date.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The date value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_datetime.html b/static/libical-glib/ctor.Value.new_datetime.html new file mode 100644 index 00000000..bec4dc2b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_datetime.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_datetime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_datetime

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_datetime (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type datetime.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The datetime value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_datetimedate.html b/static/libical-glib/ctor.Value.new_datetimedate.html new file mode 100644 index 00000000..cb67bec0 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_datetimedate.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_datetimedate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_datetimedate

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_datetimedate (
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type datetimedate (DATE-TIME or DATE).

    +
    + +
    + +

    Available since: 3.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The DATE-TIME or DATE value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_datetimeperiod.html b/static/libical-glib/ctor.Value.new_datetimeperiod.html new file mode 100644 index 00000000..9d3a932b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_datetimeperiod.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_datetimeperiod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_datetimeperiod

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_datetimeperiod (
    +  ICalDatetimeperiod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type datetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDatetimeperiod

    +

    The datetimeperiod value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_duration.html b/static/libical-glib/ctor.Value.new_duration.html new file mode 100644 index 00000000..bb775496 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_duration.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_duration

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_duration (
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type duration.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The duration value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_float.html b/static/libical-glib/ctor.Value.new_float.html new file mode 100644 index 00000000..8ea6c384 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_float.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_float + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_float

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_float (
    +  gdouble v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type float.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gdouble

    +

    The float value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_from_string.html b/static/libical-glib/ctor.Value.new_from_string.html new file mode 100644 index 00000000..0b889c3a --- /dev/null +++ b/static/libical-glib/ctor.Value.new_from_string.html @@ -0,0 +1,318 @@ + + + + + + ICalGLib.Value.new_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_from_string (
    +  ICalValueKind kind,
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue based on the ICalValueKind and a string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalValueKind

    +

    A ICalValueKind.

    + + + + + + + + + + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue based on the kind and str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_full.html b/static/libical-glib/ctor.Value.new_full.html new file mode 100644 index 00000000..9f83f769 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_full.html @@ -0,0 +1,318 @@ + + + + + + ICalGLib.Value.new_full + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_full

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_full (
    +  icalvalue* native,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Create a new libical-glib object from the native libical object and the owner.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native
    +
    +

    Type: icalvalue*

    +

    The native libical object.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    The parent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly create libical-glib object.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_geo.html b/static/libical-glib/ctor.Value.new_geo.html new file mode 100644 index 00000000..c5414854 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_geo.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_geo

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_geo (
    +  ICalGeo* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type geo.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalGeo

    +

    The geo value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_integer.html b/static/libical-glib/ctor.Value.new_integer.html new file mode 100644 index 00000000..c160f5fa --- /dev/null +++ b/static/libical-glib/ctor.Value.new_integer.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_integer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_integer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_integer (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type integer.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The integer value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_method.html b/static/libical-glib/ctor.Value.new_method.html new file mode 100644 index 00000000..d65f2a45 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_method.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_method

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_method (
    +  ICalPropertyMethod v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type method.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyMethod

    +

    The method value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_participanttype.html b/static/libical-glib/ctor.Value.new_participanttype.html new file mode 100644 index 00000000..2069e4d6 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_participanttype.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_participanttype (
    +  ICalPropertyParticipanttype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue of kind I_CAL_PARTICIPANTTYPE_VALUE holding value v of type ICalPropertyParticipanttype.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyParticipanttype

    +

    An initial value for the new ICalValue.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_period.html b/static/libical-glib/ctor.Value.new_period.html new file mode 100644 index 00000000..57314dae --- /dev/null +++ b/static/libical-glib/ctor.Value.new_period.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_period

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_period (
    +  ICalPeriod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type period.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPeriod

    +

    The period value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_pollcompletion.html b/static/libical-glib/ctor.Value.new_pollcompletion.html new file mode 100644 index 00000000..57efe2e2 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_pollcompletion.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_pollcompletion

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_pollcompletion (
    +  ICalPropertyPollcompletion v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type pollcompletion.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollcompletion

    +

    The pollcompletion value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_pollmode.html b/static/libical-glib/ctor.Value.new_pollmode.html new file mode 100644 index 00000000..55dc1c9b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_pollmode.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_pollmode

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_pollmode (
    +  ICalPropertyPollmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type pollmode.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollmode

    +

    The pollmode value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_proximity.html b/static/libical-glib/ctor.Value.new_proximity.html new file mode 100644 index 00000000..0245fb38 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_proximity.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_proximity (
    +  ICalPropertyProximity v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue of kind I_CAL_PROXIMITY_VALUE holding value v of type ICalPropertyProximity.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyProximity

    +

    An initial value for the new ICalValue.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_query.html b/static/libical-glib/ctor.Value.new_query.html new file mode 100644 index 00000000..f4833775 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_query.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_query

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_query (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type query.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The query value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_querylevel.html b/static/libical-glib/ctor.Value.new_querylevel.html new file mode 100644 index 00000000..9126d497 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_querylevel.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_querylevel (
    +  ICalPropertyQuerylevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type querylevel.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyQuerylevel

    +

    The querylevel value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_recur.html b/static/libical-glib/ctor.Value.new_recur.html new file mode 100644 index 00000000..5d0b7660 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_recur.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_recur + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_recur

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_recur (
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type recur.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The recur value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_requeststatus.html b/static/libical-glib/ctor.Value.new_requeststatus.html new file mode 100644 index 00000000..d9b134fa --- /dev/null +++ b/static/libical-glib/ctor.Value.new_requeststatus.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_requeststatus (
    +  ICalReqstat* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type requeststatus.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalReqstat

    +

    The requeststatus value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_resourcetype.html b/static/libical-glib/ctor.Value.new_resourcetype.html new file mode 100644 index 00000000..24e71f91 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_resourcetype.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_resourcetype (
    +  ICalPropertyResourcetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue of kind I_CAL_RESOURCETYPE_VALUE holding value v of type ICalPropertyResourcetype.

    +
    + +
    + +

    Available since: 3.1

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyResourcetype

    +

    An initial value for the new ICalValue.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_status.html b/static/libical-glib/ctor.Value.new_status.html new file mode 100644 index 00000000..8ae4978b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_status.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_status

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_status (
    +  ICalPropertyStatus v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type status.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyStatus

    +

    The status value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_string.html b/static/libical-glib/ctor.Value.new_string.html new file mode 100644 index 00000000..81550f99 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_string.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_string (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type string.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_taskmode.html b/static/libical-glib/ctor.Value.new_taskmode.html new file mode 100644 index 00000000..67153530 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_taskmode.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_taskmode (
    +  ICalPropertyTaskmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type taskmode.

    +
    + +
    + +

    Available since: 2.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTaskmode

    +

    The taskmode value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_text.html b/static/libical-glib/ctor.Value.new_text.html new file mode 100644 index 00000000..3089f55b --- /dev/null +++ b/static/libical-glib/ctor.Value.new_text.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_text

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_text (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type text.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The text value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_transp.html b/static/libical-glib/ctor.Value.new_transp.html new file mode 100644 index 00000000..c6de7f18 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_transp.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_transp

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_transp (
    +  ICalPropertyTransp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type transp.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTransp

    +

    The transp value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_trigger.html b/static/libical-glib/ctor.Value.new_trigger.html new file mode 100644 index 00000000..65c8bdca --- /dev/null +++ b/static/libical-glib/ctor.Value.new_trigger.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_trigger (
    +  ICalTrigger* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type trigger.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTrigger

    +

    The trigger value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_uri.html b/static/libical-glib/ctor.Value.new_uri.html new file mode 100644 index 00000000..f988f8b1 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_uri.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_uri + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_uri

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_uri (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type uri.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The uri value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_utcoffset.html b/static/libical-glib/ctor.Value.new_utcoffset.html new file mode 100644 index 00000000..8a4834da --- /dev/null +++ b/static/libical-glib/ctor.Value.new_utcoffset.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_utcoffset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_utcoffset

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_utcoffset (
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type utcoffset.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The utcoffset value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_x.html b/static/libical-glib/ctor.Value.new_x.html new file mode 100644 index 00000000..08163b24 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_x.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_x

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_x (
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type x.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The x value.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/ctor.Value.new_xlicclass.html b/static/libical-glib/ctor.Value.new_xlicclass.html new file mode 100644 index 00000000..f8ce51c4 --- /dev/null +++ b/static/libical-glib/ctor.Value.new_xlicclass.html @@ -0,0 +1,300 @@ + + + + + + ICalGLib.Value.new_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Constructor

    +

    ICalGLibValuenew_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_new_xlicclass (
    +  ICalPropertyXlicclass v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalValue with the type xlicclass.

    +
    + +
    + +

    Available since: 1.0

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyXlicclass

    +

    The xlicclass value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ComponentKind.html b/static/libical-glib/enum.ComponentKind.html new file mode 100644 index 00000000..76459299 --- /dev/null +++ b/static/libical-glib/enum.ComponentKind.html @@ -0,0 +1,548 @@ + + + + + + ICalGLib.ComponentKind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibComponentKind

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ComponentKind
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_NO_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ANY_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XROOT_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XATTACH_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VEVENT_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VTODO_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VJOURNAL_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VCALENDAR_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VAGENDA_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VFREEBUSY_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALARM_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 10
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XAUDIOALARM_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 11
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XDISPLAYALARM_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 12
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XEMAILALARM_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 13
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XPROCEDUREALARM_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 14
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VTIMEZONE_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 15
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XSTANDARD_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 16
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XDAYLIGHT_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 17
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_X_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 18
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VSCHEDULE_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 19
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VQUERY_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 20
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VREPLY_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 21
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VCAR_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 22
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VCOMMAND_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 23
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICINVALID_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 24
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMEPART_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 25
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VAVAILABILITY_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 26
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XAVAILABLE_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 27
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VPOLL_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 28
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VVOTER_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 29
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XVOTE_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 30
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VPATCH_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 31
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XPATCH_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 32
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANT_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 33
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VLOCATION_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 34
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VRESOURCE_COMPONENT
    +
    +
    No description available.
    +
      +
    • Value: 35
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NUM_COMPONENT_TYPES
    +
    +
    No description available.
    +
      +
    • Value: 36
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ErrorEnum.html b/static/libical-glib/enum.ErrorEnum.html new file mode 100644 index 00000000..b18e3c23 --- /dev/null +++ b/static/libical-glib/enum.ErrorEnum.html @@ -0,0 +1,288 @@ + + + + + + ICalGLib.ErrorEnum + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibErrorEnum

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ErrorEnum
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_NO_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BADARG_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NEWFAILED_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ALLOCATION_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MALFORMEDDATA_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARSE_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_INTERNAL_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FILE_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_USAGE_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_UNIMPLEMENTED_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_UNKNOWN_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 10
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ErrorState.html b/static/libical-glib/enum.ErrorState.html new file mode 100644 index 00000000..ce1d324d --- /dev/null +++ b/static/libical-glib/enum.ErrorState.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ErrorState + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibErrorState

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ErrorState
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ERROR_FATAL
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ERROR_NONFATAL
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ERROR_DEFAULT
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ERROR_UNKNOWN
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterAction.html b/static/libical-glib/enum.ParameterAction.html new file mode 100644 index 00000000..7665924c --- /dev/null +++ b/static/libical-glib/enum.ParameterAction.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterAction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterAction

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterAction
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ACTIONPARAM_X
    +
    +
    No description available.
    +
      +
    • Value: 20000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTIONPARAM_ASK
    +
    +
    No description available.
    +
      +
    • Value: 20001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTIONPARAM_ABORT
    +
    +
    No description available.
    +
      +
    • Value: 20002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTIONPARAM_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20099
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterCutype.html b/static/libical-glib/enum.ParameterCutype.html new file mode 100644 index 00000000..59bd54fa --- /dev/null +++ b/static/libical-glib/enum.ParameterCutype.html @@ -0,0 +1,248 @@ + + + + + + ICalGLib.ParameterCutype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterCutype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterCutype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_CUTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 20100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_INDIVIDUAL
    +
    +
    No description available.
    +
      +
    • Value: 20101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_GROUP
    +
    +
    No description available.
    +
      +
    • Value: 20102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_RESOURCE
    +
    +
    No description available.
    +
      +
    • Value: 20103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_ROOM
    +
    +
    No description available.
    +
      +
    • Value: 20104
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_UNKNOWN
    +
    +
    No description available.
    +
      +
    • Value: 20105
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20199
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterDerived.html b/static/libical-glib/enum.ParameterDerived.html new file mode 100644 index 00000000..eb5c5d94 --- /dev/null +++ b/static/libical-glib/enum.ParameterDerived.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterDerived + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterDerived

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterDerived
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_DERIVED_X
    +
    +
    No description available.
    +
      +
    • Value: 22300
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DERIVED_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 22301
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DERIVED_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 22302
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DERIVED_NONE
    +
    +
    No description available.
    +
      +
    • Value: 22399
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterDisplay.html b/static/libical-glib/enum.ParameterDisplay.html new file mode 100644 index 00000000..37188bcb --- /dev/null +++ b/static/libical-glib/enum.ParameterDisplay.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.ParameterDisplay + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterDisplay

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterDisplay
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_DISPLAY_X
    +
    +
    No description available.
    +
      +
    • Value: 22000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_BADGE
    +
    +
    No description available.
    +
      +
    • Value: 22001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_GRAPHIC
    +
    +
    No description available.
    +
      +
    • Value: 22002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_FULLSIZE
    +
    +
    No description available.
    +
      +
    • Value: 22003
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_THUMBNAIL
    +
    +
    No description available.
    +
      +
    • Value: 22004
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_NONE
    +
    +
    No description available.
    +
      +
    • Value: 22099
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterEnable.html b/static/libical-glib/enum.ParameterEnable.html new file mode 100644 index 00000000..c55b36a5 --- /dev/null +++ b/static/libical-glib/enum.ParameterEnable.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterEnable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterEnable

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterEnable
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ENABLE_X
    +
    +
    No description available.
    +
      +
    • Value: 20200
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENABLE_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 20201
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENABLE_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 20202
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENABLE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20299
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterEncoding.html b/static/libical-glib/enum.ParameterEncoding.html new file mode 100644 index 00000000..805b6f0b --- /dev/null +++ b/static/libical-glib/enum.ParameterEncoding.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterEncoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterEncoding

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterEncoding
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ENCODING_X
    +
    +
    No description available.
    +
      +
    • Value: 20300
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENCODING_8BIT
    +
    +
    No description available.
    +
      +
    • Value: 20301
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENCODING_BASE64
    +
    +
    No description available.
    +
      +
    • Value: 20302
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENCODING_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20399
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterFbtype.html b/static/libical-glib/enum.ParameterFbtype.html new file mode 100644 index 00000000..7ec4e481 --- /dev/null +++ b/static/libical-glib/enum.ParameterFbtype.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.ParameterFbtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterFbtype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterFbtype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_FBTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 20400
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_FREE
    +
    +
    No description available.
    +
      +
    • Value: 20401
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_BUSY
    +
    +
    No description available.
    +
      +
    • Value: 20402
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_BUSYUNAVAILABLE
    +
    +
    No description available.
    +
      +
    • Value: 20403
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_BUSYTENTATIVE
    +
    +
    No description available.
    +
      +
    • Value: 20404
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20499
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterFeature.html b/static/libical-glib/enum.ParameterFeature.html new file mode 100644 index 00000000..3b174afb --- /dev/null +++ b/static/libical-glib/enum.ParameterFeature.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.ParameterFeature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterFeature

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterFeature
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_FEATURE_X
    +
    +
    No description available.
    +
      +
    • Value: 22100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_AUDIO
    +
    +
    No description available.
    +
      +
    • Value: 22101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_CHAT
    +
    +
    No description available.
    +
      +
    • Value: 22102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_FEED
    +
    +
    No description available.
    +
      +
    • Value: 22103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_MODERATOR
    +
    +
    No description available.
    +
      +
    • Value: 22104
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_PHONE
    +
    +
    No description available.
    +
      +
    • Value: 22105
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_SCREEN
    +
    +
    No description available.
    +
      +
    • Value: 22106
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_VIDEO
    +
    +
    No description available.
    +
      +
    • Value: 22107
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 22199
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterKind.html b/static/libical-glib/enum.ParameterKind.html new file mode 100644 index 00000000..9361cecb --- /dev/null +++ b/static/libical-glib/enum.ParameterKind.html @@ -0,0 +1,748 @@ + + + + + + ICalGLib.ParameterKind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterKind

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterKind
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ANY_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTIONPARAM_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ALTREP_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CHARSET_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CN_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CUTYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DELEGATEDFROM_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DELEGATEDTO_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DERIVED_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 54
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DIR_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISPLAY_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 46
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_EMAIL_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 50
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENABLE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ENCODING_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 10
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FBTYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 11
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FEATURE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 48
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FILENAME_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 42
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FMTTYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 12
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_GAP_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 55
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_IANA_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 33
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ID_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 13
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LABEL_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 49
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LANGUAGE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 14
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LATENCY_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 15
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LINKREL_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 56
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCAL_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 16
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCALIZE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 17
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MANAGEDID_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 40
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MEMBER_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 18
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MODIFIED_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 44
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_OPTIONS_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 19
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ORDER_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 52
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 20
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 51
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PUBLICCOMMENT_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 37
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RANGE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 21
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REASON_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 47
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATED_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 22
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 23
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUIRED_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 43
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESPONSE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 38
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 24
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RSVP_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 25
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEAGENT_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 34
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEFORCESEND_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 35
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULESTATUS_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 36
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEMA_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 53
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SENTBY_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 26
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SIZE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 41
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STAYINFORMED_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 39
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUBSTATE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 45
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZID_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 27
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 28
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_X_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 29
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 30
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 31
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NO_PARAMETER
    +
    +
    No description available.
    +
      +
    • Value: 32
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterLocal.html b/static/libical-glib/enum.ParameterLocal.html new file mode 100644 index 00000000..543d1cb8 --- /dev/null +++ b/static/libical-glib/enum.ParameterLocal.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterLocal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterLocal

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterLocal
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_LOCAL_X
    +
    +
    No description available.
    +
      +
    • Value: 20500
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCAL_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 20501
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCAL_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 20502
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCAL_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20599
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterPartstat.html b/static/libical-glib/enum.ParameterPartstat.html new file mode 100644 index 00000000..1638d836 --- /dev/null +++ b/static/libical-glib/enum.ParameterPartstat.html @@ -0,0 +1,278 @@ + + + + + + ICalGLib.ParameterPartstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterPartstat

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterPartstat
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_PARTSTAT_X
    +
    +
    No description available.
    +
      +
    • Value: 20600
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_NEEDSACTION
    +
    +
    No description available.
    +
      +
    • Value: 20601
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_ACCEPTED
    +
    +
    No description available.
    +
      +
    • Value: 20602
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_DECLINED
    +
    +
    No description available.
    +
      +
    • Value: 20603
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_TENTATIVE
    +
    +
    No description available.
    +
      +
    • Value: 20604
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_DELEGATED
    +
    +
    No description available.
    +
      +
    • Value: 20605
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_COMPLETED
    +
    +
    No description available.
    +
      +
    • Value: 20606
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_INPROCESS
    +
    +
    No description available.
    +
      +
    • Value: 20607
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_FAILED
    +
    +
    No description available.
    +
      +
    • Value: 20608
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTSTAT_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20699
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterPatchaction.html b/static/libical-glib/enum.ParameterPatchaction.html new file mode 100644 index 00000000..e82f3787 --- /dev/null +++ b/static/libical-glib/enum.ParameterPatchaction.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.ParameterPatchaction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterPatchaction

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterPatchaction
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_PATCHACTION_X
    +
    +
    No description available.
    +
      +
    • Value: 22200
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_CREATE
    +
    +
    No description available.
    +
      +
    • Value: 22201
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_BYNAME
    +
    +
    No description available.
    +
      +
    • Value: 22202
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_BYVALUE
    +
    +
    No description available.
    +
      +
    • Value: 22203
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_BYPARAM
    +
    +
    No description available.
    +
      +
    • Value: 22204
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHACTION_NONE
    +
    +
    No description available.
    +
      +
    • Value: 22299
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterRange.html b/static/libical-glib/enum.ParameterRange.html new file mode 100644 index 00000000..1a6dccc4 --- /dev/null +++ b/static/libical-glib/enum.ParameterRange.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterRange + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterRange

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterRange
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RANGE_X
    +
    +
    No description available.
    +
      +
    • Value: 20700
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RANGE_THISANDPRIOR
    +
    +
    No description available.
    +
      +
    • Value: 20701
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RANGE_THISANDFUTURE
    +
    +
    No description available.
    +
      +
    • Value: 20702
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RANGE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20799
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterRelated.html b/static/libical-glib/enum.ParameterRelated.html new file mode 100644 index 00000000..89afd38f --- /dev/null +++ b/static/libical-glib/enum.ParameterRelated.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterRelated + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterRelated

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterRelated
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RELATED_X
    +
    +
    No description available.
    +
      +
    • Value: 20800
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATED_START
    +
    +
    No description available.
    +
      +
    • Value: 20801
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATED_END
    +
    +
    No description available.
    +
      +
    • Value: 20802
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATED_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20899
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterReltype.html b/static/libical-glib/enum.ParameterReltype.html new file mode 100644 index 00000000..bafe7d74 --- /dev/null +++ b/static/libical-glib/enum.ParameterReltype.html @@ -0,0 +1,338 @@ + + + + + + ICalGLib.ParameterReltype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterReltype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterReltype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RELTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 20900
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_PARENT
    +
    +
    No description available.
    +
      +
    • Value: 20901
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_CHILD
    +
    +
    No description available.
    +
      +
    • Value: 20902
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_SIBLING
    +
    +
    No description available.
    +
      +
    • Value: 20903
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_POLL
    +
    +
    No description available.
    +
      +
    • Value: 20904
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_SNOOZE
    +
    +
    No description available.
    +
      +
    • Value: 20905
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_CONCEPT
    +
    +
    No description available.
    +
      +
    • Value: 20906
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_DEPENDSON
    +
    +
    No description available.
    +
      +
    • Value: 20907
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_FINISHTOFINISH
    +
    +
    No description available.
    +
      +
    • Value: 20908
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_FINISHTOSTART
    +
    +
    No description available.
    +
      +
    • Value: 20909
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_FIRST
    +
    +
    No description available.
    +
      +
    • Value: 20910
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    No description available.
    +
      +
    • Value: 20911
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_REFID
    +
    +
    No description available.
    +
      +
    • Value: 20912
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_STARTTOFINISH
    +
    +
    No description available.
    +
      +
    • Value: 20913
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_STARTTOSTART
    +
    +
    No description available.
    +
      +
    • Value: 20914
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 20999
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterRequired.html b/static/libical-glib/enum.ParameterRequired.html new file mode 100644 index 00000000..52364757 --- /dev/null +++ b/static/libical-glib/enum.ParameterRequired.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterRequired + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterRequired

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterRequired
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_REQUIRED_X
    +
    +
    No description available.
    +
      +
    • Value: 21000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUIRED_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 21001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUIRED_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 21002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUIRED_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21099
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterRole.html b/static/libical-glib/enum.ParameterRole.html new file mode 100644 index 00000000..ef6e0f91 --- /dev/null +++ b/static/libical-glib/enum.ParameterRole.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.ParameterRole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterRole

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterRole
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ROLE_X
    +
    +
    No description available.
    +
      +
    • Value: 21100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_CHAIR
    +
    +
    No description available.
    +
      +
    • Value: 21101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_REQPARTICIPANT
    +
    +
    No description available.
    +
      +
    • Value: 21102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_OPTPARTICIPANT
    +
    +
    No description available.
    +
      +
    • Value: 21103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_NONPARTICIPANT
    +
    +
    No description available.
    +
      +
    • Value: 21104
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ROLE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21199
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterRsvp.html b/static/libical-glib/enum.ParameterRsvp.html new file mode 100644 index 00000000..e28a7615 --- /dev/null +++ b/static/libical-glib/enum.ParameterRsvp.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterRsvp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterRsvp

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterRsvp
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RSVP_X
    +
    +
    No description available.
    +
      +
    • Value: 21200
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RSVP_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 21201
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RSVP_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 21202
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RSVP_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21299
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterScheduleagent.html b/static/libical-glib/enum.ParameterScheduleagent.html new file mode 100644 index 00000000..4b75702f --- /dev/null +++ b/static/libical-glib/enum.ParameterScheduleagent.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterScheduleagent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterScheduleagent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterScheduleagent
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_SCHEDULEAGENT_X
    +
    +
    No description available.
    +
      +
    • Value: 21300
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEAGENT_SERVER
    +
    +
    No description available.
    +
      +
    • Value: 21301
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEAGENT_CLIENT
    +
    +
    No description available.
    +
      +
    • Value: 21302
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEAGENT_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21399
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterScheduleforcesend.html b/static/libical-glib/enum.ParameterScheduleforcesend.html new file mode 100644 index 00000000..ee21cad1 --- /dev/null +++ b/static/libical-glib/enum.ParameterScheduleforcesend.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterScheduleforcesend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterScheduleforcesend

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterScheduleforcesend
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_SCHEDULEFORCESEND_X
    +
    +
    No description available.
    +
      +
    • Value: 21400
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEFORCESEND_REQUEST
    +
    +
    No description available.
    +
      +
    • Value: 21401
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEFORCESEND_REPLY
    +
    +
    No description available.
    +
      +
    • Value: 21402
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCHEDULEFORCESEND_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21499
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterStayinformed.html b/static/libical-glib/enum.ParameterStayinformed.html new file mode 100644 index 00000000..8be6312a --- /dev/null +++ b/static/libical-glib/enum.ParameterStayinformed.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.ParameterStayinformed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterStayinformed

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterStayinformed
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_STAYINFORMED_X
    +
    +
    No description available.
    +
      +
    • Value: 21500
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STAYINFORMED_TRUE
    +
    +
    No description available.
    +
      +
    • Value: 21501
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STAYINFORMED_FALSE
    +
    +
    No description available.
    +
      +
    • Value: 21502
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STAYINFORMED_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21599
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterSubstate.html b/static/libical-glib/enum.ParameterSubstate.html new file mode 100644 index 00000000..2b28ce3b --- /dev/null +++ b/static/libical-glib/enum.ParameterSubstate.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.ParameterSubstate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterSubstate

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterSubstate
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_SUBSTATE_X
    +
    +
    No description available.
    +
      +
    • Value: 21900
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUBSTATE_OK
    +
    +
    No description available.
    +
      +
    • Value: 21901
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUBSTATE_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 21902
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUBSTATE_SUSPENDED
    +
    +
    No description available.
    +
      +
    • Value: 21903
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUBSTATE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21999
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterValue.html b/static/libical-glib/enum.ParameterValue.html new file mode 100644 index 00000000..811aa738 --- /dev/null +++ b/static/libical-glib/enum.ParameterValue.html @@ -0,0 +1,358 @@ + + + + + + ICalGLib.ParameterValue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterValue

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterValue
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_VALUE_X
    +
    +
    No description available.
    +
      +
    • Value: 21600
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_BINARY
    +
    +
    No description available.
    +
      +
    • Value: 21601
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_BOOLEAN
    +
    +
    No description available.
    +
      +
    • Value: 21602
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_DATE
    +
    +
    No description available.
    +
      +
    • Value: 21603
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_DURATION
    +
    +
    No description available.
    +
      +
    • Value: 21604
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_FLOAT
    +
    +
    No description available.
    +
      +
    • Value: 21605
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_INTEGER
    +
    +
    No description available.
    +
      +
    • Value: 21606
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_PERIOD
    +
    +
    No description available.
    +
      +
    • Value: 21607
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_RECUR
    +
    +
    No description available.
    +
      +
    • Value: 21608
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_TEXT
    +
    +
    No description available.
    +
      +
    • Value: 21609
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_URI
    +
    +
    No description available.
    +
      +
    • Value: 21610
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 21611
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_DATETIME
    +
    +
    No description available.
    +
      +
    • Value: 21612
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_UTCOFFSET
    +
    +
    No description available.
    +
      +
    • Value: 21613
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_CALADDRESS
    +
    +
    No description available.
    +
      +
    • Value: 21614
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_UID
    +
    +
    No description available.
    +
      +
    • Value: 21615
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_XMLREFERENCE
    +
    +
    No description available.
    +
      +
    • Value: 21616
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VALUE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21699
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterXliccomparetype.html b/static/libical-glib/enum.ParameterXliccomparetype.html new file mode 100644 index 00000000..2074b8e0 --- /dev/null +++ b/static/libical-glib/enum.ParameterXliccomparetype.html @@ -0,0 +1,288 @@ + + + + + + ICalGLib.ParameterXliccomparetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterXliccomparetype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterXliccomparetype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_XLICCOMPARETYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 21700
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_EQUAL
    +
    +
    No description available.
    +
      +
    • Value: 21701
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_NOTEQUAL
    +
    +
    No description available.
    +
      +
    • Value: 21702
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_LESS
    +
    +
    No description available.
    +
      +
    • Value: 21703
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_GREATER
    +
    +
    No description available.
    +
      +
    • Value: 21704
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_LESSEQUAL
    +
    +
    No description available.
    +
      +
    • Value: 21705
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_GREATEREQUAL
    +
    +
    No description available.
    +
      +
    • Value: 21706
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_REGEX
    +
    +
    No description available.
    +
      +
    • Value: 21707
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_ISNULL
    +
    +
    No description available.
    +
      +
    • Value: 21708
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_ISNOTNULL
    +
    +
    No description available.
    +
      +
    • Value: 21709
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCOMPARETYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21799
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParameterXlicerrortype.html b/static/libical-glib/enum.ParameterXlicerrortype.html new file mode 100644 index 00000000..377cf94b --- /dev/null +++ b/static/libical-glib/enum.ParameterXlicerrortype.html @@ -0,0 +1,288 @@ + + + + + + ICalGLib.ParameterXlicerrortype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParameterXlicerrortype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParameterXlicerrortype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_XLICERRORTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 21800
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_COMPONENTPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21801
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_PROPERTYPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21802
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_PARAMETERNAMEPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21803
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_PARAMETERVALUEPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21804
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_VALUEPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21805
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_INVALIDITIP
    +
    +
    No description available.
    +
      +
    • Value: 21806
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_UNKNOWNVCALPROPERROR
    +
    +
    No description available.
    +
      +
    • Value: 21807
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_MIMEPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21808
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_VCALPROPPARSEERROR
    +
    +
    No description available.
    +
      +
    • Value: 21809
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERRORTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 21899
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ParserState.html b/static/libical-glib/enum.ParserState.html new file mode 100644 index 00000000..a36d423e --- /dev/null +++ b/static/libical-glib/enum.ParserState.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.ParserState + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibParserState

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ParserState
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_PARSER_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARSER_SUCCESS
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARSER_BEGIN_COMP
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARSER_END_COMP
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARSER_IN_PROGRESS
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyAction.html b/static/libical-glib/enum.PropertyAction.html new file mode 100644 index 00000000..48d8c4c5 --- /dev/null +++ b/static/libical-glib/enum.PropertyAction.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.PropertyAction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyAction

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyAction
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ACTION_X
    +
    +
    No description available.
    +
      +
    • Value: 10000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_AUDIO
    +
    +
    No description available.
    +
      +
    • Value: 10001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_DISPLAY
    +
    +
    No description available.
    +
      +
    • Value: 10002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_EMAIL
    +
    +
    No description available.
    +
      +
    • Value: 10003
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_PROCEDURE
    +
    +
    No description available.
    +
      +
    • Value: 10004
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10099
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyBusytype.html b/static/libical-glib/enum.PropertyBusytype.html new file mode 100644 index 00000000..d69b2d0a --- /dev/null +++ b/static/libical-glib/enum.PropertyBusytype.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.PropertyBusytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyBusytype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyBusytype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_BUSYTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 10100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_BUSY
    +
    +
    No description available.
    +
      +
    • Value: 10101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_BUSYUNAVAILABLE
    +
    +
    No description available.
    +
      +
    • Value: 10102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_BUSYTENTATIVE
    +
    +
    No description available.
    +
      +
    • Value: 10103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10199
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyCarlevel.html b/static/libical-glib/enum.PropertyCarlevel.html new file mode 100644 index 00000000..0b669373 --- /dev/null +++ b/static/libical-glib/enum.PropertyCarlevel.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.PropertyCarlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyCarlevel

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyCarlevel
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_CARLEVEL_X
    +
    +
    No description available.
    +
      +
    • Value: 10200
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_CARNONE
    +
    +
    No description available.
    +
      +
    • Value: 10201
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_CARMIN
    +
    +
    No description available.
    +
      +
    • Value: 10202
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_CARFULL1
    +
    +
    No description available.
    +
      +
    • Value: 10203
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10299
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyCmd.html b/static/libical-glib/enum.PropertyCmd.html new file mode 100644 index 00000000..e95cf13b --- /dev/null +++ b/static/libical-glib/enum.PropertyCmd.html @@ -0,0 +1,318 @@ + + + + + + ICalGLib.PropertyCmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyCmd

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyCmd
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_CMD_X
    +
    +
    No description available.
    +
      +
    • Value: 10400
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_ABORT
    +
    +
    No description available.
    +
      +
    • Value: 10401
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_CONTINUE
    +
    +
    No description available.
    +
      +
    • Value: 10402
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_CREATE
    +
    +
    No description available.
    +
      +
    • Value: 10403
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_DELETE
    +
    +
    No description available.
    +
      +
    • Value: 10404
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_GENERATEUID
    +
    +
    No description available.
    +
      +
    • Value: 10405
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_GETCAPABILITY
    +
    +
    No description available.
    +
      +
    • Value: 10406
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_IDENTIFY
    +
    +
    No description available.
    +
      +
    • Value: 10407
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_MODIFY
    +
    +
    No description available.
    +
      +
    • Value: 10408
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_MOVE
    +
    +
    No description available.
    +
      +
    • Value: 10409
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_REPLY
    +
    +
    No description available.
    +
      +
    • Value: 10410
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_SEARCH
    +
    +
    No description available.
    +
      +
    • Value: 10411
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_SETLOCALE
    +
    +
    No description available.
    +
      +
    • Value: 10412
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10499
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyKind.html b/static/libical-glib/enum.PropertyKind.html new file mode 100644 index 00000000..d9ece056 --- /dev/null +++ b/static/libical-glib/enum.PropertyKind.html @@ -0,0 +1,1528 @@ + + + + + + ICalGLib.PropertyKind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyKind

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyKind
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ANY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACCEPTRESPONSE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACKNOWLEDGED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ALLOWCONFLICT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ATTACH_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ATTENDEE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CALENDARADDRESS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 130
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CALID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CALMASTER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CALSCALE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CAPVERSION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 10
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 11
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CATEGORIES_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 12
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 13
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 14
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_COLOR_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 118
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_COMMENT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 15
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_COMPLETED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 16
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_COMPONENTS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 17
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CONFERENCE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 120
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CONCEPT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 133
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CONTACT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 18
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CREATED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 19
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CSID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 20
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATEMAX_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 21
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATEMIN_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 22
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DECREED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 23
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DEFAULTCHARSET_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 24
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DEFAULTLOCALE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 25
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DEFAULTTZID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 26
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DEFAULTVCARS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 27
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DENY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 28
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DESCRIPTION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 29
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DTEND_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 30
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DTSTAMP_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 31
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DTSTART_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 32
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DUE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 33
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DURATION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 34
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ESTIMATEDDURATION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 113
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_EXDATE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 35
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_EXPAND_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 36
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_EXRULE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 37
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FREEBUSY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 38
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_GEO_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 39
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_GRANT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 40
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_IMAGE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 119
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ITIPVERSION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 41
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LASTMODIFIED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 42
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LINK_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 134
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCATION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 43
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LOCATIONTYPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 127
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MAXCOMPONENTSIZE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 44
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MAXDATE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 45
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MAXRESULTS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 46
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MAXRESULTSSIZE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 47
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 48
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MINDATE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 49
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MULTIPART_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 50
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NAME_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 115
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ORGANIZER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 52
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_OWNER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 53
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 128
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHDELETE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 124
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHORDER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 122
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHPARAMETER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 125
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHTARGET_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 123
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PATCHVERSION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 121
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PERCENTCOMPLETE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 54
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PERMISSION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 55
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 110
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLITEMID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLMODE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 104
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLPROPERTIES_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 105
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLWINNER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 106
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PRIORITY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 56
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PRODID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 57
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 126
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 58
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYLEVEL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 59
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 60
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYNAME_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 61
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RDATE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 62
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RECURACCEPTED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 63
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RECUREXPAND_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 64
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RECURLIMIT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 65
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RECURRENCEID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 66
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REFRESHINTERVAL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 116
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REFID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 135
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATEDTO_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 67
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELCALID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 68
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REPEAT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 69
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REPLYURL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 111
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUESTSTATUS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 70
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCES_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 71
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 129
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESPONSE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 112
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 72
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RRULE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 73
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SCOPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 74
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SEQUENCE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 75
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SOURCE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 117
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 76
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STORESEXPANDED_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 77
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STRUCTUREDDATA_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 132
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STYLEDDESCRIPTION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 131
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUMMARY_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 78
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TARGET_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 79
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 114
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 80
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRIGGER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 81
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 82
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZIDALIASOF_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 108
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZNAME_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 83
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZOFFSETFROM_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 84
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZOFFSETTO_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 85
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZUNTIL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 109
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TZURL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 86
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_UID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 87
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_URL_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 88
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VERSION_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 89
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_VOTER_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 107
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_X_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 90
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 91
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLUSTERCOUNT_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 92
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICERROR_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 93
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMECHARSET_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 94
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMECID_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 95
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMECONTENTTYPE_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 96
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMEENCODING_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 97
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMEFILENAME_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 98
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICMIMEOPTINFO_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 99
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NO_PROPERTY
    +
    +
    No description available.
    +
      +
    • Value: 100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyMethod.html b/static/libical-glib/enum.PropertyMethod.html new file mode 100644 index 00000000..e26c946e --- /dev/null +++ b/static/libical-glib/enum.PropertyMethod.html @@ -0,0 +1,358 @@ + + + + + + ICalGLib.PropertyMethod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyMethod

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyMethod
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_METHOD_X
    +
    +
    No description available.
    +
      +
    • Value: 10500
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_PUBLISH
    +
    +
    No description available.
    +
      +
    • Value: 10501
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_REQUEST
    +
    +
    No description available.
    +
      +
    • Value: 10502
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_REPLY
    +
    +
    No description available.
    +
      +
    • Value: 10503
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_ADD
    +
    +
    No description available.
    +
      +
    • Value: 10504
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_CANCEL
    +
    +
    No description available.
    +
      +
    • Value: 10505
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_REFRESH
    +
    +
    No description available.
    +
      +
    • Value: 10506
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_COUNTER
    +
    +
    No description available.
    +
      +
    • Value: 10507
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_DECLINECOUNTER
    +
    +
    No description available.
    +
      +
    • Value: 10508
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_CREATE
    +
    +
    No description available.
    +
      +
    • Value: 10509
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_READ
    +
    +
    No description available.
    +
      +
    • Value: 10510
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_RESPONSE
    +
    +
    No description available.
    +
      +
    • Value: 10511
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_MOVE
    +
    +
    No description available.
    +
      +
    • Value: 10512
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_MODIFY
    +
    +
    No description available.
    +
      +
    • Value: 10513
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_GENERATEUID
    +
    +
    No description available.
    +
      +
    • Value: 10514
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_DELETE
    +
    +
    No description available.
    +
      +
    • Value: 10515
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_POLLSTATUS
    +
    +
    No description available.
    +
      +
    • Value: 10516
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10599
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyParticipanttype.html b/static/libical-glib/enum.PropertyParticipanttype.html new file mode 100644 index 00000000..54d65635 --- /dev/null +++ b/static/libical-glib/enum.PropertyParticipanttype.html @@ -0,0 +1,308 @@ + + + + + + ICalGLib.PropertyParticipanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyParticipanttype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyParticipanttype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_PARTICIPANTTYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 11400
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_ACTIVE
    +
    +
    No description available.
    +
      +
    • Value: 11401
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_INACTIVE
    +
    +
    No description available.
    +
      +
    • Value: 11402
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    No description available.
    +
      +
    • Value: 11403
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_CONTACT
    +
    +
    No description available.
    +
      +
    • Value: 11404
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_BOOKINGCONTACT
    +
    +
    No description available.
    +
      +
    • Value: 11405
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_EMERGENCYCONTACT
    +
    +
    No description available.
    +
      +
    • Value: 11406
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_PUBLICITYCONTACT
    +
    +
    No description available.
    +
      +
    • Value: 11407
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_PLANNERCONTACT
    +
    +
    No description available.
    +
      +
    • Value: 11408
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_PERFORMER
    +
    +
    No description available.
    +
      +
    • Value: 11409
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_SPEAKER
    +
    +
    No description available.
    +
      +
    • Value: 11410
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_VOTER
    +
    +
    No description available.
    +
      +
    • Value: 11411
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11499
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyPollcompletion.html b/static/libical-glib/enum.PropertyPollcompletion.html new file mode 100644 index 00000000..46bbe22c --- /dev/null +++ b/static/libical-glib/enum.PropertyPollcompletion.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.PropertyPollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyPollcompletion

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyPollcompletion
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_POLLCOMPLETION_X
    +
    +
    No description available.
    +
      +
    • Value: 10600
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_SERVER
    +
    +
    No description available.
    +
      +
    • Value: 10601
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_SERVERSUBMIT
    +
    +
    No description available.
    +
      +
    • Value: 10602
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_SERVERCHOICE
    +
    +
    No description available.
    +
      +
    • Value: 10603
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_CLIENT
    +
    +
    No description available.
    +
      +
    • Value: 10604
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10699
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyPollmode.html b/static/libical-glib/enum.PropertyPollmode.html new file mode 100644 index 00000000..8c4c96fa --- /dev/null +++ b/static/libical-glib/enum.PropertyPollmode.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.PropertyPollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyPollmode

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyPollmode
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_POLLMODE_X
    +
    +
    No description available.
    +
      +
    • Value: 10700
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLMODE_BASIC
    +
    +
    No description available.
    +
      +
    • Value: 10701
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLMODE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10799
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyProximity.html b/static/libical-glib/enum.PropertyProximity.html new file mode 100644 index 00000000..718d2152 --- /dev/null +++ b/static/libical-glib/enum.PropertyProximity.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.PropertyProximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyProximity

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyProximity
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_PROXIMITY_X
    +
    +
    No description available.
    +
      +
    • Value: 11300
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_ARRIVE
    +
    +
    No description available.
    +
      +
    • Value: 11301
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_DEPART
    +
    +
    No description available.
    +
      +
    • Value: 11302
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_CONNECT
    +
    +
    No description available.
    +
      +
    • Value: 11303
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_DISCONNECT
    +
    +
    No description available.
    +
      +
    • Value: 11304
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11399
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyQuerylevel.html b/static/libical-glib/enum.PropertyQuerylevel.html new file mode 100644 index 00000000..01b3aa8b --- /dev/null +++ b/static/libical-glib/enum.PropertyQuerylevel.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.PropertyQuerylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyQuerylevel

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyQuerylevel
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_QUERYLEVEL_X
    +
    +
    No description available.
    +
      +
    • Value: 10800
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYLEVEL_CALQL1
    +
    +
    No description available.
    +
      +
    • Value: 10801
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYLEVEL_CALQLNONE
    +
    +
    No description available.
    +
      +
    • Value: 10802
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYLEVEL_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10899
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyResourcetype.html b/static/libical-glib/enum.PropertyResourcetype.html new file mode 100644 index 00000000..0d54c328 --- /dev/null +++ b/static/libical-glib/enum.PropertyResourcetype.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.PropertyResourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyResourcetype

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyResourcetype
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RESOURCETYPE_X
    +
    +
    No description available.
    +
      +
    • Value: 11500
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_ROOM
    +
    +
    No description available.
    +
      +
    • Value: 11501
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_PROJECTOR
    +
    +
    No description available.
    +
      +
    • Value: 11502
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_REMOTECONFERENCEAUDIO
    +
    +
    No description available.
    +
      +
    • Value: 11503
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_REMOTECONFERENCEVIDEO
    +
    +
    No description available.
    +
      +
    • Value: 11504
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11599
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyStatus.html b/static/libical-glib/enum.PropertyStatus.html new file mode 100644 index 00000000..e9c22a26 --- /dev/null +++ b/static/libical-glib/enum.PropertyStatus.html @@ -0,0 +1,318 @@ + + + + + + ICalGLib.PropertyStatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyStatus

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyStatus
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_STATUS_X
    +
    +
    No description available.
    +
      +
    • Value: 10900
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_TENTATIVE
    +
    +
    No description available.
    +
      +
    • Value: 10901
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_CONFIRMED
    +
    +
    No description available.
    +
      +
    • Value: 10902
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_COMPLETED
    +
    +
    No description available.
    +
      +
    • Value: 10903
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_NEEDSACTION
    +
    +
    No description available.
    +
      +
    • Value: 10904
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_CANCELLED
    +
    +
    No description available.
    +
      +
    • Value: 10905
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_INPROCESS
    +
    +
    No description available.
    +
      +
    • Value: 10906
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_DRAFT
    +
    +
    No description available.
    +
      +
    • Value: 10907
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_FINAL
    +
    +
    No description available.
    +
      +
    • Value: 10908
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_SUBMITTED
    +
    +
    No description available.
    +
      +
    • Value: 10909
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_PENDING
    +
    +
    No description available.
    +
      +
    • Value: 10910
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_FAILED
    +
    +
    No description available.
    +
      +
    • Value: 10911
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_DELETED
    +
    +
    No description available.
    +
      +
    • Value: 10912
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10999
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyTaskmode.html b/static/libical-glib/enum.PropertyTaskmode.html new file mode 100644 index 00000000..a3a2df53 --- /dev/null +++ b/static/libical-glib/enum.PropertyTaskmode.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.PropertyTaskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyTaskmode

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyTaskmode
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_TASKMODE_X
    +
    +
    No description available.
    +
      +
    • Value: 11200
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_AUTOMATICCOMPLETION
    +
    +
    No description available.
    +
      +
    • Value: 11201
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_AUTOMATICFAILURE
    +
    +
    No description available.
    +
      +
    • Value: 11202
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_AUTOMATICSTATUS
    +
    +
    No description available.
    +
      +
    • Value: 11203
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11299
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyTransp.html b/static/libical-glib/enum.PropertyTransp.html new file mode 100644 index 00000000..04c52798 --- /dev/null +++ b/static/libical-glib/enum.PropertyTransp.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.PropertyTransp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyTransp

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyTransp
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_TRANSP_X
    +
    +
    No description available.
    +
      +
    • Value: 11000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_OPAQUE
    +
    +
    No description available.
    +
      +
    • Value: 11001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_OPAQUENOCONFLICT
    +
    +
    No description available.
    +
      +
    • Value: 11002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_TRANSPARENT
    +
    +
    No description available.
    +
      +
    • Value: 11003
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_TRANSPARENTNOCONFLICT
    +
    +
    No description available.
    +
      +
    • Value: 11004
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11099
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.PropertyXlicclass.html b/static/libical-glib/enum.PropertyXlicclass.html new file mode 100644 index 00000000..9e845381 --- /dev/null +++ b/static/libical-glib/enum.PropertyXlicclass.html @@ -0,0 +1,468 @@ + + + + + + ICalGLib.PropertyXlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibPropertyXlicclass

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.PropertyXlicclass
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_XLICCLASS_X
    +
    +
    No description available.
    +
      +
    • Value: 11100
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_PUBLISHNEW
    +
    +
    No description available.
    +
      +
    • Value: 11101
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_PUBLISHUPDATE
    +
    +
    No description available.
    +
      +
    • Value: 11102
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_PUBLISHFREEBUSY
    +
    +
    No description available.
    +
      +
    • Value: 11103
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTNEW
    +
    +
    No description available.
    +
      +
    • Value: 11104
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTUPDATE
    +
    +
    No description available.
    +
      +
    • Value: 11105
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTRESCHEDULE
    +
    +
    No description available.
    +
      +
    • Value: 11106
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTDELEGATE
    +
    +
    No description available.
    +
      +
    • Value: 11107
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTNEWORGANIZER
    +
    +
    No description available.
    +
      +
    • Value: 11108
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTFORWARD
    +
    +
    No description available.
    +
      +
    • Value: 11109
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTSTATUS
    +
    +
    No description available.
    +
      +
    • Value: 11110
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REQUESTFREEBUSY
    +
    +
    No description available.
    +
      +
    • Value: 11111
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REPLYACCEPT
    +
    +
    No description available.
    +
      +
    • Value: 11112
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REPLYDECLINE
    +
    +
    No description available.
    +
      +
    • Value: 11113
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REPLYDELEGATE
    +
    +
    No description available.
    +
      +
    • Value: 11114
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REPLYCRASHERACCEPT
    +
    +
    No description available.
    +
      +
    • Value: 11115
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REPLYCRASHERDECLINE
    +
    +
    No description available.
    +
      +
    • Value: 11116
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_ADDINSTANCE
    +
    +
    No description available.
    +
      +
    • Value: 11117
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_CANCELEVENT
    +
    +
    No description available.
    +
      +
    • Value: 11118
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_CANCELINSTANCE
    +
    +
    No description available.
    +
      +
    • Value: 11119
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_CANCELALL
    +
    +
    No description available.
    +
      +
    • Value: 11120
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_REFRESH
    +
    +
    No description available.
    +
      +
    • Value: 11121
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_COUNTER
    +
    +
    No description available.
    +
      +
    • Value: 11122
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_DECLINECOUNTER
    +
    +
    No description available.
    +
      +
    • Value: 11123
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_MALFORMED
    +
    +
    No description available.
    +
      +
    • Value: 11124
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_OBSOLETE
    +
    +
    No description available.
    +
      +
    • Value: 11125
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_MISSEQUENCED
    +
    +
    No description available.
    +
      +
    • Value: 11126
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_UNKNOWN
    +
    +
    No description available.
    +
      +
    • Value: 11127
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_NONE
    +
    +
    No description available.
    +
      +
    • Value: 11199
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.Property_Class.html b/static/libical-glib/enum.Property_Class.html new file mode 100644 index 00000000..e13c66c0 --- /dev/null +++ b/static/libical-glib/enum.Property_Class.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Property_Class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibProperty_Class

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.Property_Class
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_CLASS_X
    +
    +
    No description available.
    +
      +
    • Value: 10300
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_PUBLIC
    +
    +
    No description available.
    +
      +
    • Value: 10301
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_PRIVATE
    +
    +
    No description available.
    +
      +
    • Value: 10302
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_CONFIDENTIAL
    +
    +
    No description available.
    +
      +
    • Value: 10303
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_NONE
    +
    +
    No description available.
    +
      +
    • Value: 10399
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RecurrenceArraySizes.html b/static/libical-glib/enum.RecurrenceArraySizes.html new file mode 100644 index 00000000..1115eab5 --- /dev/null +++ b/static/libical-glib/enum.RecurrenceArraySizes.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.RecurrenceArraySizes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRecurrenceArraySizes

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RecurrenceArraySizes
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_BY_SECOND_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 62
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MINUTE_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 61
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_HOUR_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 25
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MONTH_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 14
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MONTHDAY_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 32
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_WEEKNO_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 56
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_YEARDAY_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 386
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_SETPOS_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 386
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_DAY_SIZE
    +
    +
    No description available.
    +
      +
    • Value: 386
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RecurrenceByRule.html b/static/libical-glib/enum.RecurrenceByRule.html new file mode 100644 index 00000000..a36309ae --- /dev/null +++ b/static/libical-glib/enum.RecurrenceByRule.html @@ -0,0 +1,288 @@ + + + + + + ICalGLib.RecurrenceByRule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRecurrenceByRule

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RecurrenceByRule
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_BYRULE_NO_CONTRACTION
    +
    +
    No description available.
    +
      +
    • Value: -1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MONTH
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_WEEK_NO
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_YEAR_DAY
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MONTH_DAY
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_DAY
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_HOUR
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_MINUTE
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_SECOND
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_SET_POS
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BY_NUM_PARTS
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RecurrenceFrequency.html b/static/libical-glib/enum.RecurrenceFrequency.html new file mode 100644 index 00000000..3f8ccefc --- /dev/null +++ b/static/libical-glib/enum.RecurrenceFrequency.html @@ -0,0 +1,258 @@ + + + + + + ICalGLib.RecurrenceFrequency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRecurrenceFrequency

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RecurrenceFrequency
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_SECONDLY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MINUTELY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_HOURLY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DAILY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_WEEKLY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MONTHLY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_YEARLY_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NO_RECURRENCE
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RecurrenceSkip.html b/static/libical-glib/enum.RecurrenceSkip.html new file mode 100644 index 00000000..48087868 --- /dev/null +++ b/static/libical-glib/enum.RecurrenceSkip.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.RecurrenceSkip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRecurrenceSkip

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RecurrenceSkip
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_SKIP_BACKWARD
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SKIP_FORWARD
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SKIP_OMIT
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SKIP_UNDEFINED
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RecurrenceWeekday.html b/static/libical-glib/enum.RecurrenceWeekday.html new file mode 100644 index 00000000..41a8a506 --- /dev/null +++ b/static/libical-glib/enum.RecurrenceWeekday.html @@ -0,0 +1,258 @@ + + + + + + ICalGLib.RecurrenceWeekday + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRecurrenceWeekday

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RecurrenceWeekday
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_NO_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SUNDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_MONDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TUESDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_WEDNESDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_THURSDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FRIDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_SATURDAY_WEEKDAY
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RequestStatus.html b/static/libical-glib/enum.RequestStatus.html new file mode 100644 index 00000000..13ace944 --- /dev/null +++ b/static/libical-glib/enum.RequestStatus.html @@ -0,0 +1,568 @@ + + + + + + ICalGLib.RequestStatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRequestStatus

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RequestStatus
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_UNKNOWN_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_0_SUCCESS_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_1_FALLBACK_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_2_IGPROP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_3_IGPARAM_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_4_IGXPROP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_5_IGXPARAM_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_6_IGCOMP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_7_FORWARD_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_8_ONEEVENT_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 9
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_9_TRUNC_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 10
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_10_ONETODO_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 11
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_2_11_TRUNCRRULE_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 12
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_0_INVPROPNAME_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 13
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_1_INVPROPVAL_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 14
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_2_INVPARAM_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 15
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_3_INVPARAMVAL_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 16
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_4_INVCOMP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 17
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_5_INVTIME_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 18
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_6_INVRULE_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 19
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_7_INVCU_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 20
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_8_NOAUTH_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 21
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_9_BADVERSION_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 22
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_10_TOOBIG_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 23
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_11_MISSREQCOMP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 24
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_12_UNKCOMP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 25
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_13_BADCOMP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 26
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_14_NOCAP_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 27
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_3_15_INVCOMMAND
    +
    +
    No description available.
    +
      +
    • Value: 28
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_4_0_BUSY_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 29
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_4_1_STORE_ACCESS_DENIED
    +
    +
    No description available.
    +
      +
    • Value: 30
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_4_2_STORE_FAILED
    +
    +
    No description available.
    +
      +
    • Value: 31
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_4_3_STORE_NOT_FOUND
    +
    +
    No description available.
    +
      +
    • Value: 32
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_5_0_MAYBE_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 33
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_5_1_UNAVAIL_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 34
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_5_2_NOSERVICE_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 35
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_5_3_NOSCHED_STATUS
    +
    +
    No description available.
    +
      +
    • Value: 36
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_6_1_CONTAINER_NOT_FOUND
    +
    +
    No description available.
    +
      +
    • Value: 37
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_9_0_UNRECOGNIZED_COMMAND
    +
    +
    No description available.
    +
      +
    • Value: 38
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.RestrictionKind.html b/static/libical-glib/enum.RestrictionKind.html new file mode 100644 index 00000000..a9c5f83a --- /dev/null +++ b/static/libical-glib/enum.RestrictionKind.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.RestrictionKind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibRestrictionKind

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.RestrictionKind
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_RESTRICTION_NONE
    +
    +
    No description available.
    +
      +
    • Value: 0
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ZERO
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ONE
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ZEROPLUS
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ONEPLUS
    +
    +
    No description available.
    +
      +
    • Value: 4
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ZEROORONE
    +
    +
    No description available.
    +
      +
    • Value: 5
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ONEEXCLUSIVE
    +
    +
    No description available.
    +
      +
    • Value: 6
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_ONEMUTUAL
    +
    +
    No description available.
    +
      +
    • Value: 7
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESTRICTION_UNKNOWN
    +
    +
    No description available.
    +
      +
    • Value: 8
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.Unknowntokenhandling.html b/static/libical-glib/enum.Unknowntokenhandling.html new file mode 100644 index 00000000..a97593b5 --- /dev/null +++ b/static/libical-glib/enum.Unknowntokenhandling.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Unknowntokenhandling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibUnknowntokenhandling

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.Unknowntokenhandling
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ASSUME_IANA_TOKEN
    +
    +
    No description available.
    +
      +
    • Value: 1
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DISCARD_TOKEN
    +
    +
    No description available.
    +
      +
    • Value: 2
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TREAT_AS_ERROR
    +
    +
    No description available.
    +
      +
    • Value: 3
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/enum.ValueKind.html b/static/libical-glib/enum.ValueKind.html new file mode 100644 index 00000000..b68b9cad --- /dev/null +++ b/static/libical-glib/enum.ValueKind.html @@ -0,0 +1,618 @@ + + + + + + ICalGLib.ValueKind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Enumeration

    +

    ICalGLibValueKind

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + +

    + +
    +
    enum ICalGLib.ValueKind
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + + +

    Available since: 3.0

    + + +
    + + +
    + +
    +

    + Members + +

    + +
    +
    + +
    I_CAL_ANY_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5000
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ACTION_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5027
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_ATTACH_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5003
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BINARY_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5011
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BOOLEAN_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5021
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_BUSYTYPE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5032
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CALADDRESS_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5023
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CARLEVEL_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5016
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CLASS_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5019
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_CMD_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5010
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5002
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATETIME_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5028
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATETIMEDATE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5036
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DATETIMEPERIOD_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5015
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_DURATION_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5020
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_FLOAT_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5013
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_GEO_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5004
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_INTEGER_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5017
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_LINK_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5042
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_METHOD_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5030
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PARTICIPANTTYPE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5037
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PERIOD_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5014
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLCOMPLETION_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5034
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_POLLMODE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5033
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_PROXIMITY_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5039
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RESOURCETYPE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5038
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERY_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5001
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_QUERYLEVEL_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5012
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RECUR_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5026
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_RELATEDTO_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5043
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_REQUESTSTATUS_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5009
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STATUS_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5005
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_STRING_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5007
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TASKMODE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5035
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TEXT_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5008
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRANSP_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5006
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_TRIGGER_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5024
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_UID_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5040
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_URI_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5018
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_UTCOFFSET_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5029
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XMLREFERENCE_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5041
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_X_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5022
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_XLICCLASS_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5025
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    I_CAL_NO_VALUE
    +
    +
    No description available.
    +
      +
    • Value: 5031
    • +
    • Nickname: None
    • +
    • Available since: 3.0
    • +
    +
    + +
    +
    +
    + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/fonts.css b/static/libical-glib/fonts.css new file mode 100644 index 00000000..0a01b934 --- /dev/null +++ b/static/libical-glib/fonts.css @@ -0,0 +1,5 @@ +/* + * SPDX-FileCopyrightText: 2021 GNOME Foundation + * + * SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later + */ diff --git a/static/libical-glib/func.bt.html b/static/libical-glib/func.bt.html new file mode 100644 index 00000000..47651914 --- /dev/null +++ b/static/libical-glib/func.bt.html @@ -0,0 +1,156 @@ + + + + + + ICalGLib.bt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibbt

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_bt (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.errno_return.html b/static/libical-glib/func.errno_return.html new file mode 100644 index 00000000..58c202af --- /dev/null +++ b/static/libical-glib/func.errno_return.html @@ -0,0 +1,184 @@ + + + + + + ICalGLib.errno_return + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberrno_return

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalErrorEnum
    +i_cal_errno_return (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the error stored in the library. If no error, return I_CAL_NO_ERROR.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalErrorEnum

    +

    Return the error happened.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_clear_errno.html b/static/libical-glib/func.error_clear_errno.html new file mode 100644 index 00000000..f8d28b9e --- /dev/null +++ b/static/libical-glib/func.error_clear_errno.html @@ -0,0 +1,156 @@ + + + + + + ICalGLib.error_clear_errno + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_clear_errno

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_clear_errno (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_crash_here.html b/static/libical-glib/func.error_crash_here.html new file mode 100644 index 00000000..554f076e --- /dev/null +++ b/static/libical-glib/func.error_crash_here.html @@ -0,0 +1,158 @@ + + + + + + ICalGLib.error_crash_here + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_crash_here

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_crash_here (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Shout out the errors to the compiler.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_get_error_state.html b/static/libical-glib/func.error_get_error_state.html new file mode 100644 index 00000000..82515096 --- /dev/null +++ b/static/libical-glib/func.error_get_error_state.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.error_get_error_state + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_get_error_state

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalErrorState
    +i_cal_error_get_error_state (
    +  ICalErrorEnum error
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the state of an error.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    error
    +
    +

    Type: ICalErrorEnum

    +

    The error to be checked.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalErrorState

    +

    The state of the error.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_perror.html b/static/libical-glib/func.error_perror.html new file mode 100644 index 00000000..87060abe --- /dev/null +++ b/static/libical-glib/func.error_perror.html @@ -0,0 +1,185 @@ + + + + + + ICalGLib.error_perror + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_perror

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_error_perror (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the ICalErrorEnum in the string representation. This method called the icalerrorno_return to get +the current error.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of the current error.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_restore.html b/static/libical-glib/func.error_restore.html new file mode 100644 index 00000000..fe790b8d --- /dev/null +++ b/static/libical-glib/func.error_restore.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.error_restore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_restore

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_restore (
    +  const gchar* error,
    +  ICalErrorState es
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Restores the error to specified state.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    error
    +
    +

    Type: const gchar*

    +

    The error to be restored.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + +
    es
    +
    +

    Type: ICalErrorState

    +

    The error state to be restored.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_set_errno.html b/static/libical-glib/func.error_set_errno.html new file mode 100644 index 00000000..eed889b3 --- /dev/null +++ b/static/libical-glib/func.error_set_errno.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.error_set_errno + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_set_errno

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_set_errno (
    +  ICalErrorEnum x
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the errno.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    x
    +
    +

    Type: ICalErrorEnum

    +

    The error to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_set_error_state.html b/static/libical-glib/func.error_set_error_state.html new file mode 100644 index 00000000..c0e73bb8 --- /dev/null +++ b/static/libical-glib/func.error_set_error_state.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.error_set_error_state + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_set_error_state

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_set_error_state (
    +  ICalErrorEnum error,
    +  ICalErrorState state
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the state to the corresponding error in the library.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    error
    +
    +

    Type: ICalErrorEnum

    +

    The error enum.

    + + + + + + + + + + +
    +
    + +
    state
    +
    +

    Type: ICalErrorState

    +

    The error state.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_stop_here.html b/static/libical-glib/func.error_stop_here.html new file mode 100644 index 00000000..7d8c5821 --- /dev/null +++ b/static/libical-glib/func.error_stop_here.html @@ -0,0 +1,156 @@ + + + + + + ICalGLib.error_stop_here + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_stop_here

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_error_stop_here (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_strerror.html b/static/libical-glib/func.error_strerror.html new file mode 100644 index 00000000..40c5e410 --- /dev/null +++ b/static/libical-glib/func.error_strerror.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.error_strerror + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_strerror

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_error_strerror (
    +  ICalErrorEnum e
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Translates the ICalErrorEnum to the string representation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    e
    +
    +

    Type: ICalErrorEnum

    +

    The ICalErrorEnum to be translated.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of e.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.error_supress.html b/static/libical-glib/func.error_supress.html new file mode 100644 index 00000000..74af11ee --- /dev/null +++ b/static/libical-glib/func.error_supress.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.error_supress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLiberror_supress

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalErrorState
    +i_cal_error_supress (
    +  const gchar* error
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Suppresses the error.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    error
    +
    +

    Type: const gchar*

    +

    The error to be suppressed.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalErrorState

    +

    The error state suppressed.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.get_unknown_token_handling_setting.html b/static/libical-glib/func.get_unknown_token_handling_setting.html new file mode 100644 index 00000000..8b1e9348 --- /dev/null +++ b/static/libical-glib/func.get_unknown_token_handling_setting.html @@ -0,0 +1,184 @@ + + + + + + ICalGLib.get_unknown_token_handling_setting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibget_unknown_token_handling_setting

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalUnknowntokenhandling
    +i_cal_get_unknown_token_handling_setting (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the setting of ICalUnknowntokenhandling.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalUnknowntokenhandling

    +

    The setting of ICalUnknowntokenhandling.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_add_tmp_buffer.html b/static/libical-glib/func.memory_add_tmp_buffer.html new file mode 100644 index 00000000..a9193ecf --- /dev/null +++ b/static/libical-glib/func.memory_add_tmp_buffer.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.memory_add_tmp_buffer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_add_tmp_buffer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_memory_add_tmp_buffer (
    +  void* buf
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds an existing buffer to the buffer ring.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buf
    +
    +

    Type: void*

    +

    The existing buffer to be added into the ical.

    + + + + + + + + + + +
    The argument can be NULL.
    The called function takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_append_char.html b/static/libical-glib/func.memory_append_char.html new file mode 100644 index 00000000..e666e049 --- /dev/null +++ b/static/libical-glib/func.memory_append_char.html @@ -0,0 +1,246 @@ + + + + + + ICalGLib.memory_append_char + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_append_char

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_memory_append_char (
    +  gchar** buf,
    +  gchar** pos,
    +  size_t* buf_size,
    +  gchar ch
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Append the character to the buffer. Only use them on normally allocated memory, or on buffers created +from icalmemory_new_buffer, never with buffers created by icalmemory_tmp_buffer. If icalmemory_append_string +has to resize a buffer on the ring, the ring will loose track of it and you will have memory problems.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buf
    +
    +

    Type: An array of char

    +

    The buffer to be appended. It should not be the memory in ical.

    + + + + + + + + + + +
    The argument will be modified by the function.
    The length of the array is specified in the buf_size argument.
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    + +
    pos
    +
    +

    Type: An array of char

    +

    The position at which the new string to be appended.

    + + + + + + + + + + +
    The argument will be modified by the function.
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    + +
    buf_size
    +
    +

    Type: size_t*

    +

    The size of the buffer before appended.

    + + + + + + + + + + +
    The argument will be modified by the function.
    +
    + +
    ch
    +
    +

    Type: gchar

    +

    The character to be allocated.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_append_string.html b/static/libical-glib/func.memory_append_string.html new file mode 100644 index 00000000..2fe63782 --- /dev/null +++ b/static/libical-glib/func.memory_append_string.html @@ -0,0 +1,246 @@ + + + + + + ICalGLib.memory_append_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_append_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_memory_append_string (
    +  gchar** buf,
    +  gchar** pos,
    +  size_t* buf_size,
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Appends the string to the buffer. Only use them on normally allocated memory, or on buffers created from +icalmemory_new_buffer, never with buffers created by icalmemory_tmp_buffer. If icalmemory_append_string +has to resize a buffer on the ring, the ring will loose track of it and you will have memory problems.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buf
    +
    +

    Type: An array of char

    +

    The buffer to be appended. It should not be the memory in ical.

    + + + + + + + + + + +
    The argument will be modified by the function.
    The length of the array is specified in the buf_size argument.
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    + +
    pos
    +
    +

    Type: An array of char

    +

    The position at which the new string to be appended.

    + + + + + + + + + + +
    The argument will be modified by the function.
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    + +
    buf_size
    +
    +

    Type: size_t*

    +

    The size of the buffer before appended.

    + + + + + + + + + + +
    The argument will be modified by the function.
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string to be allocated.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_free_buffer.html b/static/libical-glib/func.memory_free_buffer.html new file mode 100644 index 00000000..f2be3c48 --- /dev/null +++ b/static/libical-glib/func.memory_free_buffer.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.memory_free_buffer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_free_buffer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_memory_free_buffer (
    +  void* buf
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees the buffer.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buf
    +
    +

    Type: void*

    +

    The buffer to be freed.

    + + + + + + + + + + +
    The argument can be NULL.
    The called function takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_free_ring.html b/static/libical-glib/func.memory_free_ring.html new file mode 100644 index 00000000..72f87545 --- /dev/null +++ b/static/libical-glib/func.memory_free_ring.html @@ -0,0 +1,158 @@ + + + + + + ICalGLib.memory_free_ring + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_free_ring

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_memory_free_ring (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees all the memory used in the ring.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_new_buffer.html b/static/libical-glib/func.memory_new_buffer.html new file mode 100644 index 00000000..8939718d --- /dev/null +++ b/static/libical-glib/func.memory_new_buffer.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.memory_new_buffer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_new_buffer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void*
    +i_cal_memory_new_buffer (
    +  size_t size
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new buffer with target size. The caller should deallocate it when necessary.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    size
    +
    +

    Type: size_t

    +

    The size of the new buffer to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: void*

    +

    The newly created buffer with the target size.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_resize_buffer.html b/static/libical-glib/func.memory_resize_buffer.html new file mode 100644 index 00000000..25d60a9b --- /dev/null +++ b/static/libical-glib/func.memory_resize_buffer.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.memory_resize_buffer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_resize_buffer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void*
    +i_cal_memory_resize_buffer (
    +  void* buf,
    +  size_t size
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Resizes the buffer to the target size.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buf
    +
    +

    Type: void*

    +

    The buffer needs to be resized.

    + + + + + + + + + + +
    The argument can be NULL.
    The called function takes ownership of the data, and is responsible for freeing it.
    +
    + +
    size
    +
    +

    Type: size_t

    +

    The target size the buffer to be resized to.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: void*

    +

    The buffer after being resized.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_str_to_glib.html b/static/libical-glib/func.memory_str_to_glib.html new file mode 100644 index 00000000..8a10a95a --- /dev/null +++ b/static/libical-glib/func.memory_str_to_glib.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.memory_str_to_glib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_str_to_glib

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_memory_str_to_glib (
    +  char* buffer
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Transform a string allocated with icalmemory into one that can be freed with g_free.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    buffer
    +
    +

    Type: char*

    +

    The ical memory string to transform.

    + + + + + + + + + + +
    The argument can be NULL.
    The called function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The same string that can be freed with g_free.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_strdup.html b/static/libical-glib/func.memory_strdup.html new file mode 100644 index 00000000..6f302881 --- /dev/null +++ b/static/libical-glib/func.memory_strdup.html @@ -0,0 +1,217 @@ + + + + + + ICalGLib.memory_strdup + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_strdup

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_memory_strdup (
    +  const gchar* s
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    A wrapper around strdup. Partly to trap calls to strdup, partly because in -ansi, gcc on Red Hat claims +that strdup is undeclared.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    s
    +
    +

    Type: const gchar*

    +

    The string to be cloned.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The cloned string.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_tmp_buffer.html b/static/libical-glib/func.memory_tmp_buffer.html new file mode 100644 index 00000000..e3c80647 --- /dev/null +++ b/static/libical-glib/func.memory_tmp_buffer.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.memory_tmp_buffer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_tmp_buffer

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void*
    +i_cal_memory_tmp_buffer (
    +  size_t size
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a buffer with target size.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    size
    +
    +

    Type: size_t

    +

    The size of the buffer to be created.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: void*

    +

    The newly created buffer.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.memory_tmp_copy.html b/static/libical-glib/func.memory_tmp_copy.html new file mode 100644 index 00000000..d3505298 --- /dev/null +++ b/static/libical-glib/func.memory_tmp_copy.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.memory_tmp_copy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmemory_tmp_copy

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_memory_tmp_copy (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Like strdup, but the buffer is on the ring.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string to be copied.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The new copy of the str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.mime_parse.html b/static/libical-glib/func.mime_parse.html new file mode 100644 index 00000000..e0bc1276 --- /dev/null +++ b/static/libical-glib/func.mime_parse.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.mime_parse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibmime_parse

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_mime_parse (
    +  ICalMimeParseFunc func,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Parses data to ICalComponent using the given function.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    func
    +
    +

    Type: ICalMimeParseFunc

    +

    The parsing function.

    + + + + + + + + + + +
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The date given to func.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The parsed ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.recur_expand_recurrence.html b/static/libical-glib/func.recur_expand_recurrence.html new file mode 100644 index 00000000..79605b98 --- /dev/null +++ b/static/libical-glib/func.recur_expand_recurrence.html @@ -0,0 +1,254 @@ + + + + + + ICalGLib.recur_expand_recurrence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrecur_expand_recurrence

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    GArray*
    +i_cal_recur_expand_recurrence (
    +  const gchar* rule,
    +  time_t start,
    +  gint count
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Fills an array with the ‘count’ number of occurrences generated by the rrule. Note that the times are +returned in UTC, but the times are calculated in local time. YOu will have to convert the results back +into local time before using them.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    rule
    +
    +

    Type: const gchar*

    +

    The rule of the recurrence.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + +
    start
    +
    +

    Type: time_t

    +

    The start seconds past the POSIX epoch.

    + + + + + + + + + + +
    +
    + +
    count
    +
    +

    Type: gint

    +

    The number of elements to be filled up in the array.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: An array of long

    +

    If successful, return the array. NULL if failed.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.request_status_code.html b/static/libical-glib/func.request_status_code.html new file mode 100644 index 00000000..7bd7ef47 --- /dev/null +++ b/static/libical-glib/func.request_status_code.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.request_status_code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrequest_status_code

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_request_status_code (
    +  ICalRequestStatus stat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the code for a request status.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    stat
    +
    +

    Type: ICalRequestStatus

    +

    The ICalRequestStatus to be queried.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The code for a request status.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.request_status_desc.html b/static/libical-glib/func.request_status_desc.html new file mode 100644 index 00000000..dcad6112 --- /dev/null +++ b/static/libical-glib/func.request_status_desc.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.request_status_desc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrequest_status_desc

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_request_status_desc (
    +  ICalRequestStatus stat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the descriptive text for a request status.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    stat
    +
    +

    Type: ICalRequestStatus

    +

    The ICalRequestStatus to be translated.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The description of the stat.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.request_status_from_num.html b/static/libical-glib/func.request_status_from_num.html new file mode 100644 index 00000000..ad555de8 --- /dev/null +++ b/static/libical-glib/func.request_status_from_num.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.request_status_from_num + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrequest_status_from_num

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRequestStatus
    +i_cal_request_status_from_num (
    +  gshort major,
    +  gshort minor
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a request status for major/minor status numbers.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    major
    +
    +

    Type: gshort

    +

    The major number.

    + + + + + + + + + + +
    +
    + +
    minor
    +
    +

    Type: gshort

    +

    The minor number.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRequestStatus

    +

    The corresponding ICalRequestStatus.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.request_status_major.html b/static/libical-glib/func.request_status_major.html new file mode 100644 index 00000000..1b367daa --- /dev/null +++ b/static/libical-glib/func.request_status_major.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.request_status_major + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrequest_status_major

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_request_status_major (
    +  ICalRequestStatus stat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the major number for a request status.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    stat
    +
    +

    Type: ICalRequestStatus

    +

    The ICalRequestStatus to be queried.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    The major number for a request status.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.request_status_minor.html b/static/libical-glib/func.request_status_minor.html new file mode 100644 index 00000000..55e61546 --- /dev/null +++ b/static/libical-glib/func.request_status_minor.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.request_status_minor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrequest_status_minor

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_request_status_minor (
    +  ICalRequestStatus stat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the minor number for a request status.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    stat
    +
    +

    Type: ICalRequestStatus

    +

    The ICalRequestStatus to be queried.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    The minor number for a request status.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.restriction_check.html b/static/libical-glib/func.restriction_check.html new file mode 100644 index 00000000..47e8426c --- /dev/null +++ b/static/libical-glib/func.restriction_check.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.restriction_check + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrestriction_check

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_restriction_check (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the ICalComponent is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    The component to be checked.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Whether the comp is valid.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.restriction_compare.html b/static/libical-glib/func.restriction_compare.html new file mode 100644 index 00000000..1bd378a7 --- /dev/null +++ b/static/libical-glib/func.restriction_compare.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.restriction_compare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibrestriction_compare

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_restriction_compare (
    +  ICalRestrictionKind restr,
    +  gint count
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Compares the kind of restriction and the count to determine whether it is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    restr
    +
    +

    Type: ICalRestrictionKind

    +

    The restriction kind.

    + + + + + + + + + + +
    +
    + +
    count
    +
    +

    Type: gint

    +

    The number of restrictions.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Whether it is valid or not. -1 indicates invalid or more analysis. 1 indicates pass and 0 or 2+ indicates fail.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/func.set_unknown_token_handling_setting.html b/static/libical-glib/func.set_unknown_token_handling_setting.html new file mode 100644 index 00000000..c798bfd5 --- /dev/null +++ b/static/libical-glib/func.set_unknown_token_handling_setting.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.set_unknown_token_handling_setting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibset_unknown_token_handling_setting

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_set_unknown_token_handling_setting (
    +  ICalUnknowntokenhandling newSetting
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets ICalUnknowntokenhandling.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    newSetting
    +
    +

    Type: ICalUnknowntokenhandling

    +

    A ICalUnknowntokenhandling.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/fzy.js b/static/libical-glib/fzy.js new file mode 100644 index 00000000..89e4666d --- /dev/null +++ b/static/libical-glib/fzy.js @@ -0,0 +1,222 @@ +// SPDX-FileCopyrightText: 2014 John Hawthorn +// +// SPDX-License-Identifier: MIT + +window.fzy = (function() { + var SCORE_MIN = -Infinity; + var SCORE_MAX = Infinity; + + var SCORE_GAP_LEADING = -0.005 + var SCORE_GAP_TRAILING = -0.005 + var SCORE_GAP_INNER = -0.01 + var SCORE_MATCH_CONSECUTIVE = 1.0 + var SCORE_MATCH_SLASH = 0.9 + var SCORE_MATCH_WORD = 0.8 + var SCORE_MATCH_CAPITAL = 0.7 + var SCORE_MATCH_DOT = 0.6 + + function islower(s) { + return s.toLowerCase() === s; + } + + function isupper(s) { + return s.toUpperCase() === s; + } + + function precompute_bonus(haystack) { + /* Which positions are beginning of words */ + var m = haystack.length; + var match_bonus = new Array(m); + + var last_ch = '/'; + for (var i = 0; i < m; i++) { + var ch = haystack[i]; + + if (last_ch === '/') { + match_bonus[i] = SCORE_MATCH_SLASH; + } else if (last_ch === '-' || last_ch === '_' || last_ch === ' ') { + match_bonus[i] = SCORE_MATCH_WORD; + } else if (last_ch === '.') { + match_bonus[i] = SCORE_MATCH_DOT; + } else if (islower(last_ch) && isupper(ch)) { + match_bonus[i] = SCORE_MATCH_CAPITAL; + } else { + match_bonus[i] = 0; + } + + last_ch = ch; + } + + return match_bonus; + } + + function compute(needle, haystack, D, M) { + var n = needle.length; + var m = haystack.length; + + var match_bonus = precompute_bonus(haystack, match_bonus); + + /* + * D[][] Stores the best score for this position ending with a match. + * M[][] Stores the best possible score at this position. + */ + + for (var i = 0; i < n; i++) { + D[i] = new Array(m); + M[i] = new Array(m); + + var prev_score = SCORE_MIN; + var gap_score = i === n - 1 ? SCORE_GAP_TRAILING : SCORE_GAP_INNER; + + for (var j = 0; j < m; j++) { + if (needle[i] === haystack[j]) { + var score = SCORE_MIN; + if (!i) { + score = (j * SCORE_GAP_LEADING) + match_bonus[j]; + } else if (j) { /* i > 0 && j > 0*/ + score = Math.max( + M[i - 1][j - 1] + match_bonus[j], + + /* consecutive match, doesn't stack with match_bonus */ + D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE); + } + D[i][j] = score; + M[i][j] = prev_score = Math.max(score, prev_score + gap_score); + } else { + D[i][j] = SCORE_MIN; + M[i][j] = prev_score = prev_score + gap_score; + } + } + } + } + + function score(needle, haystack) { + var n = needle.length; + var m = haystack.length; + + if (!n || !m) + return SCORE_MIN; + + if (n === m) { + /* Since this method can only be called with a haystack which + * matches needle. If the lengths of the strings are equal the + * strings themselves must also be equal (ignoring case). + */ + return SCORE_MAX; + } + + if (m > 1024) { + /* + * Unreasonably large candidate: return no score + * If it is a valid match it will still be returned, it will + * just be ranked below any reasonably sized candidates + */ + return SCORE_MIN; + } + + var D = new Array(n); + var M = new Array(n); + + compute(needle, haystack, D, M) + + return M[n - 1][m - 1]; + } + + function positions(needle, haystack) { + var n = needle.length; + var m = haystack.length; + + var positions = new Array(n); + + if (!n || !m) + return positions; + + if (n === m) { + for (var i = 0; i < n; i++) + positions[i] = i; + return positions; + } + + if (m > 1024) { + return positions; + } + + var D = new Array(n); + var M = new Array(n); + + compute(needle, haystack, D, M) + + /* backtrack to find the positions of optimal matching */ + var match_required = false; + + for (var i = n - 1, j = m - 1; i >= 0; i--) { + for (; j >= 0; j--) { + /* + * There may be multiple paths which result in + * the optimal weight. + * + * For simplicity, we will pick the first one + * we encounter, the latest in the candidate + * string. + */ + if (D[i][j] !== SCORE_MIN && + (match_required || D[i][j] === M[i][j])) { + /* If this score was determined using + * SCORE_MATCH_CONSECUTIVE, the + * previous character MUST be a match + */ + match_required = + i && j && + M[i][j] === D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE; + positions[i] = j--; + break; + } + } + } + + return positions; + } + + function hasMatch(needle, haystack) { + var l = needle.length + for (var i = 0, j = 0; i < l; i += 1) { + j = haystack.indexOf(needle[i], j) + 1 + if (j === 0) return false + } + return true + } + + function filter(needle, items, selector) { + const isCaseSensitive = needle.toLowerCase() !== needle; + const actualNeedle = isCaseSensitive ? needle : needle.toLowerCase(); + const filteredItems = items.reduce((results, item) => { + const haystack = isCaseSensitive ? selector(item) : selector(item).toLowerCase(); + if (hasMatch(actualNeedle, haystack)) + results.push({ item, score: score(needle, haystack) }) + return results; + }, []) + filteredItems.sort((a, b) => b.score - a.score) + return filteredItems; + } + + return { + /* constants */ + SCORE_MIN, + SCORE_MAX, + + SCORE_GAP_LEADING, + SCORE_GAP_TRAILING, + SCORE_GAP_INNER, + SCORE_MATCH_CONSECUTIVE, + SCORE_MATCH_SLASH, + SCORE_MATCH_WORD, + SCORE_MATCH_CAPITAL, + SCORE_MATCH_DOT, + + /* functions */ + score, + positions, + hasMatch, + filter, + } +})(); diff --git a/static/libical-glib/go-up-symbolic.png b/static/libical-glib/go-up-symbolic.png new file mode 100644 index 00000000..77da5f7e Binary files /dev/null and b/static/libical-glib/go-up-symbolic.png differ diff --git a/static/libical-glib/index.html b/static/libical-glib/index.html new file mode 100644 index 00000000..6c84a10c --- /dev/null +++ b/static/libical-glib/index.html @@ -0,0 +1,1650 @@ + + + + + + ICalGLib – 3.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Namespace

    +

    ICalGLib – 3.0

    + +
    +

    iCalendar protocols and protocol data units implementation

    +
    + +
    + + + + + + +
    Version3
    Authorslibical Development Team
    LicenseLGPL-2.1-only OR MPL-2.0
    Websitehttps://libical.github.io/libical/
    Sourcehttps://github.com/libical/libical
    +
    + + +
    +

    Build

    + +
    + + + + + + + +
    C headerslibical-glib/libical-glib.h
    pkg-config fileslibical-glib
    +
    +
    + +
    + + +
    +
    +

    + Dependencies + +

    + +
    + + + + + + + + + + + + + + + +
    GObject—2.0The base type system library
    Browse documentation
    +
    +
    +
    + + + + + +
    +
    +

    + Additional documentation + +

    + +
    + +
    +
    +
    + + + + + +
    +
    +

    + Classes + +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Array +

    This is the ICalArray instance.

    +

    since: 3.0

    +
    Attach +

    This is the ICalAttach instance.

    +

    since: 3.0

    +
    CompIter +

    This is the ICalCompIter instance.

    +

    since: 3.0

    +
    Component +

    This is the ICalComponent instance.

    +

    since: 3.0

    +
    Datetimeperiod +

    This is the ICalDatetimeperiod instance.

    +

    since: 3.0

    +
    Duration +

    This is the ICalDuration instance.

    +

    since: 3.0

    +
    Geo +

    This is the ICalGeo instance.

    +

    since: 3.0

    +
    Object +

    This is an ICalObject instance struct.

    +

    since: 3.0

    +
    Parameter +

    This is the ICalParameter instance.

    +

    since: 3.0

    +
    Parser +

    This is the ICalParser instance.

    +

    since: 3.0

    +
    Period +

    This is the ICalPeriod instance.

    +

    since: 3.0

    +
    Property +

    This is the ICalProperty instance.

    +

    since: 3.0

    +
    RecurIterator +

    This is the ICalRecurIterator instance.

    +

    since: 3.0

    +
    Recurrence +

    This is the ICalRecurrence instance.

    +

    since: 3.0

    +
    Reqstat +

    This is the ICalReqstat instance.

    +

    since: 3.0

    +
    Time +

    This is the ICalTime instance.

    +

    since: 3.0

    +
    TimeSpan +

    This is the ICalTimeSpan instance.

    +

    since: 3.0

    +
    Timezone +

    This is the ICalTimezone instance.

    +

    since: 3.0

    +
    Trigger +

    This is the ICalTrigger instance.

    +

    since: 3.0

    +
    Value +

    This is the ICalValue instance.

    +

    since: 3.0

    +
    +
    +
    +
    + + + +
    +
    +

    + Structs + +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    _Array + +

    since: 3.0

    +
    _Attach + +

    since: 3.0

    +
    _CompIter + +

    since: 3.0

    +
    _Component + +

    since: 3.0

    +
    _Datetimeperiod + +

    since: 3.0

    +
    _Duration + +

    since: 3.0

    +
    _Geo + +

    since: 3.0

    +
    _Parameter + +

    since: 3.0

    +
    _Parser + +

    since: 3.0

    +
    _Period + +

    since: 3.0

    +
    _Property + +

    since: 3.0

    +
    _RecurIterator + +

    since: 3.0

    +
    _Recurrence + +

    since: 3.0

    +
    _Reqstat + +

    since: 3.0

    +
    _Time + +

    since: 3.0

    +
    _TimeSpan + +

    since: 3.0

    +
    _Timezone + +

    since: 3.0

    +
    _Trigger + +

    since: 3.0

    +
    _Value + +

    since: 3.0

    +
    +
    +
    +
    + + + + +
    +
    +

    + Enumerations + +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentKind + +

    since: 3.0

    +
    ErrorEnum + +

    since: 3.0

    +
    ErrorState + +

    since: 3.0

    +
    ParameterAction + +

    since: 3.0

    +
    ParameterCutype + +

    since: 3.0

    +
    ParameterDerived + +

    since: 3.0

    +
    ParameterDisplay + +

    since: 3.0

    +
    ParameterEnable + +

    since: 3.0

    +
    ParameterEncoding + +

    since: 3.0

    +
    ParameterFbtype + +

    since: 3.0

    +
    ParameterFeature + +

    since: 3.0

    +
    ParameterKind + +

    since: 3.0

    +
    ParameterLocal + +

    since: 3.0

    +
    ParameterPartstat + +

    since: 3.0

    +
    ParameterPatchaction + +

    since: 3.0

    +
    ParameterRange + +

    since: 3.0

    +
    ParameterRelated + +

    since: 3.0

    +
    ParameterReltype + +

    since: 3.0

    +
    ParameterRequired + +

    since: 3.0

    +
    ParameterRole + +

    since: 3.0

    +
    ParameterRsvp + +

    since: 3.0

    +
    ParameterScheduleagent + +

    since: 3.0

    +
    ParameterScheduleforcesend + +

    since: 3.0

    +
    ParameterStayinformed + +

    since: 3.0

    +
    ParameterSubstate + +

    since: 3.0

    +
    ParameterValue + +

    since: 3.0

    +
    ParameterXliccomparetype + +

    since: 3.0

    +
    ParameterXlicerrortype + +

    since: 3.0

    +
    ParserState + +

    since: 3.0

    +
    Property_Class + +

    since: 3.0

    +
    PropertyAction + +

    since: 3.0

    +
    PropertyBusytype + +

    since: 3.0

    +
    PropertyCarlevel + +

    since: 3.0

    +
    PropertyCmd + +

    since: 3.0

    +
    PropertyKind + +

    since: 3.0

    +
    PropertyMethod + +

    since: 3.0

    +
    PropertyParticipanttype + +

    since: 3.0

    +
    PropertyPollcompletion + +

    since: 3.0

    +
    PropertyPollmode + +

    since: 3.0

    +
    PropertyProximity + +

    since: 3.0

    +
    PropertyQuerylevel + +

    since: 3.0

    +
    PropertyResourcetype + +

    since: 3.0

    +
    PropertyStatus + +

    since: 3.0

    +
    PropertyTaskmode + +

    since: 3.0

    +
    PropertyTransp + +

    since: 3.0

    +
    PropertyXlicclass + +

    since: 3.0

    +
    RecurrenceArraySizes + +

    since: 3.0

    +
    RecurrenceByRule + +

    since: 3.0

    +
    RecurrenceFrequency + +

    since: 3.0

    +
    RecurrenceSkip + +

    since: 3.0

    +
    RecurrenceWeekday + +

    since: 3.0

    +
    RequestStatus + +

    since: 3.0

    +
    RestrictionKind + +

    since: 3.0

    +
    Unknowntokenhandling + +

    since: 3.0

    +
    ValueKind + +

    since: 3.0

    +
    +
    +
    +
    + + + + +
    +
    +

    + Callbacks + +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentForeachRecurrenceFunc + +

    since: 3.0

    +
    ComponentForeachTZIDFunc + +

    since: 3.0

    +
    MimeParseFunc + +

    since: 3.0

    +
    ParserLineGenFunc + +

    since: 3.0

    +
    +
    +
    +
    + + +
    +
    +

    + Functions + +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    bt + +

    since: 1.0

    +
    errno_return +

    Returns the error stored in the library. If no error, return I_CAL_NO_ERROR.

    +

    since: 1.0

    +
    error_clear_errno + +

    since: 1.0

    +
    error_crash_here +

    Shout out the errors to the compiler.

    +

    since: 1.0

    +
    error_get_error_state +

    Gets the state of an error.

    +

    since: 1.0

    +
    error_perror +

    Gets the ICalErrorEnum in the string representation. This method called the icalerrorno_return to get +the current error.

    +

    since: 1.0

    +
    error_restore +

    Restores the error to specified state.

    +

    since: 1.0

    +
    error_set_errno +

    Sets the errno.

    +

    since: 1.0

    +
    error_set_error_state +

    Sets the state to the corresponding error in the library.

    +

    since: 1.0

    +
    error_stop_here + +

    since: 1.0

    +
    error_strerror +

    Translates the ICalErrorEnum to the string representation.

    +

    since: 1.0

    +
    error_supress +

    Suppresses the error.

    +

    since: 1.0

    +
    get_unknown_token_handling_setting +

    Gets the setting of ICalUnknowntokenhandling.

    +

    since: 1.0

    +
    memory_add_tmp_buffer +

    Adds an existing buffer to the buffer ring.

    +

    since: 1.0

    +
    memory_append_char +

    Append the character to the buffer. Only use them on normally allocated memory, or on buffers created +from icalmemory_new_buffer, never with buffers created by icalmemory_tmp_buffer. If icalmemory_append_string +has to resize a buffer on the ring, the ring will loose track of it and you will have memory problems.

    +

    since: 1.0

    +
    memory_append_string +

    Appends the string to the buffer. Only use them on normally allocated memory, or on buffers created from +icalmemory_new_buffer, never with buffers created by icalmemory_tmp_buffer. If icalmemory_append_string +has to resize a buffer on the ring, the ring will loose track of it and you will have memory problems.

    +

    since: 1.0

    +
    memory_free_buffer +

    Frees the buffer.

    +

    since: 1.0

    +
    memory_free_ring +

    Frees all the memory used in the ring.

    +

    since: 1.0

    +
    memory_new_buffer +

    Creates a new buffer with target size. The caller should deallocate it when necessary.

    +

    since: 1.0

    +
    memory_resize_buffer +

    Resizes the buffer to the target size.

    +

    since: 1.0

    +
    memory_str_to_glib +

    Transform a string allocated with icalmemory into one that can be freed with g_free.

    +

    since: 1.0

    +
    memory_strdup +

    A wrapper around strdup. Partly to trap calls to strdup, partly because in -ansi, gcc on Red Hat claims +that strdup is undeclared.

    +

    since: 1.0

    +
    memory_tmp_buffer +

    Creates a buffer with target size.

    +

    since: 1.0

    +
    memory_tmp_copy +

    Like strdup, but the buffer is on the ring.

    +

    since: 1.0

    +
    mime_parse +

    Parses data to ICalComponent using the given function.

    +

    since: 1.0

    +
    recur_expand_recurrence +

    Fills an array with the ‘count’ number of occurrences generated by the rrule. Note that the times are +returned in UTC, but the times are calculated in local time. YOu will have to convert the results back +into local time before using them.

    +

    since: 1.0

    +
    request_status_code +

    Returns the code for a request status.

    +

    since: 1.0

    +
    request_status_desc +

    Returns the descriptive text for a request status.

    +

    since: 1.0

    +
    request_status_from_num +

    Returns a request status for major/minor status numbers.

    +

    since: 1.0

    +
    request_status_major +

    Returns the major number for a request status.

    +

    since: 1.0

    +
    request_status_minor +

    Returns the minor number for a request status.

    +

    since: 1.0

    +
    restriction_check +

    Checks whether the ICalComponent is valid.

    +

    since: 1.0

    +
    restriction_compare +

    Compares the kind of restriction and the count to determine whether it is valid.

    +

    since: 1.0

    +
    set_unknown_token_handling_setting +

    Sets ICalUnknowntokenhandling.

    +

    since: 1.0

    +
    +
    +
    +
    + + + +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/index.json b/static/libical-glib/index.json new file mode 100644 index 00000000..05f9f61c --- /dev/null +++ b/static/libical-glib/index.json @@ -0,0 +1 @@ +{"meta":{"ns":"ICalGLib","version":"3.0","generator":"gi-docgen","generator-version":"2023.3"},"symbols":[{"type":"callback","name":"ComponentForeachRecurrenceFunc","ctype":"ICalComponentForeachRecurrenceFunc","summary":"No description available.","deprecated":null},{"type":"callback","name":"ComponentForeachTZIDFunc","ctype":"ICalComponentForeachTZIDFunc","summary":"No description available.","deprecated":null},{"type":"callback","name":"MimeParseFunc","ctype":"ICalMimeParseFunc","summary":"No description available.","deprecated":null},{"type":"callback","name":"ParserLineGenFunc","ctype":"ICalParserLineGenFunc","summary":"No description available.","deprecated":null},{"type":"class","name":"Array","ctype":"ICalArray","summary":"This is the ICalArray instance.","deprecated":null},{"type":"class","name":"Attach","ctype":"ICalAttach","summary":"This is the ICalAttach instance.","deprecated":null},{"type":"class","name":"CompIter","ctype":"ICalCompIter","summary":"This is the ICalCompIter instance.","deprecated":null},{"type":"class","name":"Component","ctype":"ICalComponent","summary":"This is the ICalComponent instance.","deprecated":null},{"type":"class","name":"Datetimeperiod","ctype":"ICalDatetimeperiod","summary":"This is the ICalDatetimeperiod instance.","deprecated":null},{"type":"class","name":"Duration","ctype":"ICalDuration","summary":"This is the ICalDuration instance.","deprecated":null},{"type":"class","name":"Geo","ctype":"ICalGeo","summary":"This is the ICalGeo instance.","deprecated":null},{"type":"class","name":"Object","ctype":"ICalObject","summary":"This is an ICalObject instance struct.","deprecated":null},{"type":"class","name":"Parameter","ctype":"ICalParameter","summary":"This is the ICalParameter instance.","deprecated":null},{"type":"class","name":"Parser","ctype":"ICalParser","summary":"This is the ICalParser instance.","deprecated":null},{"type":"class","name":"Period","ctype":"ICalPeriod","summary":"This is the ICalPeriod instance.","deprecated":null},{"type":"class","name":"Property","ctype":"ICalProperty","summary":"This is the ICalProperty instance.","deprecated":null},{"type":"class","name":"RecurIterator","ctype":"ICalRecurIterator","summary":"This is the ICalRecurIterator instance.","deprecated":null},{"type":"class","name":"Recurrence","ctype":"ICalRecurrence","summary":"This is the ICalRecurrence instance.","deprecated":null},{"type":"class","name":"Reqstat","ctype":"ICalReqstat","summary":"This is the ICalReqstat instance.","deprecated":null},{"type":"class","name":"Time","ctype":"ICalTime","summary":"This is the ICalTime instance.","deprecated":null},{"type":"class","name":"TimeSpan","ctype":"ICalTimeSpan","summary":"This is the ICalTimeSpan instance.","deprecated":null},{"type":"class","name":"Timezone","ctype":"ICalTimezone","summary":"This is the ICalTimezone instance.","deprecated":null},{"type":"class","name":"Trigger","ctype":"ICalTrigger","summary":"This is the ICalTrigger instance.","deprecated":null},{"type":"class","name":"Value","ctype":"ICalValue","summary":"This is the ICalValue instance.","deprecated":null},{"type":"ctor","name":"array_new","type_name":"Timezone","ident":"i_cal_timezone_array_new","summary":"Creates a new array of timezones.","deprecated":null},{"type":"ctor","name":"new","type_name":"Component","ident":"i_cal_component_new","summary":"Creates a new #ICalComponent with specific type.","deprecated":null},{"type":"ctor","name":"new","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_new","summary":"Creates a new #ICalDatetimeperiod.","deprecated":null},{"type":"ctor","name":"new","type_name":"Geo","ident":"i_cal_geo_new","summary":"Creates a new #ICalGeo.","deprecated":null},{"type":"ctor","name":"new","type_name":"Parameter","ident":"i_cal_parameter_new","summary":"Creates a new #ICalParameter according to the kind type.","deprecated":null},{"type":"ctor","name":"new","type_name":"Parser","ident":"i_cal_parser_new","summary":"Creates a default #ICalParser.","deprecated":null},{"type":"ctor","name":"new","type_name":"Property","ident":"i_cal_property_new","summary":"Creates a #ICalProperty of the target type.","deprecated":null},{"type":"ctor","name":"new","type_name":"RecurIterator","ident":"i_cal_recur_iterator_new","summary":"Creates an #ICalRecurIterator.","deprecated":null},{"type":"ctor","name":"new","type_name":"Recurrence","ident":"i_cal_recurrence_new","summary":"Creates a new #ICalRecurrence.","deprecated":null},{"type":"ctor","name":"new","type_name":"Time","ident":"i_cal_time_new","summary":"Creates a new #ICalTime.","deprecated":null},{"type":"ctor","name":"new","type_name":"TimeSpan","ident":"i_cal_time_span_new","summary":"Creates a new #ICalTimeSpan.","deprecated":null},{"type":"ctor","name":"new","type_name":"Timezone","ident":"i_cal_timezone_new","summary":"The constructor of the type #ICalTimezone.","deprecated":null},{"type":"ctor","name":"new","type_name":"Value","ident":"i_cal_value_new","summary":"Creates a new #ICalValue with specific kind.","deprecated":null},{"type":"ctor","name":"new_acceptresponse","type_name":"Property","ident":"i_cal_property_new_acceptresponse","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_acknowledged","type_name":"Property","ident":"i_cal_property_new_acknowledged","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_action","type_name":"Property","ident":"i_cal_property_new_action","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_action","type_name":"Value","ident":"i_cal_value_new_action","summary":"Creates a new #ICalValue with the type action.","deprecated":null},{"type":"ctor","name":"new_actionparam","type_name":"Parameter","ident":"i_cal_parameter_new_actionparam","summary":"Creates a new #ICalParameter according to the action type.","deprecated":null},{"type":"ctor","name":"new_allowconflict","type_name":"Property","ident":"i_cal_property_new_allowconflict","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_altrep","type_name":"Parameter","ident":"i_cal_parameter_new_altrep","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_attach","type_name":"Property","ident":"i_cal_property_new_attach","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_attach","type_name":"Value","ident":"i_cal_value_new_attach","summary":"Creates a new #ICalValue with the type attach.","deprecated":null},{"type":"ctor","name":"new_attendee","type_name":"Property","ident":"i_cal_property_new_attendee","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_bad_duration","type_name":"Duration","ident":"i_cal_duration_new_bad_duration","summary":"Creates a bad #ICalDuration.","deprecated":null},{"type":"ctor","name":"new_binary","type_name":"Value","ident":"i_cal_value_new_binary","summary":"Creates a new #ICalValue with the type binary.","deprecated":null},{"type":"ctor","name":"new_boolean","type_name":"Value","ident":"i_cal_value_new_boolean","summary":"Creates a new #ICalValue with the type boolean.","deprecated":null},{"type":"ctor","name":"new_busytype","type_name":"Property","ident":"i_cal_property_new_busytype","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_busytype","type_name":"Value","ident":"i_cal_value_new_busytype","summary":"Creates a new #ICalValue with the type busytype.","deprecated":null},{"type":"ctor","name":"new_caladdress","type_name":"Value","ident":"i_cal_value_new_caladdress","summary":"Creates a new #ICalValue with the type caladdress.","deprecated":null},{"type":"ctor","name":"new_calendaraddress","type_name":"Property","ident":"i_cal_property_new_calendaraddress","summary":"Creates a new #ICalProperty of kind %I_CAL_CALENDARADDRESS_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_calid","type_name":"Property","ident":"i_cal_property_new_calid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_calmaster","type_name":"Property","ident":"i_cal_property_new_calmaster","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_calscale","type_name":"Property","ident":"i_cal_property_new_calscale","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_capversion","type_name":"Property","ident":"i_cal_property_new_capversion","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_carid","type_name":"Property","ident":"i_cal_property_new_carid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_carlevel","type_name":"Property","ident":"i_cal_property_new_carlevel","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_carlevel","type_name":"Value","ident":"i_cal_value_new_carlevel","summary":"Creates a new #ICalValue with the type carlevel.","deprecated":null},{"type":"ctor","name":"new_categories","type_name":"Property","ident":"i_cal_property_new_categories","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_charset","type_name":"Parameter","ident":"i_cal_parameter_new_charset","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_class","type_name":"Property","ident":"i_cal_property_new_class","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_class","type_name":"Value","ident":"i_cal_value_new_class","summary":"Creates a new #ICalValue with the type class.","deprecated":null},{"type":"ctor","name":"new_cmd","type_name":"Property","ident":"i_cal_property_new_cmd","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_cmd","type_name":"Value","ident":"i_cal_value_new_cmd","summary":"Creates a new #ICalValue with the type cmd.","deprecated":null},{"type":"ctor","name":"new_cn","type_name":"Parameter","ident":"i_cal_parameter_new_cn","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_color","type_name":"Property","ident":"i_cal_property_new_color","summary":"Creates a new color #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_comment","type_name":"Property","ident":"i_cal_property_new_comment","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_completed","type_name":"Property","ident":"i_cal_property_new_completed","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_components","type_name":"Property","ident":"i_cal_property_new_components","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_conference","type_name":"Property","ident":"i_cal_property_new_conference","summary":"Creates a new #ICalProperty of kind %I_CAL_CONFERENCE_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_contact","type_name":"Property","ident":"i_cal_property_new_contact","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_created","type_name":"Property","ident":"i_cal_property_new_created","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_csid","type_name":"Property","ident":"i_cal_property_new_csid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_current_with_zone","type_name":"Time","ident":"i_cal_time_new_current_with_zone","summary":"Creates a #ICalTime according to the timezone and current time.","deprecated":null},{"type":"ctor","name":"new_cutype","type_name":"Parameter","ident":"i_cal_parameter_new_cutype","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_date","type_name":"Value","ident":"i_cal_value_new_date","summary":"Creates a new #ICalValue with the type date.","deprecated":null},{"type":"ctor","name":"new_datemax","type_name":"Property","ident":"i_cal_property_new_datemax","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_datemin","type_name":"Property","ident":"i_cal_property_new_datemin","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_datetime","type_name":"Value","ident":"i_cal_value_new_datetime","summary":"Creates a new #ICalValue with the type datetime.","deprecated":null},{"type":"ctor","name":"new_datetimedate","type_name":"Value","ident":"i_cal_value_new_datetimedate","summary":"Creates a new #ICalValue with the type datetimedate (DATE-TIME or DATE).","deprecated":null},{"type":"ctor","name":"new_datetimeperiod","type_name":"Value","ident":"i_cal_value_new_datetimeperiod","summary":"Creates a new #ICalValue with the type datetimeperiod.","deprecated":null},{"type":"ctor","name":"new_decreed","type_name":"Property","ident":"i_cal_property_new_decreed","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_defaultcharset","type_name":"Property","ident":"i_cal_property_new_defaultcharset","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_defaultlocale","type_name":"Property","ident":"i_cal_property_new_defaultlocale","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_defaulttzid","type_name":"Property","ident":"i_cal_property_new_defaulttzid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_defaultvcars","type_name":"Property","ident":"i_cal_property_new_defaultvcars","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_delegatedfrom","type_name":"Parameter","ident":"i_cal_parameter_new_delegatedfrom","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_delegatedto","type_name":"Parameter","ident":"i_cal_parameter_new_delegatedto","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_deny","type_name":"Property","ident":"i_cal_property_new_deny","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_derived","type_name":"Parameter","ident":"i_cal_parameter_new_derived","summary":"Creates a new #ICalParameter of kind %I_CAL_DERIVED_PARAMETER holding value @v of type #ICalParameterDerived","deprecated":null},{"type":"ctor","name":"new_description","type_name":"Property","ident":"i_cal_property_new_description","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_dir","type_name":"Parameter","ident":"i_cal_parameter_new_dir","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_display","type_name":"Parameter","ident":"i_cal_parameter_new_display","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_dtend","type_name":"Property","ident":"i_cal_property_new_dtend","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_dtstamp","type_name":"Property","ident":"i_cal_property_new_dtstamp","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_dtstart","type_name":"Property","ident":"i_cal_property_new_dtstart","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_due","type_name":"Property","ident":"i_cal_property_new_due","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_duration","type_name":"Property","ident":"i_cal_property_new_duration","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_duration","type_name":"Value","ident":"i_cal_value_new_duration","summary":"Creates a new #ICalValue with the type duration.","deprecated":null},{"type":"ctor","name":"new_email","type_name":"Parameter","ident":"i_cal_parameter_new_email","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_enable","type_name":"Parameter","ident":"i_cal_parameter_new_enable","summary":"Creates a new #ICalParameter according to the enable type.","deprecated":null},{"type":"ctor","name":"new_encoding","type_name":"Parameter","ident":"i_cal_parameter_new_encoding","summary":"Creates a new #ICalParameter according to the encoding type.","deprecated":null},{"type":"ctor","name":"new_estimatedduration","type_name":"Property","ident":"i_cal_property_new_estimatedduration","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_exdate","type_name":"Property","ident":"i_cal_property_new_exdate","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_expand","type_name":"Property","ident":"i_cal_property_new_expand","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_exrule","type_name":"Property","ident":"i_cal_property_new_exrule","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_fbtype","type_name":"Parameter","ident":"i_cal_parameter_new_fbtype","summary":"Creates a new #ICalParameter according to the fbtype type.","deprecated":null},{"type":"ctor","name":"new_feature","type_name":"Parameter","ident":"i_cal_parameter_new_feature","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_filename","type_name":"Parameter","ident":"i_cal_parameter_new_filename","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_float","type_name":"Value","ident":"i_cal_value_new_float","summary":"Creates a new #ICalValue with the type float.","deprecated":null},{"type":"ctor","name":"new_fmttype","type_name":"Parameter","ident":"i_cal_parameter_new_fmttype","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_freebusy","type_name":"Property","ident":"i_cal_property_new_freebusy","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_from_bytes","type_name":"Attach","ident":"i_cal_attach_new_from_bytes","summary":"Creates a new #ICalAttach from the data in bytes. Takes a reference of @bytes, increase the reference before calling ...","deprecated":null},{"type":"ctor","name":"new_from_data","type_name":"Attach","ident":"i_cal_attach_new_from_data","summary":"Creates a new #ICalAttach from the data.","deprecated":null},{"type":"ctor","name":"new_from_day_of_year","type_name":"Time","ident":"i_cal_time_new_from_day_of_year","summary":"Creates a new time, given a day of year and a year.","deprecated":null},{"type":"ctor","name":"new_from_int","type_name":"Duration","ident":"i_cal_duration_new_from_int","summary":"Creates a #ICalDuration from the duration in second.","deprecated":null},{"type":"ctor","name":"new_from_int","type_name":"Trigger","ident":"i_cal_trigger_new_from_int","summary":"Creates a #ICalTrigger from integer.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Component","ident":"i_cal_component_new_from_string","summary":"Creates a new #ICalComponent based on a string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Duration","ident":"i_cal_duration_new_from_string","summary":"Creates a #ICalDuration from the duration in string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Parameter","ident":"i_cal_parameter_new_from_string","summary":"Creates a #ICalParameter from a string of form \"PARAMNAME=VALUE\".","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Period","ident":"i_cal_period_new_from_string","summary":"Creates a #ICalPeriod from a string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Property","ident":"i_cal_property_new_from_string","summary":"Creates a #ICalProperty from a string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Recurrence","ident":"i_cal_recurrence_new_from_string","summary":"Converts a string to a #ICalRecurrence.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Reqstat","ident":"i_cal_reqstat_new_from_string","summary":"Creates a #ICalReqstat from string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Time","ident":"i_cal_time_new_from_string","summary":"Creates a time from an ISO format string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Trigger","ident":"i_cal_trigger_new_from_string","summary":"Creates a #ICalTrigger from a string.","deprecated":null},{"type":"ctor","name":"new_from_string","type_name":"Value","ident":"i_cal_value_new_from_string","summary":"Creates a new #ICalValue based on the #ICalValueKind and a string.","deprecated":null},{"type":"ctor","name":"new_from_timet_with_zone","type_name":"Time","ident":"i_cal_time_new_from_timet_with_zone","summary":"Converts seconds past UNIX epoch to a timetype, using timezones.","deprecated":null},{"type":"ctor","name":"new_from_url","type_name":"Attach","ident":"i_cal_attach_new_from_url","summary":"Creates a new #ICalAttach from the url.","deprecated":null},{"type":"ctor","name":"new_from_value_string","type_name":"Parameter","ident":"i_cal_parameter_new_from_value_string","summary":"Creates a new #ICalParameter from just the value, the part after the \"=\"","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Array","ident":"i_cal_array_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Attach","ident":"i_cal_attach_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"CompIter","ident":"i_cal_comp_iter_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Component","ident":"i_cal_component_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Duration","ident":"i_cal_duration_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Geo","ident":"i_cal_geo_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Parameter","ident":"i_cal_parameter_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Parser","ident":"i_cal_parser_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Period","ident":"i_cal_period_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Property","ident":"i_cal_property_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"RecurIterator","ident":"i_cal_recur_iterator_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Recurrence","ident":"i_cal_recurrence_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Reqstat","ident":"i_cal_reqstat_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Time","ident":"i_cal_time_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"TimeSpan","ident":"i_cal_time_span_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Timezone","ident":"i_cal_timezone_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Trigger","ident":"i_cal_trigger_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_full","type_name":"Value","ident":"i_cal_value_new_full","summary":"Create a new libical-glib object from the native libical object and the owner.","deprecated":null},{"type":"ctor","name":"new_geo","type_name":"Property","ident":"i_cal_property_new_geo","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_geo","type_name":"Value","ident":"i_cal_value_new_geo","summary":"Creates a new #ICalValue with the type geo.","deprecated":null},{"type":"ctor","name":"new_grant","type_name":"Property","ident":"i_cal_property_new_grant","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_iana","type_name":"Parameter","ident":"i_cal_parameter_new_iana","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_id","type_name":"Parameter","ident":"i_cal_parameter_new_id","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_image","type_name":"Property","ident":"i_cal_property_new_image","summary":"Creates a new #ICalProperty of kind %I_CAL_IMAGE_PROPERTY holding value @v of type #ICalAttach","deprecated":null},{"type":"ctor","name":"new_integer","type_name":"Value","ident":"i_cal_value_new_integer","summary":"Creates a new #ICalValue with the type integer.","deprecated":null},{"type":"ctor","name":"new_itipversion","type_name":"Property","ident":"i_cal_property_new_itipversion","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_label","type_name":"Parameter","ident":"i_cal_parameter_new_label","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_language","type_name":"Parameter","ident":"i_cal_parameter_new_language","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_lastmodified","type_name":"Property","ident":"i_cal_property_new_lastmodified","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_latency","type_name":"Parameter","ident":"i_cal_parameter_new_latency","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_local","type_name":"Parameter","ident":"i_cal_parameter_new_local","summary":"Creates a new #ICalParameter according to the local type.","deprecated":null},{"type":"ctor","name":"new_localize","type_name":"Parameter","ident":"i_cal_parameter_new_localize","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_location","type_name":"Property","ident":"i_cal_property_new_location","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_locationtype","type_name":"Property","ident":"i_cal_property_new_locationtype","summary":"Creates a new #ICalProperty of kind %I_CAL_LOCATIONTYPE_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_managedid","type_name":"Parameter","ident":"i_cal_parameter_new_managedid","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_maxcomponentsize","type_name":"Property","ident":"i_cal_property_new_maxcomponentsize","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_maxdate","type_name":"Property","ident":"i_cal_property_new_maxdate","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_maxresults","type_name":"Property","ident":"i_cal_property_new_maxresults","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_maxresultssize","type_name":"Property","ident":"i_cal_property_new_maxresultssize","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_member","type_name":"Parameter","ident":"i_cal_parameter_new_member","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_method","type_name":"Property","ident":"i_cal_property_new_method","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_method","type_name":"Value","ident":"i_cal_value_new_method","summary":"Creates a new #ICalValue with the type method.","deprecated":null},{"type":"ctor","name":"new_mindate","type_name":"Property","ident":"i_cal_property_new_mindate","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_modified","type_name":"Parameter","ident":"i_cal_parameter_new_modified","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_multipart","type_name":"Property","ident":"i_cal_property_new_multipart","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_name","type_name":"Property","ident":"i_cal_property_new_name","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_null_date","type_name":"Time","ident":"i_cal_time_new_null_date","summary":"Creates a null date, which indicates no time has been set.","deprecated":null},{"type":"ctor","name":"new_null_duration","type_name":"Duration","ident":"i_cal_duration_new_null_duration","summary":"Creates a #ICalDuration with all the fields to be zero.","deprecated":null},{"type":"ctor","name":"new_null_period","type_name":"Period","ident":"i_cal_period_new_null_period","summary":"Creates a default #ICalPeriod.","deprecated":null},{"type":"ctor","name":"new_null_time","type_name":"Time","ident":"i_cal_time_new_null_time","summary":"Creates a default time which is an epoch time.","deprecated":null},{"type":"ctor","name":"new_options","type_name":"Parameter","ident":"i_cal_parameter_new_options","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_order","type_name":"Parameter","ident":"i_cal_parameter_new_order","summary":"Creates a new #ICalParameter of kind %I_CAL_ORDER_PARAMETER holding value @v.","deprecated":null},{"type":"ctor","name":"new_organizer","type_name":"Property","ident":"i_cal_property_new_organizer","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_owner","type_name":"Property","ident":"i_cal_property_new_owner","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_participant","type_name":"Component","ident":"i_cal_component_new_participant","summary":"Creates a #ICalComponent of type %I_CAL_PARTICIPANT_COMPONENT.","deprecated":null},{"type":"ctor","name":"new_participanttype","type_name":"Property","ident":"i_cal_property_new_participanttype","summary":"Creates a new #ICalProperty of kind %I_CAL_PARTICIPANTTYPE_PROPERTY holding value @v of type #ICalPropertyParticipanttype","deprecated":null},{"type":"ctor","name":"new_participanttype","type_name":"Value","ident":"i_cal_value_new_participanttype","summary":"Creates a new #ICalValue of kind %I_CAL_PARTICIPANTTYPE_VALUE holding value @v of type #ICalPropertyParticipanttype","deprecated":null},{"type":"ctor","name":"new_partstat","type_name":"Parameter","ident":"i_cal_parameter_new_partstat","summary":"Creates a new #ICalParameter according to the partstat type.","deprecated":null},{"type":"ctor","name":"new_patchaction","type_name":"Parameter","ident":"i_cal_parameter_new_patchaction","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_patchdelete","type_name":"Property","ident":"i_cal_property_new_patchdelete","summary":"Creates a new #ICalProperty of kind %I_CAL_PATCHDELETE_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_patchorder","type_name":"Property","ident":"i_cal_property_new_patchorder","summary":"Creates a new #ICalProperty of kind %I_CAL_PATCHORDER_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_patchparameter","type_name":"Property","ident":"i_cal_property_new_patchparameter","summary":"Creates a new #ICalProperty of kind %I_CAL_PATCHPARAMETER_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_patchtarget","type_name":"Property","ident":"i_cal_property_new_patchtarget","summary":"Creates a new #ICalProperty of kind %I_CAL_PATCHTARGET_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_patchversion","type_name":"Property","ident":"i_cal_property_new_patchversion","summary":"Creates a new #ICalProperty of kind %I_CAL_PATCHVERSION_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_percentcomplete","type_name":"Property","ident":"i_cal_property_new_percentcomplete","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_period","type_name":"Value","ident":"i_cal_value_new_period","summary":"Creates a new #ICalValue with the type period.","deprecated":null},{"type":"ctor","name":"new_permission","type_name":"Property","ident":"i_cal_property_new_permission","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_pollcompletion","type_name":"Property","ident":"i_cal_property_new_pollcompletion","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_pollcompletion","type_name":"Value","ident":"i_cal_value_new_pollcompletion","summary":"Creates a new #ICalValue with the type pollcompletion.","deprecated":null},{"type":"ctor","name":"new_pollitemid","type_name":"Property","ident":"i_cal_property_new_pollitemid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_pollmode","type_name":"Property","ident":"i_cal_property_new_pollmode","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_pollmode","type_name":"Value","ident":"i_cal_value_new_pollmode","summary":"Creates a new #ICalValue with the type pollmode.","deprecated":null},{"type":"ctor","name":"new_pollproperties","type_name":"Property","ident":"i_cal_property_new_pollproperties","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_pollwinner","type_name":"Property","ident":"i_cal_property_new_pollwinner","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_priority","type_name":"Property","ident":"i_cal_property_new_priority","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_prodid","type_name":"Property","ident":"i_cal_property_new_prodid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_proximity","type_name":"Property","ident":"i_cal_property_new_proximity","summary":"Creates a new #ICalProperty of kind %I_CAL_PROXIMITY_PROPERTY holding value @v of type #ICalPropertyProximity","deprecated":null},{"type":"ctor","name":"new_proximity","type_name":"Value","ident":"i_cal_value_new_proximity","summary":"Creates a new #ICalValue of kind %I_CAL_PROXIMITY_VALUE holding value @v of type #ICalPropertyProximity","deprecated":null},{"type":"ctor","name":"new_publiccomment","type_name":"Parameter","ident":"i_cal_parameter_new_publiccomment","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_query","type_name":"Property","ident":"i_cal_property_new_query","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_query","type_name":"Value","ident":"i_cal_value_new_query","summary":"Creates a new #ICalValue with the type query.","deprecated":null},{"type":"ctor","name":"new_queryid","type_name":"Property","ident":"i_cal_property_new_queryid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_querylevel","type_name":"Property","ident":"i_cal_property_new_querylevel","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_querylevel","type_name":"Value","ident":"i_cal_value_new_querylevel","summary":"Creates a new #ICalValue with the type querylevel.","deprecated":null},{"type":"ctor","name":"new_queryname","type_name":"Property","ident":"i_cal_property_new_queryname","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_range","type_name":"Parameter","ident":"i_cal_parameter_new_range","summary":"Creates a new #ICalParameter according to the range type.","deprecated":null},{"type":"ctor","name":"new_rdate","type_name":"Property","ident":"i_cal_property_new_rdate","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_reason","type_name":"Parameter","ident":"i_cal_parameter_new_reason","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_recur","type_name":"Value","ident":"i_cal_value_new_recur","summary":"Creates a new #ICalValue with the type recur.","deprecated":null},{"type":"ctor","name":"new_recuraccepted","type_name":"Property","ident":"i_cal_property_new_recuraccepted","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_recurexpand","type_name":"Property","ident":"i_cal_property_new_recurexpand","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_recurlimit","type_name":"Property","ident":"i_cal_property_new_recurlimit","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_recurrenceid","type_name":"Property","ident":"i_cal_property_new_recurrenceid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_refreshinterval","type_name":"Property","ident":"i_cal_property_new_refreshinterval","summary":"Creates a new #ICalProperty of kind %I_CAL_REFRESHINTERVAL_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_related","type_name":"Parameter","ident":"i_cal_parameter_new_related","summary":"Creates a new #ICalParameter according to the related type.","deprecated":null},{"type":"ctor","name":"new_relatedto","type_name":"Property","ident":"i_cal_property_new_relatedto","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_relcalid","type_name":"Property","ident":"i_cal_property_new_relcalid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_reltype","type_name":"Parameter","ident":"i_cal_parameter_new_reltype","summary":"Creates a new #ICalParameter according to the reltype type.","deprecated":null},{"type":"ctor","name":"new_repeat","type_name":"Property","ident":"i_cal_property_new_repeat","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_replyurl","type_name":"Property","ident":"i_cal_property_new_replyurl","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_requeststatus","type_name":"Property","ident":"i_cal_property_new_requeststatus","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_requeststatus","type_name":"Value","ident":"i_cal_value_new_requeststatus","summary":"Creates a new #ICalValue with the type requeststatus.","deprecated":null},{"type":"ctor","name":"new_required","type_name":"Parameter","ident":"i_cal_parameter_new_required","summary":"Creates a new #ICalParameter according to the required type.","deprecated":null},{"type":"ctor","name":"new_resources","type_name":"Property","ident":"i_cal_property_new_resources","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_resourcetype","type_name":"Property","ident":"i_cal_property_new_resourcetype","summary":"Creates a new #ICalProperty of kind %I_CAL_RESOURCETYPE_PROPERTY holding value @v of type #ICalPropertyResourcetype","deprecated":null},{"type":"ctor","name":"new_resourcetype","type_name":"Value","ident":"i_cal_value_new_resourcetype","summary":"Creates a new #ICalValue of kind %I_CAL_RESOURCETYPE_VALUE holding value @v of type #ICalPropertyResourcetype","deprecated":null},{"type":"ctor","name":"new_response","type_name":"Parameter","ident":"i_cal_parameter_new_response","summary":"Creates a new #ICalParameter according to the response type.","deprecated":null},{"type":"ctor","name":"new_response","type_name":"Property","ident":"i_cal_property_new_response","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_restriction","type_name":"Property","ident":"i_cal_property_new_restriction","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_role","type_name":"Parameter","ident":"i_cal_parameter_new_role","summary":"Creates a new #ICalParameter according to the role type.","deprecated":null},{"type":"ctor","name":"new_rrule","type_name":"Property","ident":"i_cal_property_new_rrule","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_rsvp","type_name":"Parameter","ident":"i_cal_parameter_new_rsvp","summary":"Creates a new #ICalParameter according to the rsvp type.","deprecated":null},{"type":"ctor","name":"new_scheduleagent","type_name":"Parameter","ident":"i_cal_parameter_new_scheduleagent","summary":"Creates a new #ICalParameter according to the scheduleagent type.","deprecated":null},{"type":"ctor","name":"new_scheduleforcesend","type_name":"Parameter","ident":"i_cal_parameter_new_scheduleforcesend","summary":"Creates a new #ICalParameter according to the scheduleforcesend type.","deprecated":null},{"type":"ctor","name":"new_schedulestatus","type_name":"Parameter","ident":"i_cal_parameter_new_schedulestatus","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_schema","type_name":"Parameter","ident":"i_cal_parameter_new_schema","summary":"Creates a new #ICalParameter of kind %I_CAL_SCHEMA_PARAMETER holding value @v.","deprecated":null},{"type":"ctor","name":"new_scope","type_name":"Property","ident":"i_cal_property_new_scope","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_sentby","type_name":"Parameter","ident":"i_cal_parameter_new_sentby","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_sequence","type_name":"Property","ident":"i_cal_property_new_sequence","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_size","type_name":"Parameter","ident":"i_cal_parameter_new_size","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_source","type_name":"Property","ident":"i_cal_property_new_source","summary":"Creates a new #ICalProperty of kind %I_CAL_SOURCE_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_status","type_name":"Property","ident":"i_cal_property_new_status","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_status","type_name":"Value","ident":"i_cal_value_new_status","summary":"Creates a new #ICalValue with the type status.","deprecated":null},{"type":"ctor","name":"new_stayinformed","type_name":"Parameter","ident":"i_cal_parameter_new_stayinformed","summary":"Creates a new #ICalParameter according to the stayinformed type.","deprecated":null},{"type":"ctor","name":"new_storesexpanded","type_name":"Property","ident":"i_cal_property_new_storesexpanded","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_string","type_name":"Value","ident":"i_cal_value_new_string","summary":"Creates a new #ICalValue with the type string.","deprecated":null},{"type":"ctor","name":"new_structureddata","type_name":"Property","ident":"i_cal_property_new_structureddata","summary":"Creates a new #ICalProperty of kind %I_CAL_STRUCTUREDDATA_PROPERTY holding value @v of type #ICalAttach","deprecated":null},{"type":"ctor","name":"new_styleddescription","type_name":"Property","ident":"i_cal_property_new_styleddescription","summary":"Creates a new #ICalProperty of kind %I_CAL_STYLEDDESCRIPTION_PROPERTY holding value @v","deprecated":null},{"type":"ctor","name":"new_substate","type_name":"Parameter","ident":"i_cal_parameter_new_substate","summary":"Creates a new #ICalParameter according to the substate type.","deprecated":null},{"type":"ctor","name":"new_summary","type_name":"Property","ident":"i_cal_property_new_summary","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_target","type_name":"Property","ident":"i_cal_property_new_target","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_taskmode","type_name":"Property","ident":"i_cal_property_new_taskmode","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_taskmode","type_name":"Value","ident":"i_cal_value_new_taskmode","summary":"Creates a new #ICalValue with the type taskmode.","deprecated":null},{"type":"ctor","name":"new_text","type_name":"Value","ident":"i_cal_value_new_text","summary":"Creates a new #ICalValue with the type text.","deprecated":null},{"type":"ctor","name":"new_timet","type_name":"TimeSpan","ident":"i_cal_time_span_new_timet","summary":"Creates a new #ICalTimeSpan. Free it with g_object_unref(), when no longer needed.","deprecated":null},{"type":"ctor","name":"new_today","type_name":"Time","ident":"i_cal_time_new_today","summary":"Creates a #ICalTime representing today.","deprecated":null},{"type":"ctor","name":"new_transp","type_name":"Property","ident":"i_cal_property_new_transp","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_transp","type_name":"Value","ident":"i_cal_value_new_transp","summary":"Creates a new #ICalValue with the type transp.","deprecated":null},{"type":"ctor","name":"new_trigger","type_name":"Property","ident":"i_cal_property_new_trigger","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_trigger","type_name":"Value","ident":"i_cal_value_new_trigger","summary":"Creates a new #ICalValue with the type trigger.","deprecated":null},{"type":"ctor","name":"new_tzid","type_name":"Parameter","ident":"i_cal_parameter_new_tzid","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_tzid","type_name":"Property","ident":"i_cal_property_new_tzid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzidaliasof","type_name":"Property","ident":"i_cal_property_new_tzidaliasof","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzname","type_name":"Property","ident":"i_cal_property_new_tzname","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzoffsetfrom","type_name":"Property","ident":"i_cal_property_new_tzoffsetfrom","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzoffsetto","type_name":"Property","ident":"i_cal_property_new_tzoffsetto","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzuntil","type_name":"Property","ident":"i_cal_property_new_tzuntil","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_tzurl","type_name":"Property","ident":"i_cal_property_new_tzurl","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_uid","type_name":"Property","ident":"i_cal_property_new_uid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_uri","type_name":"Value","ident":"i_cal_value_new_uri","summary":"Creates a new #ICalValue with the type uri.","deprecated":null},{"type":"ctor","name":"new_url","type_name":"Property","ident":"i_cal_property_new_url","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_utcoffset","type_name":"Value","ident":"i_cal_value_new_utcoffset","summary":"Creates a new #ICalValue with the type utcoffset.","deprecated":null},{"type":"ctor","name":"new_vagenda","type_name":"Component","ident":"i_cal_component_new_vagenda","summary":"Creates a #ICalComponent with the type to be vagenda.","deprecated":null},{"type":"ctor","name":"new_valarm","type_name":"Component","ident":"i_cal_component_new_valarm","summary":"Creates a #ICalComponent with the type to be valarm.","deprecated":null},{"type":"ctor","name":"new_value","type_name":"Parameter","ident":"i_cal_parameter_new_value","summary":"Creates a new #ICalParameter according to the value type.","deprecated":null},{"type":"ctor","name":"new_vavailability","type_name":"Component","ident":"i_cal_component_new_vavailability","summary":"Creates a #ICalComponent with the type to be vavailability.","deprecated":null},{"type":"ctor","name":"new_vcalendar","type_name":"Component","ident":"i_cal_component_new_vcalendar","summary":"Creates a #ICalComponent with the type to be vcalendar.","deprecated":null},{"type":"ctor","name":"new_version","type_name":"Property","ident":"i_cal_property_new_version","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_vevent","type_name":"Component","ident":"i_cal_component_new_vevent","summary":"Creates a #ICalComponent with the type to be vevent.","deprecated":null},{"type":"ctor","name":"new_vfreebusy","type_name":"Component","ident":"i_cal_component_new_vfreebusy","summary":"Creates a #ICalComponent with the type to be vfreebusy.","deprecated":null},{"type":"ctor","name":"new_vjournal","type_name":"Component","ident":"i_cal_component_new_vjournal","summary":"Creates a #ICalComponent with the type to be vjournal.","deprecated":null},{"type":"ctor","name":"new_vlocation","type_name":"Component","ident":"i_cal_component_new_vlocation","summary":"Creates a #ICalComponent of type %I_CAL_VLOCATION_COMPONENT.","deprecated":null},{"type":"ctor","name":"new_voter","type_name":"Property","ident":"i_cal_property_new_voter","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_vpatch","type_name":"Component","ident":"i_cal_component_new_vpatch","summary":"Creates a #ICalComponent of type %I_CAL_VPATCH_COMPONENT.","deprecated":null},{"type":"ctor","name":"new_vpoll","type_name":"Component","ident":"i_cal_component_new_vpoll","summary":"Creates a #ICalComponent with the type to be vpoll.","deprecated":null},{"type":"ctor","name":"new_vquery","type_name":"Component","ident":"i_cal_component_new_vquery","summary":"Creates a #ICalComponent with the type to be vquery.","deprecated":null},{"type":"ctor","name":"new_vresource","type_name":"Component","ident":"i_cal_component_new_vresource","summary":"Creates a #ICalComponent of type %I_CAL_VRESOURCE_COMPONENT.","deprecated":null},{"type":"ctor","name":"new_vtimezone","type_name":"Component","ident":"i_cal_component_new_vtimezone","summary":"Creates a #ICalComponent with the type to be vtimezone.","deprecated":null},{"type":"ctor","name":"new_vtodo","type_name":"Component","ident":"i_cal_component_new_vtodo","summary":"Creates a #ICalComponent with the type to be vtodo.","deprecated":null},{"type":"ctor","name":"new_vvoter","type_name":"Component","ident":"i_cal_component_new_vvoter","summary":"Creates a #ICalComponent with the type to be vvoter.","deprecated":null},{"type":"ctor","name":"new_x","type_name":"Component","ident":"i_cal_component_new_x","summary":"Creates a new #ICalComponent based on name of x property.","deprecated":null},{"type":"ctor","name":"new_x","type_name":"Parameter","ident":"i_cal_parameter_new_x","summary":"No description available.","deprecated":null},{"type":"ctor","name":"new_x","type_name":"Property","ident":"i_cal_property_new_x","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_x","type_name":"Value","ident":"i_cal_value_new_x","summary":"Creates a new #ICalValue with the type x.","deprecated":null},{"type":"ctor","name":"new_xavailable","type_name":"Component","ident":"i_cal_component_new_xavailable","summary":"Creates a #ICalComponent with the type to be xavailable.","deprecated":null},{"type":"ctor","name":"new_xdaylight","type_name":"Component","ident":"i_cal_component_new_xdaylight","summary":"Creates a #ICalComponent with the type to be xdaylight.","deprecated":null},{"type":"ctor","name":"new_xlicclass","type_name":"Property","ident":"i_cal_property_new_xlicclass","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicclass","type_name":"Value","ident":"i_cal_value_new_xlicclass","summary":"Creates a new #ICalValue with the type xlicclass.","deprecated":null},{"type":"ctor","name":"new_xlicclustercount","type_name":"Property","ident":"i_cal_property_new_xlicclustercount","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xliccomparetype","type_name":"Parameter","ident":"i_cal_parameter_new_xliccomparetype","summary":"Creates a new #ICalParameter according to the xliccomparetype type.","deprecated":null},{"type":"ctor","name":"new_xlicerror","type_name":"Property","ident":"i_cal_property_new_xlicerror","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicerrortype","type_name":"Parameter","ident":"i_cal_parameter_new_xlicerrortype","summary":"Creates a new #ICalParameter according to the xlicerrortype type.","deprecated":null},{"type":"ctor","name":"new_xlicmimecharset","type_name":"Property","ident":"i_cal_property_new_xlicmimecharset","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicmimecid","type_name":"Property","ident":"i_cal_property_new_xlicmimecid","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicmimecontenttype","type_name":"Property","ident":"i_cal_property_new_xlicmimecontenttype","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicmimeencoding","type_name":"Property","ident":"i_cal_property_new_xlicmimeencoding","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicmimefilename","type_name":"Property","ident":"i_cal_property_new_xlicmimefilename","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xlicmimeoptinfo","type_name":"Property","ident":"i_cal_property_new_xlicmimeoptinfo","summary":"Creates a new #ICalProperty.","deprecated":null},{"type":"ctor","name":"new_xpatch","type_name":"Component","ident":"i_cal_component_new_xpatch","summary":"Creates a #ICalComponent of type %I_CAL_XPATCH_COMPONENT.","deprecated":null},{"type":"ctor","name":"new_xstandard","type_name":"Component","ident":"i_cal_component_new_xstandard","summary":"Creates a #ICalComponent with the type to be xstandard.","deprecated":null},{"type":"ctor","name":"new_xvote","type_name":"Component","ident":"i_cal_component_new_xvote","summary":"Creates a #ICalComponent with the type to be xvote.","deprecated":null},{"type":"enum","name":"ComponentKind","ctype":"ICalComponentKind","summary":"No description available.","deprecated":null},{"type":"enum","name":"ErrorEnum","ctype":"ICalErrorEnum","summary":"No description available.","deprecated":null},{"type":"enum","name":"ErrorState","ctype":"ICalErrorState","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterAction","ctype":"ICalParameterAction","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterCutype","ctype":"ICalParameterCutype","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterDerived","ctype":"ICalParameterDerived","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterDisplay","ctype":"ICalParameterDisplay","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterEnable","ctype":"ICalParameterEnable","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterEncoding","ctype":"ICalParameterEncoding","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterFbtype","ctype":"ICalParameterFbtype","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterFeature","ctype":"ICalParameterFeature","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterKind","ctype":"ICalParameterKind","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterLocal","ctype":"ICalParameterLocal","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterPartstat","ctype":"ICalParameterPartstat","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterPatchaction","ctype":"ICalParameterPatchaction","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterRange","ctype":"ICalParameterRange","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterRelated","ctype":"ICalParameterRelated","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterReltype","ctype":"ICalParameterReltype","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterRequired","ctype":"ICalParameterRequired","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterRole","ctype":"ICalParameterRole","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterRsvp","ctype":"ICalParameterRsvp","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterScheduleagent","ctype":"ICalParameterScheduleagent","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterScheduleforcesend","ctype":"ICalParameterScheduleforcesend","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterStayinformed","ctype":"ICalParameterStayinformed","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterSubstate","ctype":"ICalParameterSubstate","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterValue","ctype":"ICalParameterValue","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterXliccomparetype","ctype":"ICalParameterXliccomparetype","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParameterXlicerrortype","ctype":"ICalParameterXlicerrortype","summary":"No description available.","deprecated":null},{"type":"enum","name":"ParserState","ctype":"ICalParserState","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyAction","ctype":"ICalPropertyAction","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyBusytype","ctype":"ICalPropertyBusytype","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyCarlevel","ctype":"ICalPropertyCarlevel","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyCmd","ctype":"ICalPropertyCmd","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyKind","ctype":"ICalPropertyKind","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyMethod","ctype":"ICalPropertyMethod","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyParticipanttype","ctype":"ICalPropertyParticipanttype","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyPollcompletion","ctype":"ICalPropertyPollcompletion","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyPollmode","ctype":"ICalPropertyPollmode","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyProximity","ctype":"ICalPropertyProximity","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyQuerylevel","ctype":"ICalPropertyQuerylevel","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyResourcetype","ctype":"ICalPropertyResourcetype","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyStatus","ctype":"ICalPropertyStatus","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyTaskmode","ctype":"ICalPropertyTaskmode","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyTransp","ctype":"ICalPropertyTransp","summary":"No description available.","deprecated":null},{"type":"enum","name":"PropertyXlicclass","ctype":"ICalPropertyXlicclass","summary":"No description available.","deprecated":null},{"type":"enum","name":"Property_Class","ctype":"ICalProperty_Class","summary":"No description available.","deprecated":null},{"type":"enum","name":"RecurrenceArraySizes","ctype":"ICalRecurrenceArraySizes","summary":"No description available.","deprecated":null},{"type":"enum","name":"RecurrenceByRule","ctype":"ICalRecurrenceByRule","summary":"No description available.","deprecated":null},{"type":"enum","name":"RecurrenceFrequency","ctype":"ICalRecurrenceFrequency","summary":"No description available.","deprecated":null},{"type":"enum","name":"RecurrenceSkip","ctype":"ICalRecurrenceSkip","summary":"No description available.","deprecated":null},{"type":"enum","name":"RecurrenceWeekday","ctype":"ICalRecurrenceWeekday","summary":"No description available.","deprecated":null},{"type":"enum","name":"RequestStatus","ctype":"ICalRequestStatus","summary":"No description available.","deprecated":null},{"type":"enum","name":"RestrictionKind","ctype":"ICalRestrictionKind","summary":"No description available.","deprecated":null},{"type":"enum","name":"Unknowntokenhandling","ctype":"ICalUnknowntokenhandling","summary":"No description available.","deprecated":null},{"type":"enum","name":"ValueKind","ctype":"ICalValueKind","summary":"No description available.","deprecated":null},{"type":"function","name":"bt","ident":"i_cal_bt","summary":"No description available.","deprecated":null},{"type":"function","name":"errno_return","ident":"i_cal_errno_return","summary":"Returns the error stored in the library. If no error, return I_CAL_NO_ERROR.","deprecated":null},{"type":"function","name":"error_clear_errno","ident":"i_cal_error_clear_errno","summary":"No description available.","deprecated":null},{"type":"function","name":"error_crash_here","ident":"i_cal_error_crash_here","summary":"Shout out the errors to the compiler.","deprecated":null},{"type":"function","name":"error_get_error_state","ident":"i_cal_error_get_error_state","summary":"Gets the state of an error.","deprecated":null},{"type":"function","name":"error_perror","ident":"i_cal_error_perror","summary":"Gets the #ICalErrorEnum in the string representation. This method called the icalerrorno_return to get the current error.","deprecated":null},{"type":"function","name":"error_restore","ident":"i_cal_error_restore","summary":"Restores the error to specified state.","deprecated":null},{"type":"function","name":"error_set_errno","ident":"i_cal_error_set_errno","summary":"Sets the errno.","deprecated":null},{"type":"function","name":"error_set_error_state","ident":"i_cal_error_set_error_state","summary":"Sets the state to the corresponding error in the library.","deprecated":null},{"type":"function","name":"error_stop_here","ident":"i_cal_error_stop_here","summary":"No description available.","deprecated":null},{"type":"function","name":"error_strerror","ident":"i_cal_error_strerror","summary":"Translates the #ICalErrorEnum to the string representation.","deprecated":null},{"type":"function","name":"error_supress","ident":"i_cal_error_supress","summary":"Suppresses the error.","deprecated":null},{"type":"function","name":"get_unknown_token_handling_setting","ident":"i_cal_get_unknown_token_handling_setting","summary":"Gets the setting of #ICalUnknowntokenhandling.","deprecated":null},{"type":"function","name":"memory_add_tmp_buffer","ident":"i_cal_memory_add_tmp_buffer","summary":"Adds an existing buffer to the buffer ring.","deprecated":null},{"type":"function","name":"memory_append_char","ident":"i_cal_memory_append_char","summary":"Append the character to the buffer. Only use them on normally allocated memory, or on buffers created from icalmemory_new_buffer, ...","deprecated":null},{"type":"function","name":"memory_append_string","ident":"i_cal_memory_append_string","summary":"Appends the string to the buffer. Only use them on normally allocated memory, or on buffers created from icalmemory_new_buffer, ...","deprecated":null},{"type":"function","name":"memory_free_buffer","ident":"i_cal_memory_free_buffer","summary":"Frees the buffer.","deprecated":null},{"type":"function","name":"memory_free_ring","ident":"i_cal_memory_free_ring","summary":"Frees all the memory used in the ring.","deprecated":null},{"type":"function","name":"memory_new_buffer","ident":"i_cal_memory_new_buffer","summary":"Creates a new buffer with target size. The caller should deallocate it when necessary.","deprecated":null},{"type":"function","name":"memory_resize_buffer","ident":"i_cal_memory_resize_buffer","summary":"Resizes the buffer to the target size.","deprecated":null},{"type":"function","name":"memory_str_to_glib","ident":"i_cal_memory_str_to_glib","summary":"Transform a string allocated with icalmemory into one that can be freed with g_free.","deprecated":null},{"type":"function","name":"memory_strdup","ident":"i_cal_memory_strdup","summary":"A wrapper around strdup. Partly to trap calls to strdup, partly because in -ansi, gcc on Red Hat claims ...","deprecated":null},{"type":"function","name":"memory_tmp_buffer","ident":"i_cal_memory_tmp_buffer","summary":"Creates a buffer with target size.","deprecated":null},{"type":"function","name":"memory_tmp_copy","ident":"i_cal_memory_tmp_copy","summary":"Like strdup, but the buffer is on the ring.","deprecated":null},{"type":"function","name":"mime_parse","ident":"i_cal_mime_parse","summary":"Parses data to #ICalComponent using the given function.","deprecated":null},{"type":"function","name":"recur_expand_recurrence","ident":"i_cal_recur_expand_recurrence","summary":"Fills an array with the 'count' number of occurrences generated by the rrule. Note that the times are returned ...","deprecated":null},{"type":"function","name":"request_status_code","ident":"i_cal_request_status_code","summary":"Returns the code for a request status.","deprecated":null},{"type":"function","name":"request_status_desc","ident":"i_cal_request_status_desc","summary":"Returns the descriptive text for a request status.","deprecated":null},{"type":"function","name":"request_status_from_num","ident":"i_cal_request_status_from_num","summary":"Returns a request status for major/minor status numbers.","deprecated":null},{"type":"function","name":"request_status_major","ident":"i_cal_request_status_major","summary":"Returns the major number for a request status.","deprecated":null},{"type":"function","name":"request_status_minor","ident":"i_cal_request_status_minor","summary":"Returns the minor number for a request status.","deprecated":null},{"type":"function","name":"restriction_check","ident":"i_cal_restriction_check","summary":"Checks whether the #ICalComponent is valid.","deprecated":null},{"type":"function","name":"restriction_compare","ident":"i_cal_restriction_compare","summary":"Compares the kind of restriction and the count to determine whether it is valid.","deprecated":null},{"type":"function","name":"set_unknown_token_handling_setting","ident":"i_cal_set_unknown_token_handling_setting","summary":"Sets #ICalUnknowntokenhandling.","deprecated":null},{"type":"method","name":"add","type_name":"Time","ident":"i_cal_time_add","summary":"Adds a time duration on the time.","deprecated":null},{"type":"method","name":"add_component","type_name":"Component","ident":"i_cal_component_add_component","summary":"Adds a #ICalComponent into another #ICalComponent as a child component.","deprecated":null},{"type":"method","name":"add_depender","type_name":"Object","ident":"i_cal_object_add_depender","summary":"Adds a @depender into the list of objects which should not be destroyed before this @iobject. It's usually used ...","deprecated":null},{"type":"method","name":"add_line","type_name":"Parser","ident":"i_cal_parser_add_line","summary":"Add a line at one time into the #ICalParser until the parsing is complete and #ICalComponent will be returned.","deprecated":null},{"type":"method","name":"add_parameter","type_name":"Property","ident":"i_cal_property_add_parameter","summary":"Adds a #ICalParameter into the #ICalProperty. It behaves like set the copy of the #ICalParameter. Upon completion the native ...","deprecated":null},{"type":"method","name":"add_property","type_name":"Component","ident":"i_cal_component_add_property","summary":"Adds an #ICalProperty into #ICalComponent.","deprecated":null},{"type":"method","name":"adjust","type_name":"Time","ident":"i_cal_time_adjust","summary":"Adds or subtracts a number of days, hours, minutes and seconds from @tt.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Component","ident":"i_cal_component_as_ical_string","summary":"Converts a #ICalComponent to a string.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Duration","ident":"i_cal_duration_as_ical_string","summary":"Converts the #ICalDuration to the representation in string","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Parameter","ident":"i_cal_parameter_as_ical_string","summary":"Converts an #ICalParameter to the string representation.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Period","ident":"i_cal_period_as_ical_string","summary":"Translates #ICalPeriod to string.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Property","ident":"i_cal_property_as_ical_string","summary":"Converts a #ICalProperty to a string representation.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Time","ident":"i_cal_time_as_ical_string","summary":"Returns a string representation of the time, in RFC2445 format.","deprecated":null},{"type":"method","name":"as_ical_string","type_name":"Value","ident":"i_cal_value_as_ical_string","summary":"Converts the #ICalValue to a string.","deprecated":null},{"type":"method","name":"as_int","type_name":"Duration","ident":"i_cal_duration_as_int","summary":"Converts the #ICalDuration to the representation in second.","deprecated":null},{"type":"method","name":"as_timet","type_name":"Time","ident":"i_cal_time_as_timet","summary":"Returns the time as seconds past the UNIX epoch.","deprecated":null},{"type":"method","name":"as_timet_with_zone","type_name":"Time","ident":"i_cal_time_as_timet_with_zone","summary":"Returns the time as seconds past the UNIX epoch, using timezones.","deprecated":null},{"type":"method","name":"begin_component","type_name":"Component","ident":"i_cal_component_begin_component","summary":"Gets the #ICalCompIter pointing to the first child #ICalComponent.","deprecated":null},{"type":"method","name":"check_restrictions","type_name":"Component","ident":"i_cal_component_check_restrictions","summary":"Checks the number of restrictions in #ICalComponent.","deprecated":null},{"type":"method","name":"clean","type_name":"Parser","ident":"i_cal_parser_clean","summary":"We won't get a clean exit if some components did not have an \"END\" tag. Clear off any component ...","deprecated":null},{"type":"method","name":"clone","type_name":"Component","ident":"i_cal_component_clone","summary":"Deeply clone a #ICalComponent.","deprecated":null},{"type":"method","name":"clone","type_name":"Geo","ident":"i_cal_geo_clone","summary":"Creates a new #ICalGeo, copy of @geo.","deprecated":null},{"type":"method","name":"clone","type_name":"Parameter","ident":"i_cal_parameter_clone","summary":"Deep clone a #ICalParameter.","deprecated":null},{"type":"method","name":"clone","type_name":"Property","ident":"i_cal_property_clone","summary":"Deeply clone a #ICalProperty.","deprecated":null},{"type":"method","name":"clone","type_name":"Recurrence","ident":"i_cal_recurrence_clone","summary":"Creates a copy of the @src.","deprecated":null},{"type":"method","name":"clone","type_name":"Time","ident":"i_cal_time_clone","summary":"Creates a new #ICalTime, copy of @timetype.","deprecated":null},{"type":"method","name":"clone","type_name":"TimeSpan","ident":"i_cal_time_span_clone","summary":"Creates a new #ICalTimeSpan, clone of @src. Free it with g_object_unref(), when no longer needed.","deprecated":null},{"type":"method","name":"clone","type_name":"Value","ident":"i_cal_value_clone","summary":"Deeply clone a #ICalValue.","deprecated":null},{"type":"method","name":"compare","type_name":"Time","ident":"i_cal_time_compare","summary":"i_cal_time_compare returns an integer indicating the result of the comparison, as follow:","deprecated":null},{"type":"method","name":"compare","type_name":"Value","ident":"i_cal_value_compare","summary":"Compares two #ICalValue.","deprecated":null},{"type":"method","name":"compare_date_only","type_name":"Time","ident":"i_cal_time_compare_date_only","summary":"Like i_cal_time_compare(), but only use the date parts.","deprecated":null},{"type":"method","name":"compare_date_only_tz","type_name":"Time","ident":"i_cal_time_compare_date_only_tz","summary":"Like i_cal_time_compare_tz(), but only use the date parts; accepts timezone.","deprecated":null},{"type":"method","name":"contains","type_name":"TimeSpan","ident":"i_cal_time_span_contains","summary":"Checks whether one #ICalTimeSpan is contained in another #ICalTimeSpan.","deprecated":null},{"type":"method","name":"convert_errors","type_name":"Component","ident":"i_cal_component_convert_errors","summary":"Converts some X-LIC-ERROR properties into RETURN-STATUS properties.","deprecated":null},{"type":"method","name":"convert_timezone","type_name":"Time","ident":"i_cal_time_convert_timezone","summary":"Convert time from one timezone to another.","deprecated":null},{"type":"method","name":"convert_to_zone","type_name":"Time","ident":"i_cal_time_convert_to_zone","summary":"Converts @tt to @zone and return new #ICalTime object.","deprecated":null},{"type":"method","name":"convert_to_zone_inplace","type_name":"Time","ident":"i_cal_time_convert_to_zone_inplace","summary":"Converts @tt to @zone and store the result into @tt.","deprecated":null},{"type":"method","name":"copy","type_name":"Array","ident":"i_cal_array_copy","summary":"Creates a deep copy of #ICalArray with the same properties as the @array.","deprecated":null},{"type":"method","name":"copy","type_name":"Timezone","ident":"i_cal_timezone_copy","summary":"The clone method for #ICalTimezone.","deprecated":null},{"type":"method","name":"count_components","type_name":"Component","ident":"i_cal_component_count_components","summary":"Counts the child #ICalComponent with the target kind in the parent one.","deprecated":null},{"type":"method","name":"count_errors","type_name":"Component","ident":"i_cal_component_count_errors","summary":"Counts the number of errors in #ICalComponent.","deprecated":null},{"type":"method","name":"count_parameters","type_name":"Property","ident":"i_cal_property_count_parameters","summary":"Counts the parameters in the #ICalProperty.","deprecated":null},{"type":"method","name":"count_properties","type_name":"Component","ident":"i_cal_component_count_properties","summary":"Counts the number of #ICalProperty in #ICalComponent.","deprecated":null},{"type":"method","name":"day_of_week","type_name":"Time","ident":"i_cal_time_day_of_week","summary":"Returns the day of the week of the given time. Sunday is 1.","deprecated":null},{"type":"method","name":"day_of_year","type_name":"Time","ident":"i_cal_time_day_of_year","summary":"Returns the day of the year of the given time.","deprecated":null},{"type":"method","name":"deref","type_name":"CompIter","ident":"i_cal_comp_iter_deref","summary":"Gets the current #ICalComponent pointed by #ICalCompIter.","deprecated":null},{"type":"method","name":"dump_changes","type_name":"Timezone","ident":"i_cal_timezone_dump_changes","summary":"Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year given.","deprecated":null},{"type":"method","name":"element_at","type_name":"Array","ident":"i_cal_array_element_at","summary":"Gets the element located in the @position in the @array. NULL if position if out of bound.","deprecated":null},{"type":"method","name":"end_component","type_name":"Component","ident":"i_cal_component_end_component","summary":"Gets the #ICalCompIter pointing to the end child #ICalComponent.","deprecated":null},{"type":"method","name":"foreach_recurrence","type_name":"Component","ident":"i_cal_component_foreach_recurrence","summary":"Cycles through all recurrences of an event. This function will call the specified callback function for once for the ...","deprecated":null},{"type":"method","name":"foreach_tzid","type_name":"Component","ident":"i_cal_component_foreach_tzid","summary":"Applies the same manipulation on every tzid in #ICalComponent.","deprecated":null},{"type":"method","name":"free","type_name":"Array","ident":"i_cal_array_free","summary":"Frees the #ICalArray.","deprecated":null},{"type":"method","name":"free","type_name":"Component","ident":"i_cal_component_free","summary":"Frees a #ICalComponent.","deprecated":null},{"type":"method","name":"free","type_name":"Parameter","ident":"i_cal_parameter_free","summary":"Frees the native part of the ICalParameter.","deprecated":null},{"type":"method","name":"free","type_name":"Parser","ident":"i_cal_parser_free","summary":"Frees a #ICalParser.","deprecated":null},{"type":"method","name":"free","type_name":"Property","ident":"i_cal_property_free","summary":"Frees a #ICalProperty.","deprecated":null},{"type":"method","name":"free","type_name":"RecurIterator","ident":"i_cal_recur_iterator_free","summary":"Frees an iterator.","deprecated":null},{"type":"method","name":"free","type_name":"Timezone","ident":"i_cal_timezone_free","summary":"The destructor of #ICalTimezone.","deprecated":null},{"type":"method","name":"free","type_name":"Value","ident":"i_cal_value_free","summary":"Frees a #ICalValue.","deprecated":null},{"type":"method","name":"get_acceptresponse","type_name":"Property","ident":"i_cal_property_get_acceptresponse","summary":"Gets the acceptresponse of #ICalProperty.","deprecated":null},{"type":"method","name":"get_acknowledged","type_name":"Property","ident":"i_cal_property_get_acknowledged","summary":"Gets the acknowledged time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_action","type_name":"Property","ident":"i_cal_property_get_action","summary":"Gets the action of #ICalProperty.","deprecated":null},{"type":"method","name":"get_action","type_name":"Value","ident":"i_cal_value_get_action","summary":"Gets the action of #ICalValue.","deprecated":null},{"type":"method","name":"get_actionparam","type_name":"Parameter","ident":"i_cal_parameter_get_actionparam","summary":"No description available.","deprecated":null},{"type":"method","name":"get_allowconflict","type_name":"Property","ident":"i_cal_property_get_allowconflict","summary":"Gets the allowconflict of #ICalProperty.","deprecated":null},{"type":"method","name":"get_altrep","type_name":"Parameter","ident":"i_cal_parameter_get_altrep","summary":"No description available.","deprecated":null},{"type":"method","name":"get_always_destroy","type_name":"Object","ident":"i_cal_object_get_always_destroy","summary":"Obtain the @ICalObject::always-destroy property value.","deprecated":null},{"type":"method","name":"get_attach","type_name":"Property","ident":"i_cal_property_get_attach","summary":"Gets the attach of #ICalProperty.","deprecated":null},{"type":"method","name":"get_attach","type_name":"Value","ident":"i_cal_value_get_attach","summary":"Gets the attach of #ICalValue.","deprecated":null},{"type":"method","name":"get_attendee","type_name":"Property","ident":"i_cal_property_get_attendee","summary":"Gets the attendee of #ICalProperty.","deprecated":null},{"type":"method","name":"get_binary","type_name":"Value","ident":"i_cal_value_get_binary","summary":"Gets the binary of #ICalValue.","deprecated":null},{"type":"method","name":"get_boolean","type_name":"Value","ident":"i_cal_value_get_boolean","summary":"Gets the boolean of #ICalValue.","deprecated":null},{"type":"method","name":"get_busytype","type_name":"Property","ident":"i_cal_property_get_busytype","summary":"Gets the busytype of #ICalProperty.","deprecated":null},{"type":"method","name":"get_busytype","type_name":"Value","ident":"i_cal_value_get_busytype","summary":"Gets the busytype of #ICalValue.","deprecated":null},{"type":"method","name":"get_by","type_name":"Recurrence","ident":"i_cal_recurrence_get_by","summary":"Returns the element at the specified index of the 'by' array if it exists, 0 otherwise.","deprecated":null},{"type":"method","name":"get_by_array","type_name":"Recurrence","ident":"i_cal_recurrence_get_by_array","summary":"Gets the by[byrule] array from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_by_array_size","type_name":"Recurrence","ident":"i_cal_recurrence_get_by_array_size","summary":"Returns the size of given 'by' array from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_caladdress","type_name":"Value","ident":"i_cal_value_get_caladdress","summary":"Gets the caladdress of #ICalValue.","deprecated":null},{"type":"method","name":"get_calendaraddress","type_name":"Property","ident":"i_cal_property_get_calendaraddress","summary":"Gets value of the @prop of kind %I_CAL_CALENDARADDRESS_PROPERTY","deprecated":null},{"type":"method","name":"get_calid","type_name":"Property","ident":"i_cal_property_get_calid","summary":"Gets the calid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_calmaster","type_name":"Property","ident":"i_cal_property_get_calmaster","summary":"Gets the calmaster of #ICalProperty.","deprecated":null},{"type":"method","name":"get_calscale","type_name":"Property","ident":"i_cal_property_get_calscale","summary":"Gets the calscale of #ICalProperty.","deprecated":null},{"type":"method","name":"get_capversion","type_name":"Property","ident":"i_cal_property_get_capversion","summary":"Gets the capversion of #ICalProperty.","deprecated":null},{"type":"method","name":"get_carid","type_name":"Property","ident":"i_cal_property_get_carid","summary":"Gets the carid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_carlevel","type_name":"Property","ident":"i_cal_property_get_carlevel","summary":"Gets the carlevel of #ICalProperty.","deprecated":null},{"type":"method","name":"get_carlevel","type_name":"Value","ident":"i_cal_value_get_carlevel","summary":"Gets the carlevel of #ICalValue.","deprecated":null},{"type":"method","name":"get_categories","type_name":"Property","ident":"i_cal_property_get_categories","summary":"Gets the categories of #ICalProperty.","deprecated":null},{"type":"method","name":"get_charset","type_name":"Parameter","ident":"i_cal_parameter_get_charset","summary":"No description available.","deprecated":null},{"type":"method","name":"get_class","type_name":"Property","ident":"i_cal_property_get_class","summary":"Gets the class of #ICalProperty.","deprecated":null},{"type":"method","name":"get_class","type_name":"Value","ident":"i_cal_value_get_class","summary":"Gets the class of #ICalValue.","deprecated":null},{"type":"method","name":"get_cmd","type_name":"Property","ident":"i_cal_property_get_cmd","summary":"Gets the cmd of #ICalProperty.","deprecated":null},{"type":"method","name":"get_cmd","type_name":"Value","ident":"i_cal_value_get_cmd","summary":"Gets the cmd of #ICalValue.","deprecated":null},{"type":"method","name":"get_cn","type_name":"Parameter","ident":"i_cal_parameter_get_cn","summary":"No description available.","deprecated":null},{"type":"method","name":"get_code","type_name":"Reqstat","ident":"i_cal_reqstat_get_code","summary":"Gets the code of #ICalReqstat.","deprecated":null},{"type":"method","name":"get_color","type_name":"Property","ident":"i_cal_property_get_color","summary":"Gets the color property of the @prop.","deprecated":null},{"type":"method","name":"get_comment","type_name":"Component","ident":"i_cal_component_get_comment","summary":"Gets the comment of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_comment","type_name":"Property","ident":"i_cal_property_get_comment","summary":"Gets the comment of #ICalProperty.","deprecated":null},{"type":"method","name":"get_completed","type_name":"Property","ident":"i_cal_property_get_completed","summary":"Gets the completed time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_component","type_name":"Timezone","ident":"i_cal_timezone_get_component","summary":"Returns the VTIMEZONE component of a timezone.","deprecated":null},{"type":"method","name":"get_components","type_name":"Property","ident":"i_cal_property_get_components","summary":"Gets the components of #ICalProperty.","deprecated":null},{"type":"method","name":"get_conference","type_name":"Property","ident":"i_cal_property_get_conference","summary":"Gets value of the @prop of kind %I_CAL_CONFERENCE_PROPERTY","deprecated":null},{"type":"method","name":"get_contact","type_name":"Property","ident":"i_cal_property_get_contact","summary":"Gets the contact of #ICalProperty.","deprecated":null},{"type":"method","name":"get_count","type_name":"Recurrence","ident":"i_cal_recurrence_get_count","summary":"Gets the count from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_created","type_name":"Property","ident":"i_cal_property_get_created","summary":"Gets the created time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_csid","type_name":"Property","ident":"i_cal_property_get_csid","summary":"Gets the csid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_current_component","type_name":"Component","ident":"i_cal_component_get_current_component","summary":"Gets the current #ICalComponent in #ICalComponent.","deprecated":null},{"type":"method","name":"get_current_property","type_name":"Component","ident":"i_cal_component_get_current_property","summary":"Gets the current #ICalProperty in #ICalComponent.","deprecated":null},{"type":"method","name":"get_cutype","type_name":"Parameter","ident":"i_cal_parameter_get_cutype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_data","type_name":"Attach","ident":"i_cal_attach_get_data","summary":"Gets the data, if the #ICalAttach is built from the data.","deprecated":null},{"type":"method","name":"get_date","type_name":"Time","ident":"i_cal_time_get_date","summary":"Gets the year/month/date parts of the @timetype in one call.","deprecated":null},{"type":"method","name":"get_date","type_name":"Value","ident":"i_cal_value_get_date","summary":"Gets the date of #ICalValue.","deprecated":null},{"type":"method","name":"get_datemax","type_name":"Property","ident":"i_cal_property_get_datemax","summary":"Gets the datemax time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_datemin","type_name":"Property","ident":"i_cal_property_get_datemin","summary":"Gets the datemin time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_datetime","type_name":"Value","ident":"i_cal_value_get_datetime","summary":"Gets the datetime of #ICalValue.","deprecated":null},{"type":"method","name":"get_datetime_with_component","type_name":"Property","ident":"i_cal_property_get_datetime_with_component","summary":"If the property is a DATE-TIME with a TZID parameter and a corresponding VTIMEZONE is present in the component, ...","deprecated":null},{"type":"method","name":"get_datetimedate","type_name":"Value","ident":"i_cal_value_get_datetimedate","summary":"Gets the datetimedate (DATE-TIME or DATE) of #ICalValue.","deprecated":null},{"type":"method","name":"get_datetimeperiod","type_name":"Value","ident":"i_cal_value_get_datetimeperiod","summary":"Gets the datetimeperiod of #ICalValue.","deprecated":null},{"type":"method","name":"get_day","type_name":"Time","ident":"i_cal_time_get_day","summary":"Gets the day of #ICalTime.","deprecated":null},{"type":"method","name":"get_days","type_name":"Duration","ident":"i_cal_duration_get_days","summary":"Gets the days of #ICalDuration.","deprecated":null},{"type":"method","name":"get_debug","type_name":"Reqstat","ident":"i_cal_reqstat_get_debug","summary":"Gets the debug of #ICalReqstat.","deprecated":null},{"type":"method","name":"get_decreed","type_name":"Property","ident":"i_cal_property_get_decreed","summary":"Gets the decreed of #ICalProperty.","deprecated":null},{"type":"method","name":"get_defaultcharset","type_name":"Property","ident":"i_cal_property_get_defaultcharset","summary":"Gets the defaultcharset of #ICalProperty.","deprecated":null},{"type":"method","name":"get_defaultlocale","type_name":"Property","ident":"i_cal_property_get_defaultlocale","summary":"Gets the defaultlocale of #ICalProperty.","deprecated":null},{"type":"method","name":"get_defaulttzid","type_name":"Property","ident":"i_cal_property_get_defaulttzid","summary":"Gets the defaulttzid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_defaultvcars","type_name":"Property","ident":"i_cal_property_get_defaultvcars","summary":"Gets the defaultvcars of #ICalProperty.","deprecated":null},{"type":"method","name":"get_delegatedfrom","type_name":"Parameter","ident":"i_cal_parameter_get_delegatedfrom","summary":"No description available.","deprecated":null},{"type":"method","name":"get_delegatedto","type_name":"Parameter","ident":"i_cal_parameter_get_delegatedto","summary":"No description available.","deprecated":null},{"type":"method","name":"get_deny","type_name":"Property","ident":"i_cal_property_get_deny","summary":"Gets the deny of #ICalProperty.","deprecated":null},{"type":"method","name":"get_derived","type_name":"Parameter","ident":"i_cal_parameter_get_derived","summary":"Gets value of the @param of kind %I_CAL_DERIVED_PARAMETER","deprecated":null},{"type":"method","name":"get_desc","type_name":"Reqstat","ident":"i_cal_reqstat_get_desc","summary":"Gets the desc of #ICalReqstat.","deprecated":null},{"type":"method","name":"get_description","type_name":"Component","ident":"i_cal_component_get_description","summary":"Gets the description of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_description","type_name":"Property","ident":"i_cal_property_get_description","summary":"Gets the description of #ICalProperty.","deprecated":null},{"type":"method","name":"get_dir","type_name":"Parameter","ident":"i_cal_parameter_get_dir","summary":"No description available.","deprecated":null},{"type":"method","name":"get_display","type_name":"Parameter","ident":"i_cal_parameter_get_display","summary":"No description available.","deprecated":null},{"type":"method","name":"get_display_name","type_name":"Timezone","ident":"i_cal_timezone_get_display_name","summary":"Gets the display name of the @zone.","deprecated":null},{"type":"method","name":"get_dtend","type_name":"Component","ident":"i_cal_component_get_dtend","summary":"Gets the dtend of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_dtend","type_name":"Property","ident":"i_cal_property_get_dtend","summary":"Gets the dtend time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_dtstamp","type_name":"Component","ident":"i_cal_component_get_dtstamp","summary":"Gets the dtstamp of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_dtstamp","type_name":"Property","ident":"i_cal_property_get_dtstamp","summary":"Gets the dtstamp time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_dtstart","type_name":"Component","ident":"i_cal_component_get_dtstart","summary":"Gets the dtstart of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_dtstart","type_name":"Property","ident":"i_cal_property_get_dtstart","summary":"Gets the dtstart time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_due","type_name":"Component","ident":"i_cal_component_get_due","summary":"Gets the due of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_due","type_name":"Property","ident":"i_cal_property_get_due","summary":"Gets the due time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_duration","type_name":"Component","ident":"i_cal_component_get_duration","summary":"Gets the duration of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_duration","type_name":"Period","ident":"i_cal_period_get_duration","summary":"Gets the duration from an #ICalPeriod.","deprecated":null},{"type":"method","name":"get_duration","type_name":"Property","ident":"i_cal_property_get_duration","summary":"Gets the duration of #ICalProperty.","deprecated":null},{"type":"method","name":"get_duration","type_name":"Trigger","ident":"i_cal_trigger_get_duration","summary":"Gets the duration from #ICalTrigger.","deprecated":null},{"type":"method","name":"get_duration","type_name":"Value","ident":"i_cal_value_get_duration","summary":"Gets the duration of #ICalValue.","deprecated":null},{"type":"method","name":"get_email","type_name":"Parameter","ident":"i_cal_parameter_get_email","summary":"No description available.","deprecated":null},{"type":"method","name":"get_enable","type_name":"Parameter","ident":"i_cal_parameter_get_enable","summary":"No description available.","deprecated":null},{"type":"method","name":"get_encoding","type_name":"Parameter","ident":"i_cal_parameter_get_encoding","summary":"No description available.","deprecated":null},{"type":"method","name":"get_end","type_name":"Period","ident":"i_cal_period_get_end","summary":"Gets the end time from an #ICalPeriod.","deprecated":null},{"type":"method","name":"get_end","type_name":"TimeSpan","ident":"i_cal_time_span_get_end","summary":"Gets the end of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"get_estimatedduration","type_name":"Property","ident":"i_cal_property_get_estimatedduration","summary":"Gets the estimatedduration of #ICalProperty.","deprecated":null},{"type":"method","name":"get_exdate","type_name":"Property","ident":"i_cal_property_get_exdate","summary":"Gets the exdate time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_expand","type_name":"Property","ident":"i_cal_property_get_expand","summary":"Gets the expand of #ICalProperty.","deprecated":null},{"type":"method","name":"get_exrule","type_name":"Property","ident":"i_cal_property_get_exrule","summary":"Gets the exrule recurrence type of #ICalProperty.","deprecated":null},{"type":"method","name":"get_fbtype","type_name":"Parameter","ident":"i_cal_parameter_get_fbtype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_feature","type_name":"Parameter","ident":"i_cal_parameter_get_feature","summary":"No description available.","deprecated":null},{"type":"method","name":"get_filename","type_name":"Parameter","ident":"i_cal_parameter_get_filename","summary":"No description available.","deprecated":null},{"type":"method","name":"get_first_component","type_name":"Component","ident":"i_cal_component_get_first_component","summary":"Gets the first #ICalComponent with specific kind in #ICalComponent.","deprecated":null},{"type":"method","name":"get_first_parameter","type_name":"Property","ident":"i_cal_property_get_first_parameter","summary":"Gets the first #ICalParameter from the parent #ICalProperty.","deprecated":null},{"type":"method","name":"get_first_property","type_name":"Component","ident":"i_cal_component_get_first_property","summary":"Gets the first #ICalProperty with specific kind in #ICalComponent.","deprecated":null},{"type":"method","name":"get_first_real_component","type_name":"Component","ident":"i_cal_component_get_first_real_component","summary":"For VCOMPONENT: Returns a reference to the first VEVENT, VTODO or VJOURNAL.","deprecated":null},{"type":"method","name":"get_float","type_name":"Value","ident":"i_cal_value_get_float","summary":"Gets the float of #ICalValue.","deprecated":null},{"type":"method","name":"get_fmttype","type_name":"Parameter","ident":"i_cal_parameter_get_fmttype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_freebusy","type_name":"Property","ident":"i_cal_property_get_freebusy","summary":"Gets the freebusy period type of #ICalProperty.","deprecated":null},{"type":"method","name":"get_freq","type_name":"Recurrence","ident":"i_cal_recurrence_get_freq","summary":"Gets the freq from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_geo","type_name":"Property","ident":"i_cal_property_get_geo","summary":"Gets the geo type of #ICalProperty.","deprecated":null},{"type":"method","name":"get_geo","type_name":"Value","ident":"i_cal_value_get_geo","summary":"Gets the geo of #ICalValue.","deprecated":null},{"type":"method","name":"get_grant","type_name":"Property","ident":"i_cal_property_get_grant","summary":"Gets the grant of #ICalProperty.","deprecated":null},{"type":"method","name":"get_hour","type_name":"Time","ident":"i_cal_time_get_hour","summary":"Gets the hour of #ICalTime.","deprecated":null},{"type":"method","name":"get_hours","type_name":"Duration","ident":"i_cal_duration_get_hours","summary":"Gets the hours of #ICalDuration.","deprecated":null},{"type":"method","name":"get_iana","type_name":"Parameter","ident":"i_cal_parameter_get_iana","summary":"No description available.","deprecated":null},{"type":"method","name":"get_iana_name","type_name":"Parameter","ident":"i_cal_parameter_get_iana_name","summary":"Gets the iana_name property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"get_iana_value","type_name":"Parameter","ident":"i_cal_parameter_get_iana_value","summary":"Gets the iana_value property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"get_id","type_name":"Parameter","ident":"i_cal_parameter_get_id","summary":"No description available.","deprecated":null},{"type":"method","name":"get_image","type_name":"Property","ident":"i_cal_property_get_image","summary":"Gets value of the @prop of kind %I_CAL_IMAGE_PROPERTY","deprecated":null},{"type":"method","name":"get_inner","type_name":"Component","ident":"i_cal_component_get_inner","summary":"Returns the first VEVENT, VTODO or VJOURNAL sub-component of cop, or comp if it is one of those types.","deprecated":null},{"type":"method","name":"get_integer","type_name":"Value","ident":"i_cal_value_get_integer","summary":"Gets the integer of #ICalValue.","deprecated":null},{"type":"method","name":"get_interval","type_name":"Recurrence","ident":"i_cal_recurrence_get_interval","summary":"Gets the interval from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_is_busy","type_name":"TimeSpan","ident":"i_cal_time_span_get_is_busy","summary":"Gets the is_busy of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"get_is_global_memory","type_name":"Object","ident":"i_cal_object_get_is_global_memory","summary":"Obtains whether the native libical structure is a global shared memory, thus should not be destroyed. This can be ...","deprecated":null},{"type":"method","name":"get_is_url","type_name":"Attach","ident":"i_cal_attach_get_is_url","summary":"Checks whether the #ICalAttach is built from url.","deprecated":null},{"type":"method","name":"get_itipversion","type_name":"Property","ident":"i_cal_property_get_itipversion","summary":"Gets the itipversion of #ICalProperty.","deprecated":null},{"type":"method","name":"get_label","type_name":"Parameter","ident":"i_cal_parameter_get_label","summary":"No description available.","deprecated":null},{"type":"method","name":"get_language","type_name":"Parameter","ident":"i_cal_parameter_get_language","summary":"No description available.","deprecated":null},{"type":"method","name":"get_lastmodified","type_name":"Property","ident":"i_cal_property_get_lastmodified","summary":"Gets the lastmodified time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_lat","type_name":"Geo","ident":"i_cal_geo_get_lat","summary":"Gets the latitude of #ICalGeo.","deprecated":null},{"type":"method","name":"get_latency","type_name":"Parameter","ident":"i_cal_parameter_get_latency","summary":"No description available.","deprecated":null},{"type":"method","name":"get_latitude","type_name":"Timezone","ident":"i_cal_timezone_get_latitude","summary":"Returns the latitude of a builtin timezone.","deprecated":null},{"type":"method","name":"get_line","type_name":"Parser","ident":"i_cal_parser_get_line","summary":"Given a line generator function, returns a single iCal content line.","deprecated":null},{"type":"method","name":"get_local","type_name":"Parameter","ident":"i_cal_parameter_get_local","summary":"No description available.","deprecated":null},{"type":"method","name":"get_localize","type_name":"Parameter","ident":"i_cal_parameter_get_localize","summary":"No description available.","deprecated":null},{"type":"method","name":"get_location","type_name":"Component","ident":"i_cal_component_get_location","summary":"Gets the location of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_location","type_name":"Property","ident":"i_cal_property_get_location","summary":"Gets the location of #ICalProperty.","deprecated":null},{"type":"method","name":"get_location","type_name":"Timezone","ident":"i_cal_timezone_get_location","summary":"Returns the city name of a timezone, or %NULL, when none is set or when @zone is also %NULL.","deprecated":null},{"type":"method","name":"get_locationtype","type_name":"Property","ident":"i_cal_property_get_locationtype","summary":"Gets value of the @prop of kind %I_CAL_LOCATIONTYPE_PROPERTY","deprecated":null},{"type":"method","name":"get_lon","type_name":"Geo","ident":"i_cal_geo_get_lon","summary":"Gets the longitude of #ICalGeo.","deprecated":null},{"type":"method","name":"get_longitude","type_name":"Timezone","ident":"i_cal_timezone_get_longitude","summary":"Returns the longitude of a builtin timezone.","deprecated":null},{"type":"method","name":"get_managedid","type_name":"Parameter","ident":"i_cal_parameter_get_managedid","summary":"No description available.","deprecated":null},{"type":"method","name":"get_maxcomponentsize","type_name":"Property","ident":"i_cal_property_get_maxcomponentsize","summary":"Gets the maxcomponentsize of #ICalProperty.","deprecated":null},{"type":"method","name":"get_maxdate","type_name":"Property","ident":"i_cal_property_get_maxdate","summary":"Gets the maxdate time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_maxresults","type_name":"Property","ident":"i_cal_property_get_maxresults","summary":"Gets the maxresults of #ICalProperty.","deprecated":null},{"type":"method","name":"get_maxresultssize","type_name":"Property","ident":"i_cal_property_get_maxresultssize","summary":"Gets the maxresultssize of #ICalProperty.","deprecated":null},{"type":"method","name":"get_member","type_name":"Parameter","ident":"i_cal_parameter_get_member","summary":"No description available.","deprecated":null},{"type":"method","name":"get_method","type_name":"Component","ident":"i_cal_component_get_method","summary":"Gets the method of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_method","type_name":"Property","ident":"i_cal_property_get_method","summary":"Gets the method of #ICalProperty.","deprecated":null},{"type":"method","name":"get_method","type_name":"Value","ident":"i_cal_value_get_method","summary":"Gets the method of #ICalValue.","deprecated":null},{"type":"method","name":"get_mindate","type_name":"Property","ident":"i_cal_property_get_mindate","summary":"Gets the mindate time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_minute","type_name":"Time","ident":"i_cal_time_get_minute","summary":"Gets the minute of #ICalTime.","deprecated":null},{"type":"method","name":"get_minutes","type_name":"Duration","ident":"i_cal_duration_get_minutes","summary":"Gets the minutes of #ICalDuration.","deprecated":null},{"type":"method","name":"get_modified","type_name":"Parameter","ident":"i_cal_parameter_get_modified","summary":"No description available.","deprecated":null},{"type":"method","name":"get_month","type_name":"Time","ident":"i_cal_time_get_month","summary":"Gets the month of #ICalTime.","deprecated":null},{"type":"method","name":"get_multipart","type_name":"Property","ident":"i_cal_property_get_multipart","summary":"Gets the multipart of #ICalProperty.","deprecated":null},{"type":"method","name":"get_name","type_name":"Property","ident":"i_cal_property_get_name","summary":"Gets the name of #ICalProperty.","deprecated":null},{"type":"method","name":"get_native","type_name":"Object","ident":"i_cal_object_get_native","summary":"Obtain native libical structure pointer associated with this @iobject.","deprecated":null},{"type":"method","name":"get_native_destroy_func","type_name":"Object","ident":"i_cal_object_get_native_destroy_func","summary":"Obtain a pointer to a function responsible to free the libical native structure.","deprecated":null},{"type":"method","name":"get_next_component","type_name":"Component","ident":"i_cal_component_get_next_component","summary":"Gets the next #ICalComponent with specific kind in #ICalComponent.","deprecated":null},{"type":"method","name":"get_next_parameter","type_name":"Property","ident":"i_cal_property_get_next_parameter","summary":"Gets the next #ICalParameter from the parent #ICalProperty.","deprecated":null},{"type":"method","name":"get_next_property","type_name":"Component","ident":"i_cal_component_get_next_property","summary":"Gets the next #ICalProperty with specific kind in #ICalComponent.","deprecated":null},{"type":"method","name":"get_options","type_name":"Parameter","ident":"i_cal_parameter_get_options","summary":"No description available.","deprecated":null},{"type":"method","name":"get_order","type_name":"Parameter","ident":"i_cal_parameter_get_order","summary":"Gets value of the @param of kind %I_CAL_ORDER_PARAMETER","deprecated":null},{"type":"method","name":"get_organizer","type_name":"Property","ident":"i_cal_property_get_organizer","summary":"Gets the organizer of #ICalProperty.","deprecated":null},{"type":"method","name":"get_owner","type_name":"Property","ident":"i_cal_property_get_owner","summary":"Gets the owner of #ICalProperty.","deprecated":null},{"type":"method","name":"get_parameter_as_string","type_name":"Property","ident":"i_cal_property_get_parameter_as_string","summary":"Gets the string representation of the target parameter in the #ICalProperty.","deprecated":null},{"type":"method","name":"get_parent","type_name":"Component","ident":"i_cal_component_get_parent","summary":"Gets the parent component of the @component.","deprecated":null},{"type":"method","name":"get_parent","type_name":"Parameter","ident":"i_cal_parameter_get_parent","summary":"Gets the parent #ICalProperty of the specified #ICalParameter.","deprecated":null},{"type":"method","name":"get_parent","type_name":"Property","ident":"i_cal_property_get_parent","summary":"Gets the parent component of the property. Use with caution. When icalproperty is deallocated, it won't deallocate its parent. ...","deprecated":null},{"type":"method","name":"get_parent","type_name":"Value","ident":"i_cal_value_get_parent","summary":"Gets the parent #ICalProperty of the specified #ICalValue.","deprecated":null},{"type":"method","name":"get_participanttype","type_name":"Property","ident":"i_cal_property_get_participanttype","summary":"Gets value of the @prop of kind %I_CAL_PARTICIPANTTYPE_PROPERTY","deprecated":null},{"type":"method","name":"get_participanttype","type_name":"Value","ident":"i_cal_value_get_participanttype","summary":"Gets value of the @val of kind %I_CAL_PARTICIPANTTYPE_VALUE","deprecated":null},{"type":"method","name":"get_partstat","type_name":"Parameter","ident":"i_cal_parameter_get_partstat","summary":"No description available.","deprecated":null},{"type":"method","name":"get_patchaction","type_name":"Parameter","ident":"i_cal_parameter_get_patchaction","summary":"No description available.","deprecated":null},{"type":"method","name":"get_patchdelete","type_name":"Property","ident":"i_cal_property_get_patchdelete","summary":"Gets value of the @prop of kind %I_CAL_PATCHDELETE_PROPERTY","deprecated":null},{"type":"method","name":"get_patchorder","type_name":"Property","ident":"i_cal_property_get_patchorder","summary":"Gets value of the @prop of kind %I_CAL_PATCHORDER_PROPERTY","deprecated":null},{"type":"method","name":"get_patchparameter","type_name":"Property","ident":"i_cal_property_get_patchparameter","summary":"Gets value of the @prop of kind %I_CAL_PATCHPARAMETER_PROPERTY","deprecated":null},{"type":"method","name":"get_patchtarget","type_name":"Property","ident":"i_cal_property_get_patchtarget","summary":"Gets value of the @prop of kind %I_CAL_PATCHTARGET_PROPERTY","deprecated":null},{"type":"method","name":"get_patchversion","type_name":"Property","ident":"i_cal_property_get_patchversion","summary":"Gets value of the @prop of kind %I_CAL_PATCHVERSION_PROPERTY","deprecated":null},{"type":"method","name":"get_percentcomplete","type_name":"Property","ident":"i_cal_property_get_percentcomplete","summary":"Gets the percentcomplete of #ICalProperty.","deprecated":null},{"type":"method","name":"get_period","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_get_period","summary":"Gets the period attribute of #ICalDatetimeperiod.","deprecated":null},{"type":"method","name":"get_period","type_name":"Value","ident":"i_cal_value_get_period","summary":"Gets the period of #ICalValue.","deprecated":null},{"type":"method","name":"get_permission","type_name":"Property","ident":"i_cal_property_get_permission","summary":"Gets the permission of #ICalProperty.","deprecated":null},{"type":"method","name":"get_pollcompletion","type_name":"Property","ident":"i_cal_property_get_pollcompletion","summary":"Gets the pollcompletion of #ICalProperty.","deprecated":null},{"type":"method","name":"get_pollcompletion","type_name":"Value","ident":"i_cal_value_get_pollcompletion","summary":"Gets the pollcompletion of #ICalValue.","deprecated":null},{"type":"method","name":"get_pollitemid","type_name":"Property","ident":"i_cal_property_get_pollitemid","summary":"Gets the pollitemid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_pollmode","type_name":"Property","ident":"i_cal_property_get_pollmode","summary":"Gets the pollmode of #ICalProperty.","deprecated":null},{"type":"method","name":"get_pollmode","type_name":"Value","ident":"i_cal_value_get_pollmode","summary":"Gets the pollmode of #ICalValue.","deprecated":null},{"type":"method","name":"get_pollproperties","type_name":"Property","ident":"i_cal_property_get_pollproperties","summary":"Gets the pollproperties of #ICalProperty.","deprecated":null},{"type":"method","name":"get_pollwinner","type_name":"Property","ident":"i_cal_property_get_pollwinner","summary":"Gets the pollwinner of #ICalProperty.","deprecated":null},{"type":"method","name":"get_priority","type_name":"Property","ident":"i_cal_property_get_priority","summary":"Gets the priority of #ICalProperty.","deprecated":null},{"type":"method","name":"get_prodid","type_name":"Property","ident":"i_cal_property_get_prodid","summary":"Gets the prodid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_property_name","type_name":"Property","ident":"i_cal_property_get_property_name","summary":"Gets the property name of #ICalProperty.","deprecated":null},{"type":"method","name":"get_proximity","type_name":"Property","ident":"i_cal_property_get_proximity","summary":"Gets value of the @prop of kind %I_CAL_PROXIMITY_PROPERTY","deprecated":null},{"type":"method","name":"get_proximity","type_name":"Value","ident":"i_cal_value_get_proximity","summary":"Gets value of the @val of kind %I_CAL_PROXIMITY_VALUE","deprecated":null},{"type":"method","name":"get_publiccomment","type_name":"Parameter","ident":"i_cal_parameter_get_publiccomment","summary":"No description available.","deprecated":null},{"type":"method","name":"get_query","type_name":"Property","ident":"i_cal_property_get_query","summary":"Gets the query of #ICalProperty.","deprecated":null},{"type":"method","name":"get_query","type_name":"Value","ident":"i_cal_value_get_query","summary":"Gets the query of #ICalValue.","deprecated":null},{"type":"method","name":"get_queryid","type_name":"Property","ident":"i_cal_property_get_queryid","summary":"Gets the queryid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_querylevel","type_name":"Property","ident":"i_cal_property_get_querylevel","summary":"Gets the querylevel of #ICalProperty.","deprecated":null},{"type":"method","name":"get_querylevel","type_name":"Value","ident":"i_cal_value_get_querylevel","summary":"Gets the querylevel of #ICalValue.","deprecated":null},{"type":"method","name":"get_queryname","type_name":"Property","ident":"i_cal_property_get_queryname","summary":"Gets the queryname of #ICalProperty.","deprecated":null},{"type":"method","name":"get_range","type_name":"Parameter","ident":"i_cal_parameter_get_range","summary":"No description available.","deprecated":null},{"type":"method","name":"get_rdate","type_name":"Property","ident":"i_cal_property_get_rdate","summary":"Gets the rdate of #ICalProperty.","deprecated":null},{"type":"method","name":"get_reason","type_name":"Parameter","ident":"i_cal_parameter_get_reason","summary":"No description available.","deprecated":null},{"type":"method","name":"get_recur","type_name":"Value","ident":"i_cal_value_get_recur","summary":"Gets the recur of #ICalValue.","deprecated":null},{"type":"method","name":"get_recuraccepted","type_name":"Property","ident":"i_cal_property_get_recuraccepted","summary":"Gets the recuraccepted of #ICalProperty.","deprecated":null},{"type":"method","name":"get_recurexpand","type_name":"Property","ident":"i_cal_property_get_recurexpand","summary":"Gets the recurexpand of #ICalProperty.","deprecated":null},{"type":"method","name":"get_recurlimit","type_name":"Property","ident":"i_cal_property_get_recurlimit","summary":"Gets the recurlimit of #ICalProperty.","deprecated":null},{"type":"method","name":"get_recurrenceid","type_name":"Component","ident":"i_cal_component_get_recurrenceid","summary":"Gets the recurrenceid of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_recurrenceid","type_name":"Property","ident":"i_cal_property_get_recurrenceid","summary":"Gets the recurrenceid time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_refreshinterval","type_name":"Property","ident":"i_cal_property_get_refreshinterval","summary":"Gets value of the @prop of kind %I_CAL_REFRESHINTERVAL_PROPERTY","deprecated":null},{"type":"method","name":"get_related","type_name":"Parameter","ident":"i_cal_parameter_get_related","summary":"No description available.","deprecated":null},{"type":"method","name":"get_relatedto","type_name":"Property","ident":"i_cal_property_get_relatedto","summary":"Gets the relatedto of #ICalProperty.","deprecated":null},{"type":"method","name":"get_relcalid","type_name":"Component","ident":"i_cal_component_get_relcalid","summary":"Gets the relcalid of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_relcalid","type_name":"Property","ident":"i_cal_property_get_relcalid","summary":"Gets the relcalid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_reltype","type_name":"Parameter","ident":"i_cal_parameter_get_reltype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_repeat","type_name":"Property","ident":"i_cal_property_get_repeat","summary":"Gets the repeat of #ICalProperty.","deprecated":null},{"type":"method","name":"get_replyurl","type_name":"Property","ident":"i_cal_property_get_replyurl","summary":"Gets the replyurl of #ICalProperty.","deprecated":null},{"type":"method","name":"get_requeststatus","type_name":"Property","ident":"i_cal_property_get_requeststatus","summary":"Gets the requeststatus of #ICalProperty.","deprecated":null},{"type":"method","name":"get_requeststatus","type_name":"Value","ident":"i_cal_value_get_requeststatus","summary":"Gets the requeststatus of #ICalValue.","deprecated":null},{"type":"method","name":"get_required","type_name":"Parameter","ident":"i_cal_parameter_get_required","summary":"No description available.","deprecated":null},{"type":"method","name":"get_resources","type_name":"Property","ident":"i_cal_property_get_resources","summary":"Gets the resources of #ICalProperty.","deprecated":null},{"type":"method","name":"get_resourcetype","type_name":"Property","ident":"i_cal_property_get_resourcetype","summary":"Gets value of the @prop of kind %I_CAL_RESOURCETYPE_PROPERTY","deprecated":null},{"type":"method","name":"get_resourcetype","type_name":"Value","ident":"i_cal_value_get_resourcetype","summary":"Gets value of the @val of kind %I_CAL_RESOURCETYPE_VALUE","deprecated":null},{"type":"method","name":"get_response","type_name":"Parameter","ident":"i_cal_parameter_get_response","summary":"No description available.","deprecated":null},{"type":"method","name":"get_response","type_name":"Property","ident":"i_cal_property_get_response","summary":"Gets the response of #ICalProperty.","deprecated":null},{"type":"method","name":"get_restriction","type_name":"Property","ident":"i_cal_property_get_restriction","summary":"Gets the restriction of #ICalProperty.","deprecated":null},{"type":"method","name":"get_role","type_name":"Parameter","ident":"i_cal_parameter_get_role","summary":"No description available.","deprecated":null},{"type":"method","name":"get_rrule","type_name":"Property","ident":"i_cal_property_get_rrule","summary":"Gets the rrule recurrence type of #ICalProperty.","deprecated":null},{"type":"method","name":"get_rsvp","type_name":"Parameter","ident":"i_cal_parameter_get_rsvp","summary":"No description available.","deprecated":null},{"type":"method","name":"get_scheduleagent","type_name":"Parameter","ident":"i_cal_parameter_get_scheduleagent","summary":"No description available.","deprecated":null},{"type":"method","name":"get_scheduleforcesend","type_name":"Parameter","ident":"i_cal_parameter_get_scheduleforcesend","summary":"No description available.","deprecated":null},{"type":"method","name":"get_schedulestatus","type_name":"Parameter","ident":"i_cal_parameter_get_schedulestatus","summary":"No description available.","deprecated":null},{"type":"method","name":"get_schema","type_name":"Parameter","ident":"i_cal_parameter_get_schema","summary":"Gets value of the @param of kind %I_CAL_SCHEMA_PARAMETER","deprecated":null},{"type":"method","name":"get_scope","type_name":"Property","ident":"i_cal_property_get_scope","summary":"Gets the scope of #ICalProperty.","deprecated":null},{"type":"method","name":"get_second","type_name":"Time","ident":"i_cal_time_get_second","summary":"Gets the second of #ICalTime.","deprecated":null},{"type":"method","name":"get_seconds","type_name":"Duration","ident":"i_cal_duration_get_seconds","summary":"Gets the seconds of #ICalDuration.","deprecated":null},{"type":"method","name":"get_sentby","type_name":"Parameter","ident":"i_cal_parameter_get_sentby","summary":"No description available.","deprecated":null},{"type":"method","name":"get_sequence","type_name":"Component","ident":"i_cal_component_get_sequence","summary":"Gets the sequence of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_sequence","type_name":"Property","ident":"i_cal_property_get_sequence","summary":"Gets the sequence of #ICalProperty.","deprecated":null},{"type":"method","name":"get_size","type_name":"Parameter","ident":"i_cal_parameter_get_size","summary":"No description available.","deprecated":null},{"type":"method","name":"get_source","type_name":"Property","ident":"i_cal_property_get_source","summary":"Gets value of the @prop of kind %I_CAL_SOURCE_PROPERTY","deprecated":null},{"type":"method","name":"get_span","type_name":"Component","ident":"i_cal_component_get_span","summary":"For VEVENT, VTODO, VJOURNAL and VTIMEZONE: reports the start and end times of an event in UTC.","deprecated":null},{"type":"method","name":"get_start","type_name":"Period","ident":"i_cal_period_get_start","summary":"Gets the start time from an #ICalPeriod.","deprecated":null},{"type":"method","name":"get_start","type_name":"TimeSpan","ident":"i_cal_time_span_get_start","summary":"Gets the start of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"get_state","type_name":"Parser","ident":"i_cal_parser_get_state","summary":"Gets the state of the target parser.","deprecated":null},{"type":"method","name":"get_status","type_name":"Component","ident":"i_cal_component_get_status","summary":"Gets the status of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_status","type_name":"Property","ident":"i_cal_property_get_status","summary":"Gets the status of #ICalProperty.","deprecated":null},{"type":"method","name":"get_status","type_name":"Value","ident":"i_cal_value_get_status","summary":"Gets the status of #ICalValue.","deprecated":null},{"type":"method","name":"get_stayinformed","type_name":"Parameter","ident":"i_cal_parameter_get_stayinformed","summary":"No description available.","deprecated":null},{"type":"method","name":"get_storesexpanded","type_name":"Property","ident":"i_cal_property_get_storesexpanded","summary":"Gets the storesexpanded of #ICalProperty.","deprecated":null},{"type":"method","name":"get_string","type_name":"Value","ident":"i_cal_value_get_string","summary":"Gets the string of #ICalValue.","deprecated":null},{"type":"method","name":"get_structureddata","type_name":"Property","ident":"i_cal_property_get_structureddata","summary":"Gets value of the @prop of kind %I_CAL_STRUCTUREDDATA_PROPERTY","deprecated":null},{"type":"method","name":"get_styleddescription","type_name":"Property","ident":"i_cal_property_get_styleddescription","summary":"Gets value of the @prop of kind %I_CAL_STYLEDDESCRIPTION_PROPERTY","deprecated":null},{"type":"method","name":"get_substate","type_name":"Parameter","ident":"i_cal_parameter_get_substate","summary":"No description available.","deprecated":null},{"type":"method","name":"get_summary","type_name":"Component","ident":"i_cal_component_get_summary","summary":"Gets the summary of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_summary","type_name":"Property","ident":"i_cal_property_get_summary","summary":"Gets the summary of #ICalProperty.","deprecated":null},{"type":"method","name":"get_target","type_name":"Property","ident":"i_cal_property_get_target","summary":"Gets the target of #ICalProperty.","deprecated":null},{"type":"method","name":"get_taskmode","type_name":"Property","ident":"i_cal_property_get_taskmode","summary":"Gets the taskmode of #ICalProperty.","deprecated":null},{"type":"method","name":"get_taskmode","type_name":"Value","ident":"i_cal_value_get_taskmode","summary":"Gets the taskmode of #ICalValue.","deprecated":null},{"type":"method","name":"get_text","type_name":"Value","ident":"i_cal_value_get_text","summary":"Gets the text of #ICalValue.","deprecated":null},{"type":"method","name":"get_time","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_get_time","summary":"Gets the time attribute of #ICalDatetimeperiod.","deprecated":null},{"type":"method","name":"get_time","type_name":"Time","ident":"i_cal_time_get_time","summary":"Gets the hour/minute/second parts of the @timetype in one call.","deprecated":null},{"type":"method","name":"get_time","type_name":"Trigger","ident":"i_cal_trigger_get_time","summary":"Gets the time from #ICalTrigger.","deprecated":null},{"type":"method","name":"get_timezone","type_name":"Component","ident":"i_cal_component_get_timezone","summary":"Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can't be found.","deprecated":null},{"type":"method","name":"get_timezone","type_name":"Time","ident":"i_cal_time_get_timezone","summary":"Returns the timezone, the #ICalTimezone object is cached and can be either unreferenced once the last instance is used ...","deprecated":null},{"type":"method","name":"get_transp","type_name":"Property","ident":"i_cal_property_get_transp","summary":"Gets the transp of #ICalProperty.","deprecated":null},{"type":"method","name":"get_transp","type_name":"Value","ident":"i_cal_value_get_transp","summary":"Gets the transp of #ICalValue.","deprecated":null},{"type":"method","name":"get_trigger","type_name":"Property","ident":"i_cal_property_get_trigger","summary":"Gets the trigger period type of #ICalProperty.","deprecated":null},{"type":"method","name":"get_trigger","type_name":"Value","ident":"i_cal_value_get_trigger","summary":"Gets the trigger of #ICalValue.","deprecated":null},{"type":"method","name":"get_tzid","type_name":"Parameter","ident":"i_cal_parameter_get_tzid","summary":"No description available.","deprecated":null},{"type":"method","name":"get_tzid","type_name":"Property","ident":"i_cal_property_get_tzid","summary":"Gets the tzid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tzid","type_name":"Time","ident":"i_cal_time_get_tzid","summary":"Returns the tzid, or NULL for a floating time.","deprecated":null},{"type":"method","name":"get_tzid","type_name":"Timezone","ident":"i_cal_timezone_get_tzid","summary":"Returns the TZID of a timezone, or %NULL, when none is set or when @zone is also %NULL.","deprecated":null},{"type":"method","name":"get_tzidaliasof","type_name":"Property","ident":"i_cal_property_get_tzidaliasof","summary":"Gets the tzidaliasof of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tzname","type_name":"Property","ident":"i_cal_property_get_tzname","summary":"Gets the tzname of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tznames","type_name":"Timezone","ident":"i_cal_timezone_get_tznames","summary":"Returns the TZNAME properties used in the latest STANDARD and DAYLIGHT components. If they are the same it will ...","deprecated":null},{"type":"method","name":"get_tzoffsetfrom","type_name":"Property","ident":"i_cal_property_get_tzoffsetfrom","summary":"Gets the tzoffsetfrom of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tzoffsetto","type_name":"Property","ident":"i_cal_property_get_tzoffsetto","summary":"Gets the tzoffsetto of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tzuntil","type_name":"Property","ident":"i_cal_property_get_tzuntil","summary":"Gets the tzuntil time of #ICalProperty.","deprecated":null},{"type":"method","name":"get_tzurl","type_name":"Property","ident":"i_cal_property_get_tzurl","summary":"Gets the tzurl of #ICalProperty.","deprecated":null},{"type":"method","name":"get_uid","type_name":"Component","ident":"i_cal_component_get_uid","summary":"Gets the uid of the #ICalComponent.","deprecated":null},{"type":"method","name":"get_uid","type_name":"Property","ident":"i_cal_property_get_uid","summary":"Gets the uid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_until","type_name":"Recurrence","ident":"i_cal_recurrence_get_until","summary":"Gets the until from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_uri","type_name":"Value","ident":"i_cal_value_get_uri","summary":"Gets the uri of #ICalValue.","deprecated":null},{"type":"method","name":"get_url","type_name":"Attach","ident":"i_cal_attach_get_url","summary":"Gets the url, if the #ICalAttach is built from the url.","deprecated":null},{"type":"method","name":"get_url","type_name":"Property","ident":"i_cal_property_get_url","summary":"Gets the url of #ICalProperty.","deprecated":null},{"type":"method","name":"get_utc_offset","type_name":"Timezone","ident":"i_cal_timezone_get_utc_offset","summary":"Calculates the UTC offset of a given local time in the given timezone. It is the number of ...","deprecated":null},{"type":"method","name":"get_utc_offset_of_utc_time","type_name":"Timezone","ident":"i_cal_timezone_get_utc_offset_of_utc_time","summary":"Calculates the UTC offset of a given UTC time in the given timezone. It is the number of ...","deprecated":null},{"type":"method","name":"get_utcoffset","type_name":"Value","ident":"i_cal_value_get_utcoffset","summary":"Gets the utcoffset of #ICalValue.","deprecated":null},{"type":"method","name":"get_value","type_name":"Parameter","ident":"i_cal_parameter_get_value","summary":"No description available.","deprecated":null},{"type":"method","name":"get_value","type_name":"Property","ident":"i_cal_property_get_value","summary":"Gets the #ICalValue of #ICalProperty.","deprecated":null},{"type":"method","name":"get_value_as_string","type_name":"Property","ident":"i_cal_property_get_value_as_string","summary":"Gets the string representation of the value in #ICalProperty.","deprecated":null},{"type":"method","name":"get_version","type_name":"Property","ident":"i_cal_property_get_version","summary":"Gets the version of #ICalProperty.","deprecated":null},{"type":"method","name":"get_voter","type_name":"Property","ident":"i_cal_property_get_voter","summary":"Gets the voter of #ICalProperty.","deprecated":null},{"type":"method","name":"get_week_start","type_name":"Recurrence","ident":"i_cal_recurrence_get_week_start","summary":"Gets the week_start from #ICalRecurrence.","deprecated":null},{"type":"method","name":"get_weeks","type_name":"Duration","ident":"i_cal_duration_get_weeks","summary":"Gets the weeks of #ICalDuration.","deprecated":null},{"type":"method","name":"get_x","type_name":"Parameter","ident":"i_cal_parameter_get_x","summary":"No description available.","deprecated":null},{"type":"method","name":"get_x","type_name":"Property","ident":"i_cal_property_get_x","summary":"Gets the x of #ICalProperty.","deprecated":null},{"type":"method","name":"get_x","type_name":"Value","ident":"i_cal_value_get_x","summary":"Gets the x of #ICalValue.","deprecated":null},{"type":"method","name":"get_x_name","type_name":"Property","ident":"i_cal_property_get_x_name","summary":"Gets the name of x property.","deprecated":null},{"type":"method","name":"get_xlicclass","type_name":"Property","ident":"i_cal_property_get_xlicclass","summary":"Gets the xlicclass of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicclass","type_name":"Value","ident":"i_cal_value_get_xlicclass","summary":"Gets the xlicclass of #ICalValue.","deprecated":null},{"type":"method","name":"get_xlicclustercount","type_name":"Property","ident":"i_cal_property_get_xlicclustercount","summary":"Gets the xlicclustercount of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xliccomparetype","type_name":"Parameter","ident":"i_cal_parameter_get_xliccomparetype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_xlicerror","type_name":"Property","ident":"i_cal_property_get_xlicerror","summary":"Gets the xlicerror of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicerrortype","type_name":"Parameter","ident":"i_cal_parameter_get_xlicerrortype","summary":"No description available.","deprecated":null},{"type":"method","name":"get_xlicmimecharset","type_name":"Property","ident":"i_cal_property_get_xlicmimecharset","summary":"Gets the xlicmimecharset of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicmimecid","type_name":"Property","ident":"i_cal_property_get_xlicmimecid","summary":"Gets the xlicmimecid of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicmimecontenttype","type_name":"Property","ident":"i_cal_property_get_xlicmimecontenttype","summary":"Gets the xlicmimecontenttype of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicmimeencoding","type_name":"Property","ident":"i_cal_property_get_xlicmimeencoding","summary":"Gets the xlicmimeencoding of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicmimefilename","type_name":"Property","ident":"i_cal_property_get_xlicmimefilename","summary":"Gets the xlicmimefilename of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xlicmimeoptinfo","type_name":"Property","ident":"i_cal_property_get_xlicmimeoptinfo","summary":"Gets the xlicmimeoptinfo of #ICalProperty.","deprecated":null},{"type":"method","name":"get_xname","type_name":"Parameter","ident":"i_cal_parameter_get_xname","summary":"Gets the xname property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"get_xvalue","type_name":"Parameter","ident":"i_cal_parameter_get_xvalue","summary":"Gets the xvalue property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"get_year","type_name":"Time","ident":"i_cal_time_get_year","summary":"Gets the year of #ICalTime.","deprecated":null},{"type":"method","name":"has_same_name","type_name":"Parameter","ident":"i_cal_parameter_has_same_name","summary":"Checks whether native parts of two #ICalParameters have the same name.","deprecated":null},{"type":"method","name":"is_bad_duration","type_name":"Duration","ident":"i_cal_duration_is_bad_duration","summary":"Checks whether the #ICalDuration is the bad_duration.","deprecated":null},{"type":"method","name":"is_bad_trigger","type_name":"Trigger","ident":"i_cal_trigger_is_bad_trigger","summary":"Checks if a #ICalTrigger is a bad trigger.","deprecated":null},{"type":"method","name":"is_date","type_name":"Time","ident":"i_cal_time_is_date","summary":"Returns true if time is of DATE type, false if DATE-TIME.","deprecated":null},{"type":"method","name":"is_daylight","type_name":"Time","ident":"i_cal_time_is_daylight","summary":"Gets the is_daylight of #ICalTime.","deprecated":null},{"type":"method","name":"is_neg","type_name":"Duration","ident":"i_cal_duration_is_neg","summary":"Gets the is_neg of #ICalDuration.","deprecated":null},{"type":"method","name":"is_null_duration","type_name":"Duration","ident":"i_cal_duration_is_null_duration","summary":"Checks whether the #ICalDuration is the null_duration.","deprecated":null},{"type":"method","name":"is_null_period","type_name":"Period","ident":"i_cal_period_is_null_period","summary":"Checks the #ICalPeriod is null_period.","deprecated":null},{"type":"method","name":"is_null_time","type_name":"Time","ident":"i_cal_time_is_null_time","summary":"Returns true if the time is null.","deprecated":null},{"type":"method","name":"is_null_trigger","type_name":"Trigger","ident":"i_cal_trigger_is_null_trigger","summary":"Checks if a #ICalTrigger is a null trigger.","deprecated":null},{"type":"method","name":"is_utc","type_name":"Time","ident":"i_cal_time_is_utc","summary":"Returns true if time is relative to UTC zone.","deprecated":null},{"type":"method","name":"is_valid","type_name":"Component","ident":"i_cal_component_is_valid","summary":"Checks whether #ICalComponent is valid.","deprecated":null},{"type":"method","name":"is_valid","type_name":"Value","ident":"i_cal_value_is_valid","summary":"Checks if #ICalValue is valid.","deprecated":null},{"type":"method","name":"is_valid_period","type_name":"Period","ident":"i_cal_period_is_valid_period","summary":"Checks the #ICalPeriod is valid_period.","deprecated":null},{"type":"method","name":"is_valid_time","type_name":"Time","ident":"i_cal_time_is_valid_time","summary":"Returns true if the time is null.","deprecated":null},{"type":"method","name":"isa","type_name":"Component","ident":"i_cal_component_isa","summary":"Gets the type of #ICalComponent.","deprecated":null},{"type":"method","name":"isa","type_name":"Parameter","ident":"i_cal_parameter_isa","summary":"Checks the type of a #ICalParameter.","deprecated":null},{"type":"method","name":"isa","type_name":"Property","ident":"i_cal_property_isa","summary":"Gets the kind of #ICalProperty.","deprecated":null},{"type":"method","name":"isa","type_name":"Value","ident":"i_cal_value_isa","summary":"Gets the kind of #ICalValue.","deprecated":null},{"type":"method","name":"isa_component","type_name":"Component","ident":"i_cal_component_isa_component","summary":"Checks whether the native part of #ICalComponent is icalcomponent.","deprecated":null},{"type":"method","name":"isa_parameter","type_name":"Parameter","ident":"i_cal_parameter_isa_parameter","summary":"Checks whether the native part of the #ICalParameter is of type icalparameter.","deprecated":null},{"type":"method","name":"isa_property","type_name":"Property","ident":"i_cal_property_isa_property","summary":"Checks whether the native part of #ICalProperty is of the type icalproperty.","deprecated":null},{"type":"method","name":"isa_value","type_name":"Value","ident":"i_cal_value_isa_value","summary":"Checks whether the native part of #ICalValue is an icalvalue.","deprecated":null},{"type":"method","name":"merge_component","type_name":"Component","ident":"i_cal_component_merge_component","summary":"Takes 2 VCALENDAR components and merges the second one into the first, resolving any problems with conflicting TZIDs. comp_to_merge ...","deprecated":null},{"type":"method","name":"next","type_name":"CompIter","ident":"i_cal_comp_iter_next","summary":"Gets the next #ICalComponent pointed by #ICalCompIter.","deprecated":null},{"type":"method","name":"next","type_name":"RecurIterator","ident":"i_cal_recur_iterator_next","summary":"Gets the next occurrence from an iterator.","deprecated":null},{"type":"method","name":"normalize","type_name":"Time","ident":"i_cal_time_normalize","summary":"Normalizes the icaltime, so that all fields are within the normal range.","deprecated":null},{"type":"method","name":"normalize_inplace","type_name":"Time","ident":"i_cal_time_normalize_inplace","summary":"Normalizes the @tt, so that all fields are within the normal range.","deprecated":null},{"type":"method","name":"overlaps","type_name":"TimeSpan","ident":"i_cal_time_span_overlaps","summary":"Checks whether two spans overlap.","deprecated":null},{"type":"method","name":"parse","type_name":"Parser","ident":"i_cal_parser_parse","summary":"icalparser_parse takes a string that holds the text ( in RFC 2445 format ) and returns a pointer to ...","deprecated":null},{"type":"method","name":"prior","type_name":"CompIter","ident":"i_cal_comp_iter_prior","summary":"Gets the prior #ICalComponent pointed by #ICalCompIter.","deprecated":null},{"type":"method","name":"ref","type_name":"Attach","ident":"i_cal_attach_ref","summary":"Increases the reference counter by 1 for the @attach.","deprecated":null},{"type":"method","name":"ref","type_name":"Recurrence","ident":"i_cal_recurrence_ref","summary":"Increases the reference counter by 1 for the @self.","deprecated":null},{"type":"method","name":"ref_owner","type_name":"Object","ident":"i_cal_object_ref_owner","summary":"Obtain current owner of the native libical structure. The returned pointer, if not NULL, is referenced for thread safety. ...","deprecated":null},{"type":"method","name":"remove_component","type_name":"Component","ident":"i_cal_component_remove_component","summary":"Removes a child #ICalComponent from another #ICalComponent.","deprecated":null},{"type":"method","name":"remove_depender","type_name":"Object","ident":"i_cal_object_remove_depender","summary":"Removes a @depender from the list of objects which should not be destroyed before this @iobject, previously added with ...","deprecated":null},{"type":"method","name":"remove_element_at","type_name":"Array","ident":"i_cal_array_remove_element_at","summary":"Removes the element at the @position from the array.","deprecated":null},{"type":"method","name":"remove_owner","type_name":"Object","ident":"i_cal_object_remove_owner","summary":"Unref and remove the owner.","deprecated":null},{"type":"method","name":"remove_parameter_by_kind","type_name":"Property","ident":"i_cal_property_remove_parameter_by_kind","summary":"Removes the target kind of the parameters in the #ICalProperty.","deprecated":null},{"type":"method","name":"remove_parameter_by_name","type_name":"Property","ident":"i_cal_property_remove_parameter_by_name","summary":"Removes parameter in the #ICalProperty by name.","deprecated":null},{"type":"method","name":"remove_parameter_by_ref","type_name":"Property","ident":"i_cal_property_remove_parameter_by_ref","summary":"Removes the parameter in the #ICalProperty by ref.","deprecated":null},{"type":"method","name":"remove_property","type_name":"Component","ident":"i_cal_component_remove_property","summary":"Removes #ICalProperty from #ICalComponent. Caution: The compare is based on address. So you must use the original #ICalProperty as ...","deprecated":null},{"type":"method","name":"reset_kind","type_name":"Value","ident":"i_cal_value_reset_kind","summary":"Resets the kind of #ICalValue.","deprecated":null},{"type":"method","name":"resize_by_array","type_name":"Recurrence","ident":"i_cal_recurrence_resize_by_array","summary":"Resizes the 'by' array to the given size.","deprecated":null},{"type":"method","name":"set_acceptresponse","type_name":"Property","ident":"i_cal_property_set_acceptresponse","summary":"Sets the acceptresponse for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_acknowledged","type_name":"Property","ident":"i_cal_property_set_acknowledged","summary":"Sets the acknowledged time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_action","type_name":"Property","ident":"i_cal_property_set_action","summary":"Sets the action for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_action","type_name":"Value","ident":"i_cal_value_set_action","summary":"Sets the action in the #ICalValue.","deprecated":null},{"type":"method","name":"set_actionparam","type_name":"Parameter","ident":"i_cal_parameter_set_actionparam","summary":"No description available.","deprecated":null},{"type":"method","name":"set_allowconflict","type_name":"Property","ident":"i_cal_property_set_allowconflict","summary":"Sets the allowconflict for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_altrep","type_name":"Parameter","ident":"i_cal_parameter_set_altrep","summary":"No description available.","deprecated":null},{"type":"method","name":"set_always_destroy","type_name":"Object","ident":"i_cal_object_set_always_destroy","summary":"Sets the @ICalObject::always-destroy property value. When %TRUE, the native libical structure is always freed, even when an owner of ...","deprecated":null},{"type":"method","name":"set_attach","type_name":"Property","ident":"i_cal_property_set_attach","summary":"Sets the attach for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_attach","type_name":"Value","ident":"i_cal_value_set_attach","summary":"Sets the attach in the #ICalValue.","deprecated":null},{"type":"method","name":"set_attendee","type_name":"Property","ident":"i_cal_property_set_attendee","summary":"Sets the attendee for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_binary","type_name":"Value","ident":"i_cal_value_set_binary","summary":"Sets the binary in the #ICalValue.","deprecated":null},{"type":"method","name":"set_boolean","type_name":"Value","ident":"i_cal_value_set_boolean","summary":"Sets the boolean in the #ICalValue.","deprecated":null},{"type":"method","name":"set_busytype","type_name":"Property","ident":"i_cal_property_set_busytype","summary":"Sets the busytype for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_busytype","type_name":"Value","ident":"i_cal_value_set_busytype","summary":"Sets the busytype in the #ICalValue.","deprecated":null},{"type":"method","name":"set_by","type_name":"Recurrence","ident":"i_cal_recurrence_set_by","summary":"Sets the by array at the given index. Resizes the array to have a size of at least index+1 ...","deprecated":null},{"type":"method","name":"set_by_array","type_name":"Recurrence","ident":"i_cal_recurrence_set_by_array","summary":"Sets the given 'by' array.","deprecated":null},{"type":"method","name":"set_caladdress","type_name":"Value","ident":"i_cal_value_set_caladdress","summary":"Sets the caladdress in the #ICalValue.","deprecated":null},{"type":"method","name":"set_calendaraddress","type_name":"Property","ident":"i_cal_property_set_calendaraddress","summary":"Sets value @v to @prop of kind %I_CAL_CALENDARADDRESS_PROPERTY","deprecated":null},{"type":"method","name":"set_calid","type_name":"Property","ident":"i_cal_property_set_calid","summary":"Sets the calid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_calmaster","type_name":"Property","ident":"i_cal_property_set_calmaster","summary":"Sets the calmaster for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_calscale","type_name":"Property","ident":"i_cal_property_set_calscale","summary":"Sets the calscale for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_capversion","type_name":"Property","ident":"i_cal_property_set_capversion","summary":"Sets the capversion for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_carid","type_name":"Property","ident":"i_cal_property_set_carid","summary":"Sets the carid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_carlevel","type_name":"Property","ident":"i_cal_property_set_carlevel","summary":"Sets the carlevel for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_carlevel","type_name":"Value","ident":"i_cal_value_set_carlevel","summary":"Sets the carlevel in the #ICalValue.","deprecated":null},{"type":"method","name":"set_categories","type_name":"Property","ident":"i_cal_property_set_categories","summary":"Sets the categories for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_charset","type_name":"Parameter","ident":"i_cal_parameter_set_charset","summary":"No description available.","deprecated":null},{"type":"method","name":"set_class","type_name":"Property","ident":"i_cal_property_set_class","summary":"Sets the class for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_class","type_name":"Value","ident":"i_cal_value_set_class","summary":"Sets the class in the #ICalValue.","deprecated":null},{"type":"method","name":"set_cmd","type_name":"Property","ident":"i_cal_property_set_cmd","summary":"Sets the cmd for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_cmd","type_name":"Value","ident":"i_cal_value_set_cmd","summary":"Sets the cmd in the #ICalValue.","deprecated":null},{"type":"method","name":"set_cn","type_name":"Parameter","ident":"i_cal_parameter_set_cn","summary":"No description available.","deprecated":null},{"type":"method","name":"set_code","type_name":"Reqstat","ident":"i_cal_reqstat_set_code","summary":"Sets the code of #ICalReqstat.","deprecated":null},{"type":"method","name":"set_color","type_name":"Property","ident":"i_cal_property_set_color","summary":"Sets the color for the @prop.","deprecated":null},{"type":"method","name":"set_comment","type_name":"Component","ident":"i_cal_component_set_comment","summary":"Sets the comment of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_comment","type_name":"Property","ident":"i_cal_property_set_comment","summary":"Sets the comment for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_completed","type_name":"Property","ident":"i_cal_property_set_completed","summary":"Sets the completed time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_component","type_name":"Timezone","ident":"i_cal_timezone_set_component","summary":"Sets the VTIMEZONE component of #ICalTimezone, initializing the tzid, location and tzname fields. It returns 1 on success or ...","deprecated":null},{"type":"method","name":"set_components","type_name":"Property","ident":"i_cal_property_set_components","summary":"Sets the components for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_conference","type_name":"Property","ident":"i_cal_property_set_conference","summary":"Sets value @v to @prop of kind %I_CAL_CONFERENCE_PROPERTY","deprecated":null},{"type":"method","name":"set_contact","type_name":"Property","ident":"i_cal_property_set_contact","summary":"Sets the contact for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_count","type_name":"Recurrence","ident":"i_cal_recurrence_set_count","summary":"Sets the count from #ICalRecurrence.","deprecated":null},{"type":"method","name":"set_created","type_name":"Property","ident":"i_cal_property_set_created","summary":"Sets the created time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_csid","type_name":"Property","ident":"i_cal_property_set_csid","summary":"Sets the csid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_cutype","type_name":"Parameter","ident":"i_cal_parameter_set_cutype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_date","type_name":"Time","ident":"i_cal_time_set_date","summary":"Sets the year/month/date parts of the @timetype in one call. This doesn't verify validity of the given date.","deprecated":null},{"type":"method","name":"set_date","type_name":"Value","ident":"i_cal_value_set_date","summary":"Sets the date in the #ICalValue.","deprecated":null},{"type":"method","name":"set_datemax","type_name":"Property","ident":"i_cal_property_set_datemax","summary":"Sets the datemax time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_datemin","type_name":"Property","ident":"i_cal_property_set_datemin","summary":"Sets the datemin time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_datetime","type_name":"Value","ident":"i_cal_value_set_datetime","summary":"Sets the datetime in the #ICalValue.","deprecated":null},{"type":"method","name":"set_datetimedate","type_name":"Value","ident":"i_cal_value_set_datetimedate","summary":"Sets the datetimedate (DATE-TIME or DATE) in the #ICalValue.","deprecated":null},{"type":"method","name":"set_datetimeperiod","type_name":"Value","ident":"i_cal_value_set_datetimeperiod","summary":"Sets the datetimeperiod in the #ICalValue.","deprecated":null},{"type":"method","name":"set_day","type_name":"Time","ident":"i_cal_time_set_day","summary":"Sets the day of #ICalTime.","deprecated":null},{"type":"method","name":"set_days","type_name":"Duration","ident":"i_cal_duration_set_days","summary":"Sets the days of #ICalDuration.","deprecated":null},{"type":"method","name":"set_decreed","type_name":"Property","ident":"i_cal_property_set_decreed","summary":"Sets the decreed for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_defaultcharset","type_name":"Property","ident":"i_cal_property_set_defaultcharset","summary":"Sets the defaultcharset for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_defaultlocale","type_name":"Property","ident":"i_cal_property_set_defaultlocale","summary":"Sets the defaultlocale for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_defaulttzid","type_name":"Property","ident":"i_cal_property_set_defaulttzid","summary":"Sets the defaulttzid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_defaultvcars","type_name":"Property","ident":"i_cal_property_set_defaultvcars","summary":"Sets the defaultvcars for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_delegatedfrom","type_name":"Parameter","ident":"i_cal_parameter_set_delegatedfrom","summary":"No description available.","deprecated":null},{"type":"method","name":"set_delegatedto","type_name":"Parameter","ident":"i_cal_parameter_set_delegatedto","summary":"No description available.","deprecated":null},{"type":"method","name":"set_deny","type_name":"Property","ident":"i_cal_property_set_deny","summary":"Sets the deny for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_derived","type_name":"Parameter","ident":"i_cal_parameter_set_derived","summary":"Sets value @v to parameter @param of kind %I_CAL_DERIVED_PARAMETER","deprecated":null},{"type":"method","name":"set_description","type_name":"Component","ident":"i_cal_component_set_description","summary":"Sets the description of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_description","type_name":"Property","ident":"i_cal_property_set_description","summary":"Sets the description for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_dir","type_name":"Parameter","ident":"i_cal_parameter_set_dir","summary":"No description available.","deprecated":null},{"type":"method","name":"set_display","type_name":"Parameter","ident":"i_cal_parameter_set_display","summary":"No description available.","deprecated":null},{"type":"method","name":"set_dtend","type_name":"Component","ident":"i_cal_component_set_dtend","summary":"Sets the dtend of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_dtend","type_name":"Property","ident":"i_cal_property_set_dtend","summary":"Sets the dtend time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_dtstamp","type_name":"Component","ident":"i_cal_component_set_dtstamp","summary":"Sets the dtstamp of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_dtstamp","type_name":"Property","ident":"i_cal_property_set_dtstamp","summary":"Sets the dtstamp time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_dtstart","type_name":"Component","ident":"i_cal_component_set_dtstart","summary":"Sets the dtstart of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_dtstart","type_name":"Property","ident":"i_cal_property_set_dtstart","summary":"Sets the dtstart time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_due","type_name":"Component","ident":"i_cal_component_set_due","summary":"Sets the due of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_due","type_name":"Property","ident":"i_cal_property_set_due","summary":"Sets the due time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_duration","type_name":"Component","ident":"i_cal_component_set_duration","summary":"Sets the duration of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_duration","type_name":"Period","ident":"i_cal_period_set_duration","summary":"Sets the duration of an #ICalPeriod.","deprecated":null},{"type":"method","name":"set_duration","type_name":"Property","ident":"i_cal_property_set_duration","summary":"Sets the duration for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_duration","type_name":"Trigger","ident":"i_cal_trigger_set_duration","summary":"Sets the duration from #ICalTrigger.","deprecated":null},{"type":"method","name":"set_duration","type_name":"Value","ident":"i_cal_value_set_duration","summary":"Sets the duration in the #ICalValue.","deprecated":null},{"type":"method","name":"set_email","type_name":"Parameter","ident":"i_cal_parameter_set_email","summary":"No description available.","deprecated":null},{"type":"method","name":"set_enable","type_name":"Parameter","ident":"i_cal_parameter_set_enable","summary":"No description available.","deprecated":null},{"type":"method","name":"set_encoding","type_name":"Parameter","ident":"i_cal_parameter_set_encoding","summary":"No description available.","deprecated":null},{"type":"method","name":"set_end","type_name":"Period","ident":"i_cal_period_set_end","summary":"Sets the end time of an #ICalPeriod.","deprecated":null},{"type":"method","name":"set_end","type_name":"RecurIterator","ident":"i_cal_recur_iterator_set_end","summary":"Sets the date-time at which the iterator will stop at the latest. Values equal to or greater than end ...","deprecated":null},{"type":"method","name":"set_end","type_name":"TimeSpan","ident":"i_cal_time_span_set_end","summary":"Sets the end of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"set_estimatedduration","type_name":"Property","ident":"i_cal_property_set_estimatedduration","summary":"Sets the estimatedduration for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_exdate","type_name":"Property","ident":"i_cal_property_set_exdate","summary":"Sets the exdate time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_expand","type_name":"Property","ident":"i_cal_property_set_expand","summary":"Sets the expand for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_exrule","type_name":"Property","ident":"i_cal_property_set_exrule","summary":"Sets the exrule time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_fbtype","type_name":"Parameter","ident":"i_cal_parameter_set_fbtype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_feature","type_name":"Parameter","ident":"i_cal_parameter_set_feature","summary":"No description available.","deprecated":null},{"type":"method","name":"set_filename","type_name":"Parameter","ident":"i_cal_parameter_set_filename","summary":"No description available.","deprecated":null},{"type":"method","name":"set_float","type_name":"Value","ident":"i_cal_value_set_float","summary":"Sets the float in the #ICalValue.","deprecated":null},{"type":"method","name":"set_fmttype","type_name":"Parameter","ident":"i_cal_parameter_set_fmttype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_freebusy","type_name":"Property","ident":"i_cal_property_set_freebusy","summary":"Sets the freebusy time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_freq","type_name":"Recurrence","ident":"i_cal_recurrence_set_freq","summary":"Sets the freq from #ICalRecurrence.","deprecated":null},{"type":"method","name":"set_geo","type_name":"Property","ident":"i_cal_property_set_geo","summary":"Sets the geo for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_geo","type_name":"Value","ident":"i_cal_value_set_geo","summary":"Sets the geo in the #ICalValue.","deprecated":null},{"type":"method","name":"set_grant","type_name":"Property","ident":"i_cal_property_set_grant","summary":"Sets the grant for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_hour","type_name":"Time","ident":"i_cal_time_set_hour","summary":"Sets the hour of #ICalTime.","deprecated":null},{"type":"method","name":"set_hours","type_name":"Duration","ident":"i_cal_duration_set_hours","summary":"Sets the hours of #ICalDuration.","deprecated":null},{"type":"method","name":"set_iana","type_name":"Parameter","ident":"i_cal_parameter_set_iana","summary":"No description available.","deprecated":null},{"type":"method","name":"set_iana_name","type_name":"Parameter","ident":"i_cal_parameter_set_iana_name","summary":"Sets the iana_name property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"set_iana_value","type_name":"Parameter","ident":"i_cal_parameter_set_iana_value","summary":"Sets the iana_value property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"set_id","type_name":"Parameter","ident":"i_cal_parameter_set_id","summary":"No description available.","deprecated":null},{"type":"method","name":"set_image","type_name":"Property","ident":"i_cal_property_set_image","summary":"Sets value @v to @prop of kind %I_CAL_IMAGE_PROPERTY","deprecated":null},{"type":"method","name":"set_integer","type_name":"Value","ident":"i_cal_value_set_integer","summary":"Sets the integer in the #ICalValue.","deprecated":null},{"type":"method","name":"set_interval","type_name":"Recurrence","ident":"i_cal_recurrence_set_interval","summary":"Sets the interval from #ICalRecurrence.","deprecated":null},{"type":"method","name":"set_is_busy","type_name":"TimeSpan","ident":"i_cal_time_span_set_is_busy","summary":"Sets the is_busy of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"set_is_date","type_name":"Time","ident":"i_cal_time_set_is_date","summary":"Sets the is_date of #ICalTime.","deprecated":null},{"type":"method","name":"set_is_daylight","type_name":"Time","ident":"i_cal_time_set_is_daylight","summary":"Sets the is_daylight of #ICalTime.","deprecated":null},{"type":"method","name":"set_is_neg","type_name":"Duration","ident":"i_cal_duration_set_is_neg","summary":"Sets the is_neg of #ICalDuration.","deprecated":null},{"type":"method","name":"set_itipversion","type_name":"Property","ident":"i_cal_property_set_itipversion","summary":"Sets the itipversion for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_label","type_name":"Parameter","ident":"i_cal_parameter_set_label","summary":"No description available.","deprecated":null},{"type":"method","name":"set_language","type_name":"Parameter","ident":"i_cal_parameter_set_language","summary":"No description available.","deprecated":null},{"type":"method","name":"set_lastmodified","type_name":"Property","ident":"i_cal_property_set_lastmodified","summary":"Sets the lastmodified time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_lat","type_name":"Geo","ident":"i_cal_geo_set_lat","summary":"Sets the latitude of #ICalGeo.","deprecated":null},{"type":"method","name":"set_latency","type_name":"Parameter","ident":"i_cal_parameter_set_latency","summary":"No description available.","deprecated":null},{"type":"method","name":"set_local","type_name":"Parameter","ident":"i_cal_parameter_set_local","summary":"No description available.","deprecated":null},{"type":"method","name":"set_localize","type_name":"Parameter","ident":"i_cal_parameter_set_localize","summary":"No description available.","deprecated":null},{"type":"method","name":"set_location","type_name":"Component","ident":"i_cal_component_set_location","summary":"Sets the location of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_location","type_name":"Property","ident":"i_cal_property_set_location","summary":"Sets the location for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_locationtype","type_name":"Property","ident":"i_cal_property_set_locationtype","summary":"Sets value @v to @prop of kind %I_CAL_LOCATIONTYPE_PROPERTY","deprecated":null},{"type":"method","name":"set_lon","type_name":"Geo","ident":"i_cal_geo_set_lon","summary":"Sets the longitude of #ICalGeo.","deprecated":null},{"type":"method","name":"set_managedid","type_name":"Parameter","ident":"i_cal_parameter_set_managedid","summary":"No description available.","deprecated":null},{"type":"method","name":"set_maxcomponentsize","type_name":"Property","ident":"i_cal_property_set_maxcomponentsize","summary":"Sets the maxcomponentsize for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_maxdate","type_name":"Property","ident":"i_cal_property_set_maxdate","summary":"Sets the maxdate time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_maxresults","type_name":"Property","ident":"i_cal_property_set_maxresults","summary":"Sets the maxresults for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_maxresultssize","type_name":"Property","ident":"i_cal_property_set_maxresultssize","summary":"Sets the maxresultssize for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_member","type_name":"Parameter","ident":"i_cal_parameter_set_member","summary":"No description available.","deprecated":null},{"type":"method","name":"set_method","type_name":"Component","ident":"i_cal_component_set_method","summary":"Sets the method of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_method","type_name":"Property","ident":"i_cal_property_set_method","summary":"Sets the method for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_method","type_name":"Value","ident":"i_cal_value_set_method","summary":"Sets the method in the #ICalValue.","deprecated":null},{"type":"method","name":"set_mindate","type_name":"Property","ident":"i_cal_property_set_mindate","summary":"Sets the mindate time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_minute","type_name":"Time","ident":"i_cal_time_set_minute","summary":"Sets the minute of #ICalTime.","deprecated":null},{"type":"method","name":"set_minutes","type_name":"Duration","ident":"i_cal_duration_set_minutes","summary":"Sets the minutes of #ICalDuration.","deprecated":null},{"type":"method","name":"set_modified","type_name":"Parameter","ident":"i_cal_parameter_set_modified","summary":"No description available.","deprecated":null},{"type":"method","name":"set_month","type_name":"Time","ident":"i_cal_time_set_month","summary":"Sets the month of #ICalTime.","deprecated":null},{"type":"method","name":"set_multipart","type_name":"Property","ident":"i_cal_property_set_multipart","summary":"Sets the multipart for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_name","type_name":"Property","ident":"i_cal_property_set_name","summary":"Sets the name for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_native_destroy_func","type_name":"Object","ident":"i_cal_object_set_native_destroy_func","summary":"Sets a function to be used to destroy the native libical structure.","deprecated":null},{"type":"method","name":"set_options","type_name":"Parameter","ident":"i_cal_parameter_set_options","summary":"No description available.","deprecated":null},{"type":"method","name":"set_order","type_name":"Parameter","ident":"i_cal_parameter_set_order","summary":"Sets value @v to parameter @param of kind %I_CAL_ORDER_PARAMETER","deprecated":null},{"type":"method","name":"set_organizer","type_name":"Property","ident":"i_cal_property_set_organizer","summary":"Sets the organizer for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_owner","type_name":"Object","ident":"i_cal_object_set_owner","summary":"Sets an owner of the native libical structure, that is an object responsible for a destroy of the native ...","deprecated":null},{"type":"method","name":"set_owner","type_name":"Property","ident":"i_cal_property_set_owner","summary":"Sets the owner for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_parameter","type_name":"Property","ident":"i_cal_property_set_parameter","summary":"Sets a #ICalParameter into the #ICalProperty. It behaves like set the copy of the #ICalParameter. Upon completion the native ...","deprecated":null},{"type":"method","name":"set_parameter_from_string","type_name":"Property","ident":"i_cal_property_set_parameter_from_string","summary":"Sets the #ICalProperty with the parameter defined by the name and value.","deprecated":null},{"type":"method","name":"set_parent","type_name":"Component","ident":"i_cal_component_set_parent","summary":"Sets the @parent #ICalComponent of the specified @component.","deprecated":null},{"type":"method","name":"set_parent","type_name":"Parameter","ident":"i_cal_parameter_set_parent","summary":"Sets the parent #ICalProperty of an #ICalParameter.","deprecated":null},{"type":"method","name":"set_parent","type_name":"Property","ident":"i_cal_property_set_parent","summary":"Sets the parent #ICalComponent of the specified #ICalProperty.","deprecated":null},{"type":"method","name":"set_parent","type_name":"Value","ident":"i_cal_value_set_parent","summary":"Sets the parent property of a value.","deprecated":null},{"type":"method","name":"set_participanttype","type_name":"Property","ident":"i_cal_property_set_participanttype","summary":"Sets value @v to @prop of kind %I_CAL_PARTICIPANTTYPE_PROPERTY","deprecated":null},{"type":"method","name":"set_participanttype","type_name":"Value","ident":"i_cal_value_set_participanttype","summary":"Sets value @v to @val of kind %I_CAL_PARTICIPANTTYPE_VALUE","deprecated":null},{"type":"method","name":"set_partstat","type_name":"Parameter","ident":"i_cal_parameter_set_partstat","summary":"No description available.","deprecated":null},{"type":"method","name":"set_patchaction","type_name":"Parameter","ident":"i_cal_parameter_set_patchaction","summary":"No description available.","deprecated":null},{"type":"method","name":"set_patchdelete","type_name":"Property","ident":"i_cal_property_set_patchdelete","summary":"Sets value @v to @prop of kind %I_CAL_PATCHDELETE_PROPERTY","deprecated":null},{"type":"method","name":"set_patchorder","type_name":"Property","ident":"i_cal_property_set_patchorder","summary":"Sets value @v to @prop of kind %I_CAL_PATCHORDER_PROPERTY","deprecated":null},{"type":"method","name":"set_patchparameter","type_name":"Property","ident":"i_cal_property_set_patchparameter","summary":"Sets value @v to @prop of kind %I_CAL_PATCHPARAMETER_PROPERTY","deprecated":null},{"type":"method","name":"set_patchtarget","type_name":"Property","ident":"i_cal_property_set_patchtarget","summary":"Sets value @v to @prop of kind %I_CAL_PATCHTARGET_PROPERTY","deprecated":null},{"type":"method","name":"set_patchversion","type_name":"Property","ident":"i_cal_property_set_patchversion","summary":"Sets value @v to @prop of kind %I_CAL_PATCHVERSION_PROPERTY","deprecated":null},{"type":"method","name":"set_percentcomplete","type_name":"Property","ident":"i_cal_property_set_percentcomplete","summary":"Sets the percentcomplete for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_period","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_set_period","summary":"Sets the period attribute of #ICalDatetimeperiod.","deprecated":null},{"type":"method","name":"set_period","type_name":"Value","ident":"i_cal_value_set_period","summary":"Sets the period in the #ICalValue.","deprecated":null},{"type":"method","name":"set_permission","type_name":"Property","ident":"i_cal_property_set_permission","summary":"Sets the permission for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_pollcompletion","type_name":"Property","ident":"i_cal_property_set_pollcompletion","summary":"Sets the pollcompletion for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_pollcompletion","type_name":"Value","ident":"i_cal_value_set_pollcompletion","summary":"Sets the pollcompletion in the #ICalValue.","deprecated":null},{"type":"method","name":"set_pollitemid","type_name":"Property","ident":"i_cal_property_set_pollitemid","summary":"Sets the pollitemid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_pollmode","type_name":"Property","ident":"i_cal_property_set_pollmode","summary":"Sets the pollmode for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_pollmode","type_name":"Value","ident":"i_cal_value_set_pollmode","summary":"Sets the pollmode in the #ICalValue.","deprecated":null},{"type":"method","name":"set_pollproperties","type_name":"Property","ident":"i_cal_property_set_pollproperties","summary":"Sets the pollproperties for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_pollwinner","type_name":"Property","ident":"i_cal_property_set_pollwinner","summary":"Sets the pollwinner for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_priority","type_name":"Property","ident":"i_cal_property_set_priority","summary":"Sets the priority for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_prodid","type_name":"Property","ident":"i_cal_property_set_prodid","summary":"Sets the prodid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_proximity","type_name":"Property","ident":"i_cal_property_set_proximity","summary":"Sets value @v to @prop of kind %I_CAL_PROXIMITY_PROPERTY","deprecated":null},{"type":"method","name":"set_proximity","type_name":"Value","ident":"i_cal_value_set_proximity","summary":"Sets value @v to @val of kind %I_CAL_PROXIMITY_VALUE","deprecated":null},{"type":"method","name":"set_publiccomment","type_name":"Parameter","ident":"i_cal_parameter_set_publiccomment","summary":"No description available.","deprecated":null},{"type":"method","name":"set_query","type_name":"Property","ident":"i_cal_property_set_query","summary":"Sets the query for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_query","type_name":"Value","ident":"i_cal_value_set_query","summary":"Sets the query in the #ICalValue.","deprecated":null},{"type":"method","name":"set_queryid","type_name":"Property","ident":"i_cal_property_set_queryid","summary":"Sets the queryid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_querylevel","type_name":"Property","ident":"i_cal_property_set_querylevel","summary":"Sets the querylevel for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_querylevel","type_name":"Value","ident":"i_cal_value_set_querylevel","summary":"Sets the querylevel in the #ICalValue.","deprecated":null},{"type":"method","name":"set_queryname","type_name":"Property","ident":"i_cal_property_set_queryname","summary":"Sets the queryname for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_range","type_name":"Parameter","ident":"i_cal_parameter_set_range","summary":"No description available.","deprecated":null},{"type":"method","name":"set_rdate","type_name":"Property","ident":"i_cal_property_set_rdate","summary":"Sets the rdate for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_reason","type_name":"Parameter","ident":"i_cal_parameter_set_reason","summary":"No description available.","deprecated":null},{"type":"method","name":"set_recur","type_name":"Value","ident":"i_cal_value_set_recur","summary":"Sets the recur in the #ICalValue.","deprecated":null},{"type":"method","name":"set_recuraccepted","type_name":"Property","ident":"i_cal_property_set_recuraccepted","summary":"Sets the recuraccepted for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_recurexpand","type_name":"Property","ident":"i_cal_property_set_recurexpand","summary":"Sets the recurexpand for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_recurlimit","type_name":"Property","ident":"i_cal_property_set_recurlimit","summary":"Sets the recurlimit for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_recurrenceid","type_name":"Component","ident":"i_cal_component_set_recurrenceid","summary":"Sets the recurrenceid of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_recurrenceid","type_name":"Property","ident":"i_cal_property_set_recurrenceid","summary":"Sets the recurrenceid time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_refreshinterval","type_name":"Property","ident":"i_cal_property_set_refreshinterval","summary":"Sets value @v to @prop of kind %I_CAL_REFRESHINTERVAL_PROPERTY","deprecated":null},{"type":"method","name":"set_related","type_name":"Parameter","ident":"i_cal_parameter_set_related","summary":"No description available.","deprecated":null},{"type":"method","name":"set_relatedto","type_name":"Property","ident":"i_cal_property_set_relatedto","summary":"Sets the relatedto for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_relcalid","type_name":"Component","ident":"i_cal_component_set_relcalid","summary":"Sets the relcalid of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_relcalid","type_name":"Property","ident":"i_cal_property_set_relcalid","summary":"Sets the relcalid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_reltype","type_name":"Parameter","ident":"i_cal_parameter_set_reltype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_repeat","type_name":"Property","ident":"i_cal_property_set_repeat","summary":"Sets the repeat for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_replyurl","type_name":"Property","ident":"i_cal_property_set_replyurl","summary":"Sets the replyurl for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_requeststatus","type_name":"Property","ident":"i_cal_property_set_requeststatus","summary":"Sets the requeststatus for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_requeststatus","type_name":"Value","ident":"i_cal_value_set_requeststatus","summary":"Sets the requeststatus in the #ICalValue.","deprecated":null},{"type":"method","name":"set_required","type_name":"Parameter","ident":"i_cal_parameter_set_required","summary":"No description available.","deprecated":null},{"type":"method","name":"set_resources","type_name":"Property","ident":"i_cal_property_set_resources","summary":"Sets the resources for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_resourcetype","type_name":"Property","ident":"i_cal_property_set_resourcetype","summary":"Sets value @v to @prop of kind %I_CAL_RESOURCETYPE_PROPERTY","deprecated":null},{"type":"method","name":"set_resourcetype","type_name":"Value","ident":"i_cal_value_set_resourcetype","summary":"Sets value @v to @val of kind %I_CAL_RESOURCETYPE_VALUE","deprecated":null},{"type":"method","name":"set_response","type_name":"Parameter","ident":"i_cal_parameter_set_response","summary":"No description available.","deprecated":null},{"type":"method","name":"set_response","type_name":"Property","ident":"i_cal_property_set_response","summary":"Sets the response for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_restriction","type_name":"Property","ident":"i_cal_property_set_restriction","summary":"Sets the restriction for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_role","type_name":"Parameter","ident":"i_cal_parameter_set_role","summary":"No description available.","deprecated":null},{"type":"method","name":"set_rrule","type_name":"Property","ident":"i_cal_property_set_rrule","summary":"Sets the rrule for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_rsvp","type_name":"Parameter","ident":"i_cal_parameter_set_rsvp","summary":"No description available.","deprecated":null},{"type":"method","name":"set_scheduleagent","type_name":"Parameter","ident":"i_cal_parameter_set_scheduleagent","summary":"No description available.","deprecated":null},{"type":"method","name":"set_scheduleforcesend","type_name":"Parameter","ident":"i_cal_parameter_set_scheduleforcesend","summary":"No description available.","deprecated":null},{"type":"method","name":"set_schedulestatus","type_name":"Parameter","ident":"i_cal_parameter_set_schedulestatus","summary":"No description available.","deprecated":null},{"type":"method","name":"set_schema","type_name":"Parameter","ident":"i_cal_parameter_set_schema","summary":"Sets value @v to parameter @param of kind %I_CAL_SCHEMA_PARAMETER","deprecated":null},{"type":"method","name":"set_scope","type_name":"Property","ident":"i_cal_property_set_scope","summary":"Sets the scope for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_second","type_name":"Time","ident":"i_cal_time_set_second","summary":"Sets the second of #ICalTime.","deprecated":null},{"type":"method","name":"set_seconds","type_name":"Duration","ident":"i_cal_duration_set_seconds","summary":"Sets the seconds of #ICalDuration.","deprecated":null},{"type":"method","name":"set_sentby","type_name":"Parameter","ident":"i_cal_parameter_set_sentby","summary":"No description available.","deprecated":null},{"type":"method","name":"set_sequence","type_name":"Component","ident":"i_cal_component_set_sequence","summary":"Sets the sequence of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_sequence","type_name":"Property","ident":"i_cal_property_set_sequence","summary":"Sets the sequence for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_size","type_name":"Parameter","ident":"i_cal_parameter_set_size","summary":"No description available.","deprecated":null},{"type":"method","name":"set_source","type_name":"Property","ident":"i_cal_property_set_source","summary":"Sets value @v to @prop of kind %I_CAL_SOURCE_PROPERTY","deprecated":null},{"type":"method","name":"set_start","type_name":"Period","ident":"i_cal_period_set_start","summary":"Sets the start time of an #ICalPeriod.","deprecated":null},{"type":"method","name":"set_start","type_name":"RecurIterator","ident":"i_cal_recur_iterator_set_start","summary":"Sets the date-time at which the iterator will start, where 'start' is a value between DTSTART and UNTIL. Note: ...","deprecated":null},{"type":"method","name":"set_start","type_name":"TimeSpan","ident":"i_cal_time_span_set_start","summary":"Sets the start of #ICalTimeSpan.","deprecated":null},{"type":"method","name":"set_status","type_name":"Component","ident":"i_cal_component_set_status","summary":"Sets the status of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_status","type_name":"Property","ident":"i_cal_property_set_status","summary":"Sets the status for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_status","type_name":"Value","ident":"i_cal_value_set_status","summary":"Sets the status in the #ICalValue.","deprecated":null},{"type":"method","name":"set_stayinformed","type_name":"Parameter","ident":"i_cal_parameter_set_stayinformed","summary":"No description available.","deprecated":null},{"type":"method","name":"set_storesexpanded","type_name":"Property","ident":"i_cal_property_set_storesexpanded","summary":"Sets the storesexpanded for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_string","type_name":"Value","ident":"i_cal_value_set_string","summary":"Sets the string in the #ICalValue.","deprecated":null},{"type":"method","name":"set_structureddata","type_name":"Property","ident":"i_cal_property_set_structureddata","summary":"Sets value @v to @prop of kind %I_CAL_STRUCTUREDDATA_PROPERTY","deprecated":null},{"type":"method","name":"set_styleddescription","type_name":"Property","ident":"i_cal_property_set_styleddescription","summary":"Sets value @v to @prop of kind %I_CAL_STYLEDDESCRIPTION_PROPERTY","deprecated":null},{"type":"method","name":"set_substate","type_name":"Parameter","ident":"i_cal_parameter_set_substate","summary":"No description available.","deprecated":null},{"type":"method","name":"set_summary","type_name":"Component","ident":"i_cal_component_set_summary","summary":"Sets the summary of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_summary","type_name":"Property","ident":"i_cal_property_set_summary","summary":"Sets the summary for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_target","type_name":"Property","ident":"i_cal_property_set_target","summary":"Sets the target for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_taskmode","type_name":"Property","ident":"i_cal_property_set_taskmode","summary":"Sets the taskmode for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_taskmode","type_name":"Value","ident":"i_cal_value_set_taskmode","summary":"Sets the taskmode in the #ICalValue.","deprecated":null},{"type":"method","name":"set_text","type_name":"Value","ident":"i_cal_value_set_text","summary":"Sets the text in the #ICalValue.","deprecated":null},{"type":"method","name":"set_time","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_set_time","summary":"Sets the time attribute of #ICalDatetimeperiod.","deprecated":null},{"type":"method","name":"set_time","type_name":"Time","ident":"i_cal_time_set_time","summary":"Sets the hour/minute/second parts of the @timetype in one call. This doesn't verify validity of the given time.","deprecated":null},{"type":"method","name":"set_time","type_name":"Trigger","ident":"i_cal_trigger_set_time","summary":"Sets the time from #ICalTrigger.","deprecated":null},{"type":"method","name":"set_timezone","type_name":"Time","ident":"i_cal_time_set_timezone","summary":"Sets the timezone of the @tt.","deprecated":null},{"type":"method","name":"set_transp","type_name":"Property","ident":"i_cal_property_set_transp","summary":"Sets the transp for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_transp","type_name":"Value","ident":"i_cal_value_set_transp","summary":"Sets the transp in the #ICalValue.","deprecated":null},{"type":"method","name":"set_trigger","type_name":"Property","ident":"i_cal_property_set_trigger","summary":"Sets the trigger time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_trigger","type_name":"Value","ident":"i_cal_value_set_trigger","summary":"Sets the trigger in the #ICalValue.","deprecated":null},{"type":"method","name":"set_tzid","type_name":"Parameter","ident":"i_cal_parameter_set_tzid","summary":"No description available.","deprecated":null},{"type":"method","name":"set_tzid","type_name":"Property","ident":"i_cal_property_set_tzid","summary":"Sets the tzid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzidaliasof","type_name":"Property","ident":"i_cal_property_set_tzidaliasof","summary":"Sets the tzidaliasof for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzname","type_name":"Property","ident":"i_cal_property_set_tzname","summary":"Sets the tzname for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzoffsetfrom","type_name":"Property","ident":"i_cal_property_set_tzoffsetfrom","summary":"Sets the tzoffsetfrom for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzoffsetto","type_name":"Property","ident":"i_cal_property_set_tzoffsetto","summary":"Sets the tzoffsetto for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzuntil","type_name":"Property","ident":"i_cal_property_set_tzuntil","summary":"Sets the tzuntil time for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_tzurl","type_name":"Property","ident":"i_cal_property_set_tzurl","summary":"Sets the tzurl for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_uid","type_name":"Component","ident":"i_cal_component_set_uid","summary":"Sets the uid of the #ICalComponent.","deprecated":null},{"type":"method","name":"set_uid","type_name":"Property","ident":"i_cal_property_set_uid","summary":"Sets the uid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_until","type_name":"Recurrence","ident":"i_cal_recurrence_set_until","summary":"Sets the until from #ICalRecurrence.","deprecated":null},{"type":"method","name":"set_uri","type_name":"Value","ident":"i_cal_value_set_uri","summary":"Sets the uri in the #ICalValue.","deprecated":null},{"type":"method","name":"set_url","type_name":"Property","ident":"i_cal_property_set_url","summary":"Sets the url for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_utcoffset","type_name":"Value","ident":"i_cal_value_set_utcoffset","summary":"Sets the utcoffset in the #ICalValue.","deprecated":null},{"type":"method","name":"set_value","type_name":"Parameter","ident":"i_cal_parameter_set_value","summary":"No description available.","deprecated":null},{"type":"method","name":"set_value","type_name":"Property","ident":"i_cal_property_set_value","summary":"Sets the #ICalProperty with the #ICalValue.","deprecated":null},{"type":"method","name":"set_value_from_string","type_name":"Property","ident":"i_cal_property_set_value_from_string","summary":"Sets the #ICalProperty with the #ICalValue constructed from string.","deprecated":null},{"type":"method","name":"set_version","type_name":"Property","ident":"i_cal_property_set_version","summary":"Sets the version for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_voter","type_name":"Property","ident":"i_cal_property_set_voter","summary":"Sets the voter for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_week_start","type_name":"Recurrence","ident":"i_cal_recurrence_set_week_start","summary":"Sets the week_start from #ICalRecurrence.","deprecated":null},{"type":"method","name":"set_weeks","type_name":"Duration","ident":"i_cal_duration_set_weeks","summary":"Sets the weeks of #ICalDuration.","deprecated":null},{"type":"method","name":"set_x","type_name":"Parameter","ident":"i_cal_parameter_set_x","summary":"No description available.","deprecated":null},{"type":"method","name":"set_x","type_name":"Property","ident":"i_cal_property_set_x","summary":"Sets the x for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_x","type_name":"Value","ident":"i_cal_value_set_x","summary":"Sets the x in the #ICalValue.","deprecated":null},{"type":"method","name":"set_x_name","type_name":"Property","ident":"i_cal_property_set_x_name","summary":"Sets the name of x property for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicclass","type_name":"Property","ident":"i_cal_property_set_xlicclass","summary":"Sets the xlicclass for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicclass","type_name":"Value","ident":"i_cal_value_set_xlicclass","summary":"Sets the xlicclass in the #ICalValue.","deprecated":null},{"type":"method","name":"set_xlicclustercount","type_name":"Property","ident":"i_cal_property_set_xlicclustercount","summary":"Sets the xlicclustercount for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xliccomparetype","type_name":"Parameter","ident":"i_cal_parameter_set_xliccomparetype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_xlicerror","type_name":"Property","ident":"i_cal_property_set_xlicerror","summary":"Sets the xlicerror for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicerrortype","type_name":"Parameter","ident":"i_cal_parameter_set_xlicerrortype","summary":"No description available.","deprecated":null},{"type":"method","name":"set_xlicmimecharset","type_name":"Property","ident":"i_cal_property_set_xlicmimecharset","summary":"Sets the xlicmimecharset for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicmimecid","type_name":"Property","ident":"i_cal_property_set_xlicmimecid","summary":"Sets the xlicmimecid for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicmimecontenttype","type_name":"Property","ident":"i_cal_property_set_xlicmimecontenttype","summary":"Sets the xlicmimecontenttype for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicmimeencoding","type_name":"Property","ident":"i_cal_property_set_xlicmimeencoding","summary":"Sets the xlicmimeencoding for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicmimefilename","type_name":"Property","ident":"i_cal_property_set_xlicmimefilename","summary":"Sets the xlicmimefilename for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xlicmimeoptinfo","type_name":"Property","ident":"i_cal_property_set_xlicmimeoptinfo","summary":"Sets the xlicmimeoptinfo for the #ICalProperty.","deprecated":null},{"type":"method","name":"set_xname","type_name":"Parameter","ident":"i_cal_parameter_set_xname","summary":"Sets the xname property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"set_xvalue","type_name":"Parameter","ident":"i_cal_parameter_set_xvalue","summary":"Sets the xvalue property of the native part of the #ICalParameter.","deprecated":null},{"type":"method","name":"set_year","type_name":"Time","ident":"i_cal_time_set_year","summary":"Sets the year of #ICalTime.","deprecated":null},{"type":"method","name":"size","type_name":"Array","ident":"i_cal_array_size","summary":"Gets the size of the array.","deprecated":null},{"type":"method","name":"sort","type_name":"Array","ident":"i_cal_array_sort","summary":"Does not work right now. Sorts the @array using the sort function @compare.","deprecated":null},{"type":"method","name":"start_doy_week","type_name":"Time","ident":"i_cal_time_start_doy_week","summary":"Returns the day of the year for the first day of the week that the given time is within.","deprecated":null},{"type":"method","name":"steal_native","type_name":"Object","ident":"i_cal_object_steal_native","summary":"Obtain native libical structure pointer associated with this @iobject and sets the one at @iobject to NULL, thus it's ...","deprecated":null},{"type":"method","name":"strip_errors","type_name":"Component","ident":"i_cal_component_strip_errors","summary":"Removes all X-LIC-ERROR properties.","deprecated":null},{"type":"method","name":"subtract","type_name":"Time","ident":"i_cal_time_subtract","summary":"Gets the duration between two time.","deprecated":null},{"type":"method","name":"take_component","type_name":"Component","ident":"i_cal_component_take_component","summary":"Adds the @child into the @parent as a child component and unrefs the @child.","deprecated":null},{"type":"method","name":"take_parameter","type_name":"Property","ident":"i_cal_property_take_parameter","summary":"Adds the @parameter into the @prop and free the @parameter.","deprecated":null},{"type":"method","name":"take_property","type_name":"Component","ident":"i_cal_component_take_property","summary":"Adds the @property into the @component and unrefs the @property.","deprecated":null},{"type":"method","name":"take_value","type_name":"Property","ident":"i_cal_property_take_value","summary":"Sets the @prop with the @value and unrefs the @value.","deprecated":null},{"type":"method","name":"to_string","type_name":"Recurrence","ident":"i_cal_recurrence_to_string","summary":"Converts a #ICalRecurrence to a string.","deprecated":null},{"type":"method","name":"to_string","type_name":"Reqstat","ident":"i_cal_reqstat_to_string","summary":"Converts #ICalReqstat to a string representation.","deprecated":null},{"type":"method","name":"unref","type_name":"Attach","ident":"i_cal_attach_unref","summary":"Decreases the reference counter by 1 for the @attach.","deprecated":null},{"type":"method","name":"unref","type_name":"Recurrence","ident":"i_cal_recurrence_unref","summary":"Decreases the reference counter by 1 for the @self.","deprecated":null},{"type":"method","name":"week_number","type_name":"Time","ident":"i_cal_time_week_number","summary":"Returns the week number for the week the given time is within.","deprecated":null},{"type":"property","name":"always-destroy","type_name":"Object","summary":"Whether free the native libical structure on #ICalObject's finalize even if the object has set an owner.","deprecated":null},{"type":"property","name":"is-global-memory","type_name":"Object","summary":"Whether the native libical structure is from a global shared memory. If TRUE, then it is not freed on ...","deprecated":null},{"type":"property","name":"native","type_name":"Object","summary":"The native libical structure for this ICalObject.","deprecated":null},{"type":"property","name":"native-destroy-func","type_name":"Object","summary":"GDestroyNotify function to use to destroy the native libical pointer.","deprecated":null},{"type":"property","name":"owner","type_name":"Object","summary":"Owner of the native libical structure. If set, then it is responsible for a free of the native libical structure.","deprecated":null},{"type":"record","name":"_Array","ctype":"_ICalArray","summary":"No description available.","deprecated":null},{"type":"record","name":"_Attach","ctype":"_ICalAttach","summary":"No description available.","deprecated":null},{"type":"record","name":"_CompIter","ctype":"_ICalCompIter","summary":"No description available.","deprecated":null},{"type":"record","name":"_Component","ctype":"_ICalComponent","summary":"No description available.","deprecated":null},{"type":"record","name":"_Datetimeperiod","ctype":"_ICalDatetimeperiod","summary":"No description available.","deprecated":null},{"type":"record","name":"_Duration","ctype":"_ICalDuration","summary":"No description available.","deprecated":null},{"type":"record","name":"_Geo","ctype":"_ICalGeo","summary":"No description available.","deprecated":null},{"type":"record","name":"_Parameter","ctype":"_ICalParameter","summary":"No description available.","deprecated":null},{"type":"record","name":"_Parser","ctype":"_ICalParser","summary":"No description available.","deprecated":null},{"type":"record","name":"_Period","ctype":"_ICalPeriod","summary":"No description available.","deprecated":null},{"type":"record","name":"_Property","ctype":"_ICalProperty","summary":"No description available.","deprecated":null},{"type":"record","name":"_RecurIterator","ctype":"_ICalRecurIterator","summary":"No description available.","deprecated":null},{"type":"record","name":"_Recurrence","ctype":"_ICalRecurrence","summary":"No description available.","deprecated":null},{"type":"record","name":"_Reqstat","ctype":"_ICalReqstat","summary":"No description available.","deprecated":null},{"type":"record","name":"_Time","ctype":"_ICalTime","summary":"No description available.","deprecated":null},{"type":"record","name":"_TimeSpan","ctype":"_ICalTimeSpan","summary":"No description available.","deprecated":null},{"type":"record","name":"_Timezone","ctype":"_ICalTimezone","summary":"No description available.","deprecated":null},{"type":"record","name":"_Trigger","ctype":"_ICalTrigger","summary":"No description available.","deprecated":null},{"type":"record","name":"_Value","ctype":"_ICalValue","summary":"No description available.","deprecated":null},{"type":"type_func","name":"array_append_from_vtimezone","type_name":"Timezone","ident":"i_cal_timezone_array_append_from_vtimezone","summary":"Populate the array of timezones with a component. @note The @timezones assumes ownership of the @child, thus make ...","deprecated":null},{"type":"type_func","name":"array_destroy","type_name":"Timezone","ident":"i_cal_timezone_array_destroy","summary":"The destructor of the icalarray of icaltimezone elements to fully destroy the native object.","deprecated":null},{"type":"type_func","name":"array_element_at","type_name":"Timezone","ident":"i_cal_timezone_array_element_at","summary":"Gets the #ICalTimezone at specified position in array.","deprecated":null},{"type":"type_func","name":"array_free","type_name":"Timezone","ident":"i_cal_timezone_array_free","summary":"Frees an array of timezones.","deprecated":null},{"type":"type_func","name":"construct","type_name":"Object","ident":"i_cal_object_construct","summary":"Creates an #ICalObject descendant of type @type and initialize private members of it. The descendants should call this function ...","deprecated":null},{"type":"type_func","name":"day_day_of_week","type_name":"Recurrence","ident":"i_cal_recurrence_day_day_of_week","summary":"Decodes a day to a weekday in a week.","deprecated":null},{"type":"type_func","name":"day_position","type_name":"Recurrence","ident":"i_cal_recurrence_day_position","summary":"Decodes a day to a position of the weekday.","deprecated":null},{"type":"type_func","name":"days_in_month","type_name":"Time","ident":"i_cal_time_days_in_month","summary":"Gets the number of days in the target month in the target year.","deprecated":null},{"type":"type_func","name":"days_in_year","type_name":"Time","ident":"i_cal_time_days_in_year","summary":"Returns the number of days in this year.","deprecated":null},{"type":"type_func","name":"days_is_leap_year","type_name":"Time","ident":"i_cal_time_days_is_leap_year","summary":"Checks whether a year is a leap year.","deprecated":null},{"type":"type_func","name":"decode_ical_string","type_name":"Value","ident":"i_cal_value_decode_ical_string","summary":"Extracts the original character string encoded by the above function.","deprecated":null},{"type":"type_func","name":"destroy","type_name":"Timezone","ident":"i_cal_timezone_destroy","summary":"The destructor of the type #ICalTimezone to fully destroy the object by providing 1 as the second argument of ...","deprecated":null},{"type":"type_func","name":"encode_day","type_name":"Recurrence","ident":"i_cal_recurrence_encode_day","summary":"Encodes the @weekday and @position into a single value, which can by split by i_cal_recurrence_day_day_of_week() and i_cal_recurrence_day_position().","deprecated":null},{"type":"type_func","name":"encode_ical_string","type_name":"Value","ident":"i_cal_value_encode_ical_string","summary":"Encodes a character string in ical format, escape certain characters, etc.","deprecated":null},{"type":"type_func","name":"encode_month","type_name":"Recurrence","ident":"i_cal_recurrence_encode_month","summary":"Encodes the @month and the @is_leap flag into a single value, which can be split by i_cal_recurrence_month_is_leap() and i_cal_recurrence_month_month().","deprecated":null},{"type":"type_func","name":"enum_to_string","type_name":"Property","ident":"i_cal_property_enum_to_string","summary":"Converts the enum to string.","deprecated":null},{"type":"type_func","name":"free_builtin_timezones","type_name":"Timezone","ident":"i_cal_timezone_free_builtin_timezones","summary":"Frees any builtin timezone information.","deprecated":null},{"type":"type_func","name":"free_global_objects","type_name":"Object","ident":"i_cal_object_free_global_objects","summary":"Frees all global objects. Any references to them are invalidated by this call, unless they had been g_object_ref()-ed manually.","deprecated":null},{"type":"type_func","name":"free_zone_directory","type_name":"Timezone","ident":"i_cal_timezone_free_zone_directory","summary":"Frees memory dedicated to the zonefile directory.","deprecated":null},{"type":"type_func","name":"frequency_from_string","type_name":"Recurrence","ident":"i_cal_recurrence_frequency_from_string","summary":"Converts a string representation to an enum representation for the frequency.","deprecated":null},{"type":"type_func","name":"frequency_to_string","type_name":"Recurrence","ident":"i_cal_recurrence_frequency_to_string","summary":"Converts an enum representation to a string representation for the frequency.","deprecated":null},{"type":"type_func","name":"get_builtin_timezone","type_name":"Timezone","ident":"i_cal_timezone_get_builtin_timezone","summary":"Returns a single builtin timezone, given its Olson city name.","deprecated":null},{"type":"type_func","name":"get_builtin_timezone_from_offset","type_name":"Timezone","ident":"i_cal_timezone_get_builtin_timezone_from_offset","summary":"Returns a single builtin timezone, given its offset.","deprecated":null},{"type":"type_func","name":"get_builtin_timezone_from_tzid","type_name":"Timezone","ident":"i_cal_timezone_get_builtin_timezone_from_tzid","summary":"Returns a single builtin timezone, given its TZID.","deprecated":null},{"type":"type_func","name":"get_builtin_timezones","type_name":"Timezone","ident":"i_cal_timezone_get_builtin_timezones","summary":"Returns a list of builtin timezones.","deprecated":null},{"type":"type_func","name":"get_builtin_tzdata","type_name":"Timezone","ident":"i_cal_timezone_get_builtin_tzdata","summary":"Gets whether to use builtin timezones files.","deprecated":null},{"type":"type_func","name":"get_location_from_vtimezone","type_name":"Timezone","ident":"i_cal_timezone_get_location_from_vtimezone","summary":"Gets the location of the vtimezone in component.","deprecated":null},{"type":"type_func","name":"get_tznames_from_vtimezone","type_name":"Timezone","ident":"i_cal_timezone_get_tznames_from_vtimezone","summary":"Gets the name of the vtimezone in component.","deprecated":null},{"type":"type_func","name":"get_utc_timezone","type_name":"Timezone","ident":"i_cal_timezone_get_utc_timezone","summary":"Returns the UTC timezone.","deprecated":null},{"type":"type_func","name":"get_zone_directory","type_name":"Timezone","ident":"i_cal_timezone_get_zone_directory","summary":"Gets the directory to look for the zonefiles.","deprecated":null},{"type":"type_func","name":"kind_and_string_to_enum","type_name":"Property","ident":"i_cal_property_kind_and_string_to_enum","summary":"Converts an integer and string into an enum.","deprecated":null},{"type":"type_func","name":"kind_from_string","type_name":"Component","ident":"i_cal_component_kind_from_string","summary":"Converts a string to a #ICalComponentKind.","deprecated":null},{"type":"type_func","name":"kind_from_string","type_name":"Parameter","ident":"i_cal_parameter_kind_from_string","summary":"Converts a string to the #ICalParameterKind.","deprecated":null},{"type":"type_func","name":"kind_from_string","type_name":"Property","ident":"i_cal_property_kind_from_string","summary":"Converts the string to #ICalPropertyKind.","deprecated":null},{"type":"type_func","name":"kind_from_string","type_name":"Value","ident":"i_cal_value_kind_from_string","summary":"Converts a string to #ICalValueKind.","deprecated":null},{"type":"type_func","name":"kind_has_property","type_name":"Property","ident":"i_cal_property_kind_has_property","summary":"Checks whether the enum belongs to the #ICalPropertyKind.","deprecated":null},{"type":"type_func","name":"kind_is_valid","type_name":"Component","ident":"i_cal_component_kind_is_valid","summary":"Checks if a #ICalComponentKind is valid.","deprecated":null},{"type":"type_func","name":"kind_is_valid","type_name":"Parameter","ident":"i_cal_parameter_kind_is_valid","summary":"Checks whether #ICalParameterKind is valid.","deprecated":null},{"type":"type_func","name":"kind_is_valid","type_name":"Property","ident":"i_cal_property_kind_is_valid","summary":"Checks whether #ICalPropertyKind is valid.","deprecated":null},{"type":"type_func","name":"kind_is_valid","type_name":"Value","ident":"i_cal_value_kind_is_valid","summary":"Checks whether the #ICalValueKind is valid.","deprecated":null},{"type":"type_func","name":"kind_to_property_kind","type_name":"Value","ident":"i_cal_value_kind_to_property_kind","summary":"Converts a #ICalValueKind to a #ICalPropertyKind.","deprecated":null},{"type":"type_func","name":"kind_to_string","type_name":"Component","ident":"i_cal_component_kind_to_string","summary":"Converts a #ICalComponentKind to a string.","deprecated":null},{"type":"type_func","name":"kind_to_string","type_name":"Parameter","ident":"i_cal_parameter_kind_to_string","summary":"Converts the #ICalParameter to the string representation.","deprecated":null},{"type":"type_func","name":"kind_to_string","type_name":"Property","ident":"i_cal_property_kind_to_string","summary":"Converts the #ICalPropertyKind to a string.","deprecated":null},{"type":"type_func","name":"kind_to_string","type_name":"Value","ident":"i_cal_value_kind_to_string","summary":"Converts the #ICalValueKind to a string.","deprecated":null},{"type":"type_func","name":"kind_to_value_kind","type_name":"Property","ident":"i_cal_property_kind_to_value_kind","summary":"Converts the #ICalPropertyKind to #ICalValueKind.","deprecated":null},{"type":"type_func","name":"method_from_string","type_name":"Property","ident":"i_cal_property_method_from_string","summary":"Converts the string to #ICalPropertyKind.","deprecated":null},{"type":"type_func","name":"method_to_string","type_name":"Property","ident":"i_cal_property_method_to_string","summary":"Converts the #ICalPropertyMethod to string.","deprecated":null},{"type":"type_func","name":"month_is_leap","type_name":"Recurrence","ident":"i_cal_recurrence_month_is_leap","summary":"Decodes a month and check whether it is a leap month.","deprecated":null},{"type":"type_func","name":"month_month","type_name":"Recurrence","ident":"i_cal_recurrence_month_month","summary":"Decode a month from an encoded value by i_cal_recurrence_encode_month().","deprecated":null},{"type":"type_func","name":"new_default","type_name":"CompIter","ident":"i_cal_comp_iter_new_default","summary":"No description available.","deprecated":null},{"type":"type_func","name":"new_default","type_name":"Datetimeperiod","ident":"i_cal_datetimeperiod_new_default","summary":"Creates a new default #ICalDatetimeperiod.","deprecated":null},{"type":"type_func","name":"new_default","type_name":"Geo","ident":"i_cal_geo_new_default","summary":"Creates a new default #ICalGeo.","deprecated":null},{"type":"type_func","name":"new_default","type_name":"Recurrence","ident":"i_cal_recurrence_new_default","summary":"No description available.","deprecated":null},{"type":"type_func","name":"new_default","type_name":"Reqstat","ident":"i_cal_reqstat_new_default","summary":"Creates a new default #ICalReqstat.","deprecated":null},{"type":"type_func","name":"parse_string","type_name":"Parser","ident":"i_cal_parser_parse_string","summary":"Parses the string into a #ICalComponent.","deprecated":null},{"type":"type_func","name":"recurrence_is_excluded","type_name":"Property","ident":"i_cal_property_recurrence_is_excluded","summary":"Decides if this recurrence is acceptable. This function decides if a specific recurrence value is excluded by EXRULE or ...","deprecated":null},{"type":"type_func","name":"release_zone_tab","type_name":"Timezone","ident":"i_cal_timezone_release_zone_tab","summary":"Frees memory dedicated to the zonefile directory.","deprecated":null},{"type":"type_func","name":"rscale_is_supported","type_name":"Recurrence","ident":"i_cal_recurrence_rscale_is_supported","summary":"Checks whether rscale is supported.","deprecated":null},{"type":"type_func","name":"rscale_supported_calendars","type_name":"Recurrence","ident":"i_cal_recurrence_rscale_supported_calendars","summary":"Gets an array of calendars supporting rscale (currently always return NULL).","deprecated":null},{"type":"type_func","name":"set_builtin_tzdata","type_name":"Timezone","ident":"i_cal_timezone_set_builtin_tzdata","summary":"Sets whether to use builtin timezones files.","deprecated":null},{"type":"type_func","name":"set_tzid_prefix","type_name":"Timezone","ident":"i_cal_timezone_set_tzid_prefix","summary":"Sets the prefix to be used for tzid's generated from system tzdata. Must be globally unique (such as a ...","deprecated":null},{"type":"type_func","name":"set_zone_directory","type_name":"Timezone","ident":"i_cal_timezone_set_zone_directory","summary":"Sets the directory to look for the zonefiles.","deprecated":null},{"type":"type_func","name":"skip_from_string","type_name":"Recurrence","ident":"i_cal_recurrence_skip_from_string","summary":"Converts a string representation to an enum representation for the skip.","deprecated":null},{"type":"type_func","name":"skip_to_string","type_name":"Recurrence","ident":"i_cal_recurrence_skip_to_string","summary":"Converts an enum representation to a string representation for the skip.","deprecated":null},{"type":"type_func","name":"status_from_string","type_name":"Property","ident":"i_cal_property_status_from_string","summary":"Converts the string to #ICalPropertyKind.","deprecated":null},{"type":"type_func","name":"status_to_string","type_name":"Property","ident":"i_cal_property_status_to_string","summary":"Converts the #ICalPropertyStatus to string.","deprecated":null},{"type":"type_func","name":"timezone_expand_vtimezone","type_name":"Time","ident":"i_cal_time_timezone_expand_vtimezone","summary":"Applies a list of timezone changes on the array of components until the end year.","deprecated":null},{"type":"type_func","name":"value_to_value_kind","type_name":"Parameter","ident":"i_cal_parameter_value_to_value_kind","summary":"Converts the #ICalParameterValue to #ICalValueKind.","deprecated":null},{"type":"type_func","name":"weekday_from_string","type_name":"Recurrence","ident":"i_cal_recurrence_weekday_from_string","summary":"Converts a string representation to an enum representation for the weekday.","deprecated":null},{"type":"type_func","name":"weekday_to_string","type_name":"Recurrence","ident":"i_cal_recurrence_weekday_to_string","summary":"Converts an enum representation to a string representation for the weekday.","deprecated":null}],"terms":{}} \ No newline at end of file diff --git a/static/libical-glib/libical-glib.devhelp2 b/static/libical-glib/libical-glib.devhelp2 new file mode 100644 index 00000000..0d067958 --- /dev/null +++ b/static/libical-glib/libical-glib.devhelp2 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/libical-glib/main.js b/static/libical-glib/main.js new file mode 100644 index 00000000..4bb0582e --- /dev/null +++ b/static/libical-glib/main.js @@ -0,0 +1,177 @@ +// SPDX-FileCopyrightText: 2021 GNOME Foundation +// +// SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later +"use strict"; + + +const urlMap = new Map(typeof baseURLs !== 'undefined' ? baseURLs : []); + +window.addEventListener("hashchange", onDidHashChange); +window.addEventListener("load", onDidLoad, false); +window.addEventListener("keydown", onKeyDown); + +function onDidLoad() { + attachScrollHandlers() + attachToggleHandlers() + attachCopyHandlers() + + if (window.onInitSearch) { + window.onInitSearch() + } +} + +function onDidHashChange() { + // When URL fragment changes to ID of a collapsible section, + // expand it when it is collapsed. + // This is useful for clicking section links in the sidebar on the index page. + const sectionHeader = document.querySelector(".section-header" + location.hash); + if (sectionHeader !== null) { + const parent = sectionHeader.parentNode; + if (hasClass(parent, "toggle-wrapper")) { + const toggle = parent.querySelector(".collapse-toggle"); + if (hasClass(toggle, "collapsed")) { + toggle.click(); + } + } + } +} + + +function attachScrollHandlers() { + const btnToTop = document.getElementById("btn-to-top"); + + btnToTop.addEventListener('click', onClick); + window.addEventListener('scroll', onScroll); + + function onClick(e) { + e.preventDefault(); + window.scroll({ top: 0, behavior: 'smooth' }); + } + + function onScroll() { + if (window.scrollY < 400) { + addClass(btnToTop, "hidden"); + } else { + removeClass(btnToTop, "hidden"); + } + } +} + +function attachToggleHandlers() { + function label(isCollapsed) { + return ( + "[" + + (isCollapsed ? "+" : "\u2212") + + "]" + ) + } + + function createToggle(isCollapsed) { + const toggle = document.createElement("a"); + toggle.href = "javascript:void(0)"; + toggle.className = "collapse-toggle"; + toggle.innerHTML = label(isCollapsed); + toggle.addEventListener('click', onClickToggle); + return toggle; + } + + function onClickToggle() { + if (hasClass(this, "collapsed")) { + removeClass(this, "collapsed"); + this.innerHTML = label(false); + forEach(this.parentNode.querySelectorAll(".docblock"), function(e) { + removeClass(e, "hidden"); + }); + } else { + addClass(this, "collapsed"); + this.innerHTML = label(true); + forEach(this.parentNode.querySelectorAll(".docblock"), function(e) { + addClass(e, "hidden"); + }); + } + } + + forEach(document.querySelectorAll(".toggle-wrapper"), function(e) { + const sectionHeader = e.querySelector(".section-header"); + const fragmentMatches = sectionHeader !== null && location.hash === "#" + sectionHeader.getAttribute('id'); + const collapsedByDefault = hasClass(e, "default-hide") && !fragmentMatches; + const toggle = createToggle(collapsedByDefault); + e.insertBefore(toggle, e.firstChild); + if (collapsedByDefault) { + addClass(toggle, "collapsed"); + forEach(e.querySelectorAll(".docblock"), function(d) { + addClass(d, "hidden"); + }); + } + }); + + function resolveNamespaceLink(namespace) { + return urlMap.get(namespace); + } + + forEach(document.querySelectorAll(".external"), function(e) { + if (e.tagName == "A" && e.dataset.hasOwnProperty('namespace')) { + var data_namespace = e.dataset.namespace + var data_link = e.dataset.link + var base_url = resolveNamespaceLink(data_namespace) + if (base_url !== undefined) { + e.href = base_url + data_link; + } else { + e.title = "No reference to the " + data_namespace + " namespace"; + } + } + }) +} + +function attachCopyHandlers() { + if (!navigator.clipboard) + return; + + forEach(document.querySelectorAll(".codehilite"), function(e) { + const button = document.createElement("button"); + button.className = "copy-button"; + button.innerText = "Copy"; + button.title = "Copy code to clipboard"; + + const text = e.innerText; + button.addEventListener("click", () => { + navigator.clipboard.writeText(text); + }); + + e.appendChild(button); + }) +} + +function onKeyDown(event) { + let search_input = document.querySelector("#search-input"); + // We don't want to try to focus the search input if it isn't visible. That way + // we avoid the preventDefault(), hence allowing devhelp to use S as mnemonic. + let potentially_hidden_parent = search_input.closest('.hidden, .devhelp-hidden'); + + if (window.getComputedStyle(potentially_hidden_parent).display !== 'none' && + (event.key === "s" || event.key === "S") && + document.activeElement !== search_input) { + event.preventDefault(); + search_input.focus(); + } +} + +// Helpers + +function hasClass(elem, className) { + return elem && elem.classList && elem.classList.contains(className); +} + +function addClass(elem, className) { + return elem && elem.classList && elem.classList.add(className); +} + +function removeClass(elem, className) { + return elem && elem.classList && elem.classList.remove(className); +} + +function forEach(arr, func) { + for (let i = 0; i < arr.length; ++i) { + func(arr[i]) + } +} diff --git a/static/libical-glib/method.Array.copy.html b/static/libical-glib/method.Array.copy.html new file mode 100644 index 00000000..e39ffce1 --- /dev/null +++ b/static/libical-glib/method.Array.copy.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Array.copy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArraycopy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalArray*
    +i_cal_array_copy (
    +  ICalArray* array
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a deep copy of ICalArray with the same properties as the array.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalArray

    +

    The newly cloned ICalArray with the same value as the array.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Array.element_at.html b/static/libical-glib/method.Array.element_at.html new file mode 100644 index 00000000..e2084a8d --- /dev/null +++ b/static/libical-glib/method.Array.element_at.html @@ -0,0 +1,235 @@ + + + + + + ICalGLib.Array.element_at + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArrayelement_at

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    GObject*
    +i_cal_array_element_at (
    +  ICalArray* array,
    +  gint position
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the element located in the position in the array. NULL if position if out of bound.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    position
    +
    +

    Type: gint

    +

    The position the target element is located.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: GObject

    +

    The element located at the position in the array.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Array.free.html b/static/libical-glib/method.Array.free.html new file mode 100644 index 00000000..02654b18 --- /dev/null +++ b/static/libical-glib/method.Array.free.html @@ -0,0 +1,176 @@ + + + + + + ICalGLib.Array.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArrayfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_array_free (
    +  ICalArray* array
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees the ICalArray.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Array.remove_element_at.html b/static/libical-glib/method.Array.remove_element_at.html new file mode 100644 index 00000000..868e6031 --- /dev/null +++ b/static/libical-glib/method.Array.remove_element_at.html @@ -0,0 +1,209 @@ + + + + + + ICalGLib.Array.remove_element_at + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArrayremove_element_at

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_array_remove_element_at (
    +  ICalArray* array,
    +  gint position
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes the element at the position from the array.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    position
    +
    +

    Type: gint

    +

    The position in which the element will be removed from the array.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Array.size.html b/static/libical-glib/method.Array.size.html new file mode 100644 index 00000000..865a191f --- /dev/null +++ b/static/libical-glib/method.Array.size.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Array.size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArraysize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_array_size (
    +  ICalArray* array
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the size of the array.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The size of current array.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Array.sort.html b/static/libical-glib/method.Array.sort.html new file mode 100644 index 00000000..c3daedeb --- /dev/null +++ b/static/libical-glib/method.Array.sort.html @@ -0,0 +1,209 @@ + + + + + + ICalGLib.Array.sort + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibArraysort

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_array_sort (
    +  ICalArray* array,
    +  gpointer* compare
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Does not work right now. Sorts the array using the sort function compare.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    compare
    +
    +

    Type: gpointer*

    +

    The compare function.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Attach.get_data.html b/static/libical-glib/method.Attach.get_data.html new file mode 100644 index 00000000..785dc004 --- /dev/null +++ b/static/libical-glib/method.Attach.get_data.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Attach.get_data + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibAttachget_data

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_attach_get_data (
    +  ICalAttach* attach
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the data, if the ICalAttach is built from the data.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The data component of the attach. NULL if it is built from url or there is an error.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Attach.get_is_url.html b/static/libical-glib/method.Attach.get_is_url.html new file mode 100644 index 00000000..0dc4799a --- /dev/null +++ b/static/libical-glib/method.Attach.get_is_url.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Attach.get_is_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibAttachget_is_url

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_attach_get_is_url (
    +  ICalAttach* attach
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the ICalAttach is built from url.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether the attach is built from url.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Attach.get_url.html b/static/libical-glib/method.Attach.get_url.html new file mode 100644 index 00000000..93596b24 --- /dev/null +++ b/static/libical-glib/method.Attach.get_url.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Attach.get_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibAttachget_url

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_attach_get_url (
    +  ICalAttach* attach
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the url, if the ICalAttach is built from the url.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The url component of the attach. NULL if it is built from data or there is an error.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Attach.ref.html b/static/libical-glib/method.Attach.ref.html new file mode 100644 index 00000000..ada0cf06 --- /dev/null +++ b/static/libical-glib/method.Attach.ref.html @@ -0,0 +1,174 @@ + + + + + + ICalGLib.Attach.ref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibAttachref

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_attach_ref (
    +  ICalAttach* attach
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Increases the reference counter by 1 for the attach.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Attach.unref.html b/static/libical-glib/method.Attach.unref.html new file mode 100644 index 00000000..73615341 --- /dev/null +++ b/static/libical-glib/method.Attach.unref.html @@ -0,0 +1,174 @@ + + + + + + ICalGLib.Attach.unref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibAttachunref

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_attach_unref (
    +  ICalAttach* attach
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decreases the reference counter by 1 for the attach.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.CompIter.deref.html b/static/libical-glib/method.CompIter.deref.html new file mode 100644 index 00000000..12d6c3b7 --- /dev/null +++ b/static/libical-glib/method.CompIter.deref.html @@ -0,0 +1,196 @@ + + + + + + ICalGLib.CompIter.deref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibCompIterderef

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_comp_iter_deref (
    +  ICalCompIter* i
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the current ICalComponent pointed by ICalCompIter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    A ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.CompIter.next.html b/static/libical-glib/method.CompIter.next.html new file mode 100644 index 00000000..f945d0b4 --- /dev/null +++ b/static/libical-glib/method.CompIter.next.html @@ -0,0 +1,196 @@ + + + + + + ICalGLib.CompIter.next + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibCompIternext

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_comp_iter_next (
    +  ICalCompIter* i
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the next ICalComponent pointed by ICalCompIter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    A ICalCompIter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.CompIter.prior.html b/static/libical-glib/method.CompIter.prior.html new file mode 100644 index 00000000..141c53ac --- /dev/null +++ b/static/libical-glib/method.CompIter.prior.html @@ -0,0 +1,196 @@ + + + + + + ICalGLib.CompIter.prior + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibCompIterprior

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_comp_iter_prior (
    +  ICalCompIter* i
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the prior ICalComponent pointed by ICalCompIter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    A ICalCompIter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.add_component.html b/static/libical-glib/method.Component.add_component.html new file mode 100644 index 00000000..ebd69beb --- /dev/null +++ b/static/libical-glib/method.Component.add_component.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.add_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentadd_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_add_component (
    +  ICalComponent* parent,
    +  ICalComponent* child
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds a ICalComponent into another ICalComponent as a child component.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    child
    +
    +

    Type: ICalComponent

    +

    A child ICalComponent.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.add_property.html b/static/libical-glib/method.Component.add_property.html new file mode 100644 index 00000000..d493bda0 --- /dev/null +++ b/static/libical-glib/method.Component.add_property.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.add_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentadd_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_add_property (
    +  ICalComponent* component,
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds an ICalProperty into ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    property
    +
    +

    Type: ICalProperty

    +

    An ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.as_ical_string.html b/static/libical-glib/method.Component.as_ical_string.html new file mode 100644 index 00000000..93b00c8d --- /dev/null +++ b/static/libical-glib/method.Component.as_ical_string.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_component_as_ical_string (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a ICalComponent to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.begin_component.html b/static/libical-glib/method.Component.begin_component.html new file mode 100644 index 00000000..62adeb34 --- /dev/null +++ b/static/libical-glib/method.Component.begin_component.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.begin_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentbegin_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalCompIter*
    +i_cal_component_begin_component (
    +  ICalComponent* component,
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the ICalCompIter pointing to the first child ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalCompIter

    +

    A ICalCompIter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.check_restrictions.html b/static/libical-glib/method.Component.check_restrictions.html new file mode 100644 index 00000000..cced5742 --- /dev/null +++ b/static/libical-glib/method.Component.check_restrictions.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.check_restrictions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentcheck_restrictions

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_check_restrictions (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks the number of restrictions in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The number of restrictions in comp.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.clone.html b/static/libical-glib/method.Component.clone.html new file mode 100644 index 00000000..faf24cb7 --- /dev/null +++ b/static/libical-glib/method.Component.clone.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentclone

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_clone (
    +  const ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Deeply clone a ICalComponent.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The newly deeply cloned ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.convert_errors.html b/static/libical-glib/method.Component.convert_errors.html new file mode 100644 index 00000000..bfaea883 --- /dev/null +++ b/static/libical-glib/method.Component.convert_errors.html @@ -0,0 +1,294 @@ + + + + + + ICalGLib.Component.convert_errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentconvert_errors

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_convert_errors (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts some X-LIC-ERROR properties into RETURN-STATUS properties.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.count_components.html b/static/libical-glib/method.Component.count_components.html new file mode 100644 index 00000000..17934add --- /dev/null +++ b/static/libical-glib/method.Component.count_components.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.count_components + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentcount_components

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_count_components (
    +  ICalComponent* component,
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Counts the child ICalComponent with the target kind in the parent one.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    The target ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The count of child ICalComponent in the parent one.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.count_errors.html b/static/libical-glib/method.Component.count_errors.html new file mode 100644 index 00000000..3543a6cc --- /dev/null +++ b/static/libical-glib/method.Component.count_errors.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.count_errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentcount_errors

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_count_errors (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Counts the number of errors in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The count of errors.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.count_properties.html b/static/libical-glib/method.Component.count_properties.html new file mode 100644 index 00000000..497fbdb3 --- /dev/null +++ b/static/libical-glib/method.Component.count_properties.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.count_properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentcount_properties

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_count_properties (
    +  ICalComponent* component,
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Counts the number of ICalProperty in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The number of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.end_component.html b/static/libical-glib/method.Component.end_component.html new file mode 100644 index 00000000..7d58a852 --- /dev/null +++ b/static/libical-glib/method.Component.end_component.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.end_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentend_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalCompIter*
    +i_cal_component_end_component (
    +  ICalComponent* component,
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the ICalCompIter pointing to the end child ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalCompIter

    +

    A ICalCompIter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.foreach_recurrence.html b/static/libical-glib/method.Component.foreach_recurrence.html new file mode 100644 index 00000000..354fd2bb --- /dev/null +++ b/static/libical-glib/method.Component.foreach_recurrence.html @@ -0,0 +1,383 @@ + + + + + + ICalGLib.Component.foreach_recurrence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentforeach_recurrence

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_foreach_recurrence (
    +  ICalComponent* comp,
    +  ICalTime* start,
    +  ICalTime* end,
    +  ICalComponentForeachRecurrenceFunc callback,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Cycles through all recurrences of an event. This function will call the specified callback function for +once for the base value of DTSTART, and foreach recurring date/time value. It will filter out events +that are specified as an EXDATE or an EXRULE.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    start
    +
    +

    Type: ICalTime

    +

    Ignore timespans before this.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + +
    end
    +
    +

    Type: ICalTime

    +

    Ignore timespans after this.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + +
    callback
    +
    +

    Type: ICalComponentForeachRecurrenceFunc

    +

    Function called for each timespan within the range.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The user data for callback function.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.foreach_tzid.html b/static/libical-glib/method.Component.foreach_tzid.html new file mode 100644 index 00000000..3db373f3 --- /dev/null +++ b/static/libical-glib/method.Component.foreach_tzid.html @@ -0,0 +1,345 @@ + + + + + + ICalGLib.Component.foreach_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentforeach_tzid

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_foreach_tzid (
    +  ICalComponent* comp,
    +  ICalComponentForeachTZIDFunc callback,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Applies the same manipulation on every tzid in ICalComponent.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    callback
    +
    +

    Type: ICalComponentForeachTZIDFunc

    +

    The callback function.

    + + + + + + + + + + +
    The argument can be NULL.
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The data for callback function.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.free.html b/static/libical-glib/method.Component.free.html new file mode 100644 index 00000000..7ca1aabd --- /dev/null +++ b/static/libical-glib/method.Component.free.html @@ -0,0 +1,294 @@ + + + + + + ICalGLib.Component.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_free (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees a ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_comment.html b/static/libical-glib/method.Component.get_comment.html new file mode 100644 index 00000000..13bd3a06 --- /dev/null +++ b/static/libical-glib/method.Component.get_comment.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_comment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_comment

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_comment (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the comment of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The comment of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_current_component.html b/static/libical-glib/method.Component.get_current_component.html new file mode 100644 index 00000000..f9187081 --- /dev/null +++ b/static/libical-glib/method.Component.get_current_component.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_current_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_current_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_current_component (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the current ICalComponent in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The current ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_current_property.html b/static/libical-glib/method.Component.get_current_property.html new file mode 100644 index 00000000..46b36b9e --- /dev/null +++ b/static/libical-glib/method.Component.get_current_property.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_current_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_current_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_component_get_current_property (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the current ICalProperty in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The current ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_description.html b/static/libical-glib/method.Component.get_description.html new file mode 100644 index 00000000..6c68a1c4 --- /dev/null +++ b/static/libical-glib/method.Component.get_description.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_description

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_description (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the description of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The description of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_dtend.html b/static/libical-glib/method.Component.get_dtend.html new file mode 100644 index 00000000..ddbb880f --- /dev/null +++ b/static/libical-glib/method.Component.get_dtend.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_dtend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_dtend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_component_get_dtend (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtend of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_dtstamp.html b/static/libical-glib/method.Component.get_dtstamp.html new file mode 100644 index 00000000..3bd4e920 --- /dev/null +++ b/static/libical-glib/method.Component.get_dtstamp.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_dtstamp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_dtstamp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_component_get_dtstamp (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtstamp of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_dtstart.html b/static/libical-glib/method.Component.get_dtstart.html new file mode 100644 index 00000000..53582a9b --- /dev/null +++ b/static/libical-glib/method.Component.get_dtstart.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_dtstart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_dtstart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_component_get_dtstart (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtstart of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_due.html b/static/libical-glib/method.Component.get_due.html new file mode 100644 index 00000000..1b92c5a4 --- /dev/null +++ b/static/libical-glib/method.Component.get_due.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_due + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_due

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_component_get_due (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the due of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_duration.html b/static/libical-glib/method.Component.get_duration.html new file mode 100644 index 00000000..b725b25c --- /dev/null +++ b/static/libical-glib/method.Component.get_duration.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_component_get_duration (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    An ICalDuration.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_first_component.html b/static/libical-glib/method.Component.get_first_component.html new file mode 100644 index 00000000..3a5105e0 --- /dev/null +++ b/static/libical-glib/method.Component.get_first_component.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.get_first_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_first_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_first_component (
    +  ICalComponent* component,
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the first ICalComponent with specific kind in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The first ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_first_property.html b/static/libical-glib/method.Component.get_first_property.html new file mode 100644 index 00000000..0199a1f9 --- /dev/null +++ b/static/libical-glib/method.Component.get_first_property.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.get_first_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_first_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_component_get_first_property (
    +  ICalComponent* component,
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the first ICalProperty with specific kind in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The first ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_first_real_component.html b/static/libical-glib/method.Component.get_first_real_component.html new file mode 100644 index 00000000..72ffec78 --- /dev/null +++ b/static/libical-glib/method.Component.get_first_real_component.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_first_real_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_first_real_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_first_real_component (
    +  ICalComponent* c
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    For VCOMPONENT: Returns a reference to the first VEVENT, VTODO or VJOURNAL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    A reference to the first VEVENT, VTODO or VJOURNAL.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_inner.html b/static/libical-glib/method.Component.get_inner.html new file mode 100644 index 00000000..ad104339 --- /dev/null +++ b/static/libical-glib/method.Component.get_inner.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_inner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_inner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_inner (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the first VEVENT, VTODO or VJOURNAL sub-component of cop, or comp if it is one of those types.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The first VEVENT, VTODO or VJOURNAL sub-component.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_location.html b/static/libical-glib/method.Component.get_location.html new file mode 100644 index 00000000..7a3605c7 --- /dev/null +++ b/static/libical-glib/method.Component.get_location.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_location

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_location (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the location of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The location of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_method.html b/static/libical-glib/method.Component.get_method.html new file mode 100644 index 00000000..298f0613 --- /dev/null +++ b/static/libical-glib/method.Component.get_method.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyMethod
    +i_cal_component_get_method (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the method of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyMethod

    +

    A ICalPropertyMethod.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_next_component.html b/static/libical-glib/method.Component.get_next_component.html new file mode 100644 index 00000000..024f47ae --- /dev/null +++ b/static/libical-glib/method.Component.get_next_component.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.get_next_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_next_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_next_component (
    +  ICalComponent* component,
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the next ICalComponent with specific kind in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The next ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_next_property.html b/static/libical-glib/method.Component.get_next_property.html new file mode 100644 index 00000000..34240e66 --- /dev/null +++ b/static/libical-glib/method.Component.get_next_property.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.get_next_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_next_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_component_get_next_property (
    +  ICalComponent* component,
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the next ICalProperty with specific kind in ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The next ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_parent.html b/static/libical-glib/method.Component.get_parent.html new file mode 100644 index 00000000..7a5c31a5 --- /dev/null +++ b/static/libical-glib/method.Component.get_parent.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_component_get_parent (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the parent component of the component.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The parent ICalComponent of the component.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_recurrenceid.html b/static/libical-glib/method.Component.get_recurrenceid.html new file mode 100644 index 00000000..75d4473e --- /dev/null +++ b/static/libical-glib/method.Component.get_recurrenceid.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_recurrenceid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_recurrenceid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_component_get_recurrenceid (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recurrenceid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_relcalid.html b/static/libical-glib/method.Component.get_relcalid.html new file mode 100644 index 00000000..905e59bc --- /dev/null +++ b/static/libical-glib/method.Component.get_relcalid.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_relcalid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_relcalid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_relcalid (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the relcalid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The relcalid of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_sequence.html b/static/libical-glib/method.Component.get_sequence.html new file mode 100644 index 00000000..8e3ac068 --- /dev/null +++ b/static/libical-glib/method.Component.get_sequence.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_sequence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_sequence

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_get_sequence (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the sequence of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The sequence of comp.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_span.html b/static/libical-glib/method.Component.get_span.html new file mode 100644 index 00000000..f9100197 --- /dev/null +++ b/static/libical-glib/method.Component.get_span.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_span + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_span

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimeSpan*
    +i_cal_component_get_span (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    For VEVENT, VTODO, VJOURNAL and VTIMEZONE: reports the start and end times of an event in UTC.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimeSpan

    +

    A ICalTimeSpan.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_status.html b/static/libical-glib/method.Component.get_status.html new file mode 100644 index 00000000..8e66e153 --- /dev/null +++ b/static/libical-glib/method.Component.get_status.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyStatus
    +i_cal_component_get_status (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the status of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyStatus

    +

    A ICalPropertyStatus.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_summary.html b/static/libical-glib/method.Component.get_summary.html new file mode 100644 index 00000000..4d970a77 --- /dev/null +++ b/static/libical-glib/method.Component.get_summary.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_summary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_summary (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the summary of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The summary of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_timezone.html b/static/libical-glib/method.Component.get_timezone.html new file mode 100644 index 00000000..09c70f9a --- /dev/null +++ b/static/libical-glib/method.Component.get_timezone.html @@ -0,0 +1,353 @@ + + + + + + ICalGLib.Component.get_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_component_get_timezone (
    +  ICalComponent* comp,
    +  const gchar* tzid
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can’t be found.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    tzid
    +
    +

    Type: const gchar*

    +

    A string representing timezone.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    A ICalTimezone.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.get_uid.html b/static/libical-glib/method.Component.get_uid.html new file mode 100644 index 00000000..d15fc43f --- /dev/null +++ b/static/libical-glib/method.Component.get_uid.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.get_uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentget_uid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_get_uid (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the uid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The uid of comp.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.is_valid.html b/static/libical-glib/method.Component.is_valid.html new file mode 100644 index 00000000..9968a211 --- /dev/null +++ b/static/libical-glib/method.Component.is_valid.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentis_valid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_component_is_valid (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether ICalComponent is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.isa.html b/static/libical-glib/method.Component.isa.html new file mode 100644 index 00000000..0cdb841b --- /dev/null +++ b/static/libical-glib/method.Component.isa.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.isa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentisa

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponentKind
    +i_cal_component_isa (
    +  const ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the type of ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.isa_component.html b/static/libical-glib/method.Component.isa_component.html new file mode 100644 index 00000000..b9c67bc2 --- /dev/null +++ b/static/libical-glib/method.Component.isa_component.html @@ -0,0 +1,320 @@ + + + + + + ICalGLib.Component.isa_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentisa_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_component_isa_component (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the native part of ICalComponent is icalcomponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.merge_component.html b/static/libical-glib/method.Component.merge_component.html new file mode 100644 index 00000000..51078a8f --- /dev/null +++ b/static/libical-glib/method.Component.merge_component.html @@ -0,0 +1,328 @@ + + + + + + ICalGLib.Component.merge_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentmerge_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_merge_component (
    +  ICalComponent* comp,
    +  ICalComponent* comp_to_merge
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Takes 2 VCALENDAR components and merges the second one into the first, resolving any problems with conflicting +TZIDs. comp_to_merge will no longer exist after calling this function.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp_to_merge
    +
    +

    Type: ICalComponent

    +

    A ICalComponent. After merged it will not exist any more.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.remove_component.html b/static/libical-glib/method.Component.remove_component.html new file mode 100644 index 00000000..e7059536 --- /dev/null +++ b/static/libical-glib/method.Component.remove_component.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.remove_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentremove_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_remove_component (
    +  ICalComponent* parent,
    +  ICalComponent* child
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes a child ICalComponent from another ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    child
    +
    +

    Type: ICalComponent

    +

    A child ICalComponent.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.remove_property.html b/static/libical-glib/method.Component.remove_property.html new file mode 100644 index 00000000..d9f310ce --- /dev/null +++ b/static/libical-glib/method.Component.remove_property.html @@ -0,0 +1,328 @@ + + + + + + ICalGLib.Component.remove_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentremove_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_remove_property (
    +  ICalComponent* component,
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes ICalProperty from ICalComponent. Caution: The compare is based on address. So you must use +the original ICalProperty as the target.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    property
    +
    +

    Type: ICalProperty

    +

    A ICalProperty.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_comment.html b/static/libical-glib/method.Component.set_comment.html new file mode 100644 index 00000000..3fd4e072 --- /dev/null +++ b/static/libical-glib/method.Component.set_comment.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_comment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_comment

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_comment (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the comment of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing comment.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_description.html b/static/libical-glib/method.Component.set_description.html new file mode 100644 index 00000000..01abf9ca --- /dev/null +++ b/static/libical-glib/method.Component.set_description.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_description

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_description (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the description of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing description.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_dtend.html b/static/libical-glib/method.Component.set_dtend.html new file mode 100644 index 00000000..25fe29be --- /dev/null +++ b/static/libical-glib/method.Component.set_dtend.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_dtend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_dtend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_dtend (
    +  ICalComponent* comp,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtend of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_dtstamp.html b/static/libical-glib/method.Component.set_dtstamp.html new file mode 100644 index 00000000..ef1c4ad1 --- /dev/null +++ b/static/libical-glib/method.Component.set_dtstamp.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_dtstamp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_dtstamp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_dtstamp (
    +  ICalComponent* comp,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtstamp of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_dtstart.html b/static/libical-glib/method.Component.set_dtstart.html new file mode 100644 index 00000000..52c846db --- /dev/null +++ b/static/libical-glib/method.Component.set_dtstart.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_dtstart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_dtstart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_dtstart (
    +  ICalComponent* comp,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtstart of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_due.html b/static/libical-glib/method.Component.set_due.html new file mode 100644 index 00000000..292a6ce5 --- /dev/null +++ b/static/libical-glib/method.Component.set_due.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_due + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_due

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_due (
    +  ICalComponent* comp,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the due of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_duration.html b/static/libical-glib/method.Component.set_duration.html new file mode 100644 index 00000000..6683a0b8 --- /dev/null +++ b/static/libical-glib/method.Component.set_duration.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_duration (
    +  ICalComponent* comp,
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the duration of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    A ICalDuration.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_location.html b/static/libical-glib/method.Component.set_location.html new file mode 100644 index 00000000..20838f87 --- /dev/null +++ b/static/libical-glib/method.Component.set_location.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_location

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_location (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the location of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing location.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_method.html b/static/libical-glib/method.Component.set_method.html new file mode 100644 index 00000000..a5fce337 --- /dev/null +++ b/static/libical-glib/method.Component.set_method.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_method (
    +  ICalComponent* comp,
    +  ICalPropertyMethod method
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the method of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    method
    +
    +

    Type: ICalPropertyMethod

    +

    A ICalPropertyMethod.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_parent.html b/static/libical-glib/method.Component.set_parent.html new file mode 100644 index 00000000..25023f0b --- /dev/null +++ b/static/libical-glib/method.Component.set_parent.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_parent (
    +  ICalComponent* component,
    +  ICalComponent* parent
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the parent ICalComponent of the specified component.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    parent
    +
    +

    Type: ICalComponent

    +

    An ICalComponent, a new parent.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_recurrenceid.html b/static/libical-glib/method.Component.set_recurrenceid.html new file mode 100644 index 00000000..77ba0138 --- /dev/null +++ b/static/libical-glib/method.Component.set_recurrenceid.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_recurrenceid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_recurrenceid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_recurrenceid (
    +  ICalComponent* comp,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recurrenceid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    A ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_relcalid.html b/static/libical-glib/method.Component.set_relcalid.html new file mode 100644 index 00000000..9ee09932 --- /dev/null +++ b/static/libical-glib/method.Component.set_relcalid.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_relcalid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_relcalid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_relcalid (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the relcalid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing relcalid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_sequence.html b/static/libical-glib/method.Component.set_sequence.html new file mode 100644 index 00000000..ffe64930 --- /dev/null +++ b/static/libical-glib/method.Component.set_sequence.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_sequence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_sequence

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_sequence (
    +  ICalComponent* comp,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the sequence of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The sequence number.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_status.html b/static/libical-glib/method.Component.set_status.html new file mode 100644 index 00000000..7ff7a4b9 --- /dev/null +++ b/static/libical-glib/method.Component.set_status.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_status (
    +  ICalComponent* comp,
    +  ICalPropertyStatus status
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the status of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    status
    +
    +

    Type: ICalPropertyStatus

    +

    A ICalPropertyStatus.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_summary.html b/static/libical-glib/method.Component.set_summary.html new file mode 100644 index 00000000..dbfbd44b --- /dev/null +++ b/static/libical-glib/method.Component.set_summary.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_summary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_summary (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the summary of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing summary.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.set_uid.html b/static/libical-glib/method.Component.set_uid.html new file mode 100644 index 00000000..cb022e25 --- /dev/null +++ b/static/libical-glib/method.Component.set_uid.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.set_uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentset_uid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_set_uid (
    +  ICalComponent* comp,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the uid of the ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    A string representing uid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.strip_errors.html b/static/libical-glib/method.Component.strip_errors.html new file mode 100644 index 00000000..49f42cd4 --- /dev/null +++ b/static/libical-glib/method.Component.strip_errors.html @@ -0,0 +1,294 @@ + + + + + + ICalGLib.Component.strip_errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponentstrip_errors

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_strip_errors (
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes all X-LIC-ERROR properties.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.take_component.html b/static/libical-glib/method.Component.take_component.html new file mode 100644 index 00000000..427e0b87 --- /dev/null +++ b/static/libical-glib/method.Component.take_component.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.take_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponenttake_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_take_component (
    +  ICalComponent* parent,
    +  ICalComponent* child
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds the child into the parent as a child component and unrefs the child.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    child
    +
    +

    Type: ICalComponent

    +

    A child ICalComponent.

    + + + + + + + + + + +
    The instance takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Component.take_property.html b/static/libical-glib/method.Component.take_property.html new file mode 100644 index 00000000..0c56a898 --- /dev/null +++ b/static/libical-glib/method.Component.take_property.html @@ -0,0 +1,327 @@ + + + + + + ICalGLib.Component.take_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibComponenttake_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_component_take_property (
    +  ICalComponent* component,
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds the property into the component and unrefs the property.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    property
    +
    +

    Type: ICalProperty

    +

    An ICalProperty.

    + + + + + + + + + + +
    The instance takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Datetimeperiod.get_period.html b/static/libical-glib/method.Datetimeperiod.get_period.html new file mode 100644 index 00000000..aa1e0f19 --- /dev/null +++ b/static/libical-glib/method.Datetimeperiod.get_period.html @@ -0,0 +1,198 @@ + + + + + + ICalGLib.Datetimeperiod.get_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDatetimeperiodget_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_datetimeperiod_get_period (
    +  ICalDatetimeperiod* dtp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the period attribute of ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    The period attribute of dtp.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Datetimeperiod.get_time.html b/static/libical-glib/method.Datetimeperiod.get_time.html new file mode 100644 index 00000000..ffa41309 --- /dev/null +++ b/static/libical-glib/method.Datetimeperiod.get_time.html @@ -0,0 +1,198 @@ + + + + + + ICalGLib.Datetimeperiod.get_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDatetimeperiodget_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_datetimeperiod_get_time (
    +  ICalDatetimeperiod* dtp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the time attribute of ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The time attribute of dtp.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Datetimeperiod.set_period.html b/static/libical-glib/method.Datetimeperiod.set_period.html new file mode 100644 index 00000000..5d994a98 --- /dev/null +++ b/static/libical-glib/method.Datetimeperiod.set_period.html @@ -0,0 +1,205 @@ + + + + + + ICalGLib.Datetimeperiod.set_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDatetimeperiodset_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_datetimeperiod_set_period (
    +  ICalDatetimeperiod* dtp,
    +  ICalPeriod* period
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the period attribute of ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    period
    +
    +

    Type: ICalPeriod

    +

    The period attribute of dtp.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Datetimeperiod.set_time.html b/static/libical-glib/method.Datetimeperiod.set_time.html new file mode 100644 index 00000000..37817591 --- /dev/null +++ b/static/libical-glib/method.Datetimeperiod.set_time.html @@ -0,0 +1,205 @@ + + + + + + ICalGLib.Datetimeperiod.set_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDatetimeperiodset_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_datetimeperiod_set_time (
    +  ICalDatetimeperiod* dtp,
    +  ICalTime* time
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the time attribute of ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    time
    +
    +

    Type: ICalTime

    +

    The time attribute of dtp.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.as_ical_string.html b/static/libical-glib/method.Duration.as_ical_string.html new file mode 100644 index 00000000..0b44b463 --- /dev/null +++ b/static/libical-glib/method.Duration.as_ical_string.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_duration_as_ical_string (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalDuration to the representation in string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The duration in string.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.as_int.html b/static/libical-glib/method.Duration.as_int.html new file mode 100644 index 00000000..00024b95 --- /dev/null +++ b/static/libical-glib/method.Duration.as_int.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.as_int + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationas_int

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_duration_as_int (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalDuration to the representation in second.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The duration in second.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.get_days.html b/static/libical-glib/method.Duration.get_days.html new file mode 100644 index 00000000..4b9df161 --- /dev/null +++ b/static/libical-glib/method.Duration.get_days.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.get_days + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationget_days

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_duration_get_days (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the days of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The days.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.get_hours.html b/static/libical-glib/method.Duration.get_hours.html new file mode 100644 index 00000000..011c8e4f --- /dev/null +++ b/static/libical-glib/method.Duration.get_hours.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.get_hours + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationget_hours

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_duration_get_hours (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the hours of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The hours.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.get_minutes.html b/static/libical-glib/method.Duration.get_minutes.html new file mode 100644 index 00000000..d5cb06f0 --- /dev/null +++ b/static/libical-glib/method.Duration.get_minutes.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.get_minutes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationget_minutes

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_duration_get_minutes (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the minutes of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The minutes.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.get_seconds.html b/static/libical-glib/method.Duration.get_seconds.html new file mode 100644 index 00000000..026d8015 --- /dev/null +++ b/static/libical-glib/method.Duration.get_seconds.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.get_seconds + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationget_seconds

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_duration_get_seconds (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the seconds of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The seconds.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.get_weeks.html b/static/libical-glib/method.Duration.get_weeks.html new file mode 100644 index 00000000..289ea84d --- /dev/null +++ b/static/libical-glib/method.Duration.get_weeks.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.get_weeks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationget_weeks

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_duration_get_weeks (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the weeks of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The weeks.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.is_bad_duration.html b/static/libical-glib/method.Duration.is_bad_duration.html new file mode 100644 index 00000000..655fa015 --- /dev/null +++ b/static/libical-glib/method.Duration.is_bad_duration.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.is_bad_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationis_bad_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_duration_is_bad_duration (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the ICalDuration is the bad_duration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if duration is the bad_duration, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.is_neg.html b/static/libical-glib/method.Duration.is_neg.html new file mode 100644 index 00000000..5c171267 --- /dev/null +++ b/static/libical-glib/method.Duration.is_neg.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.is_neg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationis_neg

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_duration_is_neg (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the is_neg of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    The is_neg.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.is_null_duration.html b/static/libical-glib/method.Duration.is_null_duration.html new file mode 100644 index 00000000..8dba483d --- /dev/null +++ b/static/libical-glib/method.Duration.is_null_duration.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Duration.is_null_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationis_null_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_duration_is_null_duration (
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the ICalDuration is the null_duration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if duration is the null_duration, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_days.html b/static/libical-glib/method.Duration.set_days.html new file mode 100644 index 00000000..e08cf19d --- /dev/null +++ b/static/libical-glib/method.Duration.set_days.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_days + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_days

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_days (
    +  ICalDuration* duration,
    +  guint days
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the days of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    days
    +
    +

    Type: guint

    +

    The days.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_hours.html b/static/libical-glib/method.Duration.set_hours.html new file mode 100644 index 00000000..2ebf5986 --- /dev/null +++ b/static/libical-glib/method.Duration.set_hours.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_hours + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_hours

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_hours (
    +  ICalDuration* duration,
    +  guint hours
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the hours of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    hours
    +
    +

    Type: guint

    +

    The hours.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_is_neg.html b/static/libical-glib/method.Duration.set_is_neg.html new file mode 100644 index 00000000..4baaa051 --- /dev/null +++ b/static/libical-glib/method.Duration.set_is_neg.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_is_neg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_is_neg

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_is_neg (
    +  ICalDuration* duration,
    +  gboolean is_neg
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the is_neg of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    is_neg
    +
    +

    Type: gboolean

    +

    The is_neg.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_minutes.html b/static/libical-glib/method.Duration.set_minutes.html new file mode 100644 index 00000000..069d08b2 --- /dev/null +++ b/static/libical-glib/method.Duration.set_minutes.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_minutes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_minutes

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_minutes (
    +  ICalDuration* duration,
    +  guint minutes
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the minutes of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    minutes
    +
    +

    Type: guint

    +

    The minutes.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_seconds.html b/static/libical-glib/method.Duration.set_seconds.html new file mode 100644 index 00000000..6cc90c33 --- /dev/null +++ b/static/libical-glib/method.Duration.set_seconds.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_seconds + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_seconds

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_seconds (
    +  ICalDuration* duration,
    +  guint seconds
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the seconds of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    seconds
    +
    +

    Type: guint

    +

    The seconds.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Duration.set_weeks.html b/static/libical-glib/method.Duration.set_weeks.html new file mode 100644 index 00000000..1470ca72 --- /dev/null +++ b/static/libical-glib/method.Duration.set_weeks.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Duration.set_weeks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibDurationset_weeks

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_duration_set_weeks (
    +  ICalDuration* duration,
    +  guint weeks
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the weeks of ICalDuration.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    weeks
    +
    +

    Type: guint

    +

    The weeks.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Geo.clone.html b/static/libical-glib/method.Geo.clone.html new file mode 100644 index 00000000..c8726edc --- /dev/null +++ b/static/libical-glib/method.Geo.clone.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Geo.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibGeoclone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalGeo*
    +i_cal_geo_clone (
    +  const ICalGeo* geo
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalGeo, copy of geo.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalGeo

    +

    The newly created ICalGeo, copy of geo.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Geo.get_lat.html b/static/libical-glib/method.Geo.get_lat.html new file mode 100644 index 00000000..92fda447 --- /dev/null +++ b/static/libical-glib/method.Geo.get_lat.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Geo.get_lat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibGeoget_lat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gdouble
    +i_cal_geo_get_lat (
    +  ICalGeo* geo
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the latitude of ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gdouble

    +

    The latitude.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Geo.get_lon.html b/static/libical-glib/method.Geo.get_lon.html new file mode 100644 index 00000000..208bcfe8 --- /dev/null +++ b/static/libical-glib/method.Geo.get_lon.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Geo.get_lon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibGeoget_lon

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gdouble
    +i_cal_geo_get_lon (
    +  ICalGeo* geo
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the longitude of ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gdouble

    +

    The longitude.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Geo.set_lat.html b/static/libical-glib/method.Geo.set_lat.html new file mode 100644 index 00000000..72ab2b27 --- /dev/null +++ b/static/libical-glib/method.Geo.set_lat.html @@ -0,0 +1,207 @@ + + + + + + ICalGLib.Geo.set_lat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibGeoset_lat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_geo_set_lat (
    +  ICalGeo* geo,
    +  gdouble lat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the latitude of ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    lat
    +
    +

    Type: gdouble

    +

    The latitude.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Geo.set_lon.html b/static/libical-glib/method.Geo.set_lon.html new file mode 100644 index 00000000..e23983be --- /dev/null +++ b/static/libical-glib/method.Geo.set_lon.html @@ -0,0 +1,207 @@ + + + + + + ICalGLib.Geo.set_lon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibGeoset_lon

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_geo_set_lon (
    +  ICalGeo* geo,
    +  gdouble lon
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the longitude of ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    lon
    +
    +

    Type: gdouble

    +

    The longitude.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.add_depender.html b/static/libical-glib/method.Object.add_depender.html new file mode 100644 index 00000000..c916057e --- /dev/null +++ b/static/libical-glib/method.Object.add_depender.html @@ -0,0 +1,224 @@ + + + + + + ICalGLib.Object.add_depender + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectadd_depender

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_add_depender (
    +  ICalObject* iobject,
    +  GObject* depender
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds a depender into the list of objects which should not be destroyed before +this iobject. It’s usually used for cases where the iobject uses native libical +structure from the depender. The depender is referenced. It’s illegal to try +to add one depender multiple times.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    depender
    +
    +

    Type: GObject

    +

    A GObject depender.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.get_always_destroy.html b/static/libical-glib/method.Object.get_always_destroy.html new file mode 100644 index 00000000..b2dff35e --- /dev/null +++ b/static/libical-glib/method.Object.get_always_destroy.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Object.get_always_destroy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectget_always_destroy

    +
    + +
    +
    +

    unstable since: 3.0.11

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_object_get_always_destroy (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtain the ICalObject::always-destroy property value.

    +
    + +
    + +

    Available since: 3.0.11

    + + + + +
    + + +
    + + + + +
    Gets propertyICalGLib.Object:always-destroy
    +
    + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether the native libical structure is freed even when an owner is set.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.get_is_global_memory.html b/static/libical-glib/method.Object.get_is_global_memory.html new file mode 100644 index 00000000..cc603a2d --- /dev/null +++ b/static/libical-glib/method.Object.get_is_global_memory.html @@ -0,0 +1,223 @@ + + + + + + ICalGLib.Object.get_is_global_memory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectget_is_global_memory

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_object_get_is_global_memory (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtains whether the native libical structure is a global shared memory, +thus should not be destroyed. This can be set only during construction time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    Gets propertyICalGLib.Object:is-global-memory
    +
    + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether the native libical structure is a global shared memory.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.get_native.html b/static/libical-glib/method.Object.get_native.html new file mode 100644 index 00000000..3d4bf5ae --- /dev/null +++ b/static/libical-glib/method.Object.get_native.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Object.get_native + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectget_native

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gpointer
    +i_cal_object_get_native (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtain native libical structure pointer associated with this iobject.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    Gets propertyICalGLib.Object:native
    +
    + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gpointer

    +

    Native libical structure pointer associated with this iobject.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.get_native_destroy_func.html b/static/libical-glib/method.Object.get_native_destroy_func.html new file mode 100644 index 00000000..e2fcd326 --- /dev/null +++ b/static/libical-glib/method.Object.get_native_destroy_func.html @@ -0,0 +1,223 @@ + + + + + + ICalGLib.Object.get_native_destroy_func + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectget_native_destroy_func

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    GDestroyNotify
    +i_cal_object_get_native_destroy_func (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtain a pointer to a function responsible to free the libical native structure.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    Gets propertyICalGLib.Object:native-destroy-func
    +
    + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: GDestroyNotify

    +

    Pointer to a function responsible to free +the libical native structure.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.ref_owner.html b/static/libical-glib/method.Object.ref_owner.html new file mode 100644 index 00000000..1d5ec54f --- /dev/null +++ b/static/libical-glib/method.Object.ref_owner.html @@ -0,0 +1,217 @@ + + + + + + ICalGLib.Object.ref_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectref_owner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    GObject*
    +i_cal_object_ref_owner (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtain current owner of the native libical structure. The returned pointer, +if not NULL, is referenced for thread safety. Unref it with g_object_unref +when done with it.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: GObject

    +

    Current owner of the libical + native structure. Returns NULL when there is no owner.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.remove_depender.html b/static/libical-glib/method.Object.remove_depender.html new file mode 100644 index 00000000..c5999c9e --- /dev/null +++ b/static/libical-glib/method.Object.remove_depender.html @@ -0,0 +1,223 @@ + + + + + + ICalGLib.Object.remove_depender + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectremove_depender

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_remove_depender (
    +  ICalObject* iobject,
    +  GObject* depender
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes a depender from the list of objects which should not be destroyed before +this iobject, previously added with i_cal_object_add_depender(). It’s illegal to try +to remove the depender which is not in the internal list.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    depender
    +
    +

    Type: GObject

    +

    A GObject depender.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.remove_owner.html b/static/libical-glib/method.Object.remove_owner.html new file mode 100644 index 00000000..d5c91655 --- /dev/null +++ b/static/libical-glib/method.Object.remove_owner.html @@ -0,0 +1,188 @@ + + + + + + ICalGLib.Object.remove_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectremove_owner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_remove_owner (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Unref and remove the owner.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.set_always_destroy.html b/static/libical-glib/method.Object.set_always_destroy.html new file mode 100644 index 00000000..c186826e --- /dev/null +++ b/static/libical-glib/method.Object.set_always_destroy.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Object.set_always_destroy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectset_always_destroy

    +
    + +
    +
    +

    unstable since: 3.0.11

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_set_always_destroy (
    +  ICalObject* iobject,
    +  gboolean value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the ICalObject::always-destroy property value. When TRUE, the native +libical structure is always freed, even when an owner of the iobject is set.

    +
    + +
    + +

    Available since: 3.0.11

    + + + + +
    + + +
    + + + + +
    Sets propertyICalGLib.Object:always-destroy
    +
    + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: gboolean

    +

    Value to set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.set_native_destroy_func.html b/static/libical-glib/method.Object.set_native_destroy_func.html new file mode 100644 index 00000000..e8fd4363 --- /dev/null +++ b/static/libical-glib/method.Object.set_native_destroy_func.html @@ -0,0 +1,229 @@ + + + + + + ICalGLib.Object.set_native_destroy_func + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectset_native_destroy_func

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_set_native_destroy_func (
    +  ICalObject* iobject,
    +  GDestroyNotify native_destroy_func
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets a function to be used to destroy the native libical structure.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    Sets propertyICalGLib.Object:native-destroy-func
    +
    + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    native_destroy_func
    +
    +

    Type: GDestroyNotify

    +

    Function to be used to destroy the native libical structure.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.set_owner.html b/static/libical-glib/method.Object.set_owner.html new file mode 100644 index 00000000..f991ade2 --- /dev/null +++ b/static/libical-glib/method.Object.set_owner.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Object.set_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectset_owner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_set_owner (
    +  ICalObject* iobject,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets an owner of the native libical structure, that is an object responsible +for a destroy of the native libical structure.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    Sets propertyICalGLib.Object:owner
    +
    + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    Owner of the native libical structure.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Object.steal_native.html b/static/libical-glib/method.Object.steal_native.html new file mode 100644 index 00000000..8976460a --- /dev/null +++ b/static/libical-glib/method.Object.steal_native.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.Object.steal_native + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibObjectsteal_native

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gpointer
    +i_cal_object_steal_native (
    +  ICalObject* iobject
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Obtain native libical structure pointer associated with this iobject and sets the one +at iobject to NULL, thus it’s invalid since now on.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gpointer

    +

    Native libical structure pointer associated with this iobject.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.as_ical_string.html b/static/libical-glib/method.Parameter.as_ical_string.html new file mode 100644 index 00000000..79f7015b --- /dev/null +++ b/static/libical-glib/method.Parameter.as_ical_string.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameteras_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_parameter_as_ical_string (
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts an ICalParameter to the string representation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of the parameter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.clone.html b/static/libical-glib/method.Parameter.clone.html new file mode 100644 index 00000000..ee3d20c8 --- /dev/null +++ b/static/libical-glib/method.Parameter.clone.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterclone

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_parameter_clone (
    +  const ICalParameter* p
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Deep clone a ICalParameter.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The newly created ICalParameter with the same properties as the p.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.free.html b/static/libical-glib/method.Parameter.free.html new file mode 100644 index 00000000..e5876a4d --- /dev/null +++ b/static/libical-glib/method.Parameter.free.html @@ -0,0 +1,408 @@ + + + + + + ICalGLib.Parameter.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_free (
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_actionparam.html b/static/libical-glib/method.Parameter.get_actionparam.html new file mode 100644 index 00000000..7055aae0 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_actionparam.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_actionparam + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_actionparam

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterAction
    +i_cal_parameter_get_actionparam (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterAction

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_altrep.html b/static/libical-glib/method.Parameter.get_altrep.html new file mode 100644 index 00000000..c9b36bc9 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_altrep.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_altrep + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_altrep

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_altrep (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_charset.html b/static/libical-glib/method.Parameter.get_charset.html new file mode 100644 index 00000000..02f0784d --- /dev/null +++ b/static/libical-glib/method.Parameter.get_charset.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_charset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_charset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_charset (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_cn.html b/static/libical-glib/method.Parameter.get_cn.html new file mode 100644 index 00000000..fe1ed070 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_cn.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_cn + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_cn

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_cn (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_cutype.html b/static/libical-glib/method.Parameter.get_cutype.html new file mode 100644 index 00000000..e51d0020 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_cutype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_cutype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_cutype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterCutype
    +i_cal_parameter_get_cutype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterCutype

    +

    The property of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_delegatedfrom.html b/static/libical-glib/method.Parameter.get_delegatedfrom.html new file mode 100644 index 00000000..1c3a7f0b --- /dev/null +++ b/static/libical-glib/method.Parameter.get_delegatedfrom.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_delegatedfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_delegatedfrom

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_delegatedfrom (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_delegatedto.html b/static/libical-glib/method.Parameter.get_delegatedto.html new file mode 100644 index 00000000..c4e31390 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_delegatedto.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_delegatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_delegatedto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_delegatedto (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_derived.html b/static/libical-glib/method.Parameter.get_derived.html new file mode 100644 index 00000000..99df1b02 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_derived.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_derived + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_derived

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterDerived
    +i_cal_parameter_get_derived (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the param of kind I_CAL_DERIVED_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterDerived

    +

    The value of the param of type ICalParameterDerived.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_dir.html b/static/libical-glib/method.Parameter.get_dir.html new file mode 100644 index 00000000..8f2156c3 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_dir.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_dir + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_dir

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_dir (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_display.html b/static/libical-glib/method.Parameter.get_display.html new file mode 100644 index 00000000..a1d2129c --- /dev/null +++ b/static/libical-glib/method.Parameter.get_display.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_display + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_display

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterDisplay
    +i_cal_parameter_get_display (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterDisplay

    +

    The ICalParameterDisplay value of the param.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_email.html b/static/libical-glib/method.Parameter.get_email.html new file mode 100644 index 00000000..f5fe8fe9 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_email.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_email + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_email

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_email (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string value of the param.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_enable.html b/static/libical-glib/method.Parameter.get_enable.html new file mode 100644 index 00000000..63c83b3d --- /dev/null +++ b/static/libical-glib/method.Parameter.get_enable.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_enable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_enable

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterEnable
    +i_cal_parameter_get_enable (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterEnable

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_encoding.html b/static/libical-glib/method.Parameter.get_encoding.html new file mode 100644 index 00000000..ffb19f0e --- /dev/null +++ b/static/libical-glib/method.Parameter.get_encoding.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_encoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_encoding

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterEncoding
    +i_cal_parameter_get_encoding (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterEncoding

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_fbtype.html b/static/libical-glib/method.Parameter.get_fbtype.html new file mode 100644 index 00000000..89c4ecc1 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_fbtype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_fbtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_fbtype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterFbtype
    +i_cal_parameter_get_fbtype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterFbtype

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_feature.html b/static/libical-glib/method.Parameter.get_feature.html new file mode 100644 index 00000000..375fb9ba --- /dev/null +++ b/static/libical-glib/method.Parameter.get_feature.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_feature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_feature

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterFeature
    +i_cal_parameter_get_feature (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterFeature

    +

    The ICalParameterFeature value of the param.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_filename.html b/static/libical-glib/method.Parameter.get_filename.html new file mode 100644 index 00000000..4cf9ddc1 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_filename.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_filename

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_filename (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_fmttype.html b/static/libical-glib/method.Parameter.get_fmttype.html new file mode 100644 index 00000000..a98009c7 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_fmttype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_fmttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_fmttype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_fmttype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_iana.html b/static/libical-glib/method.Parameter.get_iana.html new file mode 100644 index 00000000..b004b25e --- /dev/null +++ b/static/libical-glib/method.Parameter.get_iana.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_iana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_iana

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_iana (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_iana_name.html b/static/libical-glib/method.Parameter.get_iana_name.html new file mode 100644 index 00000000..c9b17b2f --- /dev/null +++ b/static/libical-glib/method.Parameter.get_iana_name.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_iana_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_iana_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_iana_name (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the iana_name property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_iana_value.html b/static/libical-glib/method.Parameter.get_iana_value.html new file mode 100644 index 00000000..13e41f52 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_iana_value.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_iana_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_iana_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_iana_value (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the iana_value property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_id.html b/static/libical-glib/method.Parameter.get_id.html new file mode 100644 index 00000000..c26ad672 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_id.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_id + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_id

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_id (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_label.html b/static/libical-glib/method.Parameter.get_label.html new file mode 100644 index 00000000..430b6ee0 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_label.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_label + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_label

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_label (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string value of the param.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_language.html b/static/libical-glib/method.Parameter.get_language.html new file mode 100644 index 00000000..dc655924 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_language.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_language + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_language

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_language (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_latency.html b/static/libical-glib/method.Parameter.get_latency.html new file mode 100644 index 00000000..872b03c1 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_latency.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_latency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_latency

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_latency (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_local.html b/static/libical-glib/method.Parameter.get_local.html new file mode 100644 index 00000000..71e0dd79 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_local.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_local + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_local

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterLocal
    +i_cal_parameter_get_local (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterLocal

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_localize.html b/static/libical-glib/method.Parameter.get_localize.html new file mode 100644 index 00000000..218aefd5 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_localize.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_localize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_localize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_localize (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_managedid.html b/static/libical-glib/method.Parameter.get_managedid.html new file mode 100644 index 00000000..6767a88a --- /dev/null +++ b/static/libical-glib/method.Parameter.get_managedid.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_managedid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_managedid

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_managedid (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_member.html b/static/libical-glib/method.Parameter.get_member.html new file mode 100644 index 00000000..e24921c1 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_member.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_member + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_member

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_member (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_modified.html b/static/libical-glib/method.Parameter.get_modified.html new file mode 100644 index 00000000..451b5cd2 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_modified.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_modified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_modified

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_modified (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_options.html b/static/libical-glib/method.Parameter.get_options.html new file mode 100644 index 00000000..1354dad7 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_options.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_options

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_options (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_order.html b/static/libical-glib/method.Parameter.get_order.html new file mode 100644 index 00000000..e0e24bff --- /dev/null +++ b/static/libical-glib/method.Parameter.get_order.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_order + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_order

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_parameter_get_order (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the param of kind I_CAL_ORDER_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The value of the param.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_parent.html b/static/libical-glib/method.Parameter.get_parent.html new file mode 100644 index 00000000..8a355333 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_parent.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_parameter_get_parent (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the parent ICalProperty of the specified ICalParameter.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The parent ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_partstat.html b/static/libical-glib/method.Parameter.get_partstat.html new file mode 100644 index 00000000..7df11e9f --- /dev/null +++ b/static/libical-glib/method.Parameter.get_partstat.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_partstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_partstat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterPartstat
    +i_cal_parameter_get_partstat (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterPartstat

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_patchaction.html b/static/libical-glib/method.Parameter.get_patchaction.html new file mode 100644 index 00000000..948f43e6 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_patchaction.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_patchaction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_patchaction

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterPatchaction
    +i_cal_parameter_get_patchaction (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterPatchaction

    +

    The ICalParameterPatchaction value of the param.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_publiccomment.html b/static/libical-glib/method.Parameter.get_publiccomment.html new file mode 100644 index 00000000..2caf085b --- /dev/null +++ b/static/libical-glib/method.Parameter.get_publiccomment.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_publiccomment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_publiccomment

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_publiccomment (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_range.html b/static/libical-glib/method.Parameter.get_range.html new file mode 100644 index 00000000..6a9b179f --- /dev/null +++ b/static/libical-glib/method.Parameter.get_range.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_range + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_range

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterRange
    +i_cal_parameter_get_range (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterRange

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_reason.html b/static/libical-glib/method.Parameter.get_reason.html new file mode 100644 index 00000000..e8ed9e17 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_reason.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_reason + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_reason

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_reason (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_related.html b/static/libical-glib/method.Parameter.get_related.html new file mode 100644 index 00000000..4af5f246 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_related.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_related + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_related

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterRelated
    +i_cal_parameter_get_related (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterRelated

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_reltype.html b/static/libical-glib/method.Parameter.get_reltype.html new file mode 100644 index 00000000..fbf99970 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_reltype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_reltype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_reltype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterReltype
    +i_cal_parameter_get_reltype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterReltype

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_required.html b/static/libical-glib/method.Parameter.get_required.html new file mode 100644 index 00000000..d4708be6 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_required.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_required

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterRequired
    +i_cal_parameter_get_required (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterRequired

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_response.html b/static/libical-glib/method.Parameter.get_response.html new file mode 100644 index 00000000..e10912fe --- /dev/null +++ b/static/libical-glib/method.Parameter.get_response.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_response

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_parameter_get_response (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_role.html b/static/libical-glib/method.Parameter.get_role.html new file mode 100644 index 00000000..83ada3fa --- /dev/null +++ b/static/libical-glib/method.Parameter.get_role.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_role

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterRole
    +i_cal_parameter_get_role (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterRole

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_rsvp.html b/static/libical-glib/method.Parameter.get_rsvp.html new file mode 100644 index 00000000..7a4cbe1b --- /dev/null +++ b/static/libical-glib/method.Parameter.get_rsvp.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_rsvp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_rsvp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterRsvp
    +i_cal_parameter_get_rsvp (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterRsvp

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_scheduleagent.html b/static/libical-glib/method.Parameter.get_scheduleagent.html new file mode 100644 index 00000000..fc496925 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_scheduleagent.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_scheduleagent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_scheduleagent

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterScheduleagent
    +i_cal_parameter_get_scheduleagent (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterScheduleagent

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_scheduleforcesend.html b/static/libical-glib/method.Parameter.get_scheduleforcesend.html new file mode 100644 index 00000000..4e7c4069 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_scheduleforcesend.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_scheduleforcesend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_scheduleforcesend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterScheduleforcesend
    +i_cal_parameter_get_scheduleforcesend (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterScheduleforcesend

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_schedulestatus.html b/static/libical-glib/method.Parameter.get_schedulestatus.html new file mode 100644 index 00000000..862be069 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_schedulestatus.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_schedulestatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_schedulestatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_schedulestatus (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_schema.html b/static/libical-glib/method.Parameter.get_schema.html new file mode 100644 index 00000000..f19c5277 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_schema.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_schema + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_schema

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_schema (
    +  const ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the param of kind I_CAL_SCHEMA_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the param.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_sentby.html b/static/libical-glib/method.Parameter.get_sentby.html new file mode 100644 index 00000000..ac8438ae --- /dev/null +++ b/static/libical-glib/method.Parameter.get_sentby.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_sentby + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_sentby

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_sentby (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_size.html b/static/libical-glib/method.Parameter.get_size.html new file mode 100644 index 00000000..c8cc9139 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_size.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_size

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_size (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_stayinformed.html b/static/libical-glib/method.Parameter.get_stayinformed.html new file mode 100644 index 00000000..91b775f0 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_stayinformed.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_stayinformed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_stayinformed

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterStayinformed
    +i_cal_parameter_get_stayinformed (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterStayinformed

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_substate.html b/static/libical-glib/method.Parameter.get_substate.html new file mode 100644 index 00000000..f90ffc61 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_substate.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_substate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_substate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterSubstate
    +i_cal_parameter_get_substate (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterSubstate

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_tzid.html b/static/libical-glib/method.Parameter.get_tzid.html new file mode 100644 index 00000000..351fc0cb --- /dev/null +++ b/static/libical-glib/method.Parameter.get_tzid.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_tzid (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_value.html b/static/libical-glib/method.Parameter.get_value.html new file mode 100644 index 00000000..8a540a13 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_value.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterValue
    +i_cal_parameter_get_value (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterValue

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_x.html b/static/libical-glib/method.Parameter.get_x.html new file mode 100644 index 00000000..e7367c13 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_x.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_x (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_xliccomparetype.html b/static/libical-glib/method.Parameter.get_xliccomparetype.html new file mode 100644 index 00000000..5d6cfb48 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_xliccomparetype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_xliccomparetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_xliccomparetype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterXliccomparetype
    +i_cal_parameter_get_xliccomparetype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterXliccomparetype

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_xlicerrortype.html b/static/libical-glib/method.Parameter.get_xlicerrortype.html new file mode 100644 index 00000000..122e09e4 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_xlicerrortype.html @@ -0,0 +1,432 @@ + + + + + + ICalGLib.Parameter.get_xlicerrortype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_xlicerrortype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterXlicerrortype
    +i_cal_parameter_get_xlicerrortype (
    +  const ICalParameter* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterXlicerrortype

    +

    The type of the value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_xname.html b/static/libical-glib/method.Parameter.get_xname.html new file mode 100644 index 00000000..f7add476 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_xname.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_xname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_xname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_xname (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xname property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.get_xvalue.html b/static/libical-glib/method.Parameter.get_xvalue.html new file mode 100644 index 00000000..23007da0 --- /dev/null +++ b/static/libical-glib/method.Parameter.get_xvalue.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.get_xvalue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterget_xvalue

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_get_xvalue (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xvalue property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The property of the value.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.has_same_name.html b/static/libical-glib/method.Parameter.has_same_name.html new file mode 100644 index 00000000..47923e98 --- /dev/null +++ b/static/libical-glib/method.Parameter.has_same_name.html @@ -0,0 +1,467 @@ + + + + + + ICalGLib.Parameter.has_same_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterhas_same_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_parameter_has_same_name (
    +  ICalParameter* param1,
    +  ICalParameter* param2
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether native parts of two ICalParameters have the same name.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    param2
    +
    +

    Type: ICalParameter

    +

    The ICalParameter to be checked.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if the parameters have the same name, 0 or not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.isa.html b/static/libical-glib/method.Parameter.isa.html new file mode 100644 index 00000000..a7611de3 --- /dev/null +++ b/static/libical-glib/method.Parameter.isa.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.isa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterisa

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterKind
    +i_cal_parameter_isa (
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks the type of a ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterKind

    +

    The type of the parameter.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.isa_parameter.html b/static/libical-glib/method.Parameter.isa_parameter.html new file mode 100644 index 00000000..20a31a38 --- /dev/null +++ b/static/libical-glib/method.Parameter.isa_parameter.html @@ -0,0 +1,434 @@ + + + + + + ICalGLib.Parameter.isa_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterisa_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_parameter_isa_parameter (
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the native part of the ICalParameter is of type icalparameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if the native part is of type icalparameter, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_actionparam.html b/static/libical-glib/method.Parameter.set_actionparam.html new file mode 100644 index 00000000..311dee6e --- /dev/null +++ b/static/libical-glib/method.Parameter.set_actionparam.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_actionparam + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_actionparam

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_actionparam (
    +  ICalParameter* value,
    +  ICalParameterAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterAction

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_altrep.html b/static/libical-glib/method.Parameter.set_altrep.html new file mode 100644 index 00000000..e801b13a --- /dev/null +++ b/static/libical-glib/method.Parameter.set_altrep.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_altrep + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_altrep

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_altrep (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_charset.html b/static/libical-glib/method.Parameter.set_charset.html new file mode 100644 index 00000000..83fff58e --- /dev/null +++ b/static/libical-glib/method.Parameter.set_charset.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_charset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_charset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_charset (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_cn.html b/static/libical-glib/method.Parameter.set_cn.html new file mode 100644 index 00000000..3afb8ab8 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_cn.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_cn + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_cn

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_cn (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_cutype.html b/static/libical-glib/method.Parameter.set_cutype.html new file mode 100644 index 00000000..6cee8c04 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_cutype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_cutype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_cutype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_cutype (
    +  ICalParameter* value,
    +  ICalParameterCutype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterCutype

    +

    The ICalParameterCutype used to set value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_delegatedfrom.html b/static/libical-glib/method.Parameter.set_delegatedfrom.html new file mode 100644 index 00000000..3fec1039 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_delegatedfrom.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_delegatedfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_delegatedfrom

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_delegatedfrom (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_delegatedto.html b/static/libical-glib/method.Parameter.set_delegatedto.html new file mode 100644 index 00000000..3273fb0c --- /dev/null +++ b/static/libical-glib/method.Parameter.set_delegatedto.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_delegatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_delegatedto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_delegatedto (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_derived.html b/static/libical-glib/method.Parameter.set_derived.html new file mode 100644 index 00000000..9c8e30e6 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_derived.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_derived + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_derived

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_derived (
    +  ICalParameter* param,
    +  ICalParameterDerived v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to parameter param of kind I_CAL_DERIVED_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterDerived

    +

    The value of type ICalParameterDerived to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_dir.html b/static/libical-glib/method.Parameter.set_dir.html new file mode 100644 index 00000000..835d3aba --- /dev/null +++ b/static/libical-glib/method.Parameter.set_dir.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_dir + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_dir

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_dir (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_display.html b/static/libical-glib/method.Parameter.set_display.html new file mode 100644 index 00000000..8af58716 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_display.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_display + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_display

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_display (
    +  ICalParameter* param,
    +  ICalParameterDisplay value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterDisplay

    +

    The ICalParameterDisplay to set into the param.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_email.html b/static/libical-glib/method.Parameter.set_email.html new file mode 100644 index 00000000..114d29d5 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_email.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_email + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_email

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_email (
    +  ICalParameter* param,
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string value to set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_enable.html b/static/libical-glib/method.Parameter.set_enable.html new file mode 100644 index 00000000..34f68ddb --- /dev/null +++ b/static/libical-glib/method.Parameter.set_enable.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_enable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_enable

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_enable (
    +  ICalParameter* value,
    +  ICalParameterEnable v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterEnable

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_encoding.html b/static/libical-glib/method.Parameter.set_encoding.html new file mode 100644 index 00000000..892de78e --- /dev/null +++ b/static/libical-glib/method.Parameter.set_encoding.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_encoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_encoding

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_encoding (
    +  ICalParameter* value,
    +  ICalParameterEncoding v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterEncoding

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_fbtype.html b/static/libical-glib/method.Parameter.set_fbtype.html new file mode 100644 index 00000000..2857de51 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_fbtype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_fbtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_fbtype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_fbtype (
    +  ICalParameter* value,
    +  ICalParameterFbtype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterFbtype

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_feature.html b/static/libical-glib/method.Parameter.set_feature.html new file mode 100644 index 00000000..a9971be1 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_feature.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_feature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_feature

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_feature (
    +  ICalParameter* param,
    +  ICalParameterFeature value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterFeature

    +

    The ICalParameterFeature to set into the param.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_filename.html b/static/libical-glib/method.Parameter.set_filename.html new file mode 100644 index 00000000..c6ca59d8 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_filename.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_filename

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_filename (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_fmttype.html b/static/libical-glib/method.Parameter.set_fmttype.html new file mode 100644 index 00000000..a04fa060 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_fmttype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_fmttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_fmttype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_fmttype (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_iana.html b/static/libical-glib/method.Parameter.set_iana.html new file mode 100644 index 00000000..c5bfbd75 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_iana.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_iana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_iana

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_iana (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_iana_name.html b/static/libical-glib/method.Parameter.set_iana_name.html new file mode 100644 index 00000000..4fd20936 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_iana_name.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_iana_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_iana_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_iana_name (
    +  ICalParameter* param,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the iana_name property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The name to be set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_iana_value.html b/static/libical-glib/method.Parameter.set_iana_value.html new file mode 100644 index 00000000..acf78ed6 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_iana_value.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_iana_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_iana_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_iana_value (
    +  ICalParameter* param,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the iana_value property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_id.html b/static/libical-glib/method.Parameter.set_id.html new file mode 100644 index 00000000..5b9b8446 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_id.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_id + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_id

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_id (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_label.html b/static/libical-glib/method.Parameter.set_label.html new file mode 100644 index 00000000..b05138e4 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_label.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_label + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_label

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_label (
    +  ICalParameter* param,
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The string value to set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_language.html b/static/libical-glib/method.Parameter.set_language.html new file mode 100644 index 00000000..e099faf7 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_language.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_language + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_language

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_language (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_latency.html b/static/libical-glib/method.Parameter.set_latency.html new file mode 100644 index 00000000..5a68e7b3 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_latency.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_latency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_latency

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_latency (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_local.html b/static/libical-glib/method.Parameter.set_local.html new file mode 100644 index 00000000..b6b26f33 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_local.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_local + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_local

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_local (
    +  ICalParameter* value,
    +  ICalParameterLocal v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterLocal

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_localize.html b/static/libical-glib/method.Parameter.set_localize.html new file mode 100644 index 00000000..2a1e6846 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_localize.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_localize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_localize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_localize (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_managedid.html b/static/libical-glib/method.Parameter.set_managedid.html new file mode 100644 index 00000000..29037df7 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_managedid.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_managedid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_managedid

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_managedid (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_member.html b/static/libical-glib/method.Parameter.set_member.html new file mode 100644 index 00000000..cc53777a --- /dev/null +++ b/static/libical-glib/method.Parameter.set_member.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_member + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_member

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_member (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_modified.html b/static/libical-glib/method.Parameter.set_modified.html new file mode 100644 index 00000000..987c9584 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_modified.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_modified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_modified

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_modified (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_options.html b/static/libical-glib/method.Parameter.set_options.html new file mode 100644 index 00000000..8f624d10 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_options.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_options

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_options (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_order.html b/static/libical-glib/method.Parameter.set_order.html new file mode 100644 index 00000000..e66d3562 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_order.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_order + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_order

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_order (
    +  ICalParameter* param,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to parameter param of kind I_CAL_ORDER_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The value to set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_parent.html b/static/libical-glib/method.Parameter.set_parent.html new file mode 100644 index 00000000..3b08a04e --- /dev/null +++ b/static/libical-glib/method.Parameter.set_parent.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_parent (
    +  ICalParameter* param,
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the parent ICalProperty of an ICalParameter.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    property
    +
    +

    Type: ICalProperty

    +

    The parent ICalProperty.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_partstat.html b/static/libical-glib/method.Parameter.set_partstat.html new file mode 100644 index 00000000..8b132740 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_partstat.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_partstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_partstat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_partstat (
    +  ICalParameter* value,
    +  ICalParameterPartstat v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterPartstat

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_patchaction.html b/static/libical-glib/method.Parameter.set_patchaction.html new file mode 100644 index 00000000..b812ee16 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_patchaction.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_patchaction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_patchaction

    +
    + +
    +
    +

    unstable since: 3.0.15

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_patchaction (
    +  ICalParameter* param,
    +  ICalParameterPatchaction value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 3.0.15

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterPatchaction

    +

    The ICalParameterPatchaction to set into the param.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_publiccomment.html b/static/libical-glib/method.Parameter.set_publiccomment.html new file mode 100644 index 00000000..d1add319 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_publiccomment.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_publiccomment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_publiccomment

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_publiccomment (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_range.html b/static/libical-glib/method.Parameter.set_range.html new file mode 100644 index 00000000..da3550d5 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_range.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_range + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_range

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_range (
    +  ICalParameter* value,
    +  ICalParameterRange v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRange

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_reason.html b/static/libical-glib/method.Parameter.set_reason.html new file mode 100644 index 00000000..0f7afeb0 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_reason.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_reason + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_reason

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_reason (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_related.html b/static/libical-glib/method.Parameter.set_related.html new file mode 100644 index 00000000..bc373258 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_related.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_related + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_related

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_related (
    +  ICalParameter* value,
    +  ICalParameterRelated v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRelated

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_reltype.html b/static/libical-glib/method.Parameter.set_reltype.html new file mode 100644 index 00000000..2d7a649b --- /dev/null +++ b/static/libical-glib/method.Parameter.set_reltype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_reltype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_reltype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_reltype (
    +  ICalParameter* value,
    +  ICalParameterReltype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterReltype

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_required.html b/static/libical-glib/method.Parameter.set_required.html new file mode 100644 index 00000000..d51248f1 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_required.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_required

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_required (
    +  ICalParameter* value,
    +  ICalParameterRequired v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRequired

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_response.html b/static/libical-glib/method.Parameter.set_response.html new file mode 100644 index 00000000..aa801b27 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_response.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_response

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_response (
    +  ICalParameter* value,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_role.html b/static/libical-glib/method.Parameter.set_role.html new file mode 100644 index 00000000..7aedc867 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_role.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_role

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_role (
    +  ICalParameter* value,
    +  ICalParameterRole v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRole

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_rsvp.html b/static/libical-glib/method.Parameter.set_rsvp.html new file mode 100644 index 00000000..013b0246 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_rsvp.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_rsvp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_rsvp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_rsvp (
    +  ICalParameter* value,
    +  ICalParameterRsvp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterRsvp

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_scheduleagent.html b/static/libical-glib/method.Parameter.set_scheduleagent.html new file mode 100644 index 00000000..c2d0d9d4 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_scheduleagent.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_scheduleagent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_scheduleagent

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_scheduleagent (
    +  ICalParameter* value,
    +  ICalParameterScheduleagent v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterScheduleagent

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_scheduleforcesend.html b/static/libical-glib/method.Parameter.set_scheduleforcesend.html new file mode 100644 index 00000000..875a07b2 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_scheduleforcesend.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_scheduleforcesend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_scheduleforcesend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_scheduleforcesend (
    +  ICalParameter* value,
    +  ICalParameterScheduleforcesend v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterScheduleforcesend

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_schedulestatus.html b/static/libical-glib/method.Parameter.set_schedulestatus.html new file mode 100644 index 00000000..7c0bab83 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_schedulestatus.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_schedulestatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_schedulestatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_schedulestatus (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_schema.html b/static/libical-glib/method.Parameter.set_schema.html new file mode 100644 index 00000000..911e3776 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_schema.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_schema + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_schema

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_schema (
    +  ICalParameter* param,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to parameter param of kind I_CAL_SCHEMA_PARAMETER.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_sentby.html b/static/libical-glib/method.Parameter.set_sentby.html new file mode 100644 index 00000000..358c4f2c --- /dev/null +++ b/static/libical-glib/method.Parameter.set_sentby.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_sentby + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_sentby

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_sentby (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_size.html b/static/libical-glib/method.Parameter.set_size.html new file mode 100644 index 00000000..601f0b52 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_size.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_size

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_size (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_stayinformed.html b/static/libical-glib/method.Parameter.set_stayinformed.html new file mode 100644 index 00000000..daa3aa58 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_stayinformed.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_stayinformed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_stayinformed

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_stayinformed (
    +  ICalParameter* value,
    +  ICalParameterStayinformed v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterStayinformed

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_substate.html b/static/libical-glib/method.Parameter.set_substate.html new file mode 100644 index 00000000..6cf1a129 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_substate.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_substate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_substate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_substate (
    +  ICalParameter* value,
    +  ICalParameterSubstate v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterSubstate

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_tzid.html b/static/libical-glib/method.Parameter.set_tzid.html new file mode 100644 index 00000000..939e01ee --- /dev/null +++ b/static/libical-glib/method.Parameter.set_tzid.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_tzid (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_value.html b/static/libical-glib/method.Parameter.set_value.html new file mode 100644 index 00000000..ba85aa50 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_value.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_value (
    +  ICalParameter* value,
    +  ICalParameterValue v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterValue

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_x.html b/static/libical-glib/method.Parameter.set_x.html new file mode 100644 index 00000000..8d4a26c8 --- /dev/null +++ b/static/libical-glib/method.Parameter.set_x.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_x (
    +  ICalParameter* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string used to set into the value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_xliccomparetype.html b/static/libical-glib/method.Parameter.set_xliccomparetype.html new file mode 100644 index 00000000..202a3f2a --- /dev/null +++ b/static/libical-glib/method.Parameter.set_xliccomparetype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_xliccomparetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_xliccomparetype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_xliccomparetype (
    +  ICalParameter* value,
    +  ICalParameterXliccomparetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterXliccomparetype

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_xlicerrortype.html b/static/libical-glib/method.Parameter.set_xlicerrortype.html new file mode 100644 index 00000000..437853be --- /dev/null +++ b/static/libical-glib/method.Parameter.set_xlicerrortype.html @@ -0,0 +1,439 @@ + + + + + + ICalGLib.Parameter.set_xlicerrortype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_xlicerrortype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_xlicerrortype (
    +  ICalParameter* value,
    +  ICalParameterXlicerrortype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalParameterXlicerrortype

    +

    The type of ICalParameter to be set in the value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_xname.html b/static/libical-glib/method.Parameter.set_xname.html new file mode 100644 index 00000000..182df2bf --- /dev/null +++ b/static/libical-glib/method.Parameter.set_xname.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_xname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_xname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_xname (
    +  ICalParameter* param,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xname property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The name to be set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parameter.set_xvalue.html b/static/libical-glib/method.Parameter.set_xvalue.html new file mode 100644 index 00000000..6887effc --- /dev/null +++ b/static/libical-glib/method.Parameter.set_xvalue.html @@ -0,0 +1,441 @@ + + + + + + ICalGLib.Parameter.set_xvalue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParameterset_xvalue

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parameter_set_xvalue (
    +  ICalParameter* param,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xvalue property of the native part of the ICalParameter.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set into the param.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.add_line.html b/static/libical-glib/method.Parser.add_line.html new file mode 100644 index 00000000..4e3b4d55 --- /dev/null +++ b/static/libical-glib/method.Parser.add_line.html @@ -0,0 +1,235 @@ + + + + + + ICalGLib.Parser.add_line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParseradd_line

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_parser_add_line (
    +  ICalParser* parser,
    +  gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Add a line at one time into the ICalParser until the parsing is complete and ICalComponent will be returned.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: gchar*

    +

    A line of string representation of the ICalComponent.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The complete ICalComponent.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.clean.html b/static/libical-glib/method.Parser.clean.html new file mode 100644 index 00000000..83496e1e --- /dev/null +++ b/static/libical-glib/method.Parser.clean.html @@ -0,0 +1,203 @@ + + + + + + ICalGLib.Parser.clean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParserclean

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_parser_clean (
    +  ICalParser* parser
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    We won’t get a clean exit if some components did not have an “END” tag. Clear off any component that +may be left in the list.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The root ICalComponent in parser.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.free.html b/static/libical-glib/method.Parser.free.html new file mode 100644 index 00000000..ec51c868 --- /dev/null +++ b/static/libical-glib/method.Parser.free.html @@ -0,0 +1,176 @@ + + + + + + ICalGLib.Parser.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParserfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_parser_free (
    +  ICalParser* parser
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees a ICalParser.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.get_line.html b/static/libical-glib/method.Parser.get_line.html new file mode 100644 index 00000000..24c29302 --- /dev/null +++ b/static/libical-glib/method.Parser.get_line.html @@ -0,0 +1,253 @@ + + + + + + ICalGLib.Parser.get_line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParserget_line

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_parser_get_line (
    +  ICalParser* parser,
    +  ICalParserLineGenFunc func,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Given a line generator function, returns a single iCal content line.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    func
    +
    +

    Type: ICalParserLineGenFunc

    +

    A line generator function.

    + + + + + + + + + + +
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The data given to func.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    A single iCal content line.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.get_state.html b/static/libical-glib/method.Parser.get_state.html new file mode 100644 index 00000000..55f31140 --- /dev/null +++ b/static/libical-glib/method.Parser.get_state.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Parser.get_state + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParserget_state

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParserState
    +i_cal_parser_get_state (
    +  ICalParser* parser
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the state of the target parser.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParserState

    +

    The parser state stored in the ICalParser.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Parser.parse.html b/static/libical-glib/method.Parser.parse.html new file mode 100644 index 00000000..e2afb30b --- /dev/null +++ b/static/libical-glib/method.Parser.parse.html @@ -0,0 +1,255 @@ + + + + + + ICalGLib.Parser.parse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibParserparse

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_parser_parse (
    +  ICalParser* parser,
    +  ICalParserLineGenFunc func,
    +  gpointer user_data
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Icalparser_parse takes a string that holds the text ( in RFC 2445 format ) and returns a pointer to an +ICalComponent. The caller owns the memory. func is a pointer to a function that returns one content +line per invocation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    func
    +
    +

    Type: ICalParserLineGenFunc

    +

    The function used to parse.

    + + + + + + + + + + +
    +
    + +
    user_data
    +
    +

    Type: gpointer

    +

    The data given to func.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The component output by the parser.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.as_ical_string.html b/static/libical-glib/method.Period.as_ical_string.html new file mode 100644 index 00000000..60c70eab --- /dev/null +++ b/static/libical-glib/method.Period.as_ical_string.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_period_as_ical_string (
    +  ICalPeriod* p
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Translates ICalPeriod to string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of ICalPeriod.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.get_duration.html b/static/libical-glib/method.Period.get_duration.html new file mode 100644 index 00000000..41d57d6b --- /dev/null +++ b/static/libical-glib/method.Period.get_duration.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.get_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodget_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_period_get_duration (
    +  ICalPeriod* period
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration from an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The duration of period.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.get_end.html b/static/libical-glib/method.Period.get_end.html new file mode 100644 index 00000000..da55a826 --- /dev/null +++ b/static/libical-glib/method.Period.get_end.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.get_end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodget_end

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_period_get_end (
    +  ICalPeriod* period
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the end time from an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The end of period.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.get_start.html b/static/libical-glib/method.Period.get_start.html new file mode 100644 index 00000000..a6bfb899 --- /dev/null +++ b/static/libical-glib/method.Period.get_start.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.get_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodget_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_period_get_start (
    +  ICalPeriod* period
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the start time from an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The start of period.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.is_null_period.html b/static/libical-glib/method.Period.is_null_period.html new file mode 100644 index 00000000..53dcf22f --- /dev/null +++ b/static/libical-glib/method.Period.is_null_period.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.is_null_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodis_null_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_period_is_null_period (
    +  ICalPeriod* p
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks the ICalPeriod is null_period.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.is_valid_period.html b/static/libical-glib/method.Period.is_valid_period.html new file mode 100644 index 00000000..72b44d27 --- /dev/null +++ b/static/libical-glib/method.Period.is_valid_period.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.Period.is_valid_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodis_valid_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_period_is_valid_period (
    +  ICalPeriod* p
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks the ICalPeriod is valid_period.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.set_duration.html b/static/libical-glib/method.Period.set_duration.html new file mode 100644 index 00000000..57a231bc --- /dev/null +++ b/static/libical-glib/method.Period.set_duration.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.Period.set_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodset_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_period_set_duration (
    +  ICalPeriod* period,
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the duration of an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    duration
    +
    +

    Type: ICalDuration

    +

    The duration of period.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.set_end.html b/static/libical-glib/method.Period.set_end.html new file mode 100644 index 00000000..4e2de0ac --- /dev/null +++ b/static/libical-glib/method.Period.set_end.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.Period.set_end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodset_end

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_period_set_end (
    +  ICalPeriod* period,
    +  ICalTime* end
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the end time of an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    end
    +
    +

    Type: ICalTime

    +

    The end of period.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Period.set_start.html b/static/libical-glib/method.Period.set_start.html new file mode 100644 index 00000000..10e5be40 --- /dev/null +++ b/static/libical-glib/method.Period.set_start.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.Period.set_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPeriodset_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_period_set_start (
    +  ICalPeriod* period,
    +  ICalTime* start
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the start time of an ICalPeriod.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    start
    +
    +

    Type: ICalTime

    +

    The start of period.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.add_parameter.html b/static/libical-glib/method.Property.add_parameter.html new file mode 100644 index 00000000..2bb093e5 --- /dev/null +++ b/static/libical-glib/method.Property.add_parameter.html @@ -0,0 +1,772 @@ + + + + + + ICalGLib.Property.add_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyadd_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_add_parameter (
    +  ICalProperty* prop,
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds a ICalParameter into the ICalProperty. It behaves like set the copy of the ICalParameter. Upon +completion the native part of ICalParameter will be set to NULL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    parameter
    +
    +

    Type: ICalParameter

    +

    The parameter to be added into prop.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.as_ical_string.html b/static/libical-glib/method.Property.as_ical_string.html new file mode 100644 index 00000000..5cf7c13d --- /dev/null +++ b/static/libical-glib/method.Property.as_ical_string.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_property_as_ical_string (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a ICalProperty to a string representation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.clone.html b/static/libical-glib/method.Property.clone.html new file mode 100644 index 00000000..38833860 --- /dev/null +++ b/static/libical-glib/method.Property.clone.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyclone

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_property_clone (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Deeply clone a ICalProperty.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The newly created ICalProperty deeply cloned from prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.count_parameters.html b/static/libical-glib/method.Property.count_parameters.html new file mode 100644 index 00000000..f3be9a24 --- /dev/null +++ b/static/libical-glib/method.Property.count_parameters.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.count_parameters + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertycount_parameters

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_count_parameters (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Counts the parameters in the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The count of the parameters in the ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.free.html b/static/libical-glib/method.Property.free.html new file mode 100644 index 00000000..da2a162e --- /dev/null +++ b/static/libical-glib/method.Property.free.html @@ -0,0 +1,738 @@ + + + + + + ICalGLib.Property.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_free (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees a ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_acceptresponse.html b/static/libical-glib/method.Property.get_acceptresponse.html new file mode 100644 index 00000000..716bdba2 --- /dev/null +++ b/static/libical-glib/method.Property.get_acceptresponse.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_acceptresponse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_acceptresponse

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_acceptresponse (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the acceptresponse of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the acceptresponse of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_acknowledged.html b/static/libical-glib/method.Property.get_acknowledged.html new file mode 100644 index 00000000..4d81c175 --- /dev/null +++ b/static/libical-glib/method.Property.get_acknowledged.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_acknowledged + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_acknowledged

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_acknowledged (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the acknowledged time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the acknowledged time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_action.html b/static/libical-glib/method.Property.get_action.html new file mode 100644 index 00000000..729db72e --- /dev/null +++ b/static/libical-glib/method.Property.get_action.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_action

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyAction
    +i_cal_property_get_action (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the action of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyAction

    +

    Get the action of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_allowconflict.html b/static/libical-glib/method.Property.get_allowconflict.html new file mode 100644 index 00000000..e3cb42d2 --- /dev/null +++ b/static/libical-glib/method.Property.get_allowconflict.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_allowconflict + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_allowconflict

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_allowconflict (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the allowconflict of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the allowconflict of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_attach.html b/static/libical-glib/method.Property.get_attach.html new file mode 100644 index 00000000..acae3bd8 --- /dev/null +++ b/static/libical-glib/method.Property.get_attach.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_attach

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_property_get_attach (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the attach of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    Get the attach of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_attendee.html b/static/libical-glib/method.Property.get_attendee.html new file mode 100644 index 00000000..1d45f7aa --- /dev/null +++ b/static/libical-glib/method.Property.get_attendee.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_attendee + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_attendee

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_attendee (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the attendee of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the attendee of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_busytype.html b/static/libical-glib/method.Property.get_busytype.html new file mode 100644 index 00000000..98866eb4 --- /dev/null +++ b/static/libical-glib/method.Property.get_busytype.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyBusytype
    +i_cal_property_get_busytype (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the busytype of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyBusytype

    +

    Get the busytype of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_calendaraddress.html b/static/libical-glib/method.Property.get_calendaraddress.html new file mode 100644 index 00000000..22640e24 --- /dev/null +++ b/static/libical-glib/method.Property.get_calendaraddress.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_calendaraddress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_calendaraddress

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_calendaraddress (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_CALENDARADDRESS_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_calid.html b/static/libical-glib/method.Property.get_calid.html new file mode 100644 index 00000000..fa930505 --- /dev/null +++ b/static/libical-glib/method.Property.get_calid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_calid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_calid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_calid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the calid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the calid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_calmaster.html b/static/libical-glib/method.Property.get_calmaster.html new file mode 100644 index 00000000..a631b808 --- /dev/null +++ b/static/libical-glib/method.Property.get_calmaster.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_calmaster + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_calmaster

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_calmaster (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the calmaster of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the calmaster of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_calscale.html b/static/libical-glib/method.Property.get_calscale.html new file mode 100644 index 00000000..8d513257 --- /dev/null +++ b/static/libical-glib/method.Property.get_calscale.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_calscale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_calscale

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_calscale (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the calscale of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the calscale of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_capversion.html b/static/libical-glib/method.Property.get_capversion.html new file mode 100644 index 00000000..366e9e31 --- /dev/null +++ b/static/libical-glib/method.Property.get_capversion.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_capversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_capversion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_capversion (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the capversion of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the capversion of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_carid.html b/static/libical-glib/method.Property.get_carid.html new file mode 100644 index 00000000..36eb2dba --- /dev/null +++ b/static/libical-glib/method.Property.get_carid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_carid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_carid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_carid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the carid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the carid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_carlevel.html b/static/libical-glib/method.Property.get_carlevel.html new file mode 100644 index 00000000..74f40d0a --- /dev/null +++ b/static/libical-glib/method.Property.get_carlevel.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyCarlevel
    +i_cal_property_get_carlevel (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the carlevel of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyCarlevel

    +

    Get the carlevel of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_categories.html b/static/libical-glib/method.Property.get_categories.html new file mode 100644 index 00000000..ecf65698 --- /dev/null +++ b/static/libical-glib/method.Property.get_categories.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_categories + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_categories

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_categories (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the categories of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the categories of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_class.html b/static/libical-glib/method.Property.get_class.html new file mode 100644 index 00000000..3baf249f --- /dev/null +++ b/static/libical-glib/method.Property.get_class.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_class

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty_Class
    +i_cal_property_get_class (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the class of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty_Class

    +

    Get the class of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_cmd.html b/static/libical-glib/method.Property.get_cmd.html new file mode 100644 index 00000000..4a05f929 --- /dev/null +++ b/static/libical-glib/method.Property.get_cmd.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyCmd
    +i_cal_property_get_cmd (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the cmd of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyCmd

    +

    Get the cmd of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_color.html b/static/libical-glib/method.Property.get_color.html new file mode 100644 index 00000000..5342479b --- /dev/null +++ b/static/libical-glib/method.Property.get_color.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_color + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_color

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_color (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the color property of the prop.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the color property.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_comment.html b/static/libical-glib/method.Property.get_comment.html new file mode 100644 index 00000000..aa14e97f --- /dev/null +++ b/static/libical-glib/method.Property.get_comment.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_comment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_comment

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_comment (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the comment of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the comment of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_completed.html b/static/libical-glib/method.Property.get_completed.html new file mode 100644 index 00000000..ae9c09a6 --- /dev/null +++ b/static/libical-glib/method.Property.get_completed.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_completed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_completed

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_completed (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the completed time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the completed time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_components.html b/static/libical-glib/method.Property.get_components.html new file mode 100644 index 00000000..7a40b347 --- /dev/null +++ b/static/libical-glib/method.Property.get_components.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_components + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_components

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_components (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the components of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the components of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_conference.html b/static/libical-glib/method.Property.get_conference.html new file mode 100644 index 00000000..e3a0cb52 --- /dev/null +++ b/static/libical-glib/method.Property.get_conference.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_conference + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_conference

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_conference (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_CONFERENCE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_contact.html b/static/libical-glib/method.Property.get_contact.html new file mode 100644 index 00000000..1c9fdfb7 --- /dev/null +++ b/static/libical-glib/method.Property.get_contact.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_contact + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_contact

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_contact (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the contact of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the contact of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_created.html b/static/libical-glib/method.Property.get_created.html new file mode 100644 index 00000000..34643e99 --- /dev/null +++ b/static/libical-glib/method.Property.get_created.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_created + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_created

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_created (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the created time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the created time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_csid.html b/static/libical-glib/method.Property.get_csid.html new file mode 100644 index 00000000..76278b5d --- /dev/null +++ b/static/libical-glib/method.Property.get_csid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_csid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_csid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_csid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the csid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the csid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_datemax.html b/static/libical-glib/method.Property.get_datemax.html new file mode 100644 index 00000000..268bef74 --- /dev/null +++ b/static/libical-glib/method.Property.get_datemax.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_datemax + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_datemax

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_datemax (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the datemax time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the datemax time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_datemin.html b/static/libical-glib/method.Property.get_datemin.html new file mode 100644 index 00000000..abec6cec --- /dev/null +++ b/static/libical-glib/method.Property.get_datemin.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_datemin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_datemin

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_datemin (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the datemin time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the datemin time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_datetime_with_component.html b/static/libical-glib/method.Property.get_datetime_with_component.html new file mode 100644 index 00000000..3778e80c --- /dev/null +++ b/static/libical-glib/method.Property.get_datetime_with_component.html @@ -0,0 +1,801 @@ + + + + + + ICalGLib.Property.get_datetime_with_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_datetime_with_component

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_datetime_with_component (
    +  ICalProperty* prop,
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    If the property is a DATE-TIME with a TZID parameter and a corresponding VTIMEZONE is present in the +component, the returned component will already be in the correct timezone; otherwise the caller is responsible +for converting it.

    +

    The comp can be NULL, in which case the parent of the prop is used to find +the corresponding time zone.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    An ICalComponent.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get a DATE or DATE-TIME property as an ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_decreed.html b/static/libical-glib/method.Property.get_decreed.html new file mode 100644 index 00000000..f53c0802 --- /dev/null +++ b/static/libical-glib/method.Property.get_decreed.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_decreed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_decreed

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_decreed (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the decreed of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the decreed of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_defaultcharset.html b/static/libical-glib/method.Property.get_defaultcharset.html new file mode 100644 index 00000000..85785a4c --- /dev/null +++ b/static/libical-glib/method.Property.get_defaultcharset.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_defaultcharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_defaultcharset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_defaultcharset (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the defaultcharset of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the defaultcharset of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_defaultlocale.html b/static/libical-glib/method.Property.get_defaultlocale.html new file mode 100644 index 00000000..22b6646a --- /dev/null +++ b/static/libical-glib/method.Property.get_defaultlocale.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_defaultlocale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_defaultlocale

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_defaultlocale (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the defaultlocale of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the defaultlocale of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_defaulttzid.html b/static/libical-glib/method.Property.get_defaulttzid.html new file mode 100644 index 00000000..357aff4f --- /dev/null +++ b/static/libical-glib/method.Property.get_defaulttzid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_defaulttzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_defaulttzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_defaulttzid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the defaulttzid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the defaulttzid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_defaultvcars.html b/static/libical-glib/method.Property.get_defaultvcars.html new file mode 100644 index 00000000..330eb8d4 --- /dev/null +++ b/static/libical-glib/method.Property.get_defaultvcars.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_defaultvcars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_defaultvcars

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_defaultvcars (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the defaultvcars of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the defaultvcars of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_deny.html b/static/libical-glib/method.Property.get_deny.html new file mode 100644 index 00000000..46c3ee6d --- /dev/null +++ b/static/libical-glib/method.Property.get_deny.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_deny + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_deny

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_deny (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the deny of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the deny of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_description.html b/static/libical-glib/method.Property.get_description.html new file mode 100644 index 00000000..d75f6579 --- /dev/null +++ b/static/libical-glib/method.Property.get_description.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_description

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_description (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the description of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the description of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_dtend.html b/static/libical-glib/method.Property.get_dtend.html new file mode 100644 index 00000000..1decc5cb --- /dev/null +++ b/static/libical-glib/method.Property.get_dtend.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_dtend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_dtend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_dtend (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtend time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the dtend time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_dtstamp.html b/static/libical-glib/method.Property.get_dtstamp.html new file mode 100644 index 00000000..0d7cccab --- /dev/null +++ b/static/libical-glib/method.Property.get_dtstamp.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_dtstamp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_dtstamp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_dtstamp (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtstamp time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the dtstamp time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_dtstart.html b/static/libical-glib/method.Property.get_dtstart.html new file mode 100644 index 00000000..81b1ae03 --- /dev/null +++ b/static/libical-glib/method.Property.get_dtstart.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_dtstart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_dtstart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_dtstart (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the dtstart time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the dtstart time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_due.html b/static/libical-glib/method.Property.get_due.html new file mode 100644 index 00000000..5623bdda --- /dev/null +++ b/static/libical-glib/method.Property.get_due.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_due + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_due

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_due (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the due time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the due time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_duration.html b/static/libical-glib/method.Property.get_duration.html new file mode 100644 index 00000000..a026487e --- /dev/null +++ b/static/libical-glib/method.Property.get_duration.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_property_get_duration (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    Get the duration of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_estimatedduration.html b/static/libical-glib/method.Property.get_estimatedduration.html new file mode 100644 index 00000000..f2eac301 --- /dev/null +++ b/static/libical-glib/method.Property.get_estimatedduration.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_estimatedduration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_estimatedduration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_property_get_estimatedduration (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the estimatedduration of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    Get the estimatedduration of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_exdate.html b/static/libical-glib/method.Property.get_exdate.html new file mode 100644 index 00000000..229017fc --- /dev/null +++ b/static/libical-glib/method.Property.get_exdate.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_exdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_exdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_exdate (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the exdate time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the exdate time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_expand.html b/static/libical-glib/method.Property.get_expand.html new file mode 100644 index 00000000..95868d00 --- /dev/null +++ b/static/libical-glib/method.Property.get_expand.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_expand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_expand

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_expand (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the expand of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the expand of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_exrule.html b/static/libical-glib/method.Property.get_exrule.html new file mode 100644 index 00000000..2df10d9c --- /dev/null +++ b/static/libical-glib/method.Property.get_exrule.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_exrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_exrule

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_property_get_exrule (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the exrule recurrence type of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    Get the exrule recurrence type of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_first_parameter.html b/static/libical-glib/method.Property.get_first_parameter.html new file mode 100644 index 00000000..f71c51ca --- /dev/null +++ b/static/libical-glib/method.Property.get_first_parameter.html @@ -0,0 +1,797 @@ + + + + + + ICalGLib.Property.get_first_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_first_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_property_get_first_parameter (
    +  ICalProperty* prop,
    +  ICalParameterKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the first ICalParameter from the parent ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The target kind of ICalParameter to be retrieved.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The first ICalParameter of prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_freebusy.html b/static/libical-glib/method.Property.get_freebusy.html new file mode 100644 index 00000000..cfe046f1 --- /dev/null +++ b/static/libical-glib/method.Property.get_freebusy.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_freebusy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_freebusy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_property_get_freebusy (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the freebusy period type of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    Get the freebusy period type of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_geo.html b/static/libical-glib/method.Property.get_geo.html new file mode 100644 index 00000000..82ece9e2 --- /dev/null +++ b/static/libical-glib/method.Property.get_geo.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_geo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalGeo*
    +i_cal_property_get_geo (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the geo type of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalGeo

    +

    Get the geo type of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_grant.html b/static/libical-glib/method.Property.get_grant.html new file mode 100644 index 00000000..3cfc81d0 --- /dev/null +++ b/static/libical-glib/method.Property.get_grant.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_grant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_grant

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_grant (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the grant of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the grant of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_image.html b/static/libical-glib/method.Property.get_image.html new file mode 100644 index 00000000..a62e470d --- /dev/null +++ b/static/libical-glib/method.Property.get_image.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_image + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_image

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_property_get_image (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_IMAGE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The value of the prop of type ICalAttach.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_itipversion.html b/static/libical-glib/method.Property.get_itipversion.html new file mode 100644 index 00000000..181dd9ff --- /dev/null +++ b/static/libical-glib/method.Property.get_itipversion.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_itipversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_itipversion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_itipversion (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the itipversion of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the itipversion of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_lastmodified.html b/static/libical-glib/method.Property.get_lastmodified.html new file mode 100644 index 00000000..bc21e869 --- /dev/null +++ b/static/libical-glib/method.Property.get_lastmodified.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_lastmodified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_lastmodified

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_lastmodified (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the lastmodified time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the lastmodified time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_location.html b/static/libical-glib/method.Property.get_location.html new file mode 100644 index 00000000..fdac7d50 --- /dev/null +++ b/static/libical-glib/method.Property.get_location.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_location

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_location (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the location of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the location of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_locationtype.html b/static/libical-glib/method.Property.get_locationtype.html new file mode 100644 index 00000000..5db0c402 --- /dev/null +++ b/static/libical-glib/method.Property.get_locationtype.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_locationtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_locationtype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_locationtype (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_LOCATIONTYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_maxcomponentsize.html b/static/libical-glib/method.Property.get_maxcomponentsize.html new file mode 100644 index 00000000..32fa497f --- /dev/null +++ b/static/libical-glib/method.Property.get_maxcomponentsize.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_maxcomponentsize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_maxcomponentsize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_maxcomponentsize (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the maxcomponentsize of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the maxcomponentsize of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_maxdate.html b/static/libical-glib/method.Property.get_maxdate.html new file mode 100644 index 00000000..0ee5af2d --- /dev/null +++ b/static/libical-glib/method.Property.get_maxdate.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_maxdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_maxdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_maxdate (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the maxdate time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the maxdate time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_maxresults.html b/static/libical-glib/method.Property.get_maxresults.html new file mode 100644 index 00000000..9cb95e9a --- /dev/null +++ b/static/libical-glib/method.Property.get_maxresults.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_maxresults + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_maxresults

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_maxresults (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the maxresults of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the maxresults of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_maxresultssize.html b/static/libical-glib/method.Property.get_maxresultssize.html new file mode 100644 index 00000000..36d3d176 --- /dev/null +++ b/static/libical-glib/method.Property.get_maxresultssize.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_maxresultssize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_maxresultssize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_maxresultssize (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the maxresultssize of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the maxresultssize of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_method.html b/static/libical-glib/method.Property.get_method.html new file mode 100644 index 00000000..912ef408 --- /dev/null +++ b/static/libical-glib/method.Property.get_method.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyMethod
    +i_cal_property_get_method (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the method of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyMethod

    +

    Get the method of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_mindate.html b/static/libical-glib/method.Property.get_mindate.html new file mode 100644 index 00000000..5eab98b4 --- /dev/null +++ b/static/libical-glib/method.Property.get_mindate.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_mindate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_mindate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_mindate (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the mindate time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the mindate time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_multipart.html b/static/libical-glib/method.Property.get_multipart.html new file mode 100644 index 00000000..91fc5188 --- /dev/null +++ b/static/libical-glib/method.Property.get_multipart.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_multipart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_multipart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_multipart (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the multipart of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the multipart of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_name.html b/static/libical-glib/method.Property.get_name.html new file mode 100644 index 00000000..fc4354c8 --- /dev/null +++ b/static/libical-glib/method.Property.get_name.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_name (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the name of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the name of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_next_parameter.html b/static/libical-glib/method.Property.get_next_parameter.html new file mode 100644 index 00000000..153aa22f --- /dev/null +++ b/static/libical-glib/method.Property.get_next_parameter.html @@ -0,0 +1,797 @@ + + + + + + ICalGLib.Property.get_next_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_next_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameter*
    +i_cal_property_get_next_parameter (
    +  ICalProperty* prop,
    +  ICalParameterKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the next ICalParameter from the parent ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The target kind of ICalParameter to be retrieved.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameter

    +

    The next ICalParameter of prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_organizer.html b/static/libical-glib/method.Property.get_organizer.html new file mode 100644 index 00000000..d2496682 --- /dev/null +++ b/static/libical-glib/method.Property.get_organizer.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_organizer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_organizer

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_organizer (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the organizer of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the organizer of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_owner.html b/static/libical-glib/method.Property.get_owner.html new file mode 100644 index 00000000..87ee26d4 --- /dev/null +++ b/static/libical-glib/method.Property.get_owner.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_owner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_owner (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the owner of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the owner of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_parameter_as_string.html b/static/libical-glib/method.Property.get_parameter_as_string.html new file mode 100644 index 00000000..a287006c --- /dev/null +++ b/static/libical-glib/method.Property.get_parameter_as_string.html @@ -0,0 +1,797 @@ + + + + + + ICalGLib.Property.get_parameter_as_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_parameter_as_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_property_get_parameter_as_string (
    +  ICalProperty* prop,
    +  const gchar* name
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the string representation of the target parameter in the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    name
    +
    +

    Type: const gchar*

    +

    The name of the target parameter.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of the parameter.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_parent.html b/static/libical-glib/method.Property.get_parent.html new file mode 100644 index 00000000..5cb563fa --- /dev/null +++ b/static/libical-glib/method.Property.get_parent.html @@ -0,0 +1,767 @@ + + + + + + ICalGLib.Property.get_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_parent

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_property_get_parent (
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the parent component of the property. Use with caution. When icalproperty is deallocated, it won’t +deallocate its parent. However the ICalComponent object created using this method will be deallocated +(if no reference in other places). So You need to make sure there is another reference except the one +in ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The parent ICalComponent of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_participanttype.html b/static/libical-glib/method.Property.get_participanttype.html new file mode 100644 index 00000000..22b3a0ae --- /dev/null +++ b/static/libical-glib/method.Property.get_participanttype.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyParticipanttype
    +i_cal_property_get_participanttype (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PARTICIPANTTYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyParticipanttype

    +

    The value of the prop of type ICalPropertyParticipanttype.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_patchdelete.html b/static/libical-glib/method.Property.get_patchdelete.html new file mode 100644 index 00000000..c53417d4 --- /dev/null +++ b/static/libical-glib/method.Property.get_patchdelete.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_patchdelete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_patchdelete

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_patchdelete (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PATCHDELETE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_patchorder.html b/static/libical-glib/method.Property.get_patchorder.html new file mode 100644 index 00000000..2a472347 --- /dev/null +++ b/static/libical-glib/method.Property.get_patchorder.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_patchorder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_patchorder

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_patchorder (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PATCHORDER_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_patchparameter.html b/static/libical-glib/method.Property.get_patchparameter.html new file mode 100644 index 00000000..76a7a645 --- /dev/null +++ b/static/libical-glib/method.Property.get_patchparameter.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_patchparameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_patchparameter

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_patchparameter (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PATCHPARAMETER_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_patchtarget.html b/static/libical-glib/method.Property.get_patchtarget.html new file mode 100644 index 00000000..dc4f5bfe --- /dev/null +++ b/static/libical-glib/method.Property.get_patchtarget.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_patchtarget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_patchtarget

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_patchtarget (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PATCHTARGET_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_patchversion.html b/static/libical-glib/method.Property.get_patchversion.html new file mode 100644 index 00000000..9c09770e --- /dev/null +++ b/static/libical-glib/method.Property.get_patchversion.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_patchversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_patchversion

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_patchversion (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PATCHVERSION_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_percentcomplete.html b/static/libical-glib/method.Property.get_percentcomplete.html new file mode 100644 index 00000000..911ed71c --- /dev/null +++ b/static/libical-glib/method.Property.get_percentcomplete.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_percentcomplete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_percentcomplete

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_percentcomplete (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the percentcomplete of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the percentcomplete of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_permission.html b/static/libical-glib/method.Property.get_permission.html new file mode 100644 index 00000000..03d668c0 --- /dev/null +++ b/static/libical-glib/method.Property.get_permission.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_permission + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_permission

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_permission (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the permission of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the permission of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_pollcompletion.html b/static/libical-glib/method.Property.get_pollcompletion.html new file mode 100644 index 00000000..0fddc349 --- /dev/null +++ b/static/libical-glib/method.Property.get_pollcompletion.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_pollcompletion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyPollcompletion
    +i_cal_property_get_pollcompletion (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollcompletion of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyPollcompletion

    +

    Get the pollcompletion of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_pollitemid.html b/static/libical-glib/method.Property.get_pollitemid.html new file mode 100644 index 00000000..c656f47e --- /dev/null +++ b/static/libical-glib/method.Property.get_pollitemid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_pollitemid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_pollitemid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_pollitemid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollitemid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the pollitemid of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_pollmode.html b/static/libical-glib/method.Property.get_pollmode.html new file mode 100644 index 00000000..517eebf1 --- /dev/null +++ b/static/libical-glib/method.Property.get_pollmode.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_pollmode

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyPollmode
    +i_cal_property_get_pollmode (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollmode of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyPollmode

    +

    Get the pollmode of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_pollproperties.html b/static/libical-glib/method.Property.get_pollproperties.html new file mode 100644 index 00000000..7dcfb380 --- /dev/null +++ b/static/libical-glib/method.Property.get_pollproperties.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_pollproperties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_pollproperties

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_pollproperties (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollproperties of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the pollproperties of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_pollwinner.html b/static/libical-glib/method.Property.get_pollwinner.html new file mode 100644 index 00000000..46937cd7 --- /dev/null +++ b/static/libical-glib/method.Property.get_pollwinner.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_pollwinner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_pollwinner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_pollwinner (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollwinner of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the pollwinner of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_priority.html b/static/libical-glib/method.Property.get_priority.html new file mode 100644 index 00000000..868134c4 --- /dev/null +++ b/static/libical-glib/method.Property.get_priority.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_priority + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_priority

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_priority (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the priority of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the priority of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_prodid.html b/static/libical-glib/method.Property.get_prodid.html new file mode 100644 index 00000000..eb4290a1 --- /dev/null +++ b/static/libical-glib/method.Property.get_prodid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_prodid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_prodid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_prodid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the prodid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the prodid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_property_name.html b/static/libical-glib/method.Property.get_property_name.html new file mode 100644 index 00000000..8c9e5e9c --- /dev/null +++ b/static/libical-glib/method.Property.get_property_name.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_property_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_property_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_property_get_property_name (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the property name of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    Property name of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_proximity.html b/static/libical-glib/method.Property.get_proximity.html new file mode 100644 index 00000000..999e5079 --- /dev/null +++ b/static/libical-glib/method.Property.get_proximity.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyProximity
    +i_cal_property_get_proximity (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_PROXIMITY_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyProximity

    +

    The value of the prop of type ICalPropertyProximity.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_query.html b/static/libical-glib/method.Property.get_query.html new file mode 100644 index 00000000..1cefbc5c --- /dev/null +++ b/static/libical-glib/method.Property.get_query.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_query

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_query (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the query of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the query of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_queryid.html b/static/libical-glib/method.Property.get_queryid.html new file mode 100644 index 00000000..9e583f51 --- /dev/null +++ b/static/libical-glib/method.Property.get_queryid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_queryid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_queryid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_queryid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the queryid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the queryid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_querylevel.html b/static/libical-glib/method.Property.get_querylevel.html new file mode 100644 index 00000000..5d165e41 --- /dev/null +++ b/static/libical-glib/method.Property.get_querylevel.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyQuerylevel
    +i_cal_property_get_querylevel (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the querylevel of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyQuerylevel

    +

    Get the querylevel of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_queryname.html b/static/libical-glib/method.Property.get_queryname.html new file mode 100644 index 00000000..6dcf6685 --- /dev/null +++ b/static/libical-glib/method.Property.get_queryname.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_queryname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_queryname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_queryname (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the queryname of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the queryname of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_rdate.html b/static/libical-glib/method.Property.get_rdate.html new file mode 100644 index 00000000..5de48f49 --- /dev/null +++ b/static/libical-glib/method.Property.get_rdate.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_rdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_rdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDatetimeperiod*
    +i_cal_property_get_rdate (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the rdate of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDatetimeperiod

    +

    Get the rdate of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_recuraccepted.html b/static/libical-glib/method.Property.get_recuraccepted.html new file mode 100644 index 00000000..fd547beb --- /dev/null +++ b/static/libical-glib/method.Property.get_recuraccepted.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_recuraccepted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_recuraccepted

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_recuraccepted (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recuraccepted of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the recuraccepted of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_recurexpand.html b/static/libical-glib/method.Property.get_recurexpand.html new file mode 100644 index 00000000..9b9c5050 --- /dev/null +++ b/static/libical-glib/method.Property.get_recurexpand.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_recurexpand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_recurexpand

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_recurexpand (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recurexpand of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the recurexpand of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_recurlimit.html b/static/libical-glib/method.Property.get_recurlimit.html new file mode 100644 index 00000000..0da180e7 --- /dev/null +++ b/static/libical-glib/method.Property.get_recurlimit.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_recurlimit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_recurlimit

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_recurlimit (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recurlimit of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the recurlimit of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_recurrenceid.html b/static/libical-glib/method.Property.get_recurrenceid.html new file mode 100644 index 00000000..d7a391ba --- /dev/null +++ b/static/libical-glib/method.Property.get_recurrenceid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_recurrenceid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_recurrenceid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_recurrenceid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recurrenceid time of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the recurrenceid time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_refreshinterval.html b/static/libical-glib/method.Property.get_refreshinterval.html new file mode 100644 index 00000000..ea046340 --- /dev/null +++ b/static/libical-glib/method.Property.get_refreshinterval.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_refreshinterval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_refreshinterval

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_property_get_refreshinterval (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_REFRESHINTERVAL_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_relatedto.html b/static/libical-glib/method.Property.get_relatedto.html new file mode 100644 index 00000000..b7879848 --- /dev/null +++ b/static/libical-glib/method.Property.get_relatedto.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_relatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_relatedto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_relatedto (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the relatedto of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the relatedto of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_relcalid.html b/static/libical-glib/method.Property.get_relcalid.html new file mode 100644 index 00000000..13d81cdc --- /dev/null +++ b/static/libical-glib/method.Property.get_relcalid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_relcalid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_relcalid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_relcalid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the relcalid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the relcalid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_repeat.html b/static/libical-glib/method.Property.get_repeat.html new file mode 100644 index 00000000..9ef5497a --- /dev/null +++ b/static/libical-glib/method.Property.get_repeat.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_repeat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_repeat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_repeat (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the repeat of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the repeat of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_replyurl.html b/static/libical-glib/method.Property.get_replyurl.html new file mode 100644 index 00000000..74435b05 --- /dev/null +++ b/static/libical-glib/method.Property.get_replyurl.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_replyurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_replyurl

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_replyurl (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the replyurl of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the replyurl of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_requeststatus.html b/static/libical-glib/method.Property.get_requeststatus.html new file mode 100644 index 00000000..8431f810 --- /dev/null +++ b/static/libical-glib/method.Property.get_requeststatus.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalReqstat*
    +i_cal_property_get_requeststatus (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the requeststatus of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalReqstat

    +

    Get the requeststatus of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_resources.html b/static/libical-glib/method.Property.get_resources.html new file mode 100644 index 00000000..e6d175b2 --- /dev/null +++ b/static/libical-glib/method.Property.get_resources.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_resources + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_resources

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_resources (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the resources of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the resources of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_resourcetype.html b/static/libical-glib/method.Property.get_resourcetype.html new file mode 100644 index 00000000..17e52a38 --- /dev/null +++ b/static/libical-glib/method.Property.get_resourcetype.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyResourcetype
    +i_cal_property_get_resourcetype (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_RESOURCETYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyResourcetype

    +

    The value of the prop of type ICalPropertyResourcetype.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_response.html b/static/libical-glib/method.Property.get_response.html new file mode 100644 index 00000000..dcdbcefb --- /dev/null +++ b/static/libical-glib/method.Property.get_response.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_response

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_response (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the response of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the response of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_restriction.html b/static/libical-glib/method.Property.get_restriction.html new file mode 100644 index 00000000..943ec1c3 --- /dev/null +++ b/static/libical-glib/method.Property.get_restriction.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_restriction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_restriction

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_restriction (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the restriction of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the restriction of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_rrule.html b/static/libical-glib/method.Property.get_rrule.html new file mode 100644 index 00000000..3dc248b5 --- /dev/null +++ b/static/libical-glib/method.Property.get_rrule.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_rrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_rrule

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_property_get_rrule (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the rrule recurrence type of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    Get the rrule recurrence type of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_scope.html b/static/libical-glib/method.Property.get_scope.html new file mode 100644 index 00000000..3e5a9c2b --- /dev/null +++ b/static/libical-glib/method.Property.get_scope.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_scope + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_scope

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_scope (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the scope of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the scope of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_sequence.html b/static/libical-glib/method.Property.get_sequence.html new file mode 100644 index 00000000..c1ae331d --- /dev/null +++ b/static/libical-glib/method.Property.get_sequence.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_sequence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_sequence

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_sequence (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the sequence of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the sequence of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_source.html b/static/libical-glib/method.Property.get_source.html new file mode 100644 index 00000000..97f246aa --- /dev/null +++ b/static/libical-glib/method.Property.get_source.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_source + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_source

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_source (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_SOURCE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_status.html b/static/libical-glib/method.Property.get_status.html new file mode 100644 index 00000000..16f2c02f --- /dev/null +++ b/static/libical-glib/method.Property.get_status.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyStatus
    +i_cal_property_get_status (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the status of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyStatus

    +

    Get the status of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_storesexpanded.html b/static/libical-glib/method.Property.get_storesexpanded.html new file mode 100644 index 00000000..5bd0acaa --- /dev/null +++ b/static/libical-glib/method.Property.get_storesexpanded.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_storesexpanded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_storesexpanded

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_storesexpanded (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the storesexpanded of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the storesexpanded of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_structureddata.html b/static/libical-glib/method.Property.get_structureddata.html new file mode 100644 index 00000000..2a2c34e6 --- /dev/null +++ b/static/libical-glib/method.Property.get_structureddata.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_structureddata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_structureddata

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_property_get_structureddata (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_STRUCTUREDDATA_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The value of the prop of type ICalAttach.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_styleddescription.html b/static/libical-glib/method.Property.get_styleddescription.html new file mode 100644 index 00000000..3baf89f7 --- /dev/null +++ b/static/libical-glib/method.Property.get_styleddescription.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_styleddescription + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_styleddescription

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_styleddescription (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the prop of kind I_CAL_STYLEDDESCRIPTION_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The value of the prop.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_summary.html b/static/libical-glib/method.Property.get_summary.html new file mode 100644 index 00000000..05860950 --- /dev/null +++ b/static/libical-glib/method.Property.get_summary.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_summary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_summary (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the summary of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the summary of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_target.html b/static/libical-glib/method.Property.get_target.html new file mode 100644 index 00000000..9ad049ad --- /dev/null +++ b/static/libical-glib/method.Property.get_target.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_target + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_target

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_target (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the target of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the target of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_taskmode.html b/static/libical-glib/method.Property.get_taskmode.html new file mode 100644 index 00000000..c0000800 --- /dev/null +++ b/static/libical-glib/method.Property.get_taskmode.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyTaskmode
    +i_cal_property_get_taskmode (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the taskmode of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyTaskmode

    +

    Get the taskmode of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_transp.html b/static/libical-glib/method.Property.get_transp.html new file mode 100644 index 00000000..61451ae0 --- /dev/null +++ b/static/libical-glib/method.Property.get_transp.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_transp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyTransp
    +i_cal_property_get_transp (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the transp of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyTransp

    +

    Get the transp of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_trigger.html b/static/libical-glib/method.Property.get_trigger.html new file mode 100644 index 00000000..b697304d --- /dev/null +++ b/static/libical-glib/method.Property.get_trigger.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTrigger*
    +i_cal_property_get_trigger (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the trigger period type of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTrigger

    +

    Get the trigger period type of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzid.html b/static/libical-glib/method.Property.get_tzid.html new file mode 100644 index 00000000..aecc9b6d --- /dev/null +++ b/static/libical-glib/method.Property.get_tzid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_tzid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the tzid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzidaliasof.html b/static/libical-glib/method.Property.get_tzidaliasof.html new file mode 100644 index 00000000..01aae613 --- /dev/null +++ b/static/libical-glib/method.Property.get_tzidaliasof.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzidaliasof + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzidaliasof

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_tzidaliasof (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzidaliasof of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the tzidaliasof of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzname.html b/static/libical-glib/method.Property.get_tzname.html new file mode 100644 index 00000000..174e6773 --- /dev/null +++ b/static/libical-glib/method.Property.get_tzname.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_tzname (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzname of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the tzname of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzoffsetfrom.html b/static/libical-glib/method.Property.get_tzoffsetfrom.html new file mode 100644 index 00000000..48bcd844 --- /dev/null +++ b/static/libical-glib/method.Property.get_tzoffsetfrom.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzoffsetfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzoffsetfrom

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_tzoffsetfrom (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzoffsetfrom of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the tzoffsetfrom of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzoffsetto.html b/static/libical-glib/method.Property.get_tzoffsetto.html new file mode 100644 index 00000000..cea8f704 --- /dev/null +++ b/static/libical-glib/method.Property.get_tzoffsetto.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzoffsetto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzoffsetto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_get_tzoffsetto (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzoffsetto of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Get the tzoffsetto of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzuntil.html b/static/libical-glib/method.Property.get_tzuntil.html new file mode 100644 index 00000000..d1b08824 --- /dev/null +++ b/static/libical-glib/method.Property.get_tzuntil.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzuntil + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzuntil

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_property_get_tzuntil (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzuntil time of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    Get the tzuntil time of ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_tzurl.html b/static/libical-glib/method.Property.get_tzurl.html new file mode 100644 index 00000000..877a9bdc --- /dev/null +++ b/static/libical-glib/method.Property.get_tzurl.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_tzurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_tzurl

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_tzurl (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the tzurl of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the tzurl of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_uid.html b/static/libical-glib/method.Property.get_uid.html new file mode 100644 index 00000000..f7f87bcd --- /dev/null +++ b/static/libical-glib/method.Property.get_uid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_uid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_uid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the uid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the uid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_url.html b/static/libical-glib/method.Property.get_url.html new file mode 100644 index 00000000..ef4bbbf8 --- /dev/null +++ b/static/libical-glib/method.Property.get_url.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_url

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_url (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the url of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the url of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_value.html b/static/libical-glib/method.Property.get_value.html new file mode 100644 index 00000000..6eb9587d --- /dev/null +++ b/static/libical-glib/method.Property.get_value.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_property_get_value (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the ICalValue of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The ICalValue of prop.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_value_as_string.html b/static/libical-glib/method.Property.get_value_as_string.html new file mode 100644 index 00000000..3adb0f6f --- /dev/null +++ b/static/libical-glib/method.Property.get_value_as_string.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_value_as_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_value_as_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_property_get_value_as_string (
    +  const ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the string representation of the value in ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of the value of the ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_version.html b/static/libical-glib/method.Property.get_version.html new file mode 100644 index 00000000..ecb19ec4 --- /dev/null +++ b/static/libical-glib/method.Property.get_version.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_version + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_version

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_version (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the version of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the version of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_voter.html b/static/libical-glib/method.Property.get_voter.html new file mode 100644 index 00000000..d968225b --- /dev/null +++ b/static/libical-glib/method.Property.get_voter.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_voter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_voter

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_voter (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the voter of ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the voter of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_x.html b/static/libical-glib/method.Property.get_x.html new file mode 100644 index 00000000..11c34daa --- /dev/null +++ b/static/libical-glib/method.Property.get_x.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_x (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the x of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the x of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_x_name.html b/static/libical-glib/method.Property.get_x_name.html new file mode 100644 index 00000000..0d2951b9 --- /dev/null +++ b/static/libical-glib/method.Property.get_x_name.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_x_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_x_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_x_name (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the name of x property.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The name of x property.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicclass.html b/static/libical-glib/method.Property.get_xlicclass.html new file mode 100644 index 00000000..ce8afa3f --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicclass.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyXlicclass
    +i_cal_property_get_xlicclass (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicclass of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyXlicclass

    +

    Get the xlicclass of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicclustercount.html b/static/libical-glib/method.Property.get_xlicclustercount.html new file mode 100644 index 00000000..52d3103c --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicclustercount.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicclustercount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicclustercount

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicclustercount (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicclustercount of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicclustercount of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicerror.html b/static/libical-glib/method.Property.get_xlicerror.html new file mode 100644 index 00000000..9752457a --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicerror.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicerror + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicerror

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicerror (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicerror of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicerror of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimecharset.html b/static/libical-glib/method.Property.get_xlicmimecharset.html new file mode 100644 index 00000000..1f4e2b29 --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimecharset.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimecharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimecharset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimecharset (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimecharset of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimecharset of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimecid.html b/static/libical-glib/method.Property.get_xlicmimecid.html new file mode 100644 index 00000000..3c248e40 --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimecid.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimecid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimecid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimecid (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimecid of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimecid of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimecontenttype.html b/static/libical-glib/method.Property.get_xlicmimecontenttype.html new file mode 100644 index 00000000..c02398df --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimecontenttype.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimecontenttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimecontenttype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimecontenttype (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimecontenttype of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimecontenttype of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimeencoding.html b/static/libical-glib/method.Property.get_xlicmimeencoding.html new file mode 100644 index 00000000..e8dc0c7d --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimeencoding.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimeencoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimeencoding

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimeencoding (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimeencoding of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimeencoding of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimefilename.html b/static/libical-glib/method.Property.get_xlicmimefilename.html new file mode 100644 index 00000000..828bdd4f --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimefilename.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimefilename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimefilename

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimefilename (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimefilename of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimefilename of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.get_xlicmimeoptinfo.html b/static/libical-glib/method.Property.get_xlicmimeoptinfo.html new file mode 100644 index 00000000..3812941d --- /dev/null +++ b/static/libical-glib/method.Property.get_xlicmimeoptinfo.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.get_xlicmimeoptinfo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyget_xlicmimeoptinfo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_get_xlicmimeoptinfo (
    +  ICalProperty* prop
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicmimeoptinfo of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    Get the xlicmimeoptinfo of ICalProperty.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.isa.html b/static/libical-glib/method.Property.isa.html new file mode 100644 index 00000000..aff160a7 --- /dev/null +++ b/static/libical-glib/method.Property.isa.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.isa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyisa

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyKind
    +i_cal_property_isa (
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the kind of ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyKind

    +

    The type of ICalProperty.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.isa_property.html b/static/libical-glib/method.Property.isa_property.html new file mode 100644 index 00000000..5bb8d477 --- /dev/null +++ b/static/libical-glib/method.Property.isa_property.html @@ -0,0 +1,764 @@ + + + + + + ICalGLib.Property.isa_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyisa_property

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_isa_property (
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the native part of ICalProperty is of the type icalproperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if the native part of property is of the type icalproperty, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.remove_parameter_by_kind.html b/static/libical-glib/method.Property.remove_parameter_by_kind.html new file mode 100644 index 00000000..7087ed28 --- /dev/null +++ b/static/libical-glib/method.Property.remove_parameter_by_kind.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.remove_parameter_by_kind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyremove_parameter_by_kind

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_remove_parameter_by_kind (
    +  ICalProperty* prop,
    +  ICalParameterKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes the target kind of the parameters in the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The ICalParameterKind to be removed.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.remove_parameter_by_name.html b/static/libical-glib/method.Property.remove_parameter_by_name.html new file mode 100644 index 00000000..f1dd1494 --- /dev/null +++ b/static/libical-glib/method.Property.remove_parameter_by_name.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.remove_parameter_by_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyremove_parameter_by_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_remove_parameter_by_name (
    +  ICalProperty* prop,
    +  const gchar* name
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes parameter in the ICalProperty by name.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    name
    +
    +

    Type: const gchar*

    +

    The name of the parameter to be removed.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.remove_parameter_by_ref.html b/static/libical-glib/method.Property.remove_parameter_by_ref.html new file mode 100644 index 00000000..58deba5f --- /dev/null +++ b/static/libical-glib/method.Property.remove_parameter_by_ref.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.remove_parameter_by_ref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyremove_parameter_by_ref

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_remove_parameter_by_ref (
    +  ICalProperty* prop,
    +  ICalParameter* param
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Removes the parameter in the ICalProperty by ref.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    param
    +
    +

    Type: ICalParameter

    +

    The ICalParameter to be removed.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_acceptresponse.html b/static/libical-glib/method.Property.set_acceptresponse.html new file mode 100644 index 00000000..8d6976ef --- /dev/null +++ b/static/libical-glib/method.Property.set_acceptresponse.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_acceptresponse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_acceptresponse

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_acceptresponse (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the acceptresponse for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The acceptresponse.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_acknowledged.html b/static/libical-glib/method.Property.set_acknowledged.html new file mode 100644 index 00000000..156b99b2 --- /dev/null +++ b/static/libical-glib/method.Property.set_acknowledged.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_acknowledged + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_acknowledged

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_acknowledged (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the acknowledged time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The acknowledgement time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_action.html b/static/libical-glib/method.Property.set_action.html new file mode 100644 index 00000000..1097afc0 --- /dev/null +++ b/static/libical-glib/method.Property.set_action.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_action

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_action (
    +  ICalProperty* prop,
    +  ICalPropertyAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the action for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyAction

    +

    The action.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_allowconflict.html b/static/libical-glib/method.Property.set_allowconflict.html new file mode 100644 index 00000000..686a7979 --- /dev/null +++ b/static/libical-glib/method.Property.set_allowconflict.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_allowconflict + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_allowconflict

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_allowconflict (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the allowconflict for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The allowconflict.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_attach.html b/static/libical-glib/method.Property.set_attach.html new file mode 100644 index 00000000..e5e6621e --- /dev/null +++ b/static/libical-glib/method.Property.set_attach.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_attach

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_attach (
    +  ICalProperty* prop,
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the attach for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The attach.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_attendee.html b/static/libical-glib/method.Property.set_attendee.html new file mode 100644 index 00000000..4c924563 --- /dev/null +++ b/static/libical-glib/method.Property.set_attendee.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_attendee + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_attendee

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_attendee (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the attendee for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The attendee.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_busytype.html b/static/libical-glib/method.Property.set_busytype.html new file mode 100644 index 00000000..0e0a2eda --- /dev/null +++ b/static/libical-glib/method.Property.set_busytype.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_busytype (
    +  ICalProperty* prop,
    +  ICalPropertyBusytype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the busytype for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyBusytype

    +

    The busytype.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_calendaraddress.html b/static/libical-glib/method.Property.set_calendaraddress.html new file mode 100644 index 00000000..b1722fb8 --- /dev/null +++ b/static/libical-glib/method.Property.set_calendaraddress.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_calendaraddress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_calendaraddress

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_calendaraddress (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_CALENDARADDRESS_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_calid.html b/static/libical-glib/method.Property.set_calid.html new file mode 100644 index 00000000..aac74323 --- /dev/null +++ b/static/libical-glib/method.Property.set_calid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_calid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_calid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_calid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the calid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_calmaster.html b/static/libical-glib/method.Property.set_calmaster.html new file mode 100644 index 00000000..0fd16b90 --- /dev/null +++ b/static/libical-glib/method.Property.set_calmaster.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_calmaster + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_calmaster

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_calmaster (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the calmaster for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calmaster.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_calscale.html b/static/libical-glib/method.Property.set_calscale.html new file mode 100644 index 00000000..39cc9fa4 --- /dev/null +++ b/static/libical-glib/method.Property.set_calscale.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_calscale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_calscale

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_calscale (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the calscale for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The calscale.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_capversion.html b/static/libical-glib/method.Property.set_capversion.html new file mode 100644 index 00000000..b39412f8 --- /dev/null +++ b/static/libical-glib/method.Property.set_capversion.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_capversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_capversion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_capversion (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the capversion for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The capversion.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_carid.html b/static/libical-glib/method.Property.set_carid.html new file mode 100644 index 00000000..6553d78f --- /dev/null +++ b/static/libical-glib/method.Property.set_carid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_carid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_carid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_carid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the carid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The carid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_carlevel.html b/static/libical-glib/method.Property.set_carlevel.html new file mode 100644 index 00000000..df101e14 --- /dev/null +++ b/static/libical-glib/method.Property.set_carlevel.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_carlevel (
    +  ICalProperty* prop,
    +  ICalPropertyCarlevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the carlevel for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCarlevel

    +

    The carlevel.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_categories.html b/static/libical-glib/method.Property.set_categories.html new file mode 100644 index 00000000..4986ceff --- /dev/null +++ b/static/libical-glib/method.Property.set_categories.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_categories + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_categories

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_categories (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the categories for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The categories.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_class.html b/static/libical-glib/method.Property.set_class.html new file mode 100644 index 00000000..bdea6f29 --- /dev/null +++ b/static/libical-glib/method.Property.set_class.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_class

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_class (
    +  ICalProperty* prop,
    +  ICalProperty_Class v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the class for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalProperty_Class

    +

    The class.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_cmd.html b/static/libical-glib/method.Property.set_cmd.html new file mode 100644 index 00000000..db7c165b --- /dev/null +++ b/static/libical-glib/method.Property.set_cmd.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_cmd (
    +  ICalProperty* prop,
    +  ICalPropertyCmd v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the cmd for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCmd

    +

    The cmd.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_color.html b/static/libical-glib/method.Property.set_color.html new file mode 100644 index 00000000..c740220e --- /dev/null +++ b/static/libical-glib/method.Property.set_color.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_color + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_color

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_color (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the color for the prop.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The color.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_comment.html b/static/libical-glib/method.Property.set_comment.html new file mode 100644 index 00000000..8b26894e --- /dev/null +++ b/static/libical-glib/method.Property.set_comment.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_comment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_comment

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_comment (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the comment for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The comment.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_completed.html b/static/libical-glib/method.Property.set_completed.html new file mode 100644 index 00000000..ff036ee4 --- /dev/null +++ b/static/libical-glib/method.Property.set_completed.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_completed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_completed

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_completed (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the completed time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The completed time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_components.html b/static/libical-glib/method.Property.set_components.html new file mode 100644 index 00000000..68b4956c --- /dev/null +++ b/static/libical-glib/method.Property.set_components.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_components + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_components

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_components (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the components for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The components.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_conference.html b/static/libical-glib/method.Property.set_conference.html new file mode 100644 index 00000000..200bb571 --- /dev/null +++ b/static/libical-glib/method.Property.set_conference.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_conference + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_conference

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_conference (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_CONFERENCE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_contact.html b/static/libical-glib/method.Property.set_contact.html new file mode 100644 index 00000000..305150db --- /dev/null +++ b/static/libical-glib/method.Property.set_contact.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_contact + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_contact

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_contact (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the contact for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The contact.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_created.html b/static/libical-glib/method.Property.set_created.html new file mode 100644 index 00000000..b7521a94 --- /dev/null +++ b/static/libical-glib/method.Property.set_created.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_created + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_created

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_created (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the created time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The created time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_csid.html b/static/libical-glib/method.Property.set_csid.html new file mode 100644 index 00000000..9ec0769f --- /dev/null +++ b/static/libical-glib/method.Property.set_csid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_csid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_csid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_csid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the csid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The csid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_datemax.html b/static/libical-glib/method.Property.set_datemax.html new file mode 100644 index 00000000..a219bf05 --- /dev/null +++ b/static/libical-glib/method.Property.set_datemax.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_datemax + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_datemax

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_datemax (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the datemax time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The datemax time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_datemin.html b/static/libical-glib/method.Property.set_datemin.html new file mode 100644 index 00000000..a764ad25 --- /dev/null +++ b/static/libical-glib/method.Property.set_datemin.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_datemin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_datemin

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_datemin (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the datemin time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The datemin time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_decreed.html b/static/libical-glib/method.Property.set_decreed.html new file mode 100644 index 00000000..855cadbc --- /dev/null +++ b/static/libical-glib/method.Property.set_decreed.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_decreed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_decreed

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_decreed (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the decreed for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The decreed.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_defaultcharset.html b/static/libical-glib/method.Property.set_defaultcharset.html new file mode 100644 index 00000000..2fe95f3c --- /dev/null +++ b/static/libical-glib/method.Property.set_defaultcharset.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_defaultcharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_defaultcharset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_defaultcharset (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the defaultcharset for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultcharset.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_defaultlocale.html b/static/libical-glib/method.Property.set_defaultlocale.html new file mode 100644 index 00000000..968bd706 --- /dev/null +++ b/static/libical-glib/method.Property.set_defaultlocale.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_defaultlocale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_defaultlocale

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_defaultlocale (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the defaultlocale for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultlocale.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_defaulttzid.html b/static/libical-glib/method.Property.set_defaulttzid.html new file mode 100644 index 00000000..c568fe52 --- /dev/null +++ b/static/libical-glib/method.Property.set_defaulttzid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_defaulttzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_defaulttzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_defaulttzid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the defaulttzid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaulttzid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_defaultvcars.html b/static/libical-glib/method.Property.set_defaultvcars.html new file mode 100644 index 00000000..3f41770c --- /dev/null +++ b/static/libical-glib/method.Property.set_defaultvcars.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_defaultvcars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_defaultvcars

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_defaultvcars (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the defaultvcars for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The defaultvcars.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_deny.html b/static/libical-glib/method.Property.set_deny.html new file mode 100644 index 00000000..d0b9c8f8 --- /dev/null +++ b/static/libical-glib/method.Property.set_deny.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_deny + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_deny

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_deny (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the deny for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The deny.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_description.html b/static/libical-glib/method.Property.set_description.html new file mode 100644 index 00000000..c4f31c88 --- /dev/null +++ b/static/libical-glib/method.Property.set_description.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_description + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_description

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_description (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the description for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The description.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_dtend.html b/static/libical-glib/method.Property.set_dtend.html new file mode 100644 index 00000000..006cbb87 --- /dev/null +++ b/static/libical-glib/method.Property.set_dtend.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_dtend + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_dtend

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_dtend (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtend time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The dtend time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_dtstamp.html b/static/libical-glib/method.Property.set_dtstamp.html new file mode 100644 index 00000000..090dca6e --- /dev/null +++ b/static/libical-glib/method.Property.set_dtstamp.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_dtstamp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_dtstamp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_dtstamp (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtstamp time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The dtstamp time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_dtstart.html b/static/libical-glib/method.Property.set_dtstart.html new file mode 100644 index 00000000..624a079c --- /dev/null +++ b/static/libical-glib/method.Property.set_dtstart.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_dtstart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_dtstart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_dtstart (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the dtstart time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The dtstart time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_due.html b/static/libical-glib/method.Property.set_due.html new file mode 100644 index 00000000..19eba610 --- /dev/null +++ b/static/libical-glib/method.Property.set_due.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_due + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_due

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_due (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the due time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The due time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_duration.html b/static/libical-glib/method.Property.set_duration.html new file mode 100644 index 00000000..3c86b005 --- /dev/null +++ b/static/libical-glib/method.Property.set_duration.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_duration (
    +  ICalProperty* prop,
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the duration for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The duration.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_estimatedduration.html b/static/libical-glib/method.Property.set_estimatedduration.html new file mode 100644 index 00000000..34de7fcd --- /dev/null +++ b/static/libical-glib/method.Property.set_estimatedduration.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_estimatedduration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_estimatedduration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_estimatedduration (
    +  ICalProperty* prop,
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the estimatedduration for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The estimatedduration.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_exdate.html b/static/libical-glib/method.Property.set_exdate.html new file mode 100644 index 00000000..aebc5bda --- /dev/null +++ b/static/libical-glib/method.Property.set_exdate.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_exdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_exdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_exdate (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the exdate time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The exdate time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_expand.html b/static/libical-glib/method.Property.set_expand.html new file mode 100644 index 00000000..2da9ba69 --- /dev/null +++ b/static/libical-glib/method.Property.set_expand.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_expand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_expand

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_expand (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the expand for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The expand.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_exrule.html b/static/libical-glib/method.Property.set_exrule.html new file mode 100644 index 00000000..87ff4784 --- /dev/null +++ b/static/libical-glib/method.Property.set_exrule.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_exrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_exrule

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_exrule (
    +  ICalProperty* prop,
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the exrule time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The exrule recurrence type.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_freebusy.html b/static/libical-glib/method.Property.set_freebusy.html new file mode 100644 index 00000000..6c1933a9 --- /dev/null +++ b/static/libical-glib/method.Property.set_freebusy.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_freebusy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_freebusy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_freebusy (
    +  ICalProperty* prop,
    +  ICalPeriod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the freebusy time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPeriod

    +

    The freebusy period type.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_geo.html b/static/libical-glib/method.Property.set_geo.html new file mode 100644 index 00000000..330ff414 --- /dev/null +++ b/static/libical-glib/method.Property.set_geo.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_geo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_geo (
    +  ICalProperty* prop,
    +  ICalGeo* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the geo for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalGeo

    +

    The geo type.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_grant.html b/static/libical-glib/method.Property.set_grant.html new file mode 100644 index 00000000..6d203767 --- /dev/null +++ b/static/libical-glib/method.Property.set_grant.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_grant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_grant

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_grant (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the grant for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The grant.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_image.html b/static/libical-glib/method.Property.set_image.html new file mode 100644 index 00000000..40fb96c4 --- /dev/null +++ b/static/libical-glib/method.Property.set_image.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_image + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_image

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_image (
    +  ICalProperty* prop,
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_IMAGE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The value of type ICalAttach to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_itipversion.html b/static/libical-glib/method.Property.set_itipversion.html new file mode 100644 index 00000000..7a7bf764 --- /dev/null +++ b/static/libical-glib/method.Property.set_itipversion.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_itipversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_itipversion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_itipversion (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the itipversion for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The itipversion.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_lastmodified.html b/static/libical-glib/method.Property.set_lastmodified.html new file mode 100644 index 00000000..761d6c3b --- /dev/null +++ b/static/libical-glib/method.Property.set_lastmodified.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_lastmodified + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_lastmodified

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_lastmodified (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the lastmodified time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The lastmodified time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_location.html b/static/libical-glib/method.Property.set_location.html new file mode 100644 index 00000000..007e79f9 --- /dev/null +++ b/static/libical-glib/method.Property.set_location.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_location

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_location (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the location for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The location.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_locationtype.html b/static/libical-glib/method.Property.set_locationtype.html new file mode 100644 index 00000000..422320d5 --- /dev/null +++ b/static/libical-glib/method.Property.set_locationtype.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_locationtype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_locationtype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_locationtype (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_LOCATIONTYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_maxcomponentsize.html b/static/libical-glib/method.Property.set_maxcomponentsize.html new file mode 100644 index 00000000..de848493 --- /dev/null +++ b/static/libical-glib/method.Property.set_maxcomponentsize.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_maxcomponentsize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_maxcomponentsize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_maxcomponentsize (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the maxcomponentsize for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxcomponentsize.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_maxdate.html b/static/libical-glib/method.Property.set_maxdate.html new file mode 100644 index 00000000..f2d8cc3e --- /dev/null +++ b/static/libical-glib/method.Property.set_maxdate.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_maxdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_maxdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_maxdate (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the maxdate time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The maxdate time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_maxresults.html b/static/libical-glib/method.Property.set_maxresults.html new file mode 100644 index 00000000..d794e44c --- /dev/null +++ b/static/libical-glib/method.Property.set_maxresults.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_maxresults + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_maxresults

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_maxresults (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the maxresults for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxresults.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_maxresultssize.html b/static/libical-glib/method.Property.set_maxresultssize.html new file mode 100644 index 00000000..51d05091 --- /dev/null +++ b/static/libical-glib/method.Property.set_maxresultssize.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_maxresultssize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_maxresultssize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_maxresultssize (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the maxresultssize for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The maxresultssize.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_method.html b/static/libical-glib/method.Property.set_method.html new file mode 100644 index 00000000..c0202d1f --- /dev/null +++ b/static/libical-glib/method.Property.set_method.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_method (
    +  ICalProperty* prop,
    +  ICalPropertyMethod v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the method for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyMethod

    +

    The method.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_mindate.html b/static/libical-glib/method.Property.set_mindate.html new file mode 100644 index 00000000..7d57dba2 --- /dev/null +++ b/static/libical-glib/method.Property.set_mindate.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_mindate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_mindate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_mindate (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the mindate time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The mindate time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_multipart.html b/static/libical-glib/method.Property.set_multipart.html new file mode 100644 index 00000000..550238db --- /dev/null +++ b/static/libical-glib/method.Property.set_multipart.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_multipart + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_multipart

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_multipart (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the multipart for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The multipart.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_name.html b/static/libical-glib/method.Property.set_name.html new file mode 100644 index 00000000..74a2a331 --- /dev/null +++ b/static/libical-glib/method.Property.set_name.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_name (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the name for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The name.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_organizer.html b/static/libical-glib/method.Property.set_organizer.html new file mode 100644 index 00000000..adc28291 --- /dev/null +++ b/static/libical-glib/method.Property.set_organizer.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_organizer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_organizer

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_organizer (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the organizer for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The organizer.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_owner.html b/static/libical-glib/method.Property.set_owner.html new file mode 100644 index 00000000..c417ab4b --- /dev/null +++ b/static/libical-glib/method.Property.set_owner.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_owner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_owner (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the owner for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The owner.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_parameter.html b/static/libical-glib/method.Property.set_parameter.html new file mode 100644 index 00000000..4939ca38 --- /dev/null +++ b/static/libical-glib/method.Property.set_parameter.html @@ -0,0 +1,772 @@ + + + + + + ICalGLib.Property.set_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_parameter (
    +  ICalProperty* prop,
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets a ICalParameter into the ICalProperty. It behaves like set the copy of the ICalParameter. Upon +completion the native part of ICalParameter will be set to NULL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    parameter
    +
    +

    Type: ICalParameter

    +

    The parameter to be set into prop.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_parameter_from_string.html b/static/libical-glib/method.Property.set_parameter_from_string.html new file mode 100644 index 00000000..11c32ad4 --- /dev/null +++ b/static/libical-glib/method.Property.set_parameter_from_string.html @@ -0,0 +1,789 @@ + + + + + + ICalGLib.Property.set_parameter_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_parameter_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_parameter_from_string (
    +  ICalProperty* prop,
    +  const gchar* name,
    +  const gchar* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the ICalProperty with the parameter defined by the name and value.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    name
    +
    +

    Type: const gchar*

    +

    The name of the parameter.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The value of the parameter.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_parent.html b/static/libical-glib/method.Property.set_parent.html new file mode 100644 index 00000000..98f63b2d --- /dev/null +++ b/static/libical-glib/method.Property.set_parent.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_parent (
    +  ICalProperty* property,
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the parent ICalComponent of the specified ICalProperty.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    component
    +
    +

    Type: ICalComponent

    +

    An ICalComponent.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_participanttype.html b/static/libical-glib/method.Property.set_participanttype.html new file mode 100644 index 00000000..48b36f2f --- /dev/null +++ b/static/libical-glib/method.Property.set_participanttype.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_participanttype (
    +  ICalProperty* prop,
    +  ICalPropertyParticipanttype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PARTICIPANTTYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyParticipanttype

    +

    The value of type ICalPropertyParticipanttype to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_patchdelete.html b/static/libical-glib/method.Property.set_patchdelete.html new file mode 100644 index 00000000..c7bfe64e --- /dev/null +++ b/static/libical-glib/method.Property.set_patchdelete.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_patchdelete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_patchdelete

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_patchdelete (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PATCHDELETE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_patchorder.html b/static/libical-glib/method.Property.set_patchorder.html new file mode 100644 index 00000000..237ac5a5 --- /dev/null +++ b/static/libical-glib/method.Property.set_patchorder.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_patchorder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_patchorder

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_patchorder (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PATCHORDER_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The value to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_patchparameter.html b/static/libical-glib/method.Property.set_patchparameter.html new file mode 100644 index 00000000..2f60e102 --- /dev/null +++ b/static/libical-glib/method.Property.set_patchparameter.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_patchparameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_patchparameter

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_patchparameter (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PATCHPARAMETER_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_patchtarget.html b/static/libical-glib/method.Property.set_patchtarget.html new file mode 100644 index 00000000..cf80b6af --- /dev/null +++ b/static/libical-glib/method.Property.set_patchtarget.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_patchtarget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_patchtarget

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_patchtarget (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PATCHTARGET_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_patchversion.html b/static/libical-glib/method.Property.set_patchversion.html new file mode 100644 index 00000000..1093babc --- /dev/null +++ b/static/libical-glib/method.Property.set_patchversion.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_patchversion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_patchversion

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_patchversion (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PATCHVERSION_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_percentcomplete.html b/static/libical-glib/method.Property.set_percentcomplete.html new file mode 100644 index 00000000..a47a1442 --- /dev/null +++ b/static/libical-glib/method.Property.set_percentcomplete.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_percentcomplete + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_percentcomplete

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_percentcomplete (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the percentcomplete for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The percentcomplete.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_permission.html b/static/libical-glib/method.Property.set_permission.html new file mode 100644 index 00000000..990b659e --- /dev/null +++ b/static/libical-glib/method.Property.set_permission.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_permission + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_permission

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_permission (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the permission for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The permission.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_pollcompletion.html b/static/libical-glib/method.Property.set_pollcompletion.html new file mode 100644 index 00000000..065b43e8 --- /dev/null +++ b/static/libical-glib/method.Property.set_pollcompletion.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_pollcompletion

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_pollcompletion (
    +  ICalProperty* prop,
    +  ICalPropertyPollcompletion v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollcompletion for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollcompletion

    +

    The pollcompletion.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_pollitemid.html b/static/libical-glib/method.Property.set_pollitemid.html new file mode 100644 index 00000000..ec8101ef --- /dev/null +++ b/static/libical-glib/method.Property.set_pollitemid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_pollitemid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_pollitemid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_pollitemid (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollitemid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The pollitemid.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_pollmode.html b/static/libical-glib/method.Property.set_pollmode.html new file mode 100644 index 00000000..4d6dd138 --- /dev/null +++ b/static/libical-glib/method.Property.set_pollmode.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_pollmode

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_pollmode (
    +  ICalProperty* prop,
    +  ICalPropertyPollmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollmode for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollmode

    +

    The pollmode.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_pollproperties.html b/static/libical-glib/method.Property.set_pollproperties.html new file mode 100644 index 00000000..8c442147 --- /dev/null +++ b/static/libical-glib/method.Property.set_pollproperties.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_pollproperties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_pollproperties

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_pollproperties (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollproperties for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The pollproperties.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_pollwinner.html b/static/libical-glib/method.Property.set_pollwinner.html new file mode 100644 index 00000000..856a021a --- /dev/null +++ b/static/libical-glib/method.Property.set_pollwinner.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_pollwinner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_pollwinner

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_pollwinner (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollwinner for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The pollwinner.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_priority.html b/static/libical-glib/method.Property.set_priority.html new file mode 100644 index 00000000..0005085a --- /dev/null +++ b/static/libical-glib/method.Property.set_priority.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_priority + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_priority

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_priority (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the priority for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The priority.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_prodid.html b/static/libical-glib/method.Property.set_prodid.html new file mode 100644 index 00000000..8eacc3a7 --- /dev/null +++ b/static/libical-glib/method.Property.set_prodid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_prodid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_prodid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_prodid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the prodid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The prodid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_proximity.html b/static/libical-glib/method.Property.set_proximity.html new file mode 100644 index 00000000..897bc5dd --- /dev/null +++ b/static/libical-glib/method.Property.set_proximity.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_proximity (
    +  ICalProperty* prop,
    +  ICalPropertyProximity v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_PROXIMITY_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyProximity

    +

    The value of type ICalPropertyProximity to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_query.html b/static/libical-glib/method.Property.set_query.html new file mode 100644 index 00000000..ea6fcc0a --- /dev/null +++ b/static/libical-glib/method.Property.set_query.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_query

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_query (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the query for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The query.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_queryid.html b/static/libical-glib/method.Property.set_queryid.html new file mode 100644 index 00000000..acf34d28 --- /dev/null +++ b/static/libical-glib/method.Property.set_queryid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_queryid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_queryid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_queryid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the queryid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The queryid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_querylevel.html b/static/libical-glib/method.Property.set_querylevel.html new file mode 100644 index 00000000..088b0cf5 --- /dev/null +++ b/static/libical-glib/method.Property.set_querylevel.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_querylevel (
    +  ICalProperty* prop,
    +  ICalPropertyQuerylevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the querylevel for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyQuerylevel

    +

    The querylevel.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_queryname.html b/static/libical-glib/method.Property.set_queryname.html new file mode 100644 index 00000000..c7941620 --- /dev/null +++ b/static/libical-glib/method.Property.set_queryname.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_queryname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_queryname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_queryname (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the queryname for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The queryname.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_rdate.html b/static/libical-glib/method.Property.set_rdate.html new file mode 100644 index 00000000..199f49fa --- /dev/null +++ b/static/libical-glib/method.Property.set_rdate.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_rdate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_rdate

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_rdate (
    +  ICalProperty* prop,
    +  ICalDatetimeperiod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the rdate for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDatetimeperiod

    +

    The rdate.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_recuraccepted.html b/static/libical-glib/method.Property.set_recuraccepted.html new file mode 100644 index 00000000..e4845e62 --- /dev/null +++ b/static/libical-glib/method.Property.set_recuraccepted.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_recuraccepted + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_recuraccepted

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_recuraccepted (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recuraccepted for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recuraccepted.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_recurexpand.html b/static/libical-glib/method.Property.set_recurexpand.html new file mode 100644 index 00000000..06010302 --- /dev/null +++ b/static/libical-glib/method.Property.set_recurexpand.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_recurexpand + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_recurexpand

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_recurexpand (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recurexpand for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recurexpand.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_recurlimit.html b/static/libical-glib/method.Property.set_recurlimit.html new file mode 100644 index 00000000..94898270 --- /dev/null +++ b/static/libical-glib/method.Property.set_recurlimit.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_recurlimit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_recurlimit

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_recurlimit (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recurlimit for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The recurlimit.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_recurrenceid.html b/static/libical-glib/method.Property.set_recurrenceid.html new file mode 100644 index 00000000..16c0f83d --- /dev/null +++ b/static/libical-glib/method.Property.set_recurrenceid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_recurrenceid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_recurrenceid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_recurrenceid (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recurrenceid time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The recurrenceid time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_refreshinterval.html b/static/libical-glib/method.Property.set_refreshinterval.html new file mode 100644 index 00000000..00e4846e --- /dev/null +++ b/static/libical-glib/method.Property.set_refreshinterval.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_refreshinterval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_refreshinterval

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_refreshinterval (
    +  ICalProperty* prop,
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_REFRESHINTERVAL_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_relatedto.html b/static/libical-glib/method.Property.set_relatedto.html new file mode 100644 index 00000000..a3c07c46 --- /dev/null +++ b/static/libical-glib/method.Property.set_relatedto.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_relatedto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_relatedto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_relatedto (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the relatedto for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The relatedto.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_relcalid.html b/static/libical-glib/method.Property.set_relcalid.html new file mode 100644 index 00000000..692e296f --- /dev/null +++ b/static/libical-glib/method.Property.set_relcalid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_relcalid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_relcalid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_relcalid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the relcalid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The relcalid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_repeat.html b/static/libical-glib/method.Property.set_repeat.html new file mode 100644 index 00000000..4b346632 --- /dev/null +++ b/static/libical-glib/method.Property.set_repeat.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_repeat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_repeat

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_repeat (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the repeat for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The repeat.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_replyurl.html b/static/libical-glib/method.Property.set_replyurl.html new file mode 100644 index 00000000..a183e623 --- /dev/null +++ b/static/libical-glib/method.Property.set_replyurl.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_replyurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_replyurl

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_replyurl (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the replyurl for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The replyurl.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_requeststatus.html b/static/libical-glib/method.Property.set_requeststatus.html new file mode 100644 index 00000000..671baaa2 --- /dev/null +++ b/static/libical-glib/method.Property.set_requeststatus.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_requeststatus (
    +  ICalProperty* prop,
    +  ICalReqstat* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the requeststatus for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalReqstat

    +

    The requeststatus.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_resources.html b/static/libical-glib/method.Property.set_resources.html new file mode 100644 index 00000000..d3ee3c3a --- /dev/null +++ b/static/libical-glib/method.Property.set_resources.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_resources + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_resources

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_resources (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the resources for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The resources.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_resourcetype.html b/static/libical-glib/method.Property.set_resourcetype.html new file mode 100644 index 00000000..1b79087e --- /dev/null +++ b/static/libical-glib/method.Property.set_resourcetype.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_resourcetype (
    +  ICalProperty* prop,
    +  ICalPropertyResourcetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_RESOURCETYPE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyResourcetype

    +

    The value of type ICalPropertyResourcetype to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_response.html b/static/libical-glib/method.Property.set_response.html new file mode 100644 index 00000000..f4004859 --- /dev/null +++ b/static/libical-glib/method.Property.set_response.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_response + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_response

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_response (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the response for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The response.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_restriction.html b/static/libical-glib/method.Property.set_restriction.html new file mode 100644 index 00000000..f5e69b8a --- /dev/null +++ b/static/libical-glib/method.Property.set_restriction.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_restriction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_restriction

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_restriction (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the restriction for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The restriction.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_rrule.html b/static/libical-glib/method.Property.set_rrule.html new file mode 100644 index 00000000..006b460e --- /dev/null +++ b/static/libical-glib/method.Property.set_rrule.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_rrule + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_rrule

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_rrule (
    +  ICalProperty* prop,
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the rrule for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The rrule recurrence type.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_scope.html b/static/libical-glib/method.Property.set_scope.html new file mode 100644 index 00000000..05bc7f36 --- /dev/null +++ b/static/libical-glib/method.Property.set_scope.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_scope + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_scope

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_scope (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the scope for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The scope.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_sequence.html b/static/libical-glib/method.Property.set_sequence.html new file mode 100644 index 00000000..b398c07b --- /dev/null +++ b/static/libical-glib/method.Property.set_sequence.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_sequence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_sequence

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_sequence (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the sequence for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The sequence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_source.html b/static/libical-glib/method.Property.set_source.html new file mode 100644 index 00000000..295f2710 --- /dev/null +++ b/static/libical-glib/method.Property.set_source.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_source + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_source

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_source (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_SOURCE_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_status.html b/static/libical-glib/method.Property.set_status.html new file mode 100644 index 00000000..88ed5935 --- /dev/null +++ b/static/libical-glib/method.Property.set_status.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_status (
    +  ICalProperty* prop,
    +  ICalPropertyStatus v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the status for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyStatus

    +

    The status.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_storesexpanded.html b/static/libical-glib/method.Property.set_storesexpanded.html new file mode 100644 index 00000000..32949442 --- /dev/null +++ b/static/libical-glib/method.Property.set_storesexpanded.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_storesexpanded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_storesexpanded

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_storesexpanded (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the storesexpanded for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The storesexpanded.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_structureddata.html b/static/libical-glib/method.Property.set_structureddata.html new file mode 100644 index 00000000..174d2942 --- /dev/null +++ b/static/libical-glib/method.Property.set_structureddata.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_structureddata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_structureddata

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_structureddata (
    +  ICalProperty* prop,
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_STRUCTUREDDATA_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The value of type ICalAttach to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_styleddescription.html b/static/libical-glib/method.Property.set_styleddescription.html new file mode 100644 index 00000000..b5bdb87d --- /dev/null +++ b/static/libical-glib/method.Property.set_styleddescription.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_styleddescription + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_styleddescription

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_styleddescription (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to prop of kind I_CAL_STYLEDDESCRIPTION_PROPERTY.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The value to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_summary.html b/static/libical-glib/method.Property.set_summary.html new file mode 100644 index 00000000..76532cf4 --- /dev/null +++ b/static/libical-glib/method.Property.set_summary.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_summary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_summary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_summary (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the summary for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The summary.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_target.html b/static/libical-glib/method.Property.set_target.html new file mode 100644 index 00000000..b7565550 --- /dev/null +++ b/static/libical-glib/method.Property.set_target.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_target + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_target

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_target (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the target for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The target.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_taskmode.html b/static/libical-glib/method.Property.set_taskmode.html new file mode 100644 index 00000000..c49814a4 --- /dev/null +++ b/static/libical-glib/method.Property.set_taskmode.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_taskmode (
    +  ICalProperty* prop,
    +  ICalPropertyTaskmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the taskmode for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTaskmode

    +

    The taskmode.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_transp.html b/static/libical-glib/method.Property.set_transp.html new file mode 100644 index 00000000..93b3f1ce --- /dev/null +++ b/static/libical-glib/method.Property.set_transp.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_transp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_transp (
    +  ICalProperty* prop,
    +  ICalPropertyTransp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the transp for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTransp

    +

    The transp.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_trigger.html b/static/libical-glib/method.Property.set_trigger.html new file mode 100644 index 00000000..07bbb6b0 --- /dev/null +++ b/static/libical-glib/method.Property.set_trigger.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_trigger (
    +  ICalProperty* prop,
    +  ICalTrigger* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the trigger time for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTrigger

    +

    The trigger period type.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzid.html b/static/libical-glib/method.Property.set_tzid.html new file mode 100644 index 00000000..464b7102 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzidaliasof.html b/static/libical-glib/method.Property.set_tzidaliasof.html new file mode 100644 index 00000000..0141e365 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzidaliasof.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzidaliasof + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzidaliasof

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzidaliasof (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzidaliasof for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzidaliasof.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzname.html b/static/libical-glib/method.Property.set_tzname.html new file mode 100644 index 00000000..0ad00a26 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzname.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzname

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzname (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzname for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzname.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzoffsetfrom.html b/static/libical-glib/method.Property.set_tzoffsetfrom.html new file mode 100644 index 00000000..f3f79416 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzoffsetfrom.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzoffsetfrom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzoffsetfrom

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzoffsetfrom (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzoffsetfrom for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The tzoffsetfrom.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzoffsetto.html b/static/libical-glib/method.Property.set_tzoffsetto.html new file mode 100644 index 00000000..ab287657 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzoffsetto.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzoffsetto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzoffsetto

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzoffsetto (
    +  ICalProperty* prop,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzoffsetto for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The tzoffsetto.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzuntil.html b/static/libical-glib/method.Property.set_tzuntil.html new file mode 100644 index 00000000..4e2a80a4 --- /dev/null +++ b/static/libical-glib/method.Property.set_tzuntil.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzuntil + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzuntil

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzuntil (
    +  ICalProperty* prop,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzuntil time for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The acknowledgement time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_tzurl.html b/static/libical-glib/method.Property.set_tzurl.html new file mode 100644 index 00000000..4b5452cd --- /dev/null +++ b/static/libical-glib/method.Property.set_tzurl.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_tzurl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_tzurl

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_tzurl (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the tzurl for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The tzurl.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_uid.html b/static/libical-glib/method.Property.set_uid.html new file mode 100644 index 00000000..f3526e09 --- /dev/null +++ b/static/libical-glib/method.Property.set_uid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_uid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_uid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the uid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The uid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_url.html b/static/libical-glib/method.Property.set_url.html new file mode 100644 index 00000000..a31ee0d4 --- /dev/null +++ b/static/libical-glib/method.Property.set_url.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_url

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_url (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the url for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The url.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_value.html b/static/libical-glib/method.Property.set_value.html new file mode 100644 index 00000000..d7958830 --- /dev/null +++ b/static/libical-glib/method.Property.set_value.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_value (
    +  ICalProperty* prop,
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the ICalProperty with the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalValue

    +

    The ICalValue will be set as the property of prop.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_value_from_string.html b/static/libical-glib/method.Property.set_value_from_string.html new file mode 100644 index 00000000..f9cf813d --- /dev/null +++ b/static/libical-glib/method.Property.set_value_from_string.html @@ -0,0 +1,789 @@ + + + + + + ICalGLib.Property.set_value_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_value_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_value_from_string (
    +  ICalProperty* prop,
    +  const gchar* value,
    +  const gchar* kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the ICalProperty with the ICalValue constructed from string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: const gchar*

    +

    The value used to construct the ICalValue.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + +
    kind
    +
    +

    Type: const gchar*

    +

    The kind used to construct the ICalValue.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_version.html b/static/libical-glib/method.Property.set_version.html new file mode 100644 index 00000000..9df026e5 --- /dev/null +++ b/static/libical-glib/method.Property.set_version.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_version + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_version

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_version (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the version for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The version.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_voter.html b/static/libical-glib/method.Property.set_voter.html new file mode 100644 index 00000000..45256b2e --- /dev/null +++ b/static/libical-glib/method.Property.set_voter.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_voter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_voter

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_voter (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the voter for the ICalProperty.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The voter.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_x.html b/static/libical-glib/method.Property.set_x.html new file mode 100644 index 00000000..e2e61158 --- /dev/null +++ b/static/libical-glib/method.Property.set_x.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_x (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the x for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The x.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_x_name.html b/static/libical-glib/method.Property.set_x_name.html new file mode 100644 index 00000000..05fd9910 --- /dev/null +++ b/static/libical-glib/method.Property.set_x_name.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_x_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_x_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_x_name (
    +  ICalProperty* prop,
    +  const gchar* name
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the name of x property for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    name
    +
    +

    Type: const gchar*

    +

    The name string.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicclass.html b/static/libical-glib/method.Property.set_xlicclass.html new file mode 100644 index 00000000..76728d4b --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicclass.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicclass (
    +  ICalProperty* prop,
    +  ICalPropertyXlicclass v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicclass for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyXlicclass

    +

    The xlicclass.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicclustercount.html b/static/libical-glib/method.Property.set_xlicclustercount.html new file mode 100644 index 00000000..d079cb0e --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicclustercount.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicclustercount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicclustercount

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicclustercount (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicclustercount for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicclustercount.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicerror.html b/static/libical-glib/method.Property.set_xlicerror.html new file mode 100644 index 00000000..dce484df --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicerror.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicerror + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicerror

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicerror (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicerror for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicerror.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimecharset.html b/static/libical-glib/method.Property.set_xlicmimecharset.html new file mode 100644 index 00000000..0c8c8094 --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimecharset.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimecharset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimecharset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimecharset (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimecharset for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecharset.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimecid.html b/static/libical-glib/method.Property.set_xlicmimecid.html new file mode 100644 index 00000000..3ad34add --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimecid.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimecid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimecid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimecid (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimecid for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecid.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimecontenttype.html b/static/libical-glib/method.Property.set_xlicmimecontenttype.html new file mode 100644 index 00000000..2c95a198 --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimecontenttype.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimecontenttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimecontenttype

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimecontenttype (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimecontenttype for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimecontenttype.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimeencoding.html b/static/libical-glib/method.Property.set_xlicmimeencoding.html new file mode 100644 index 00000000..40dd1289 --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimeencoding.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimeencoding + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimeencoding

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimeencoding (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimeencoding for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimeencoding.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimefilename.html b/static/libical-glib/method.Property.set_xlicmimefilename.html new file mode 100644 index 00000000..e3242470 --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimefilename.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimefilename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimefilename

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimefilename (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimefilename for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimefilename.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.set_xlicmimeoptinfo.html b/static/libical-glib/method.Property.set_xlicmimeoptinfo.html new file mode 100644 index 00000000..01c6fb00 --- /dev/null +++ b/static/libical-glib/method.Property.set_xlicmimeoptinfo.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.set_xlicmimeoptinfo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertyset_xlicmimeoptinfo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_set_xlicmimeoptinfo (
    +  ICalProperty* prop,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicmimeoptinfo for the ICalProperty.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The xlicmimeoptinfo.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.take_parameter.html b/static/libical-glib/method.Property.take_parameter.html new file mode 100644 index 00000000..183dd983 --- /dev/null +++ b/static/libical-glib/method.Property.take_parameter.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.take_parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertytake_parameter

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_take_parameter (
    +  ICalProperty* prop,
    +  ICalParameter* parameter
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds the parameter into the prop and free the parameter.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    parameter
    +
    +

    Type: ICalParameter

    +

    The parameter to be added into prop.

    + + + + + + + + + + +
    The instance takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Property.take_value.html b/static/libical-glib/method.Property.take_value.html new file mode 100644 index 00000000..792f89db --- /dev/null +++ b/static/libical-glib/method.Property.take_value.html @@ -0,0 +1,771 @@ + + + + + + ICalGLib.Property.take_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibPropertytake_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_property_take_value (
    +  ICalProperty* prop,
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the prop with the value and unrefs the value.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalValue

    +

    The ICalValue will be set as the property of prop.

    + + + + + + + + + + +
    The instance takes ownership of the data, and is responsible for freeing it.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.RecurIterator.free.html b/static/libical-glib/method.RecurIterator.free.html new file mode 100644 index 00000000..7acf4de7 --- /dev/null +++ b/static/libical-glib/method.RecurIterator.free.html @@ -0,0 +1,172 @@ + + + + + + ICalGLib.RecurIterator.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurIteratorfree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recur_iterator_free (
    +  ICalRecurIterator* iterator
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees an iterator.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.RecurIterator.next.html b/static/libical-glib/method.RecurIterator.next.html new file mode 100644 index 00000000..6036384b --- /dev/null +++ b/static/libical-glib/method.RecurIterator.next.html @@ -0,0 +1,198 @@ + + + + + + ICalGLib.RecurIterator.next + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurIteratornext

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_recur_iterator_next (
    +  ICalRecurIterator* iterator
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the next occurrence from an iterator.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The next occurrence according to this recurrence rule.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.RecurIterator.set_end.html b/static/libical-glib/method.RecurIterator.set_end.html new file mode 100644 index 00000000..b24bd108 --- /dev/null +++ b/static/libical-glib/method.RecurIterator.set_end.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.RecurIterator.set_end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurIteratorset_end

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_recur_iterator_set_end (
    +  ICalRecurIterator* iterator,
    +  ICalTime* end
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the date-time at which the iterator will stop at the latest. Values equal to or greater than end +will not be returned by the iterator.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    end
    +
    +

    Type: ICalTime

    +

    The date-time at which the iterator will stop.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if succeeded, 0 if failed.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.RecurIterator.set_start.html b/static/libical-glib/method.RecurIterator.set_start.html new file mode 100644 index 00000000..9ea230ba --- /dev/null +++ b/static/libical-glib/method.RecurIterator.set_start.html @@ -0,0 +1,233 @@ + + + + + + ICalGLib.RecurIterator.set_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurIteratorset_start

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_recur_iterator_set_start (
    +  ICalRecurIterator* iterator,
    +  ICalTime* start
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the date-time at which the iterator will start, where ‘start’ is a value between DTSTART and UNTIL. +Note: +CAN NOT be used with RRULEs that contain COUNT.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    start
    +
    +

    Type: ICalTime

    +

    The date-time to move the iterator to.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if succeeded, 0 if failed, like when the recurrence type is unsupported.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.clone.html b/static/libical-glib/method.Recurrence.clone.html new file mode 100644 index 00000000..63813df9 --- /dev/null +++ b/static/libical-glib/method.Recurrence.clone.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceclone

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_recurrence_clone (
    +  ICalRecurrence* src
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a copy of the src.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    The newly created ICalRecurrence.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_by.html b/static/libical-glib/method.Recurrence.get_by.html new file mode 100644 index 00000000..4b948001 --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_by.html @@ -0,0 +1,281 @@ + + + + + + ICalGLib.Recurrence.get_by + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_by

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_recurrence_get_by (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule,
    +  guint index
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the element at the specified index of the ‘by’ array if it exists, 0 otherwise.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + +
    index
    +
    +

    Type: guint

    +

    The index in the by[byrule] array of ICalRecurrence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    The ‘by’ part at the given position.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_by_array.html b/static/libical-glib/method.Recurrence.get_by_array.html new file mode 100644 index 00000000..8460d288 --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_by_array.html @@ -0,0 +1,263 @@ + + + + + + ICalGLib.Recurrence.get_by_array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_by_array

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    GArray*
    +i_cal_recurrence_get_by_array (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the by[byrule] array from ICalRecurrence.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: An array of short

    +

    The by[byrule] of ICalRecurrence.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_by_array_size.html b/static/libical-glib/method.Recurrence.get_by_array_size.html new file mode 100644 index 00000000..371aa056 --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_by_array_size.html @@ -0,0 +1,263 @@ + + + + + + ICalGLib.Recurrence.get_by_array_size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_by_array_size

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    guint
    +i_cal_recurrence_get_by_array_size (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the size of given ‘by’ array from ICalRecurrence.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: guint

    +

    The current size of the given ‘by’ array.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_count.html b/static/libical-glib/method.Recurrence.get_count.html new file mode 100644 index 00000000..6df8742c --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_count.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.get_count + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_count

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_recurrence_get_count (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the count from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The count of ICalRecurrence.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_freq.html b/static/libical-glib/method.Recurrence.get_freq.html new file mode 100644 index 00000000..a7bb5c49 --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_freq.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.get_freq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_freq

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceFrequency
    +i_cal_recurrence_get_freq (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the freq from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceFrequency

    +

    The freq of ICalRecurrence.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_interval.html b/static/libical-glib/method.Recurrence.get_interval.html new file mode 100644 index 00000000..fa7d7b1b --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_interval.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.get_interval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_interval

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_recurrence_get_interval (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the interval from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    The interval of ICalRecurrence.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_until.html b/static/libical-glib/method.Recurrence.get_until.html new file mode 100644 index 00000000..1f88e62c --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_until.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.get_until + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_until

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_recurrence_get_until (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the until from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The until of ICalRecurrence.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.get_week_start.html b/static/libical-glib/method.Recurrence.get_week_start.html new file mode 100644 index 00000000..005093e5 --- /dev/null +++ b/static/libical-glib/method.Recurrence.get_week_start.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.get_week_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceget_week_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceWeekday
    +i_cal_recurrence_get_week_start (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the week_start from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The week_start of ICalRecurrence.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.ref.html b/static/libical-glib/method.Recurrence.ref.html new file mode 100644 index 00000000..e6284f6a --- /dev/null +++ b/static/libical-glib/method.Recurrence.ref.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Recurrence.ref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceref

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_ref (
    +  ICalRecurrence* self
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Increases the reference counter by 1 for the self.

    +
    + +
    + +

    Available since: 4.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.resize_by_array.html b/static/libical-glib/method.Recurrence.resize_by_array.html new file mode 100644 index 00000000..4d911f69 --- /dev/null +++ b/static/libical-glib/method.Recurrence.resize_by_array.html @@ -0,0 +1,255 @@ + + + + + + ICalGLib.Recurrence.resize_by_array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceresize_by_array

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_resize_by_array (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule,
    +  guint size
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Resizes the ‘by’ array to the given size.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + +
    size
    +
    +

    Type: guint

    +

    The new size of the ‘by’ array.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_by.html b/static/libical-glib/method.Recurrence.set_by.html new file mode 100644 index 00000000..694dd3c1 --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_by.html @@ -0,0 +1,273 @@ + + + + + + ICalGLib.Recurrence.set_by + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_by

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_by (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule,
    +  guint index,
    +  gshort value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the by array at the given index. Resizes the array to have a size of at least index+1 elements if necessary.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + +
    index
    +
    +

    Type: guint

    +

    The index in the ‘by’ array.

    + + + + + + + + + + +
    +
    + +
    value
    +
    +

    Type: gshort

    +

    The value to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_by_array.html b/static/libical-glib/method.Recurrence.set_by_array.html new file mode 100644 index 00000000..95da6d4c --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_by_array.html @@ -0,0 +1,255 @@ + + + + + + ICalGLib.Recurrence.set_by_array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_by_array

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_by_array (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceByRule byrule,
    +  GArray* values
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the given ‘by’ array.

    +
    + +
    + +

    Available since: 4.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    byrule
    +
    +

    Type: ICalRecurrenceByRule

    +

    The ‘by’ part to use.

    + + + + + + + + + + +
    +
    + +
    values
    +
    +

    Type: An array of short

    +

    The array of values.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_count.html b/static/libical-glib/method.Recurrence.set_count.html new file mode 100644 index 00000000..4527472c --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_count.html @@ -0,0 +1,237 @@ + + + + + + ICalGLib.Recurrence.set_count + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_count

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_count (
    +  ICalRecurrence* recur,
    +  gint count
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the count from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    count
    +
    +

    Type: gint

    +

    The count of ICalRecurrence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_freq.html b/static/libical-glib/method.Recurrence.set_freq.html new file mode 100644 index 00000000..3b5ca72a --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_freq.html @@ -0,0 +1,237 @@ + + + + + + ICalGLib.Recurrence.set_freq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_freq

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_freq (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceFrequency freq
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the freq from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    freq
    +
    +

    Type: ICalRecurrenceFrequency

    +

    The freq of ICalRecurrence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_interval.html b/static/libical-glib/method.Recurrence.set_interval.html new file mode 100644 index 00000000..73e0ec6b --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_interval.html @@ -0,0 +1,237 @@ + + + + + + ICalGLib.Recurrence.set_interval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_interval

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_interval (
    +  ICalRecurrence* recur,
    +  gshort interval
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the interval from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    interval
    +
    +

    Type: gshort

    +

    The interval of ICalRecurrence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_until.html b/static/libical-glib/method.Recurrence.set_until.html new file mode 100644 index 00000000..348ec09e --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_until.html @@ -0,0 +1,237 @@ + + + + + + ICalGLib.Recurrence.set_until + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_until

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_until (
    +  ICalRecurrence* recur,
    +  ICalTime* until
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the until from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    until
    +
    +

    Type: ICalTime

    +

    The until of ICalRecurrence.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.set_week_start.html b/static/libical-glib/method.Recurrence.set_week_start.html new file mode 100644 index 00000000..b108d598 --- /dev/null +++ b/static/libical-glib/method.Recurrence.set_week_start.html @@ -0,0 +1,237 @@ + + + + + + ICalGLib.Recurrence.set_week_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceset_week_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_set_week_start (
    +  ICalRecurrence* recur,
    +  ICalRecurrenceWeekday week_start
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the week_start from ICalRecurrence.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    week_start
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The week_start of ICalRecurrence.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.to_string.html b/static/libical-glib/method.Recurrence.to_string.html new file mode 100644 index 00000000..7d5be592 --- /dev/null +++ b/static/libical-glib/method.Recurrence.to_string.html @@ -0,0 +1,230 @@ + + + + + + ICalGLib.Recurrence.to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceto_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_recurrence_to_string (
    +  ICalRecurrence* recur
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a ICalRecurrence to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of recur.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Recurrence.unref.html b/static/libical-glib/method.Recurrence.unref.html new file mode 100644 index 00000000..e026a0e1 --- /dev/null +++ b/static/libical-glib/method.Recurrence.unref.html @@ -0,0 +1,204 @@ + + + + + + ICalGLib.Recurrence.unref + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibRecurrenceunref

    +
    + +
    +
    +

    unstable since: 4.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_recurrence_unref (
    +  ICalRecurrence* self
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decreases the reference counter by 1 for the self.

    +
    + +
    + +

    Available since: 4.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Reqstat.get_code.html b/static/libical-glib/method.Reqstat.get_code.html new file mode 100644 index 00000000..6829f1f3 --- /dev/null +++ b/static/libical-glib/method.Reqstat.get_code.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Reqstat.get_code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibReqstatget_code

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRequestStatus
    +i_cal_reqstat_get_code (
    +  ICalReqstat* reqstat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the code of ICalReqstat.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRequestStatus

    +

    The code of reqstat.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Reqstat.get_debug.html b/static/libical-glib/method.Reqstat.get_debug.html new file mode 100644 index 00000000..e316243e --- /dev/null +++ b/static/libical-glib/method.Reqstat.get_debug.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Reqstat.get_debug + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibReqstatget_debug

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_reqstat_get_debug (
    +  const ICalReqstat* reqstat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the debug of ICalReqstat.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The debug of reqstat.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Reqstat.get_desc.html b/static/libical-glib/method.Reqstat.get_desc.html new file mode 100644 index 00000000..1c497c3d --- /dev/null +++ b/static/libical-glib/method.Reqstat.get_desc.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Reqstat.get_desc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibReqstatget_desc

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_reqstat_get_desc (
    +  const ICalReqstat* reqstat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the desc of ICalReqstat.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The desc of reqstat.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Reqstat.set_code.html b/static/libical-glib/method.Reqstat.set_code.html new file mode 100644 index 00000000..a7c85331 --- /dev/null +++ b/static/libical-glib/method.Reqstat.set_code.html @@ -0,0 +1,207 @@ + + + + + + ICalGLib.Reqstat.set_code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibReqstatset_code

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_reqstat_set_code (
    +  ICalReqstat* reqstat,
    +  ICalRequestStatus code
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the code of ICalReqstat.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    code
    +
    +

    Type: ICalRequestStatus

    +

    The code of reqstat.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Reqstat.to_string.html b/static/libical-glib/method.Reqstat.to_string.html new file mode 100644 index 00000000..b2225ed5 --- /dev/null +++ b/static/libical-glib/method.Reqstat.to_string.html @@ -0,0 +1,200 @@ + + + + + + ICalGLib.Reqstat.to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibReqstatto_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_reqstat_to_string (
    +  ICalReqstat* stat
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts ICalReqstat to a string representation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    A string.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.add.html b/static/libical-glib/method.Time.add.html new file mode 100644 index 00000000..7b3f67d8 --- /dev/null +++ b/static/libical-glib/method.Time.add.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.add + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeadd

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_add (
    +  ICalTime* t,
    +  ICalDuration* d
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds a time duration on the time.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    d
    +
    +

    Type: ICalDuration

    +

    A ICalDuration as the difference.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The ICalTime results. The native object is the same. But since it is a bare object, so it won’t cause segmentation.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.adjust.html b/static/libical-glib/method.Time.adjust.html new file mode 100644 index 00000000..87359ea7 --- /dev/null +++ b/static/libical-glib/method.Time.adjust.html @@ -0,0 +1,341 @@ + + + + + + ICalGLib.Time.adjust + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeadjust

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_adjust (
    +  ICalTime* tt,
    +  const gint days,
    +  const gint hours,
    +  const gint minutes,
    +  const gint seconds
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Adds or subtracts a number of days, hours, minutes and seconds from tt.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    days
    +
    +

    Type: const gint

    +

    Difference of days adjusted.

    + + + + + + + + + + +
    +
    + +
    hours
    +
    +

    Type: const gint

    +

    Difference of hours adjusted.

    + + + + + + + + + + +
    +
    + +
    minutes
    +
    +

    Type: const gint

    +

    Difference of minutes adjusted.

    + + + + + + + + + + +
    +
    + +
    seconds
    +
    +

    Type: const gint

    +

    Difference of seconds adjusted.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.as_ical_string.html b/static/libical-glib/method.Time.as_ical_string.html new file mode 100644 index 00000000..a2cdb205 --- /dev/null +++ b/static/libical-glib/method.Time.as_ical_string.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_time_as_ical_string (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a string representation of the time, in RFC2445 format.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.as_timet.html b/static/libical-glib/method.Time.as_timet.html new file mode 100644 index 00000000..72c18aba --- /dev/null +++ b/static/libical-glib/method.Time.as_timet.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.as_timet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeas_timet

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    time_t
    +i_cal_time_as_timet (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the time as seconds past the UNIX epoch.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: time_t

    +

    The time as seconds past the UNIX epoch.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.as_timet_with_zone.html b/static/libical-glib/method.Time.as_timet_with_zone.html new file mode 100644 index 00000000..cc37929c --- /dev/null +++ b/static/libical-glib/method.Time.as_timet_with_zone.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.as_timet_with_zone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeas_timet_with_zone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    time_t
    +i_cal_time_as_timet_with_zone (
    +  const ICalTime* tt,
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the time as seconds past the UNIX epoch, using timezones.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: time_t

    +

    The time as seconds past the UNIX epoch.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.clone.html b/static/libical-glib/method.Time.clone.html new file mode 100644 index 00000000..aa60d235 --- /dev/null +++ b/static/libical-glib/method.Time.clone.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeclone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_clone (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalTime, copy of timetype.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The newly created ICalTime, copy of timetype.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.compare.html b/static/libical-glib/method.Time.compare.html new file mode 100644 index 00000000..2e0c3ac6 --- /dev/null +++ b/static/libical-glib/method.Time.compare.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.compare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimecompare

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_compare (
    +  const ICalTime* a,
    +  const ICalTime* b
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    I_cal_time_compare returns an integer indicating the result of the comparison, as follow:

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    b
    +
    +

    Type: ICalTime

    +

    The ICalTime to be compared.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    -1, 0, or 1 to indicate that a less than b, a==b or a larger than b.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.compare_date_only.html b/static/libical-glib/method.Time.compare_date_only.html new file mode 100644 index 00000000..694f90e5 --- /dev/null +++ b/static/libical-glib/method.Time.compare_date_only.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.compare_date_only + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimecompare_date_only

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_compare_date_only (
    +  const ICalTime* a,
    +  const ICalTime* b
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Like i_cal_time_compare(), but only use the date parts.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    b
    +
    +

    Type: ICalTime

    +

    The ICalTime to be compared.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    -1, 0, or 1 to indicate that a less than b, a==b or a larger than b.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.compare_date_only_tz.html b/static/libical-glib/method.Time.compare_date_only_tz.html new file mode 100644 index 00000000..341d6b01 --- /dev/null +++ b/static/libical-glib/method.Time.compare_date_only_tz.html @@ -0,0 +1,331 @@ + + + + + + ICalGLib.Time.compare_date_only_tz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimecompare_date_only_tz

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_compare_date_only_tz (
    +  const ICalTime* a,
    +  const ICalTime* b,
    +  ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Like i_cal_time_compare_tz(), but only use the date parts; accepts timezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    b
    +
    +

    Type: ICalTime

    +

    The ICalTime to be compared.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The target timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    -1, 0, or 1 to indicate that a less than b, a==b or a larger than b.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.convert_timezone.html b/static/libical-glib/method.Time.convert_timezone.html new file mode 100644 index 00000000..66fed85b --- /dev/null +++ b/static/libical-glib/method.Time.convert_timezone.html @@ -0,0 +1,305 @@ + + + + + + ICalGLib.Time.convert_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeconvert_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_convert_timezone (
    +  ICalTime* tt,
    +  ICalTimezone* from_zone,
    +  ICalTimezone* to_zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Convert time from one timezone to another.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    from_zone
    +
    +

    Type: ICalTimezone

    +

    From timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + +
    to_zone
    +
    +

    Type: ICalTimezone

    +

    To timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.convert_to_zone.html b/static/libical-glib/method.Time.convert_to_zone.html new file mode 100644 index 00000000..57444742 --- /dev/null +++ b/static/libical-glib/method.Time.convert_to_zone.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.convert_to_zone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeconvert_to_zone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_convert_to_zone (
    +  const ICalTime* tt,
    +  ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts tt to zone and return new ICalTime object.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The target timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The converted ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.convert_to_zone_inplace.html b/static/libical-glib/method.Time.convert_to_zone_inplace.html new file mode 100644 index 00000000..3e8ce261 --- /dev/null +++ b/static/libical-glib/method.Time.convert_to_zone_inplace.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.convert_to_zone_inplace + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeconvert_to_zone_inplace

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_convert_to_zone_inplace (
    +  ICalTime* tt,
    +  ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts tt to zone and store the result into tt.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The target timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.day_of_week.html b/static/libical-glib/method.Time.day_of_week.html new file mode 100644 index 00000000..67e08f9a --- /dev/null +++ b/static/libical-glib/method.Time.day_of_week.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.day_of_week + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeday_of_week

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_day_of_week (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the day of the week of the given time. Sunday is 1.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The day of the week of the given time. Sunday is 1.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.day_of_year.html b/static/libical-glib/method.Time.day_of_year.html new file mode 100644 index 00000000..e2b1febb --- /dev/null +++ b/static/libical-glib/method.Time.day_of_year.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.day_of_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeday_of_year

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_day_of_year (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the day of the year of the given time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The day of the year of the given time.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_date.html b/static/libical-glib/method.Time.get_date.html new file mode 100644 index 00000000..dbbfefe5 --- /dev/null +++ b/static/libical-glib/method.Time.get_date.html @@ -0,0 +1,323 @@ + + + + + + ICalGLib.Time.get_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_get_date (
    +  const ICalTime* timetype,
    +  gint* year,
    +  gint* month,
    +  gint* day
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the year/month/date parts of the timetype in one call.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    year
    +
    +

    Type: gint*

    +

    Out parameter for the ‘year’ part of the date.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + +
    month
    +
    +

    Type: gint*

    +

    Out parameter for the ‘month’ part of the date.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + +
    day
    +
    +

    Type: gint*

    +

    Out parameter for the ‘day’ part of the date.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_day.html b/static/libical-glib/method.Time.get_day.html new file mode 100644 index 00000000..b1e5e5a9 --- /dev/null +++ b/static/libical-glib/method.Time.get_day.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_day + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_day

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_day (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the day of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The day.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_hour.html b/static/libical-glib/method.Time.get_hour.html new file mode 100644 index 00000000..7be8ba24 --- /dev/null +++ b/static/libical-glib/method.Time.get_hour.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_hour + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_hour

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_hour (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the hour of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The hour.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_minute.html b/static/libical-glib/method.Time.get_minute.html new file mode 100644 index 00000000..436b3fa8 --- /dev/null +++ b/static/libical-glib/method.Time.get_minute.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_minute + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_minute

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_minute (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the minute of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The minute.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_month.html b/static/libical-glib/method.Time.get_month.html new file mode 100644 index 00000000..2b850433 --- /dev/null +++ b/static/libical-glib/method.Time.get_month.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_month + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_month

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_month (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the month of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The month.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_second.html b/static/libical-glib/method.Time.get_second.html new file mode 100644 index 00000000..0545b9a7 --- /dev/null +++ b/static/libical-glib/method.Time.get_second.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_second + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_second

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_second (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the second of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The second.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_time.html b/static/libical-glib/method.Time.get_time.html new file mode 100644 index 00000000..904cfe07 --- /dev/null +++ b/static/libical-glib/method.Time.get_time.html @@ -0,0 +1,323 @@ + + + + + + ICalGLib.Time.get_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_get_time (
    +  const ICalTime* timetype,
    +  gint* hour,
    +  gint* minute,
    +  gint* second
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the hour/minute/second parts of the timetype in one call.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    hour
    +
    +

    Type: gint*

    +

    Out parameter for the ‘hour’ part of the time.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + +
    minute
    +
    +

    Type: gint*

    +

    Out parameter for the ‘minute’ part of the time.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + +
    second
    +
    +

    Type: gint*

    +

    Out parameter for the ‘second’ part of the time.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_timezone.html b/static/libical-glib/method.Time.get_timezone.html new file mode 100644 index 00000000..7c8f6f27 --- /dev/null +++ b/static/libical-glib/method.Time.get_timezone.html @@ -0,0 +1,282 @@ + + + + + + ICalGLib.Time.get_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_time_get_timezone (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the timezone, the ICalTimezone object is cached and can be either unreferenced once the last +instance is used or can be kept until i_cal_object_free_global_objects() is called (usually at the very +end of the program).

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The timezone information.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_tzid.html b/static/libical-glib/method.Time.get_tzid.html new file mode 100644 index 00000000..472b39a3 --- /dev/null +++ b/static/libical-glib/method.Time.get_tzid.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_time_get_tzid (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the tzid, or NULL for a floating time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The tzid of ICalTime, or NULL if floating type.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.get_year.html b/static/libical-glib/method.Time.get_year.html new file mode 100644 index 00000000..08c9daee --- /dev/null +++ b/static/libical-glib/method.Time.get_year.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.get_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeget_year

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_get_year (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the year of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The year.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.is_date.html b/static/libical-glib/method.Time.is_date.html new file mode 100644 index 00000000..fd8223ea --- /dev/null +++ b/static/libical-glib/method.Time.is_date.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.is_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeis_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_is_date (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns true if time is of DATE type, false if DATE-TIME.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    True if time is of DATE type, false if DATE-TIME.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.is_daylight.html b/static/libical-glib/method.Time.is_daylight.html new file mode 100644 index 00000000..d9a6ee4f --- /dev/null +++ b/static/libical-glib/method.Time.is_daylight.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.is_daylight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeis_daylight

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_is_daylight (
    +  const ICalTime* timetype
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the is_daylight of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    The is_daylight.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.is_null_time.html b/static/libical-glib/method.Time.is_null_time.html new file mode 100644 index 00000000..3ef55eae --- /dev/null +++ b/static/libical-glib/method.Time.is_null_time.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.is_null_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeis_null_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_is_null_time (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns true if the time is null.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether tt is null_time. 1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.is_utc.html b/static/libical-glib/method.Time.is_utc.html new file mode 100644 index 00000000..896db3ad --- /dev/null +++ b/static/libical-glib/method.Time.is_utc.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.is_utc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeis_utc

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_is_utc (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns true if time is relative to UTC zone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    True if time is relative to UTC zone.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.is_valid_time.html b/static/libical-glib/method.Time.is_valid_time.html new file mode 100644 index 00000000..788097cd --- /dev/null +++ b/static/libical-glib/method.Time.is_valid_time.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.is_valid_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeis_valid_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_is_valid_time (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns true if the time is null.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether tt is null_time. 1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.normalize.html b/static/libical-glib/method.Time.normalize.html new file mode 100644 index 00000000..d3120c5f --- /dev/null +++ b/static/libical-glib/method.Time.normalize.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.normalize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimenormalize

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_time_normalize (
    +  const ICalTime* t
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Normalizes the icaltime, so that all fields are within the normal range.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The ICalTime normalized.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.normalize_inplace.html b/static/libical-glib/method.Time.normalize_inplace.html new file mode 100644 index 00000000..e532d90e --- /dev/null +++ b/static/libical-glib/method.Time.normalize_inplace.html @@ -0,0 +1,254 @@ + + + + + + ICalGLib.Time.normalize_inplace + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimenormalize_inplace

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_normalize_inplace (
    +  ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Normalizes the tt, so that all fields are within the normal range.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_date.html b/static/libical-glib/method.Time.set_date.html new file mode 100644 index 00000000..d66c4db1 --- /dev/null +++ b/static/libical-glib/method.Time.set_date.html @@ -0,0 +1,323 @@ + + + + + + ICalGLib.Time.set_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_date (
    +  ICalTime* timetype,
    +  gint year,
    +  gint month,
    +  gint day
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the year/month/date parts of the timetype in one call. This doesn’t verify validity of the given date.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    year
    +
    +

    Type: gint

    +

    The ‘year’ part of the date.

    + + + + + + + + + + +
    +
    + +
    month
    +
    +

    Type: gint

    +

    The ‘month’ part of the date.

    + + + + + + + + + + +
    +
    + +
    day
    +
    +

    Type: gint

    +

    The ‘day’ part of the date.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_day.html b/static/libical-glib/method.Time.set_day.html new file mode 100644 index 00000000..68738c24 --- /dev/null +++ b/static/libical-glib/method.Time.set_day.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_day + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_day

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_day (
    +  ICalTime* timetype,
    +  gint day
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the day of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    day
    +
    +

    Type: gint

    +

    The day.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_hour.html b/static/libical-glib/method.Time.set_hour.html new file mode 100644 index 00000000..ac32575f --- /dev/null +++ b/static/libical-glib/method.Time.set_hour.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_hour + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_hour

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_hour (
    +  ICalTime* timetype,
    +  gint hour
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the hour of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    hour
    +
    +

    Type: gint

    +

    The hour.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_is_date.html b/static/libical-glib/method.Time.set_is_date.html new file mode 100644 index 00000000..c9d6a3f8 --- /dev/null +++ b/static/libical-glib/method.Time.set_is_date.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_is_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_is_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_is_date (
    +  ICalTime* timetype,
    +  gboolean is_date
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the is_date of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    is_date
    +
    +

    Type: gboolean

    +

    The is_date.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_is_daylight.html b/static/libical-glib/method.Time.set_is_daylight.html new file mode 100644 index 00000000..74065ff9 --- /dev/null +++ b/static/libical-glib/method.Time.set_is_daylight.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_is_daylight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_is_daylight

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_is_daylight (
    +  ICalTime* timetype,
    +  gboolean is_daylight
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the is_daylight of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    is_daylight
    +
    +

    Type: gboolean

    +

    The is_daylight.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_minute.html b/static/libical-glib/method.Time.set_minute.html new file mode 100644 index 00000000..60deb79c --- /dev/null +++ b/static/libical-glib/method.Time.set_minute.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_minute + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_minute

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_minute (
    +  ICalTime* timetype,
    +  gint minute
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the minute of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    minute
    +
    +

    Type: gint

    +

    The minute.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_month.html b/static/libical-glib/method.Time.set_month.html new file mode 100644 index 00000000..321fadc1 --- /dev/null +++ b/static/libical-glib/method.Time.set_month.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_month + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_month

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_month (
    +  ICalTime* timetype,
    +  gint month
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the month of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    month
    +
    +

    Type: gint

    +

    The month.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_second.html b/static/libical-glib/method.Time.set_second.html new file mode 100644 index 00000000..baa00cdd --- /dev/null +++ b/static/libical-glib/method.Time.set_second.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_second + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_second

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_second (
    +  ICalTime* timetype,
    +  gint second
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the second of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    second
    +
    +

    Type: gint

    +

    The second.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_time.html b/static/libical-glib/method.Time.set_time.html new file mode 100644 index 00000000..e26ff694 --- /dev/null +++ b/static/libical-glib/method.Time.set_time.html @@ -0,0 +1,323 @@ + + + + + + ICalGLib.Time.set_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_time (
    +  ICalTime* timetype,
    +  gint hour,
    +  gint minute,
    +  gint second
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the hour/minute/second parts of the timetype in one call. This doesn’t verify validity of the given time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    hour
    +
    +

    Type: gint

    +

    The ‘hour’ part of the time.

    + + + + + + + + + + +
    +
    + +
    minute
    +
    +

    Type: gint

    +

    The ‘minute’ part of the time.

    + + + + + + + + + + +
    +
    + +
    second
    +
    +

    Type: gint

    +

    The ‘second’ part of the time.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_timezone.html b/static/libical-glib/method.Time.set_timezone.html new file mode 100644 index 00000000..c27ff64d --- /dev/null +++ b/static/libical-glib/method.Time.set_timezone.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_timezone (
    +  ICalTime* tt,
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the timezone of the tt.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: ICalTimezone

    +

    The timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.set_year.html b/static/libical-glib/method.Time.set_year.html new file mode 100644 index 00000000..6e9fc0ea --- /dev/null +++ b/static/libical-glib/method.Time.set_year.html @@ -0,0 +1,287 @@ + + + + + + ICalGLib.Time.set_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeset_year

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_set_year (
    +  ICalTime* timetype,
    +  gint year
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the year of ICalTime.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    year
    +
    +

    Type: gint

    +

    The year.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.start_doy_week.html b/static/libical-glib/method.Time.start_doy_week.html new file mode 100644 index 00000000..6d8cfcba --- /dev/null +++ b/static/libical-glib/method.Time.start_doy_week.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.start_doy_week + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimestart_doy_week

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_start_doy_week (
    +  const ICalTime* tt,
    +  gint fdow
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the day of the year for the first day of the week that the given time is within.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    fdow
    +
    +

    Type: gint

    +

    The first day of the week.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The day of the year for the Sunday of the week that the given time is within.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.subtract.html b/static/libical-glib/method.Time.subtract.html new file mode 100644 index 00000000..424a09d7 --- /dev/null +++ b/static/libical-glib/method.Time.subtract.html @@ -0,0 +1,313 @@ + + + + + + ICalGLib.Time.subtract + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimesubtract

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_time_subtract (
    +  ICalTime* t1,
    +  ICalTime* t2
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration between two time.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    t2
    +
    +

    Type: ICalTime

    +

    The subtracting ICalTime.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The ICalDuration between two ICalTime.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Time.week_number.html b/static/libical-glib/method.Time.week_number.html new file mode 100644 index 00000000..0796e235 --- /dev/null +++ b/static/libical-glib/method.Time.week_number.html @@ -0,0 +1,280 @@ + + + + + + ICalGLib.Time.week_number + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeweek_number

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_week_number (
    +  const ICalTime* tt
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the week number for the week the given time is within.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The week number for the week the given time is within.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.clone.html b/static/libical-glib/method.TimeSpan.clone.html new file mode 100644 index 00000000..dfc79a6d --- /dev/null +++ b/static/libical-glib/method.TimeSpan.clone.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.TimeSpan.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanclone

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimeSpan*
    +i_cal_time_span_clone (
    +  const ICalTimeSpan* src
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new ICalTimeSpan, clone of src. Free it with g_object_unref(), when no longer needed.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimeSpan

    +

    The newly created ICalTimeSpan, clone of src.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.contains.html b/static/libical-glib/method.TimeSpan.contains.html new file mode 100644 index 00000000..8cb2d4b1 --- /dev/null +++ b/static/libical-glib/method.TimeSpan.contains.html @@ -0,0 +1,241 @@ + + + + + + ICalGLib.TimeSpan.contains + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpancontains

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_span_contains (
    +  ICalTimeSpan* s,
    +  ICalTimeSpan* container
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether one ICalTimeSpan is contained in another ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    container
    +
    +

    Type: ICalTimeSpan

    +

    The target container of ICalTimeSpan.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Whether one ICalTimeSpan is contained in another ICalTimeSpan.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.get_end.html b/static/libical-glib/method.TimeSpan.get_end.html new file mode 100644 index 00000000..435aa766 --- /dev/null +++ b/static/libical-glib/method.TimeSpan.get_end.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.TimeSpan.get_end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanget_end

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    time_t
    +i_cal_time_span_get_end (
    +  ICalTimeSpan* timespan
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the end of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: time_t

    +

    The end.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.get_is_busy.html b/static/libical-glib/method.TimeSpan.get_is_busy.html new file mode 100644 index 00000000..b55deb33 --- /dev/null +++ b/static/libical-glib/method.TimeSpan.get_is_busy.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.TimeSpan.get_is_busy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanget_is_busy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_span_get_is_busy (
    +  ICalTimeSpan* timespan
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the is_busy of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    The is_busy.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.get_start.html b/static/libical-glib/method.TimeSpan.get_start.html new file mode 100644 index 00000000..8748fc9c --- /dev/null +++ b/static/libical-glib/method.TimeSpan.get_start.html @@ -0,0 +1,208 @@ + + + + + + ICalGLib.TimeSpan.get_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanget_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    time_t
    +i_cal_time_span_get_start (
    +  ICalTimeSpan* timespan
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the start of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: time_t

    +

    The start.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.overlaps.html b/static/libical-glib/method.TimeSpan.overlaps.html new file mode 100644 index 00000000..d49bad49 --- /dev/null +++ b/static/libical-glib/method.TimeSpan.overlaps.html @@ -0,0 +1,241 @@ + + + + + + ICalGLib.TimeSpan.overlaps + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanoverlaps

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_span_overlaps (
    +  ICalTimeSpan* s1,
    +  ICalTimeSpan* s2
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether two spans overlap.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    s2
    +
    +

    Type: ICalTimeSpan

    +

    The second ICalTimeSpan.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Whether these two span are overlapped.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.set_end.html b/static/libical-glib/method.TimeSpan.set_end.html new file mode 100644 index 00000000..5244e203 --- /dev/null +++ b/static/libical-glib/method.TimeSpan.set_end.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.TimeSpan.set_end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanset_end

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_span_set_end (
    +  ICalTimeSpan* timespan,
    +  time_t end
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the end of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    end
    +
    +

    Type: time_t

    +

    The end.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.set_is_busy.html b/static/libical-glib/method.TimeSpan.set_is_busy.html new file mode 100644 index 00000000..7bced06b --- /dev/null +++ b/static/libical-glib/method.TimeSpan.set_is_busy.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.TimeSpan.set_is_busy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanset_is_busy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_span_set_is_busy (
    +  ICalTimeSpan* timespan,
    +  gboolean is_busy
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the is_busy of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    is_busy
    +
    +

    Type: gboolean

    +

    The is_busy.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.TimeSpan.set_start.html b/static/libical-glib/method.TimeSpan.set_start.html new file mode 100644 index 00000000..9fea90fd --- /dev/null +++ b/static/libical-glib/method.TimeSpan.set_start.html @@ -0,0 +1,215 @@ + + + + + + ICalGLib.TimeSpan.set_start + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimeSpanset_start

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_span_set_start (
    +  ICalTimeSpan* timespan,
    +  time_t start
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the start of ICalTimeSpan.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    start
    +
    +

    Type: time_t

    +

    The start.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.copy.html b/static/libical-glib/method.Timezone.copy.html new file mode 100644 index 00000000..09b393f4 --- /dev/null +++ b/static/libical-glib/method.Timezone.copy.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.copy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezonecopy

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_copy (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The clone method for ICalTimezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The newly created ICalTimezone with the same values as zone.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.dump_changes.html b/static/libical-glib/method.Timezone.dump_changes.html new file mode 100644 index 00000000..070d10aa --- /dev/null +++ b/static/libical-glib/method.Timezone.dump_changes.html @@ -0,0 +1,267 @@ + + + + + + ICalGLib.Timezone.dump_changes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezonedump_changes

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_timezone_dump_changes (
    +  ICalTimezone* zone,
    +  gint max_year,
    +  FILE* fp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Outputs a list of timezone changes for the given timezone to the given file, up to the maximum year given.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    max_year
    +
    +

    Type: gint

    +

    Max year.

    + + + + + + + + + + +
    +
    + +
    fp
    +
    +

    Type: FILE*

    +

    The file handle.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if success.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.free.html b/static/libical-glib/method.Timezone.free.html new file mode 100644 index 00000000..0312a446 --- /dev/null +++ b/static/libical-glib/method.Timezone.free.html @@ -0,0 +1,223 @@ + + + + + + ICalGLib.Timezone.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezonefree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_free (
    +  ICalTimezone* zone,
    +  gint free_struct
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The destructor of ICalTimezone.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    free_struct
    +
    +

    Type: gint

    +

    Whether to free it or reset it. 1 to free and 0 to reset.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_component.html b/static/libical-glib/method.Timezone.get_component.html new file mode 100644 index 00000000..0b167555 --- /dev/null +++ b/static/libical-glib/method.Timezone.get_component.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_timezone_get_component (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the VTIMEZONE component of a timezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The VTIMEZONE component of the zone.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_display_name.html b/static/libical-glib/method.Timezone.get_display_name.html new file mode 100644 index 00000000..0896d46d --- /dev/null +++ b/static/libical-glib/method.Timezone.get_display_name.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_display_name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_display_name

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_timezone_get_display_name (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the display name of the zone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The display name of zone.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_latitude.html b/static/libical-glib/method.Timezone.get_latitude.html new file mode 100644 index 00000000..ce0b1e84 --- /dev/null +++ b/static/libical-glib/method.Timezone.get_latitude.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_latitude + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_latitude

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gdouble
    +i_cal_timezone_get_latitude (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the latitude of a builtin timezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gdouble

    +

    The latitude of the ICalTimezone.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_location.html b/static/libical-glib/method.Timezone.get_location.html new file mode 100644 index 00000000..1d795e86 --- /dev/null +++ b/static/libical-glib/method.Timezone.get_location.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_location

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_timezone_get_location (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the city name of a timezone, or NULL, when none is set or when zone is also NULL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The location of the ICalTimezone, or NULL.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_longitude.html b/static/libical-glib/method.Timezone.get_longitude.html new file mode 100644 index 00000000..f2cf552e --- /dev/null +++ b/static/libical-glib/method.Timezone.get_longitude.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_longitude + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_longitude

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gdouble
    +i_cal_timezone_get_longitude (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the longitude of a builtin timezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gdouble

    +

    The longitude of the ICalTimezone.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_tzid.html b/static/libical-glib/method.Timezone.get_tzid.html new file mode 100644 index 00000000..427311c9 --- /dev/null +++ b/static/libical-glib/method.Timezone.get_tzid.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Timezone.get_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_timezone_get_tzid (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the TZID of a timezone, or NULL, when none is set or when zone is also NULL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The timezone id, or NULL.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_tznames.html b/static/libical-glib/method.Timezone.get_tznames.html new file mode 100644 index 00000000..e1a5915b --- /dev/null +++ b/static/libical-glib/method.Timezone.get_tznames.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.Timezone.get_tznames + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_tznames

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_timezone_get_tznames (
    +  const ICalTimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the TZNAME properties used in the latest STANDARD and DAYLIGHT components. If they are the same +it will return just one, e.g. “LMT”. If they are different it will format them like “EST/EDT”. Note that +this may also return NULL.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The timezone name.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_utc_offset.html b/static/libical-glib/method.Timezone.get_utc_offset.html new file mode 100644 index 00000000..5fb22fbb --- /dev/null +++ b/static/libical-glib/method.Timezone.get_utc_offset.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.Timezone.get_utc_offset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_utc_offset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_timezone_get_utc_offset (
    +  ICalTimezone* zone,
    +  ICalTime* tt,
    +  gint* is_daylight
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Calculates the UTC offset of a given local time in the given timezone. It is the number of seconds to +add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    tt
    +
    +

    Type: ICalTime

    +

    The local time.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + +
    is_daylight
    +
    +

    Type: gint*

    +

    Whether it is day light.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    UTC offset of the zone.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.get_utc_offset_of_utc_time.html b/static/libical-glib/method.Timezone.get_utc_offset_of_utc_time.html new file mode 100644 index 00000000..ea4e61a0 --- /dev/null +++ b/static/libical-glib/method.Timezone.get_utc_offset_of_utc_time.html @@ -0,0 +1,268 @@ + + + + + + ICalGLib.Timezone.get_utc_offset_of_utc_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneget_utc_offset_of_utc_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_timezone_get_utc_offset_of_utc_time (
    +  ICalTimezone* zone,
    +  ICalTime* tt,
    +  gint* is_daylight
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Calculates the UTC offset of a given UTC time in the given timezone. It is the number of seconds to +add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    tt
    +
    +

    Type: ICalTime

    +

    The local time.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + +
    is_daylight
    +
    +

    Type: gint*

    +

    Whether it is day light, can be NULL.

    + + + + + + + + + + +
    The argument will be set by the function.
    The argument can be NULL.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    UTC offset of the zone.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Timezone.set_component.html b/static/libical-glib/method.Timezone.set_component.html new file mode 100644 index 00000000..22145e14 --- /dev/null +++ b/static/libical-glib/method.Timezone.set_component.html @@ -0,0 +1,252 @@ + + + + + + ICalGLib.Timezone.set_component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTimezoneset_component

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_timezone_set_component (
    +  ICalTimezone* zone,
    +  ICalComponent* comp
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the VTIMEZONE component of ICalTimezone, initializing the tzid, location and tzname fields. It +returns 1 on success or 0 on failure, i.e. no TZID was found.

    +

    note The zone assumes ownership +of the comp, thus make sure you pass an unowned ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    The VTIMEZONE component of an ICalTimezone, initializing the tzid, location and tzname fields.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Whether the action is successful. 1 for success, 0 for failure.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.get_duration.html b/static/libical-glib/method.Trigger.get_duration.html new file mode 100644 index 00000000..9bc555b8 --- /dev/null +++ b/static/libical-glib/method.Trigger.get_duration.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Trigger.get_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggerget_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_trigger_get_duration (
    +  ICalTrigger* trigger
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration from ICalTrigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The duration of ICalTrigger.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.get_time.html b/static/libical-glib/method.Trigger.get_time.html new file mode 100644 index 00000000..e764eaf0 --- /dev/null +++ b/static/libical-glib/method.Trigger.get_time.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Trigger.get_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggerget_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_trigger_get_time (
    +  ICalTrigger* trigger
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the time from ICalTrigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The time of ICalTrigger.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.is_bad_trigger.html b/static/libical-glib/method.Trigger.is_bad_trigger.html new file mode 100644 index 00000000..84f15241 --- /dev/null +++ b/static/libical-glib/method.Trigger.is_bad_trigger.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Trigger.is_bad_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggeris_bad_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_trigger_is_bad_trigger (
    +  ICalTrigger* tr
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks if a ICalTrigger is a bad trigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.is_null_trigger.html b/static/libical-glib/method.Trigger.is_null_trigger.html new file mode 100644 index 00000000..34e422e2 --- /dev/null +++ b/static/libical-glib/method.Trigger.is_null_trigger.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Trigger.is_null_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggeris_null_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_trigger_is_null_trigger (
    +  ICalTrigger* tr
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks if a ICalTrigger is a null trigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.set_duration.html b/static/libical-glib/method.Trigger.set_duration.html new file mode 100644 index 00000000..af0255fc --- /dev/null +++ b/static/libical-glib/method.Trigger.set_duration.html @@ -0,0 +1,209 @@ + + + + + + ICalGLib.Trigger.set_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggerset_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_trigger_set_duration (
    +  ICalTrigger* trigger,
    +  ICalDuration* duration
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the duration from ICalTrigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    duration
    +
    +

    Type: ICalDuration

    +

    The duration of ICalTrigger.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Trigger.set_time.html b/static/libical-glib/method.Trigger.set_time.html new file mode 100644 index 00000000..8c5193f1 --- /dev/null +++ b/static/libical-glib/method.Trigger.set_time.html @@ -0,0 +1,209 @@ + + + + + + ICalGLib.Trigger.set_time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibTriggerset_time

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_trigger_set_time (
    +  ICalTrigger* trigger,
    +  ICalTime* time
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the time from ICalTrigger.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    time
    +
    +

    Type: ICalTime

    +

    The time of ICalTrigger.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.as_ical_string.html b/static/libical-glib/method.Value.as_ical_string.html new file mode 100644 index 00000000..179f93fb --- /dev/null +++ b/static/libical-glib/method.Value.as_ical_string.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.as_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueas_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_value_as_ical_string (
    +  const ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalValue to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.clone.html b/static/libical-glib/method.Value.clone.html new file mode 100644 index 00000000..c8bfed32 --- /dev/null +++ b/static/libical-glib/method.Value.clone.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.clone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueclone

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValue*
    +i_cal_value_clone (
    +  const ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Deeply clone a ICalValue.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValue

    +

    The newly created ICalValue with the same property as value.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.compare.html b/static/libical-glib/method.Value.compare.html new file mode 100644 index 00000000..ebc2f709 --- /dev/null +++ b/static/libical-glib/method.Value.compare.html @@ -0,0 +1,395 @@ + + + + + + ICalGLib.Value.compare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValuecompare

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterXliccomparetype
    +i_cal_value_compare (
    +  const ICalValue* a,
    +  const ICalValue* b
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Compares two ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    b
    +
    +

    Type: ICalValue

    +

    A ICalValue.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterXliccomparetype

    +

    The compare result.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.free.html b/static/libical-glib/method.Value.free.html new file mode 100644 index 00000000..c28e423b --- /dev/null +++ b/static/libical-glib/method.Value.free.html @@ -0,0 +1,336 @@ + + + + + + ICalGLib.Value.free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValuefree

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_free (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees a ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + +

    This method is not directly available to language bindings.

    + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_action.html b/static/libical-glib/method.Value.get_action.html new file mode 100644 index 00000000..60488e49 --- /dev/null +++ b/static/libical-glib/method.Value.get_action.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_action

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyAction
    +i_cal_value_get_action (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the action of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyAction

    +

    The action within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_attach.html b/static/libical-glib/method.Value.get_attach.html new file mode 100644 index 00000000..d5d85982 --- /dev/null +++ b/static/libical-glib/method.Value.get_attach.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_attach

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalAttach*
    +i_cal_value_get_attach (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the attach of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalAttach

    +

    The attach within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_binary.html b/static/libical-glib/method.Value.get_binary.html new file mode 100644 index 00000000..6de50439 --- /dev/null +++ b/static/libical-glib/method.Value.get_binary.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_binary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_binary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_binary (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the binary of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The binary within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_boolean.html b/static/libical-glib/method.Value.get_boolean.html new file mode 100644 index 00000000..d781dc5e --- /dev/null +++ b/static/libical-glib/method.Value.get_boolean.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_boolean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_boolean

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_value_get_boolean (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the boolean of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The boolean within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_busytype.html b/static/libical-glib/method.Value.get_busytype.html new file mode 100644 index 00000000..3b639662 --- /dev/null +++ b/static/libical-glib/method.Value.get_busytype.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyBusytype
    +i_cal_value_get_busytype (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the busytype of ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyBusytype

    +

    The busytype within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_caladdress.html b/static/libical-glib/method.Value.get_caladdress.html new file mode 100644 index 00000000..bdc7b5ab --- /dev/null +++ b/static/libical-glib/method.Value.get_caladdress.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_caladdress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_caladdress

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_caladdress (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the caladdress of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The caladdress within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_carlevel.html b/static/libical-glib/method.Value.get_carlevel.html new file mode 100644 index 00000000..6c6d727e --- /dev/null +++ b/static/libical-glib/method.Value.get_carlevel.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyCarlevel
    +i_cal_value_get_carlevel (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the carlevel of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyCarlevel

    +

    The carlevel within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_class.html b/static/libical-glib/method.Value.get_class.html new file mode 100644 index 00000000..56ad84f4 --- /dev/null +++ b/static/libical-glib/method.Value.get_class.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_class

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty_Class
    +i_cal_value_get_class (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the class of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty_Class

    +

    The class within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_cmd.html b/static/libical-glib/method.Value.get_cmd.html new file mode 100644 index 00000000..a37fcf06 --- /dev/null +++ b/static/libical-glib/method.Value.get_cmd.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyCmd
    +i_cal_value_get_cmd (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the cmd of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyCmd

    +

    The cmd within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_date.html b/static/libical-glib/method.Value.get_date.html new file mode 100644 index 00000000..1c0cb3af --- /dev/null +++ b/static/libical-glib/method.Value.get_date.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_value_get_date (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the date of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The date within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_datetime.html b/static/libical-glib/method.Value.get_datetime.html new file mode 100644 index 00000000..9a515f5e --- /dev/null +++ b/static/libical-glib/method.Value.get_datetime.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_datetime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_datetime

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_value_get_datetime (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the datetime of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The datetime within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_datetimedate.html b/static/libical-glib/method.Value.get_datetimedate.html new file mode 100644 index 00000000..abbc467f --- /dev/null +++ b/static/libical-glib/method.Value.get_datetimedate.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_datetimedate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_datetimedate

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTime*
    +i_cal_value_get_datetimedate (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the datetimedate (DATE-TIME or DATE) of ICalValue.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTime

    +

    The datetimedate within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_datetimeperiod.html b/static/libical-glib/method.Value.get_datetimeperiod.html new file mode 100644 index 00000000..f3d7f251 --- /dev/null +++ b/static/libical-glib/method.Value.get_datetimeperiod.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_datetimeperiod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_datetimeperiod

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDatetimeperiod*
    +i_cal_value_get_datetimeperiod (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the datetimeperiod of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDatetimeperiod

    +

    The datetimeperiod within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_duration.html b/static/libical-glib/method.Value.get_duration.html new file mode 100644 index 00000000..e737edff --- /dev/null +++ b/static/libical-glib/method.Value.get_duration.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalDuration*
    +i_cal_value_get_duration (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the duration of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalDuration

    +

    The duration within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_float.html b/static/libical-glib/method.Value.get_float.html new file mode 100644 index 00000000..37dccdcc --- /dev/null +++ b/static/libical-glib/method.Value.get_float.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_float + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_float

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gdouble
    +i_cal_value_get_float (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the float of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gdouble

    +

    The float within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_geo.html b/static/libical-glib/method.Value.get_geo.html new file mode 100644 index 00000000..ac546993 --- /dev/null +++ b/static/libical-glib/method.Value.get_geo.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_geo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalGeo*
    +i_cal_value_get_geo (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the geo of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalGeo

    +

    The geo within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_integer.html b/static/libical-glib/method.Value.get_integer.html new file mode 100644 index 00000000..c632bb42 --- /dev/null +++ b/static/libical-glib/method.Value.get_integer.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_integer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_integer

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_value_get_integer (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the integer of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The integer within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_method.html b/static/libical-glib/method.Value.get_method.html new file mode 100644 index 00000000..35ffa014 --- /dev/null +++ b/static/libical-glib/method.Value.get_method.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyMethod
    +i_cal_value_get_method (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the method of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyMethod

    +

    The method within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_parent.html b/static/libical-glib/method.Value.get_parent.html new file mode 100644 index 00000000..d5e55194 --- /dev/null +++ b/static/libical-glib/method.Value.get_parent.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_parent

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalProperty*
    +i_cal_value_get_parent (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the parent ICalProperty of the specified ICalValue.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalProperty

    +

    The parent ICalProperty.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_participanttype.html b/static/libical-glib/method.Value.get_participanttype.html new file mode 100644 index 00000000..53974e11 --- /dev/null +++ b/static/libical-glib/method.Value.get_participanttype.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyParticipanttype
    +i_cal_value_get_participanttype (
    +  const ICalValue* val
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the val of kind I_CAL_PARTICIPANTTYPE_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyParticipanttype

    +

    The value of the val of type ICalPropertyParticipanttype.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_period.html b/static/libical-glib/method.Value.get_period.html new file mode 100644 index 00000000..e7a1d109 --- /dev/null +++ b/static/libical-glib/method.Value.get_period.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPeriod*
    +i_cal_value_get_period (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the period of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPeriod

    +

    The period within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_pollcompletion.html b/static/libical-glib/method.Value.get_pollcompletion.html new file mode 100644 index 00000000..4c525e86 --- /dev/null +++ b/static/libical-glib/method.Value.get_pollcompletion.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_pollcompletion

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyPollcompletion
    +i_cal_value_get_pollcompletion (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollcompletion of ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyPollcompletion

    +

    The pollcompletion within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_pollmode.html b/static/libical-glib/method.Value.get_pollmode.html new file mode 100644 index 00000000..7ab011f5 --- /dev/null +++ b/static/libical-glib/method.Value.get_pollmode.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_pollmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyPollmode
    +i_cal_value_get_pollmode (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the pollmode of ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyPollmode

    +

    The pollmode within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_proximity.html b/static/libical-glib/method.Value.get_proximity.html new file mode 100644 index 00000000..f72c5cc1 --- /dev/null +++ b/static/libical-glib/method.Value.get_proximity.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyProximity
    +i_cal_value_get_proximity (
    +  const ICalValue* val
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the val of kind I_CAL_PROXIMITY_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyProximity

    +

    The value of the val of type ICalPropertyProximity.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_query.html b/static/libical-glib/method.Value.get_query.html new file mode 100644 index 00000000..e0239212 --- /dev/null +++ b/static/libical-glib/method.Value.get_query.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_query

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_query (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the query of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The query within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_querylevel.html b/static/libical-glib/method.Value.get_querylevel.html new file mode 100644 index 00000000..36c13ea8 --- /dev/null +++ b/static/libical-glib/method.Value.get_querylevel.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyQuerylevel
    +i_cal_value_get_querylevel (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the querylevel of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyQuerylevel

    +

    The querylevel within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_recur.html b/static/libical-glib/method.Value.get_recur.html new file mode 100644 index 00000000..155acad5 --- /dev/null +++ b/static/libical-glib/method.Value.get_recur.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_recur + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_recur

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrence*
    +i_cal_value_get_recur (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the recur of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrence

    +

    The recur within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_requeststatus.html b/static/libical-glib/method.Value.get_requeststatus.html new file mode 100644 index 00000000..dc84b73f --- /dev/null +++ b/static/libical-glib/method.Value.get_requeststatus.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalReqstat*
    +i_cal_value_get_requeststatus (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the requeststatus of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalReqstat

    +

    The requeststatus within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_resourcetype.html b/static/libical-glib/method.Value.get_resourcetype.html new file mode 100644 index 00000000..642d54ba --- /dev/null +++ b/static/libical-glib/method.Value.get_resourcetype.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyResourcetype
    +i_cal_value_get_resourcetype (
    +  const ICalValue* val
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets value of the val of kind I_CAL_RESOURCETYPE_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyResourcetype

    +

    The value of the val of type ICalPropertyResourcetype.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_status.html b/static/libical-glib/method.Value.get_status.html new file mode 100644 index 00000000..c4f29119 --- /dev/null +++ b/static/libical-glib/method.Value.get_status.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyStatus
    +i_cal_value_get_status (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the status of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyStatus

    +

    The status within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_string.html b/static/libical-glib/method.Value.get_string.html new file mode 100644 index 00000000..0d2156f8 --- /dev/null +++ b/static/libical-glib/method.Value.get_string.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_string (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the string of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_taskmode.html b/static/libical-glib/method.Value.get_taskmode.html new file mode 100644 index 00000000..ac065d3b --- /dev/null +++ b/static/libical-glib/method.Value.get_taskmode.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyTaskmode
    +i_cal_value_get_taskmode (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the taskmode of ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyTaskmode

    +

    The taskmode within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_text.html b/static/libical-glib/method.Value.get_text.html new file mode 100644 index 00000000..1c9723d8 --- /dev/null +++ b/static/libical-glib/method.Value.get_text.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_text

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_text (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the text of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The text within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_transp.html b/static/libical-glib/method.Value.get_transp.html new file mode 100644 index 00000000..7239af85 --- /dev/null +++ b/static/libical-glib/method.Value.get_transp.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_transp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyTransp
    +i_cal_value_get_transp (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the transp of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyTransp

    +

    The transp within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_trigger.html b/static/libical-glib/method.Value.get_trigger.html new file mode 100644 index 00000000..592fee3e --- /dev/null +++ b/static/libical-glib/method.Value.get_trigger.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTrigger*
    +i_cal_value_get_trigger (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the trigger of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTrigger

    +

    The trigger within ICalValue.

    +
    +
    + + + + + + + +
    The caller of the method takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_uri.html b/static/libical-glib/method.Value.get_uri.html new file mode 100644 index 00000000..115b6210 --- /dev/null +++ b/static/libical-glib/method.Value.get_uri.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_uri + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_uri

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_uri (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the uri of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The uri within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_utcoffset.html b/static/libical-glib/method.Value.get_utcoffset.html new file mode 100644 index 00000000..ea871abd --- /dev/null +++ b/static/libical-glib/method.Value.get_utcoffset.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_utcoffset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_utcoffset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_value_get_utcoffset (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the utcoffset of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The utcoffset within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_x.html b/static/libical-glib/method.Value.get_x.html new file mode 100644 index 00000000..5b6b74b4 --- /dev/null +++ b/static/libical-glib/method.Value.get_x.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_get_x (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the x of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The x within ICalValue.

    +
    +
    + + + + + + + +
    The data is owned by the instance.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.get_xlicclass.html b/static/libical-glib/method.Value.get_xlicclass.html new file mode 100644 index 00000000..e7fb662d --- /dev/null +++ b/static/libical-glib/method.Value.get_xlicclass.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.get_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueget_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyXlicclass
    +i_cal_value_get_xlicclass (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the xlicclass of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyXlicclass

    +

    The xlicclass within ICalValue.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.is_valid.html b/static/libical-glib/method.Value.is_valid.html new file mode 100644 index 00000000..f1563f7d --- /dev/null +++ b/static/libical-glib/method.Value.is_valid.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueis_valid

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_value_is_valid (
    +  const ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks if ICalValue is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if valid, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.isa.html b/static/libical-glib/method.Value.isa.html new file mode 100644 index 00000000..3773c7d6 --- /dev/null +++ b/static/libical-glib/method.Value.isa.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.isa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueisa

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValueKind
    +i_cal_value_isa (
    +  const ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the kind of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValueKind

    +

    The kind of value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.isa_value.html b/static/libical-glib/method.Value.isa_value.html new file mode 100644 index 00000000..7dcb338d --- /dev/null +++ b/static/libical-glib/method.Value.isa_value.html @@ -0,0 +1,362 @@ + + + + + + ICalGLib.Value.isa_value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueisa_value

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_value_isa_value (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the native part of ICalValue is an icalvalue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.reset_kind.html b/static/libical-glib/method.Value.reset_kind.html new file mode 100644 index 00000000..7c319cf9 --- /dev/null +++ b/static/libical-glib/method.Value.reset_kind.html @@ -0,0 +1,336 @@ + + + + + + ICalGLib.Value.reset_kind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValuereset_kind

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_reset_kind (
    +  ICalValue* value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Resets the kind of ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_action.html b/static/libical-glib/method.Value.set_action.html new file mode 100644 index 00000000..3e0c8448 --- /dev/null +++ b/static/libical-glib/method.Value.set_action.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_action + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_action

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_action (
    +  ICalValue* value,
    +  ICalPropertyAction v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the action in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyAction

    +

    The action value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_attach.html b/static/libical-glib/method.Value.set_attach.html new file mode 100644 index 00000000..13829994 --- /dev/null +++ b/static/libical-glib/method.Value.set_attach.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_attach

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_attach (
    +  ICalValue* value,
    +  ICalAttach* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the attach in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalAttach

    +

    The attach value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_binary.html b/static/libical-glib/method.Value.set_binary.html new file mode 100644 index 00000000..73396e57 --- /dev/null +++ b/static/libical-glib/method.Value.set_binary.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_binary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_binary

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_binary (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the binary in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The binary value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_boolean.html b/static/libical-glib/method.Value.set_boolean.html new file mode 100644 index 00000000..b0e8a643 --- /dev/null +++ b/static/libical-glib/method.Value.set_boolean.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_boolean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_boolean

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_boolean (
    +  ICalValue* value,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the boolean in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The boolean value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_busytype.html b/static/libical-glib/method.Value.set_busytype.html new file mode 100644 index 00000000..e3c9f027 --- /dev/null +++ b/static/libical-glib/method.Value.set_busytype.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_busytype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_busytype

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_busytype (
    +  ICalValue* value,
    +  ICalPropertyBusytype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the busytype in the ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyBusytype

    +

    The busytype value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_caladdress.html b/static/libical-glib/method.Value.set_caladdress.html new file mode 100644 index 00000000..c27aca01 --- /dev/null +++ b/static/libical-glib/method.Value.set_caladdress.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_caladdress + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_caladdress

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_caladdress (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the caladdress in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The caladdress value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_carlevel.html b/static/libical-glib/method.Value.set_carlevel.html new file mode 100644 index 00000000..7c156a34 --- /dev/null +++ b/static/libical-glib/method.Value.set_carlevel.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_carlevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_carlevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_carlevel (
    +  ICalValue* value,
    +  ICalPropertyCarlevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the carlevel in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCarlevel

    +

    The carlevel value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_class.html b/static/libical-glib/method.Value.set_class.html new file mode 100644 index 00000000..778c5214 --- /dev/null +++ b/static/libical-glib/method.Value.set_class.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_class

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_class (
    +  ICalValue* value,
    +  ICalProperty_Class v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the class in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalProperty_Class

    +

    The class value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_cmd.html b/static/libical-glib/method.Value.set_cmd.html new file mode 100644 index 00000000..7c43f00e --- /dev/null +++ b/static/libical-glib/method.Value.set_cmd.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_cmd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_cmd

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_cmd (
    +  ICalValue* value,
    +  ICalPropertyCmd v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the cmd in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyCmd

    +

    The cmd value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_date.html b/static/libical-glib/method.Value.set_date.html new file mode 100644 index 00000000..7c7f09ac --- /dev/null +++ b/static/libical-glib/method.Value.set_date.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_date

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_date (
    +  ICalValue* value,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the date in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The date value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_datetime.html b/static/libical-glib/method.Value.set_datetime.html new file mode 100644 index 00000000..cc64e208 --- /dev/null +++ b/static/libical-glib/method.Value.set_datetime.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_datetime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_datetime

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_datetime (
    +  ICalValue* value,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the datetime in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The datetime value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_datetimedate.html b/static/libical-glib/method.Value.set_datetimedate.html new file mode 100644 index 00000000..3b34a037 --- /dev/null +++ b/static/libical-glib/method.Value.set_datetimedate.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_datetimedate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_datetimedate

    +
    + +
    +
    +

    since: 3.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_datetimedate (
    +  ICalValue* value,
    +  ICalTime* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the datetimedate (DATE-TIME or DATE) in the ICalValue.

    +
    + +
    + +

    Available since: 3.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTime

    +

    The datetimedate (DATE-TIME or DATE) value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_datetimeperiod.html b/static/libical-glib/method.Value.set_datetimeperiod.html new file mode 100644 index 00000000..bedc182e --- /dev/null +++ b/static/libical-glib/method.Value.set_datetimeperiod.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_datetimeperiod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_datetimeperiod

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_datetimeperiod (
    +  ICalValue* value,
    +  ICalDatetimeperiod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the datetimeperiod in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDatetimeperiod

    +

    The datetimeperiod value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_duration.html b/static/libical-glib/method.Value.set_duration.html new file mode 100644 index 00000000..0857d90d --- /dev/null +++ b/static/libical-glib/method.Value.set_duration.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_duration

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_duration (
    +  ICalValue* value,
    +  ICalDuration* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the duration in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalDuration

    +

    The duration value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_float.html b/static/libical-glib/method.Value.set_float.html new file mode 100644 index 00000000..ce4493b0 --- /dev/null +++ b/static/libical-glib/method.Value.set_float.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_float + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_float

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_float (
    +  ICalValue* value,
    +  gdouble v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the float in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gdouble

    +

    The float value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_geo.html b/static/libical-glib/method.Value.set_geo.html new file mode 100644 index 00000000..2cc30b94 --- /dev/null +++ b/static/libical-glib/method.Value.set_geo.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_geo

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_geo (
    +  ICalValue* value,
    +  ICalGeo* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the geo in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalGeo

    +

    The geo value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_integer.html b/static/libical-glib/method.Value.set_integer.html new file mode 100644 index 00000000..30367fbb --- /dev/null +++ b/static/libical-glib/method.Value.set_integer.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_integer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_integer

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_integer (
    +  ICalValue* value,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the integer in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The integer value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_method.html b/static/libical-glib/method.Value.set_method.html new file mode 100644 index 00000000..12b9de65 --- /dev/null +++ b/static/libical-glib/method.Value.set_method.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_method

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_method (
    +  ICalValue* value,
    +  ICalPropertyMethod v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the method in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyMethod

    +

    The method value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_parent.html b/static/libical-glib/method.Value.set_parent.html new file mode 100644 index 00000000..4ba49f3e --- /dev/null +++ b/static/libical-glib/method.Value.set_parent.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_parent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_parent

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_parent (
    +  ICalValue* value,
    +  ICalProperty* property
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the parent property of a value.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    property
    +
    +

    Type: ICalProperty

    +

    The parent ICalProperty.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_participanttype.html b/static/libical-glib/method.Value.set_participanttype.html new file mode 100644 index 00000000..c0478b2f --- /dev/null +++ b/static/libical-glib/method.Value.set_participanttype.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_participanttype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_participanttype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_participanttype (
    +  ICalValue* val,
    +  ICalPropertyParticipanttype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to val of kind I_CAL_PARTICIPANTTYPE_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyParticipanttype

    +

    The value of type ICalPropertyParticipanttype to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_period.html b/static/libical-glib/method.Value.set_period.html new file mode 100644 index 00000000..9672cc95 --- /dev/null +++ b/static/libical-glib/method.Value.set_period.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_period

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_period (
    +  ICalValue* value,
    +  ICalPeriod* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the period in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPeriod

    +

    The period value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_pollcompletion.html b/static/libical-glib/method.Value.set_pollcompletion.html new file mode 100644 index 00000000..3db523be --- /dev/null +++ b/static/libical-glib/method.Value.set_pollcompletion.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_pollcompletion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_pollcompletion

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_pollcompletion (
    +  ICalValue* value,
    +  ICalPropertyPollcompletion v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollcompletion in the ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollcompletion

    +

    The pollcompletion value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_pollmode.html b/static/libical-glib/method.Value.set_pollmode.html new file mode 100644 index 00000000..84b762b6 --- /dev/null +++ b/static/libical-glib/method.Value.set_pollmode.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_pollmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_pollmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_pollmode (
    +  ICalValue* value,
    +  ICalPropertyPollmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the pollmode in the ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyPollmode

    +

    The pollmode value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_proximity.html b/static/libical-glib/method.Value.set_proximity.html new file mode 100644 index 00000000..d1dbae5f --- /dev/null +++ b/static/libical-glib/method.Value.set_proximity.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_proximity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_proximity

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_proximity (
    +  ICalValue* val,
    +  ICalPropertyProximity v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to val of kind I_CAL_PROXIMITY_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyProximity

    +

    The value of type ICalPropertyProximity to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_query.html b/static/libical-glib/method.Value.set_query.html new file mode 100644 index 00000000..14b231f4 --- /dev/null +++ b/static/libical-glib/method.Value.set_query.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_query + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_query

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_query (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the query in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The query value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_querylevel.html b/static/libical-glib/method.Value.set_querylevel.html new file mode 100644 index 00000000..eb0ba607 --- /dev/null +++ b/static/libical-glib/method.Value.set_querylevel.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_querylevel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_querylevel

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_querylevel (
    +  ICalValue* value,
    +  ICalPropertyQuerylevel v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the querylevel in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyQuerylevel

    +

    The querylevel value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_recur.html b/static/libical-glib/method.Value.set_recur.html new file mode 100644 index 00000000..f90ae5c4 --- /dev/null +++ b/static/libical-glib/method.Value.set_recur.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_recur + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_recur

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_recur (
    +  ICalValue* value,
    +  ICalRecurrence* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the recur in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalRecurrence

    +

    The recur value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_requeststatus.html b/static/libical-glib/method.Value.set_requeststatus.html new file mode 100644 index 00000000..5102d594 --- /dev/null +++ b/static/libical-glib/method.Value.set_requeststatus.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_requeststatus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_requeststatus

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_requeststatus (
    +  ICalValue* value,
    +  ICalReqstat* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the requeststatus in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalReqstat

    +

    The requeststatus value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_resourcetype.html b/static/libical-glib/method.Value.set_resourcetype.html new file mode 100644 index 00000000..04abb527 --- /dev/null +++ b/static/libical-glib/method.Value.set_resourcetype.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_resourcetype + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_resourcetype

    +
    + +
    +
    +

    unstable since: 3.1

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_resourcetype (
    +  ICalValue* val,
    +  ICalPropertyResourcetype v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets value v to val of kind I_CAL_RESOURCETYPE_VALUE.

    +
    + +
    + +

    Available since: 3.1

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyResourcetype

    +

    The value of type ICalPropertyResourcetype to be set.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_status.html b/static/libical-glib/method.Value.set_status.html new file mode 100644 index 00000000..5ec2ea83 --- /dev/null +++ b/static/libical-glib/method.Value.set_status.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_status + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_status

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_status (
    +  ICalValue* value,
    +  ICalPropertyStatus v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the status in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyStatus

    +

    The status value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_string.html b/static/libical-glib/method.Value.set_string.html new file mode 100644 index 00000000..8e4b3f2e --- /dev/null +++ b/static/libical-glib/method.Value.set_string.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_string

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_string (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the string in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The string value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_taskmode.html b/static/libical-glib/method.Value.set_taskmode.html new file mode 100644 index 00000000..a876825a --- /dev/null +++ b/static/libical-glib/method.Value.set_taskmode.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_taskmode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_taskmode

    +
    + +
    +
    +

    since: 2.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_taskmode (
    +  ICalValue* value,
    +  ICalPropertyTaskmode v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the taskmode in the ICalValue.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTaskmode

    +

    The taskmode value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_text.html b/static/libical-glib/method.Value.set_text.html new file mode 100644 index 00000000..d9410767 --- /dev/null +++ b/static/libical-glib/method.Value.set_text.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_text

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_text (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the text in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The text value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_transp.html b/static/libical-glib/method.Value.set_transp.html new file mode 100644 index 00000000..a58657ee --- /dev/null +++ b/static/libical-glib/method.Value.set_transp.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_transp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_transp

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_transp (
    +  ICalValue* value,
    +  ICalPropertyTransp v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the transp in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyTransp

    +

    The transp value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_trigger.html b/static/libical-glib/method.Value.set_trigger.html new file mode 100644 index 00000000..2ea1b7c7 --- /dev/null +++ b/static/libical-glib/method.Value.set_trigger.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_trigger

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_trigger (
    +  ICalValue* value,
    +  ICalTrigger* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the trigger in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalTrigger

    +

    The trigger value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_uri.html b/static/libical-glib/method.Value.set_uri.html new file mode 100644 index 00000000..a514e50c --- /dev/null +++ b/static/libical-glib/method.Value.set_uri.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_uri + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_uri

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_uri (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the uri in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The uri value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_utcoffset.html b/static/libical-glib/method.Value.set_utcoffset.html new file mode 100644 index 00000000..89a768b6 --- /dev/null +++ b/static/libical-glib/method.Value.set_utcoffset.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_utcoffset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_utcoffset

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_utcoffset (
    +  ICalValue* value,
    +  gint v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the utcoffset in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: gint

    +

    The utcoffset value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_x.html b/static/libical-glib/method.Value.set_x.html new file mode 100644 index 00000000..736ade91 --- /dev/null +++ b/static/libical-glib/method.Value.set_x.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_x + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_x

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_x (
    +  ICalValue* value,
    +  const gchar* v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the x in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: const gchar*

    +

    The x value.

    + + + + + + + + + + +
    The data is owned by the caller of the method.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/method.Value.set_xlicclass.html b/static/libical-glib/method.Value.set_xlicclass.html new file mode 100644 index 00000000..54377709 --- /dev/null +++ b/static/libical-glib/method.Value.set_xlicclass.html @@ -0,0 +1,369 @@ + + + + + + ICalGLib.Value.set_xlicclass + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Method

    +

    ICalGLibValueset_xlicclass

    +
    + +
    +
    +

    since: 1.0

    +
    + +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_value_set_xlicclass (
    +  ICalValue* value,
    +  ICalPropertyXlicclass v
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the xlicclass in the ICalValue.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    v
    +
    +

    Type: ICalPropertyXlicclass

    +

    The xlicclass value.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/opensearch.xml b/static/libical-glib/opensearch.xml new file mode 100644 index 00000000..c3ec97b6 --- /dev/null +++ b/static/libical-glib/opensearch.xml @@ -0,0 +1 @@ +ICalGLibICalGLib-3.0 Reference ManualUTF-8https://libical.github.io/libical/libical-glib/ \ No newline at end of file diff --git a/static/libical-glib/property.Object.always-destroy.html b/static/libical-glib/property.Object.always-destroy.html new file mode 100644 index 00000000..802f2464 --- /dev/null +++ b/static/libical-glib/property.Object.always-destroy.html @@ -0,0 +1,194 @@ + + + + + + ICalGLib.Object:always-destroy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Property

    +

    ICalGLibObject:always-destroy

    +
    + +
    +
    +

    unstable since: 3.0.11

    +
    +
    +

    + Declaration + +

    + +
    +
    property always-destroy: gboolean [ read, write ]
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Whether free the native libical structure on ICalObjects finalize even +if the object has set an owner.

    +
    + +
    + + + + + + + + + +
    Type:gboolean
    Available since:3.0.11
    +
    + + +
    + + + + + + + + +
    Default valueFALSE
    Getter methodi_cal_object_get_always_destroy()
    Setter methodi_cal_object_set_always_destroy()
    +
    + +
    + +
    +

    + Flags + +

    + +
    + + + + + +
    Readableyes
    Writableyes
    Constructno
    Construct onlyno
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/property.Object.is-global-memory.html b/static/libical-glib/property.Object.is-global-memory.html new file mode 100644 index 00000000..c6d722d2 --- /dev/null +++ b/static/libical-glib/property.Object.is-global-memory.html @@ -0,0 +1,192 @@ + + + + + + ICalGLib.Object:is-global-memory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Property

    +

    ICalGLibObject:is-global-memory

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + +

    + +
    +
    property is-global-memory: gboolean [ read, write, construct-only ]
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Whether the native libical structure is from a global shared memory. +If TRUE, then it is not freed on ICalObjects finalize.

    +
    + +
    + + + + + + + + + +
    Type:gboolean
    Available since:3.0
    +
    + + +
    + + + + + + +
    Default valueFALSE
    Getter methodi_cal_object_get_is_global_memory()
    +
    + +
    + +
    +

    + Flags + +

    + +
    + + + + + +
    Readableyes
    Writableyes
    Constructno
    Construct onlyyes
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/property.Object.native-destroy-func.html b/static/libical-glib/property.Object.native-destroy-func.html new file mode 100644 index 00000000..b2e6dd0e --- /dev/null +++ b/static/libical-glib/property.Object.native-destroy-func.html @@ -0,0 +1,191 @@ + + + + + + ICalGLib.Object:native-destroy-func + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Property

    +

    ICalGLibObject:native-destroy-func

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + +

    + +
    +
    property native-destroy-func: gpointer [ read, write ]
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    GDestroyNotify function to use to destroy the native libical pointer.

    +
    + +
    + + + + + + + + + +
    Type:gpointer
    Available since:3.0
    +
    + + + + +
    + +
    +

    + Flags + +

    + +
    + + + + + +
    Readableyes
    Writableyes
    Constructno
    Construct onlyno
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/property.Object.native.html b/static/libical-glib/property.Object.native.html new file mode 100644 index 00000000..b5107149 --- /dev/null +++ b/static/libical-glib/property.Object.native.html @@ -0,0 +1,189 @@ + + + + + + ICalGLib.Object:native + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Property

    +

    ICalGLibObject:native

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + +

    + +
    +
    property native: gpointer [ read, write, construct-only ]
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The native libical structure for this ICalObject.

    +
    + +
    + + + + + + + + + +
    Type:gpointer
    Available since:3.0
    +
    + + +
    + + + + +
    Getter methodi_cal_object_get_native()
    +
    + +
    + +
    +

    + Flags + +

    + +
    + + + + + +
    Readableyes
    Writableyes
    Constructno
    Construct onlyyes
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/property.Object.owner.html b/static/libical-glib/property.Object.owner.html new file mode 100644 index 00000000..c9fe7b0d --- /dev/null +++ b/static/libical-glib/property.Object.owner.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Object:owner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Property

    +

    ICalGLibObject:owner

    +
    + +
    +
    +

    since: 3.0

    +
    +
    +

    + Declaration + +

    + +
    +
    property owner: GObject.Object [ read, write ]
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Owner of the native libical structure. If set, then it is +responsible for a free of the native libical structure.

    +
    + +
    + + + + + + + + + +
    Type:GObject
    Available since:3.0
    +
    + + +
    + + + + +
    Setter methodi_cal_object_set_owner()
    +
    + +
    + +
    +

    + Flags + +

    + +
    + + + + + +
    Readableyes
    Writableyes
    Constructno
    Construct onlyno
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/search.js b/static/libical-glib/search.js new file mode 100644 index 00000000..29c204f9 --- /dev/null +++ b/static/libical-glib/search.js @@ -0,0 +1,417 @@ +// SPDX-FileCopyrightText: 2021 GNOME Foundation +// +// SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later + +(function() { + +const QUERY_TYPES = [ + "alias", + "bitfield", + "callback", + "class", + "constant", + "content", + "ctor", + "domain", + "enum", + "function_macro", + "function", + "interface", + "method", + "property", + "record", + "signal", + "type_func", + "union", + "vfunc", +]; +const QUERY_PATTERN = new RegExp("^(" + QUERY_TYPES.join('|') + ")\\s*:\\s*", 'i'); + +const TYPE_NAMES = { + "alias": "alias", + "bitfield": "flags", + "callback": "callback", + "class": "class", + "constant": "constant", + "content": "content", + "ctor": "constructor", + "domain": "error", + "enum": "enum", + "function_macro": "macro", + "function": "function", + "interface": "interface", + "method": "method", + "property": "property", + "record": "struct", + "signal": "signal", + "type_func": "function", + "union": "union", + "vfunc": "vfunc", +}; + +const TYPE_CLASSES = { + "alias": "alias", + "bitfield": "flags", + "callback": "callback", + "class": "class", + "constant": "constant", + "content": "extra_content", + "ctor": "ctor", + "domain": "domain", + "enum": "enum", + "function_macro": "function_macro", + "function": "function", + "interface": "interface", + "method": "method", + "property": "property", + "record": "record", + "signal": "signal", + "type_func": "type_func", + "union": "union", + "vfunc": "vfunc", +}; + +const fzy = window.fzy; +const searchParams = getSearchParams(); +const refs = { + input: null, + form: null, + search: null, + main: null, + toc: null, +}; + +let searchIndex = undefined; +let searchResults = []; + +// Exports +window.onInitSearch = onInitSearch; + +/* Event handlers */ + +function onInitSearch() { + fetchJSON('index.json', onDidLoadSearchIndex); +} + +function onDidLoadSearchIndex(data) { + searchIndex = new SearchIndex(data) + + refs.input = document.querySelector("#search-input"); + refs.form = document.querySelector("#search-form"); + refs.search = document.querySelector("#search"); + refs.main = document.querySelector("#main"); + refs.toc = document.querySelector("#toc"); + + attachInputHandlers(); + + if (searchParams.q) { + search(searchParams.q); + } +} + +function getNakedUrl() { + return window.location.href.split("?")[0].split("#")[0]; +} + +function onDidSearch() { + const query = refs.input.value; + if (query) { + search(query); + } + else { + hideSearchResults(); + } +} + +function onDidSubmit(ev) { + ev.preventDefault(); + if (searchResults.length == 1) { + window.location.href = searchResults[0].href; + } +} + +function attachInputHandlers() { + if (refs.input.value === "") { + refs.input.value === searchParams.q || ""; + } + + refs.input.addEventListener('keyup', debounce(500, onDidSearch)) + refs.form.addEventListener('submit', onDidSubmit) +} + +/* Searching */ + +function searchQuery(query) { + const q = matchQuery(query); + const docs = searchIndex.searchDocs(q.term, q.type); + + const results = docs.map(function(doc) { + return { + name: doc.name, + type: doc.type, + text: getLabelForDocument(doc, searchIndex.meta), + href: getLinkForDocument(doc), + summary: doc.summary, + deprecated: doc.deprecated, + }; + }); + + return results; +} + +function search(query) { + searchResults = searchQuery(query) + showResults(query, searchResults); +} + +/* Rendering */ + +function showSearchResults() { + addClass(refs.main, "hidden"); + if (refs.toc) { + addClass(refs.toc, "hidden"); + } + removeClass(refs.search, "hidden"); +} + +function hideSearchResults() { + addClass(refs.search, "hidden"); + removeClass(refs.main, "hidden"); + if (refs.toc) { + removeClass(refs.toc, "hidden"); + } +} + +function renderResults(query, results) { + let html = ""; + + html += "

    Results for "" + query + "" (" + results.length + ")

    " + + "
    " + + if (results.length === 0) { + html += "No results found."; + } + else { + html += "
    "; + results.forEach(function(item) { + html += "
    " + + "" + item.text + "" + + " " + TYPE_NAMES[item.type] + ""; + if (item.deprecated) { + html += " deprecated: " + item.deprecated + ""; + } + html += "
    " + + "
    " + item.summary + "
    "; + }); + html += "
    "; + } + + html += "
    "; + + return html; +} + +function showResults(query, results) { + if (window.history && typeof window.history.pushState === "function") { + let baseUrl = getNakedUrl(); + let extra = "?q=" + encodeURIComponent(refs.input.value); + window.history.replaceState(refs.input.value, "", baseUrl + extra + window.location.hash); + } + + window.title = "Results for: " + query; + window.scroll({ top: 0 }) + refs.search.innerHTML = renderResults(query, results); + showSearchResults(search); +} + + +/* Search data instance */ + +function SearchIndex(searchIndex) { + this.symbols = searchIndex.symbols; + this.meta = searchIndex.meta; +} +SearchIndex.prototype.searchDocs = function searchDocs(term, type) { + const filteredSymbols = !type ? + this.symbols : + this.symbols.filter(s => s.type === type); + const results = fzy.filter(term, filteredSymbols, doc => getTextForDocument(doc, this.meta)) + return results.map(i => i.item) +} + + +/* Search metadata selectors */ + +function getLinkForDocument(doc) { + switch (doc.type) { + case "alias": return "alias." + doc.name + ".html"; + case "bitfield": return "flags." + doc.name + ".html"; + case "callback": return "callback." + doc.name + ".html"; + case "class": return "class." + doc.name + ".html"; + case "class_method": return "class_method." + doc.struct_for + "." + doc.name + ".html"; + case "constant": return "const." + doc.name + ".html"; + case "content": return doc.href; + case "ctor": return "ctor." + doc.type_name + "." + doc.name + ".html"; + case "domain": return "error." + doc.name + ".html"; + case "enum": return "enum." + doc.name + ".html"; + case "function": return "func." + doc.name + ".html"; + case "function_macro": return "func." + doc.name + ".html"; + case "interface": return "iface." + doc.name + ".html"; + case "method": return "method." + doc.type_name + "." + doc.name + ".html"; + case "property": return "property." + doc.type_name + "." + doc.name + ".html"; + case "record": return "struct." + doc.name + ".html"; + case "signal": return "signal." + doc.type_name + "." + doc.name + ".html"; + case "type_func": return "type_func." + doc.type_name + "." + doc.name + ".html"; + case "union": return "union." + doc.name + ".html"; + case "vfunc": return "vfunc." + doc.type_name + "." + doc.name + ".html"; + } + return null; +} + +function getLabelForDocument(doc, meta) { + switch (doc.type) { + case "alias": + case "bitfield": + case "callback": + case "class": + case "domain": + case "enum": + case "interface": + case "record": + case "union": + return "" + doc.ctype + ""; + + case "class_method": + case "constant": + case "ctor": + case "function": + case "function_macro": + case "method": + case "type_func": + return "" + doc.ident + ""; + + // NOTE: meta.ns added for more consistent results, otherwise + // searching for "Button" would return all signals, properties + // and vfuncs (eg "Button.clicked") before the actual object + // (eg "GtkButton") because "Button" matches higher with starting + // sequences. + case "property": + return "" + meta.ns + doc.type_name + ":" + doc.name + ""; + case "signal": + return "" + meta.ns + doc.type_name + "::" + doc.name + ""; + case "vfunc": + return "" + meta.ns + doc.type_name + "." + doc.name + ""; + + case "content": + return doc.name; + } + + return null; +} + +function getTextForDocument(doc, meta) { + switch (doc.type) { + case "alias": + case "bitfield": + case "callback": + case "class": + case "domain": + case "enum": + case "interface": + case "record": + case "union": + return doc.ctype; + + case "class_method": + case "constant": + case "ctor": + case "function": + case "function_macro": + case "method": + case "type_func": + return doc.ident; + + // NOTE: meta.ns added for more consistent results, otherwise + // searching for "Button" would return all signals, properties + // and vfuncs (eg "Button.clicked") before the actual object + // (eg "GtkButton") because "Button" matches higher with starting + // sequences. + case "property": + return meta.ns + doc.type_name + ":" + doc.name; + case "signal": + return meta.ns + doc.type_name + "::" + doc.name; + case "vfunc": + return meta.ns + doc.type_name + "." + doc.name; + + case "content": + return doc.name; + } + + return null; +} + + +// Helpers + +function fetchJSON(url, callback) { + const request = new XMLHttpRequest(); + request.open('GET', url, true); + request.onreadystatechange = function() { + if (request.readyState === XMLHttpRequest.DONE) { + const status = request.status; + + if (status === 0 || (status >= 200 && status < 400)) { + callback(JSON.parse(request.responseText)); + } + } + } + request.send(null); +} + +function getSearchParams() { + const params = {}; + window.location.search.substring(1).split('&') + .map(function(s) { + const pair = s.split('='); + params[decodeURIComponent(pair[0])] = + typeof pair[1] === 'undefined' ? null : decodeURIComponent(pair[1].replace(/\+/g, '%20')); + }); + return params; +} + +function matchQuery(input) { + let type = null + let term = input + + const matches = term.match(QUERY_PATTERN); + if (matches) { + type = matches[1]; + term = term.substring(matches[0].length); + } + + // Remove all spaces, fzy will handle things gracefully. + term = term.replace(/\s+/g, '') + + return { type: type, term: term } +} + +function debounce(delay, fn) { + let timeout; + let savedArgs + + return function() { + const self = this; + savedArgs = Array.prototype.slice.call(arguments); + + if (timeout) { + clearTimeout(timeout); + } + + timeout = setTimeout(function() { + fn.apply(self, savedArgs) + timeout = undefined + }, delay) + } +} + +})() diff --git a/static/libical-glib/solarized-dark.css b/static/libical-glib/solarized-dark.css new file mode 100644 index 00000000..2edc59b8 --- /dev/null +++ b/static/libical-glib/solarized-dark.css @@ -0,0 +1,88 @@ +/* + * SPDX-FileCopyrightText: 2014 John Louis Del Rosario, Hank Gay, John Mastro, Brandon Bennett + * SPDX-License-Identifier: MIT + */ + +pre { line-height: 125%; } +td.linenos pre { color: #586e75; background-color: #073642; padding-left: 5px; padding-right: 5px; } +span.linenos { color: #586e75; background-color: #073642; padding-left: 5px; padding-right: 5px; } +td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +.codehilite .hll { background-color: #073642 } +.codehilite { background: #002b36; color: #839496 } +.codehilite .c { color: #586e75; font-style: italic } /* Comment */ +.codehilite .err { color: #839496; background-color: #dc322f } /* Error */ +.codehilite .esc { color: #839496 } /* Escape */ +.codehilite .g { color: #839496 } /* Generic */ +.codehilite .k { color: #859900 } /* Keyword */ +.codehilite .l { color: #839496 } /* Literal */ +.codehilite .n { color: #839496 } /* Name */ +.codehilite .o { color: #586e75 } /* Operator */ +.codehilite .x { color: #839496 } /* Other */ +.codehilite .p { color: #839496 } /* Punctuation */ +.codehilite .ch { color: #586e75; font-style: italic } /* Comment.Hashbang */ +.codehilite .cm { color: #586e75; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #d33682 } /* Comment.Preproc */ +.codehilite .cpf { color: #586e75 } /* Comment.PreprocFile */ +.codehilite .c1 { color: #586e75; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #586e75; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #dc322f } /* Generic.Deleted */ +.codehilite .ge { color: #839496; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #dc322f } /* Generic.Error */ +.codehilite .gh { color: #839496; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #859900 } /* Generic.Inserted */ +.codehilite .go { color: #839496 } /* Generic.Output */ +.codehilite .gp { color: #839496 } /* Generic.Prompt */ +.codehilite .gs { color: #839496; font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #839496; text-decoration: underline } /* Generic.Subheading */ +.codehilite .gt { color: #268bd2 } /* Generic.Traceback */ +.codehilite .kc { color: #2aa198 } /* Keyword.Constant */ +.codehilite .kd { color: #2aa198 } /* Keyword.Declaration */ +.codehilite .kn { color: #cb4b16 } /* Keyword.Namespace */ +.codehilite .kp { color: #859900 } /* Keyword.Pseudo */ +.codehilite .kr { color: #859900 } /* Keyword.Reserved */ +.codehilite .kt { color: #b58900 } /* Keyword.Type */ +.codehilite .ld { color: #839496 } /* Literal.Date */ +.codehilite .m { color: #2aa198 } /* Literal.Number */ +.codehilite .s { color: #2aa198 } /* Literal.String */ +.codehilite .na { color: #839496 } /* Name.Attribute */ +.codehilite .nb { color: #268bd2 } /* Name.Builtin */ +.codehilite .nc { color: #268bd2 } /* Name.Class */ +.codehilite .no { color: #268bd2 } /* Name.Constant */ +.codehilite .nd { color: #268bd2 } /* Name.Decorator */ +.codehilite .ni { color: #268bd2 } /* Name.Entity */ +.codehilite .ne { color: #268bd2 } /* Name.Exception */ +.codehilite .nf { color: #268bd2 } /* Name.Function */ +.codehilite .nl { color: #268bd2 } /* Name.Label */ +.codehilite .nn { color: #268bd2 } /* Name.Namespace */ +.codehilite .nx { color: #839496 } /* Name.Other */ +.codehilite .py { color: #839496 } /* Name.Property */ +.codehilite .nt { color: #268bd2 } /* Name.Tag */ +.codehilite .nv { color: #268bd2 } /* Name.Variable */ +.codehilite .ow { color: #859900 } /* Operator.Word */ +.codehilite .w { color: #839496 } /* Text.Whitespace */ +.codehilite .mb { color: #2aa198 } /* Literal.Number.Bin */ +.codehilite .mf { color: #2aa198 } /* Literal.Number.Float */ +.codehilite .mh { color: #2aa198 } /* Literal.Number.Hex */ +.codehilite .mi { color: #2aa198 } /* Literal.Number.Integer */ +.codehilite .mo { color: #2aa198 } /* Literal.Number.Oct */ +.codehilite .sa { color: #2aa198 } /* Literal.String.Affix */ +.codehilite .sb { color: #2aa198 } /* Literal.String.Backtick */ +.codehilite .sc { color: #2aa198 } /* Literal.String.Char */ +.codehilite .dl { color: #2aa198 } /* Literal.String.Delimiter */ +.codehilite .sd { color: #586e75 } /* Literal.String.Doc */ +.codehilite .s2 { color: #2aa198 } /* Literal.String.Double */ +.codehilite .se { color: #2aa198 } /* Literal.String.Escape */ +.codehilite .sh { color: #2aa198 } /* Literal.String.Heredoc */ +.codehilite .si { color: #2aa198 } /* Literal.String.Interpol */ +.codehilite .sx { color: #2aa198 } /* Literal.String.Other */ +.codehilite .sr { color: #cb4b16 } /* Literal.String.Regex */ +.codehilite .s1 { color: #2aa198 } /* Literal.String.Single */ +.codehilite .ss { color: #2aa198 } /* Literal.String.Symbol */ +.codehilite .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ +.codehilite .fm { color: #268bd2 } /* Name.Function.Magic */ +.codehilite .vc { color: #268bd2 } /* Name.Variable.Class */ +.codehilite .vg { color: #268bd2 } /* Name.Variable.Global */ +.codehilite .vi { color: #268bd2 } /* Name.Variable.Instance */ +.codehilite .vm { color: #268bd2 } /* Name.Variable.Magic */ +.codehilite .il { color: #2aa198 } /* Literal.Number.Integer.Long */ diff --git a/static/libical-glib/solarized-light.css b/static/libical-glib/solarized-light.css new file mode 100644 index 00000000..f1fa80f7 --- /dev/null +++ b/static/libical-glib/solarized-light.css @@ -0,0 +1,88 @@ +/* + * SPDX-FileCopyrightText: 2014 John Louis Del Rosario, Hank Gay, John Mastro, Brandon Bennett + * SPDX-License-Identifier: MIT + */ + +pre { line-height: 125%; } +td.linenos pre { color: #93a1a1; background-color: #eee8d5; padding-left: 5px; padding-right: 5px; } +span.linenos { color: #93a1a1; background-color: #eee8d5; padding-left: 5px; padding-right: 5px; } +td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +.codehilite .hll { background-color: #eee8d5 } +.codehilite { background: #fdf6e3; color: #657b83 } +.codehilite .c { color: #93a1a1; font-style: italic } /* Comment */ +.codehilite .err { color: #657b83; background-color: #dc322f } /* Error */ +.codehilite .esc { color: #657b83 } /* Escape */ +.codehilite .g { color: #657b83 } /* Generic */ +.codehilite .k { color: #859900 } /* Keyword */ +.codehilite .l { color: #657b83 } /* Literal */ +.codehilite .n { color: #657b83 } /* Name */ +.codehilite .o { color: #93a1a1 } /* Operator */ +.codehilite .x { color: #657b83 } /* Other */ +.codehilite .p { color: #657b83 } /* Punctuation */ +.codehilite .ch { color: #93a1a1; font-style: italic } /* Comment.Hashbang */ +.codehilite .cm { color: #93a1a1; font-style: italic } /* Comment.Multiline */ +.codehilite .cp { color: #d33682 } /* Comment.Preproc */ +.codehilite .cpf { color: #93a1a1 } /* Comment.PreprocFile */ +.codehilite .c1 { color: #93a1a1; font-style: italic } /* Comment.Single */ +.codehilite .cs { color: #93a1a1; font-style: italic } /* Comment.Special */ +.codehilite .gd { color: #dc322f } /* Generic.Deleted */ +.codehilite .ge { color: #657b83; font-style: italic } /* Generic.Emph */ +.codehilite .gr { color: #dc322f } /* Generic.Error */ +.codehilite .gh { color: #657b83; font-weight: bold } /* Generic.Heading */ +.codehilite .gi { color: #859900 } /* Generic.Inserted */ +.codehilite .go { color: #657b83 } /* Generic.Output */ +.codehilite .gp { color: #657b83 } /* Generic.Prompt */ +.codehilite .gs { color: #657b83; font-weight: bold } /* Generic.Strong */ +.codehilite .gu { color: #657b83; text-decoration: underline } /* Generic.Subheading */ +.codehilite .gt { color: #268bd2 } /* Generic.Traceback */ +.codehilite .kc { color: #2aa198 } /* Keyword.Constant */ +.codehilite .kd { color: #2aa198 } /* Keyword.Declaration */ +.codehilite .kn { color: #cb4b16 } /* Keyword.Namespace */ +.codehilite .kp { color: #859900 } /* Keyword.Pseudo */ +.codehilite .kr { color: #859900 } /* Keyword.Reserved */ +.codehilite .kt { color: #b58900 } /* Keyword.Type */ +.codehilite .ld { color: #657b83 } /* Literal.Date */ +.codehilite .m { color: #2aa198 } /* Literal.Number */ +.codehilite .s { color: #2aa198 } /* Literal.String */ +.codehilite .na { color: #657b83 } /* Name.Attribute */ +.codehilite .nb { color: #268bd2 } /* Name.Builtin */ +.codehilite .nc { color: #268bd2 } /* Name.Class */ +.codehilite .no { color: #268bd2 } /* Name.Constant */ +.codehilite .nd { color: #268bd2 } /* Name.Decorator */ +.codehilite .ni { color: #268bd2 } /* Name.Entity */ +.codehilite .ne { color: #268bd2 } /* Name.Exception */ +.codehilite .nf { color: #268bd2 } /* Name.Function */ +.codehilite .nl { color: #268bd2 } /* Name.Label */ +.codehilite .nn { color: #268bd2 } /* Name.Namespace */ +.codehilite .nx { color: #657b83 } /* Name.Other */ +.codehilite .py { color: #657b83 } /* Name.Property */ +.codehilite .nt { color: #268bd2 } /* Name.Tag */ +.codehilite .nv { color: #268bd2 } /* Name.Variable */ +.codehilite .ow { color: #859900 } /* Operator.Word */ +.codehilite .w { color: #657b83 } /* Text.Whitespace */ +.codehilite .mb { color: #2aa198 } /* Literal.Number.Bin */ +.codehilite .mf { color: #2aa198 } /* Literal.Number.Float */ +.codehilite .mh { color: #2aa198 } /* Literal.Number.Hex */ +.codehilite .mi { color: #2aa198 } /* Literal.Number.Integer */ +.codehilite .mo { color: #2aa198 } /* Literal.Number.Oct */ +.codehilite .sa { color: #2aa198 } /* Literal.String.Affix */ +.codehilite .sb { color: #2aa198 } /* Literal.String.Backtick */ +.codehilite .sc { color: #2aa198 } /* Literal.String.Char */ +.codehilite .dl { color: #2aa198 } /* Literal.String.Delimiter */ +.codehilite .sd { color: #93a1a1 } /* Literal.String.Doc */ +.codehilite .s2 { color: #2aa198 } /* Literal.String.Double */ +.codehilite .se { color: #2aa198 } /* Literal.String.Escape */ +.codehilite .sh { color: #2aa198 } /* Literal.String.Heredoc */ +.codehilite .si { color: #2aa198 } /* Literal.String.Interpol */ +.codehilite .sx { color: #2aa198 } /* Literal.String.Other */ +.codehilite .sr { color: #cb4b16 } /* Literal.String.Regex */ +.codehilite .s1 { color: #2aa198 } /* Literal.String.Single */ +.codehilite .ss { color: #2aa198 } /* Literal.String.Symbol */ +.codehilite .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ +.codehilite .fm { color: #268bd2 } /* Name.Function.Magic */ +.codehilite .vc { color: #268bd2 } /* Name.Variable.Class */ +.codehilite .vg { color: #268bd2 } /* Name.Variable.Global */ +.codehilite .vi { color: #268bd2 } /* Name.Variable.Instance */ +.codehilite .vm { color: #268bd2 } /* Name.Variable.Magic */ +.codehilite .il { color: #2aa198 } /* Literal.Number.Integer.Long */ diff --git a/static/libical-glib/struct._Array.html b/static/libical-glib/struct._Array.html new file mode 100644 index 00000000..27dbb4c8 --- /dev/null +++ b/static/libical-glib/struct._Array.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Array + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Array

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalArray {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Attach.html b/static/libical-glib/struct._Attach.html new file mode 100644 index 00000000..c74481ba --- /dev/null +++ b/static/libical-glib/struct._Attach.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Attach + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Attach

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalAttach {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._CompIter.html b/static/libical-glib/struct._CompIter.html new file mode 100644 index 00000000..50fe08c4 --- /dev/null +++ b/static/libical-glib/struct._CompIter.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._CompIter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_CompIter

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalCompIter {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Component.html b/static/libical-glib/struct._Component.html new file mode 100644 index 00000000..6ace0438 --- /dev/null +++ b/static/libical-glib/struct._Component.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Component

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalComponent {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Datetimeperiod.html b/static/libical-glib/struct._Datetimeperiod.html new file mode 100644 index 00000000..f8a4e24b --- /dev/null +++ b/static/libical-glib/struct._Datetimeperiod.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Datetimeperiod + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Datetimeperiod

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalDatetimeperiod {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Duration.html b/static/libical-glib/struct._Duration.html new file mode 100644 index 00000000..1e1da50c --- /dev/null +++ b/static/libical-glib/struct._Duration.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Duration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Duration

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalDuration {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Geo.html b/static/libical-glib/struct._Geo.html new file mode 100644 index 00000000..811d6d45 --- /dev/null +++ b/static/libical-glib/struct._Geo.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Geo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Geo

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalGeo {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Parameter.html b/static/libical-glib/struct._Parameter.html new file mode 100644 index 00000000..e3b01c79 --- /dev/null +++ b/static/libical-glib/struct._Parameter.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Parameter

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalParameter {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Parser.html b/static/libical-glib/struct._Parser.html new file mode 100644 index 00000000..fe6817ca --- /dev/null +++ b/static/libical-glib/struct._Parser.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Parser + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Parser

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalParser {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Period.html b/static/libical-glib/struct._Period.html new file mode 100644 index 00000000..f25cca82 --- /dev/null +++ b/static/libical-glib/struct._Period.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Period + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Period

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalPeriod {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Property.html b/static/libical-glib/struct._Property.html new file mode 100644 index 00000000..003b0986 --- /dev/null +++ b/static/libical-glib/struct._Property.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Property

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalProperty {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._RecurIterator.html b/static/libical-glib/struct._RecurIterator.html new file mode 100644 index 00000000..be50f574 --- /dev/null +++ b/static/libical-glib/struct._RecurIterator.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._RecurIterator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_RecurIterator

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalRecurIterator {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Recurrence.html b/static/libical-glib/struct._Recurrence.html new file mode 100644 index 00000000..0ccb36e7 --- /dev/null +++ b/static/libical-glib/struct._Recurrence.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Recurrence + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Recurrence

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalRecurrence {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Reqstat.html b/static/libical-glib/struct._Reqstat.html new file mode 100644 index 00000000..56a6293e --- /dev/null +++ b/static/libical-glib/struct._Reqstat.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Reqstat + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Reqstat

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalReqstat {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Time.html b/static/libical-glib/struct._Time.html new file mode 100644 index 00000000..bc1986f0 --- /dev/null +++ b/static/libical-glib/struct._Time.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Time + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Time

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalTime {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._TimeSpan.html b/static/libical-glib/struct._TimeSpan.html new file mode 100644 index 00000000..9de92a0e --- /dev/null +++ b/static/libical-glib/struct._TimeSpan.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._TimeSpan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_TimeSpan

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalTimeSpan {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Timezone.html b/static/libical-glib/struct._Timezone.html new file mode 100644 index 00000000..0f496035 --- /dev/null +++ b/static/libical-glib/struct._Timezone.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Timezone

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalTimezone {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Trigger.html b/static/libical-glib/struct._Trigger.html new file mode 100644 index 00000000..2b09eaec --- /dev/null +++ b/static/libical-glib/struct._Trigger.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Trigger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Trigger

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalTrigger {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/struct._Value.html b/static/libical-glib/struct._Value.html new file mode 100644 index 00000000..2612ee97 --- /dev/null +++ b/static/libical-glib/struct._Value.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib._Value + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Struct

    +

    ICalGLib_Value

    +
    + +
    + +
    +

    since: 3.0

    +
    +
    +

    + Description + + +

    + +
    struct _ICalValue {
    +  ICalObject parent_instance;
    +}
    +
    +
    + +
    + No description available. +
    + + +
    +
    + Structure members + +
    + +
    +
    + +
    parent_instance
    +
    No description available.
    + +
    +
    +
    + + +
    + + +

    Available since: 3.0

    + + +
    + + +
    +
    + + + + + + + +
    +
    + + + +
    + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/style.css b/static/libical-glib/style.css new file mode 100644 index 00000000..f6a0a66a --- /dev/null +++ b/static/libical-glib/style.css @@ -0,0 +1,1040 @@ +/* + * SPDX-FileCopyrightText: 2021 GNOME Foundation + * + * SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later + */ + +@import url("solarized-light.css") (prefers-color-scheme: light); +@import url("solarized-dark.css") (prefers-color-scheme: dark); + +/********************************* + * LIGHT THEME + *********************************/ +:root { + + /* colors */ + --text-color: rgb(51, 51, 51); + --text-color-muted: rgba(51, 51, 51, 0.65); + --primary: rgb(28, 118, 228); + --body-bg: #fff; + --sidebar-primary: rgb(144, 194, 255); + --sidebar-bg: #151515; + --sidebar-selected-bg: var(--primary); + --sidebar-hover-bg: rgba(127, 127, 127, 0.2); + --sidebar-text-color: #fafafa; + --sidebar-search-bg: rgba(127, 127, 127, 0.25); + --sidebar-search-focus-bg: rgba(127, 127, 127, 0.3); + --sidebar-padding: 1.5em; + --warning-bg-color: #e5a50a; + --warning-fg-color: rgba(0, 0, 0, 0.8); + --error-bg-color: #e01b24; + --error-fg-color: #ffffff; + --accent-bg-color: #3584e4; + --accent-fg-color: #ffffff; + + /* boxes, e.g. code blocks */ + --box-bg: rgba(135, 135, 135, 0.085); + --box-radius: 0.35rem; + --box-padding: 0.75rem; + --box-margin: 0.75rem 0; + --box-text-color: #111; + + /* typography */ + --body-font-family: "Red Hat Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; + --body-font-scale: 0.95; + --body-font-size: calc(var(--body-font-scale) * clamp(16px, 1vw, 18px)); + --body-font-weight: normal; + + --monospace-font-family: "Source Code Pro", monospace; + --monospace-font-size: calc(0.86 * var(--body-font-size)); /* Monospace fonts are very different in terms of font-sizes. Adjust this value to scale it */ + + --heading-font-family: "Red Hat Display", var(--body-font-family); + --heading-weight: 900; + --heading-font-scale: 1.05; + + --heading-small-font-family: var(--heading-font-family); + --heading-small-weight: 600; + --heading-small-font-scale: 1; + + --heading-table-font-family: var(--heading-font-family); + --heading-table-weight: 600; + + --heading-docblock-color: #6d6d6d; /* docblocks have headings from source comments. we want them to differ.*/ + --heading-docblock-scale: 0.9; /* docblocks have headings from source comments. we want them to differ.*/ + + --symbol-font-family: var(--heading-font-family); + --symbol-font-weight: 500; + --symbol-font-scale: 1; + + --table-font-size: 0.92em; /* Tables often contain lots information. It's better to scale them down a big to get more sutff fitted inside */ + + --admonition-color-bg: transparent; + --admonition-font-size: 0.9rem; + --admonition-color-title--note: #00b0ff; + --admonition-color-title-bg--note: rgba(0, 176, 255, 0.1); + --admonition-color-title--important: #00bfa5; + --admonition-color-title-bg--important: rgba(0, 191, 165, 0.1); + --admonition-color-title--tip: #00c852; + --admonition-color-title-bg--tip: rgba(0, 200, 82, 0.1); + --admonition-color-title--warning: #ff9100; + --admonition-color-title-bg--warning: rgba(255, 145, 0, 0.1); + + --admonition-icon--note: url('data:image/svg+xml;charset=utf-8,'); + --admonition-icon--important: url('data:image/svg+xml;charset=utf-8,'); + --admonition-icon--tip: url('data:image/svg+xml;charset=utf-8,'); + --admonition-icon--warning: url('data:image/svg+xml;charset=utf-8,'); + + /* misc */ + --preferred-content-width: 90ch; /* The preferred width for the readable content */ + --anchor-sign: "#"; + +} + +/********************************* + * DARK THEME (overrides) + *********************************/ + @media (prefers-color-scheme: dark) { + :root { + --primary: rgb(144, 194, 255); + --text-color: #f6f6f6; + --text-color-muted: #686868; + --body-bg: #121212; + --sidebar-primary: rgb(144, 194, 255); + --sidebar-bg: #1e1e1e; + --sidebar-selected-bg: rgb(17, 112, 228); + --sidebar-text-color: #fafafa; + --box-bg: rgba(135, 135, 135, 0.1); + --box-text-color: #fff; + --heading-docblock-color: #b7b7b7; + --warning-bg-color: #cd9309; + --warning-fg-color: rgba(0, 0, 0, 0.8); + --error-bg-color: #c01c28; + --error-fg-color: #ffffff; + --accent-bg-color: #3584e4; + --accent-fg-color: #ffffff; + color-scheme: dark; + } +} + +/********************************* + * GENERAL STYLING + *********************************/ +*, +*:before, +*:after { + box-sizing: border-box; +} + +::-moz-selection { + color: white; + background: var(--primary); +} + +::selection { + color: white; + background: var(--primary); +} + +body { + font: 16px/1.5 var(--body-font-family); + font-weight: var(--body-font-weight); + font-size: var(--body-font-size); + margin: 0; + padding: 0; + position: relative; + + -webkit-font-feature-settings: "kern", "liga"; + -moz-font-feature-settings: "kern", "liga"; + font-feature-settings: "kern", "liga"; + color: var(--text-color); + background: var(--body-bg); +} + +h1, h2, h3, h4, h5, h6 { + font-family: var(--heading-font-family); + font-weight: var(--heading-weight); + margin: 1.75em 0 0.75em 0; +} + +h1 { + font-size: calc(1.75em * var(--heading-font-scale)); +} + + +header h1 { + margin-top: 0; +} + +h2 { + font-size: calc(1.4em * var(--heading-font-scale)); +} + +h3 { + font-size: calc(1.2em * var(--heading-font-scale)); +} + +header h3 { + color: var(--text-color-muted); + margin-bottom: 0; +} + +h4, h5 { + font-size: calc(1em * var(--heading-font-scale)); +} + +h6 { + font-size: calc(1em * var(--heading-small-font-scale)); + font-family: var(--heading-small-font-family); + font-weight: var(--heading-small-weight); +} + +ol, ul { + padding-left: 1rem; +} + +ul ul, ol ul, ul ol, ol ol { + margin-bottom: .6em; +} + +p { + margin: 0 0 .6em 0; +} + +a { + color: var(--primary); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +summary { + outline: none; +} + +blockquote { + border-left: 3px solid var(--primary); + background: var(--box-bg); + padding: var(--box-padding); + border-radius: var(--box-radius); + margin: var(--box--margin); +} + +span.sep::after { + content: "▸"; +} + +span.sep { + font-size: calc(0.5em * var(--monospace-font-size)); + opacity: 0.55; + padding-left: .25em; + padding-right: .25em; +} + +code, +pre { + font-family: var(--monospace-font-family); + font-size: var(--monospace-font-size); + color: var(--box-text-color); +} + +pre { + background: var(--box-bg); + padding: var(--box-padding); + border-radius: var(--box-radius); + overflow: auto; +} + +code { + background: var(--box-bg); + padding: 0 0.35em; + border-radius: 0.35rem; + word-break: break-word; +} + +a > code { + color: var(--primary); +} + + +pre pre, +pre code { + padding: 0; + margin: 0; + font-size: 1em; + background: none; + color: inherit; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + font-family: inherit; + font-weight: inherit; + font-size: 0.85em; +} + +strong, b { + font-weight: 600; +} + +/* fix alignment of images on small screen */ +img, svg { + display: block; + max-width: 100%; + height: auto; +} + +svg .node polygon, svg .node path { + transition: fill 150ms ease; + fill: var(--box-bg); + stroke: none; +} + +svg .node a { + text-decoration: none !important; +} + +svg .node a text { + fill: var(--text-color); + font-family: var(--body-font-family); +} + +svg .node.link text { + fill: var(--primary); +} + +svg .node.link:hover polygon, svg .node.link:hover path { + fill: var(--sidebar-hover-bg); +} +svg .node.link:hover text { + fill: var(--box-text-color); +} +svg .edge path { + stroke: var(--text-color); +} + +/* fix unwanted margins in tables, code, lists and blockquotes */ +li > *:first-child, +li > *:first-child > *:first-child, +li > *:first-child > *:first-child > *:first-child, +td > *:first-child, +td > *:first-child > *:first-child, +td > *:first-child > *:first-child > *:first-child, +pre > *:first-child, +pre > *:first-child > *:first-child, +pre > *:first-child > *:first-child > *:first-child, +blockquote > *:first-child, +blockquote > *:first-child > *:first-child, +blockquote > *:first-child > *:first-child > *:first-child { + margin-top: 0; +} +li > *:last-child, +li > *:last-child > *:last-child, +li > *:last-child > *:last-child > *:last-child, +td > *:last-child, +td > *:last-child > *:last-child, +td > *:last-child > *:last-child > *:last-child, +pre > *:last-child, +pre > *:last-child > *:last-child, +pre > *:last-child > *:last-child > *:last-child, +blockquote > *:last-child, +blockquote > *:last-child > *:last-child, +blockquote > *:last-child > *:last-child > *:last-child { + margin-bottom: 0; +} + +/* allow easily adding a frame around images, by appending + * #frame to the url + */ +img[src$="#frame"] { + border: 1px solid var(--text-color); +} + +/********************************* + * PAGE STRUCTURE + *********************************/ +#body-wrapper { + display: flex; + flex-wrap: nowrap; + flex-direction: row; +} + +#body-wrapper:focus { + outline: none; +} + +#main { + position: relative; + flex-grow: 1; + min-width: 0; + box-shadow: 0 0 134px rgba(0, 0, 0, 0.1); +} + +footer { + width: 100%; + display: none; +} + +/********************************* + * Button + *********************************/ + +#btn-to-top { + position: fixed; + bottom: 12px; + right: 32px; + z-index: 1000; + border-radius: 50%; + width: 42px; + height: 42px; + border: 1px solid var(--primary); + background: var(--box-bg); + color: var(--text-color); + cursor: pointer; + text-transform: none; +} + +#btn-to-top > .up-arrow { + margin-left: -2px; +} + +#btn-to-top > .up-arrow:after { + content: url(go-up-symbolic.png); +} + +/********************************* + * SIDEBAR + *********************************/ +.sidebar { + background: var(--sidebar-bg); + border-right: 1px solid var(--sidebar-bg); + min-width: 35ch; + padding: var(--sidebar-padding); + color: var(--sidebar-text-color); + position: sticky; + top: 0; + z-index: 2; + height: 100vh; + overflow-y: auto; + color-scheme: dark; +} + +.sidebar a, +.sidebar a:hover { + text-decoration: none; +} + +.sidebar .logo { + display: block; + margin: 1rem auto 1.2rem auto; + width: 50%; +} + +.sidebar .section > ul > li { + margin-right: -10px; +} + +.sidebar .generator > p { + padding-left: 0.5rem; + padding-right: 0.5rem; + font-size: 0.8em; + opacity: 0.8; + position: relative; + bottom: 0; +} + +.sidebar .section h3, .sidebar .section h5 { + text-align: left; + padding-left: 0.5rem; + padding-right: 0.5rem; + font-weight: var(--heading-weight); +} + +.sidebar .section h5 { + font-size: 1em; + margin-bottom: 0.5em; +} + +.sidebar .namespace > h3 { + margin-bottom: 0; + padding: 0; + font-size: 1.5em; + text-transform: uppercase; + font-weight: 900; +} + +.sidebar .namespace > p { + font-size: 0.9em; + opacity: 0.8; + padding-left: 0.5rem; +} + +.sidebar .section { + padding-left: 0.5rem; + padding-right: 0.5rem; + font-size: 80%; +} + +.sidebar .links { + margin-bottom: 1rem; +} + +.sidebar .section a { + display: block; + text-overflow: ellipsis; + overflow: hidden; + transition: background-color 150ms ease; + color: var(--sidebar-primary); + border-radius: var(--box-radius); + padding: 0.2rem 0.5rem; + margin-bottom: 0.15rem; +} + +.sidebar .section a:hover { + background-color: var(--sidebar-hover-bg); + color: var(--sidebar-text-color); +} + +.sidebar .section a.current { + background-color: var(--sidebar-selected-bg); + color: white; +} + +.sidebar .search { + box-sizing: border-box; + text-align: center; +} + +.sidebar .search input[type="text"] { + border: none; + width: 100%; + border-radius: 50px; + padding: 8px 14px; + display: inline-block; + font-size: 14px; + outline: transparent; + background: var(--sidebar-search-bg); + color: var(--sidebar-text-color); + transition: background-color 150ms ease; +} + +.sidebar .search input[type="text"]:hover, +.sidebar .search input[type="text"]:focus { + background: var(--sidebar-search-focus-bg); +} + +.toc { + display: block; + margin-top: 2em; + z-index: 3; + min-width: 15ch; + font-size: 80%; +} + +.toc nav { + margin-left: 2em; + margin-right: 2em; +} + +#toc-title { + text-transform: uppercase; + font-weight: var(--heading-weight); +} + +.toc-list { + list-style-type: none; + margin: 0; + padding-left: 0; +} + +.toc-list-item { + padding-top: .25em; +} + +ul.toc-list > ul.toc-list { + padding-left: 1em; +} + +/********************************* + * ANCHORS & TOGGLERS + *********************************/ +.anchor, +.md-anchor { + position: relative; + z-index: 1; + text-decoration: none; + padding: 0 0.5em; + color: var(--text-color-muted); +} + +.anchor:hover, +.md-anchor:hover { + color: var(--primary); +} + +.anchor:not([href]), +.md-anchor:not([href]) { + display: none; +} + +.anchor:before, +.md-anchor:before { + content: var(--anchor-sign); /*'§'*/ +} + +.toggle-wrapper { + position: relative; +} + +.collapse-toggle { + position: absolute; + right: 0; + left: -2em; + white-space: nowrap; + text-decoration: none; + font-size: 0.8em; + color: transparent; +} + +.collapse-toggle > .inner { + width: 1rem; + height: 1rem; + border-radius: calc(0.75 * var(--box-radius)); + display: inline-flex; + justify-content: center; + align-items: center; + text-align: center; + vertical-align: middle; + color: var(--box-text-color); + position: relative; + left: -0.25rem; + font-family: monospace; + font-size: 0.7rem; + font-weight: bold; + background: var(--box-bg); +} + +/********************************* + * UTILITY + *********************************/ +.deprecated > h6 > a { + opacity: 0.65; +} + +.hidden { + display: none !important; +} + +/********************************* + * CONTENT STYLING + *********************************/ +.content { + padding: 2em 4em; + overflow: visible; + max-width: calc(var(--preferred-content-width) + 8em); +} + +.content table:not(.table-display) { + border-spacing: 0 0.25rem; +} + +.content td { + vertical-align: top; +} + +.content td:first-child { + padding-right: 1rem; +} + +.content td p:first-child { + margin-top: 0; +} + +.content td h1, .content td h2 { + margin-left: 0; + font-size: 1.1em; +} + +.content tr:first-child td { + border-top: 0; +} + +kbd { + display: inline-block; + padding: 8px; + font: 10px monospace; + line-height: 10px; + vertical-align: middle; + border: none; + border-radius: 6px; + box-shadow: 0 0 3px rgba(0,0,0,0.3); + margin: 3px; + background-color: var(--box-bg); + cursor: default; +} + +.content tr:first-child { + border-bottom: 1px solid rgba(0, 0, 0, 0.35); +} + +.content td { + vertical-align: top; +} + +.content td:first-child { + padding-right: 1rem; +} + +.content td p:first-child { + margin-top: 0; +} + +.content td h4, .content td h5 { + margin-left: 0; + font-size: 1.1em; +} + +.content tr:first-child td { + border-top: 0; +} + +.srclink { + color: var(--text-color-muted); + font-size: 1rem; + font-weight: var(--body-font-weight); + flex-grow: 0; + text-decoration: none; + margin-left: auto; + position: relative; + z-index: 1; +} + +.meta tr > td:not(:first-child) { + width: 100%; +} + +.meta tr > td:first-child { + white-space: nowrap; +} + +/********************************* + * DOCBLOCK STYLING + *********************************/ +.docblock { + position: relative; + text-align: left; +} + +.docblock h1 { + font-size: calc(1.3em * var(--heading-docblock-scale) * var(--heading-font-scale)); +} + +.docblock h2 { + font-size: calc(1.2em * var(--heading-docblock-scale) * var(--heading-font-scale)); +} + +.docblock h3 { + font-size: calc(1.1em * var(--heading-docblock-scale) * var(--heading-font-scale)); +} + +.docblock h4 { + font-size: calc(1.05em * var(--heading-docblock-scale) * var(--heading-font-scale)); +} + +.docblock h1, +.docblock h2, +.docblock h3, +.docblock h4, +.docblock h5, +.docblock h6 { + color: var(--heading-docblock-color) +} + +.docblock table { + margin: .25em 0; + max-width: 100%; + font-size: var(--table-font-size); +} + +.docblock table td { + padding: .25em; +} + +.docblock table th { + padding: .25em; + text-align: left; + font-family: var(--heading-table-font-family); + font-weight: var(--heading-table-weight); +} + +.docblock table tr th:first-child, +.docblock table tr td:first-child { + padding-left: 0; +} + +.docblock table tr th:last-child, +.docblock table tr td:last-child { + padding-right: 0; +} + +dl.enum-members { + font-size: 80%; +} + +dl.enum-members dt { + padding-top: 1em; +} + +table.arguments tr td { + color: var(--text-color-muted); +} + +table.arguments tr td:first-child { + min-width: 12em; +} + +table.arguments tr.arg-name td, +table.arguments tr.arg-description td { + color: var(--text-color); +} + +.docblock ul li, +.docblock ol li { + padding-top: 0.15rem; + padding-bottom: 0.15rem; +} + +.docblock ul.type { + list-style: none; +} + +.docblock ul.type li::before { + content: "»"; + color: var(--text-color); + display: inline-block; + width: 1em; + margin-left: -1em; +} + +.docblock .codehilite { + position: relative; +} +.docblock .codehilite > .copy-button { + position: absolute; + top: 0; + right: 0; + + border: none; + background: none; + + margin: var(--box-padding); + cursor: pointer; +} + +.docblock .codehilite > .copy-button { + transition: background-color 150ms ease; + color: var(--primary); + border-radius: var(--box-radius); + padding: 0.2rem 0.5rem; + margin: var(--box-padding); +} + +.docblock .codehilite > .copy-button:hover { + background-color: var(--sidebar-hover-bg); + color: var(--text-color); +} + +.docblock .codehilite > .copy-button:active { + background-color: var(--primary); +} + +.emblem { + padding: 0 0.75em; + border-radius: 9999px; + font-size: 80%; +} + +.emblem.available-next { + background-color: var(--warning-bg-color); + color: var(--warning-fg-color); +} + +.emblem.deprecated { + background-color: var(--error-bg-color); + color: var(--error-fg-color); +} + +.emblem.available { + background-color: var(--accent-bg-color); + color: var(--accent-fg-color); +} + +dt.result { + padding: .5em 0; +} + +.result.emblem.alias, +.result.emblem.bitfield, +.result.emblem.callback, +.result.emblem.class, +.result.emblem.constant, +.result.emblem.extra_content, +.result.emblem.ctor, +.result.emblem.domain, +.result.emblem.enum, +.result.emblem.function_macro, +.result.emblem.function, +.result.emblem.interface, +.result.emblem.method, +.result.emblem.property, +.result.emblem.record, +.result.emblem.signal, +.result.emblem.type_func, +.result.emblem.union, +.result.emblem.vfunc { + background-color: var(--accent-bg-color); + color: var(--accent-fg-color); +} + +.admonition { + background: var(--admonition-color-bg); + border-left: .2rem solid #651fff; + border-radius: .2rem; + box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .05), 0 0 .0625rem rgba(0, 0, 0, .1); + font-size: var(--admonition-font-size); + margin: 1rem auto; + overflow: hidden; + padding: 0 .5rem .5rem; + page-break-inside: avoid; +} + +.admonition > p.admonition-title { + font-weight: 500; + line-height: 1.3; + margin: 0 -.5rem .5rem; + padding: .4rem .5rem .4rem 2rem; + position: relative; +} + +p.admonition-title::before { + content: ""; + position: absolute; + left: .5rem; + height: 1rem; + width: 1rem; + -webkit-mask-repeat: no-repeat; + mask-repeat: no-repeat; +} + +.admonition.note > .admonition-title, +.admonition.seealso > .admonition-title { + background-color: var(--admonition-color-title-bg--note); +} + +.admonition.note > .admonition-title::before, +.admonition.seealso > .admonition-title::before { + background-color: var(--admonition-color-title--note); + -webkit-mask-image: var(--admonition-icon--note); + mask-image: var(--admonition-icon--note); + +} + +.admonition.note, +.admonition.seealso { + border-left-color: var(--admonition-color-title--note); +} + +.admonition.tip > .admonition-title, +.admonition.hint > .admonition-title { + background-color: var(--admonition-color-title-bg--tip); +} + +.admonition.tip > .admonition-title::before, +.admonition.hint > .admonition-title::before { + background-color: var(--admonition-color-title--tip); + -webkit-mask-image: var(--admonition-icon--tip); + mask-image: var(--admonition-icon--tip); +} + +.admonition.tip, +.admonition.hint { + border-left-color: var(--admonition-color-title--tip); +} + +.admonition.important > .admonition-title { + background-color: var(--admonition-color-title-bg--important); +} + +.admonition.important > .admonition-title::before { + background-color: var(--admonition-color-title--important); + -webkit-mask-image: var(--admonition-icon--important); + mask-image: var(--admonition-icon--important); +} + +.admonition.important { + border-left-color: var(--admonition-color-title--important); +} + +.admonition.warning > .admonition-title { + background-color: var(--admonition-color-title-bg--warning); +} + +.admonition.warning > .admonition-title::before { + background-color: var(--admonition-color-title--warning); + -webkit-mask-image: var(--admonition-icon--warning); + mask-image: var(--admonition-icon--warning); +} + +.admonition.warning { + border-left-color: var(--admonition-color-title--warning); +} + +/************************************************************* + SYMBOLS +**************************************************************/ +.symbol, +.constructors h6, +.methods h6, +.signals h6, +.properties h6, +.type-funcs h6, +.implements a, +.ancestors a, +.descendants a, +.implementations a, +.sidebar .links a +.toc a +{ + font-family: var(--symbol-font-family); + font-size: calc(1em * var(--symbol-font-scale)); + font-weight: var(--symbol-font-weight); +} + +/************************** + RESPONSIVENESS +**************************/ +@media (max-width: 700px) { + body { + padding-top: 0px; + } + + #body-wrapper { + flex-direction: column; + overflow: hidden; + } + + #main { + width: 100%; + padding: 2rem; + } + + .sidebar { + position: static; + height: initial; + order: 1; + } + + .toc { + display: hidden; + } +} diff --git a/static/libical-glib/type_func.CompIter.new_default.html b/static/libical-glib/type_func.CompIter.new_default.html new file mode 100644 index 00000000..3e4b6e99 --- /dev/null +++ b/static/libical-glib/type_func.CompIter.new_default.html @@ -0,0 +1,188 @@ + + + + + + ICalGLib.CompIter.new_default + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibCompIternew_default

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    icalcompiter
    +i_cal_comp_iter_new_default (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: icalcompiter

    +

    The newly created default native icalcompiter.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Component.kind_from_string.html b/static/libical-glib/type_func.Component.kind_from_string.html new file mode 100644 index 00000000..1a0ccf0a --- /dev/null +++ b/static/libical-glib/type_func.Component.kind_from_string.html @@ -0,0 +1,226 @@ + + + + + + ICalGLib.Component.kind_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibComponentkind_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponentKind
    +i_cal_component_kind_from_string (
    +  const gchar* string
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string to a ICalComponentKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    string
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Component.kind_is_valid.html b/static/libical-glib/type_func.Component.kind_is_valid.html new file mode 100644 index 00000000..a6ae045f --- /dev/null +++ b/static/libical-glib/type_func.Component.kind_is_valid.html @@ -0,0 +1,226 @@ + + + + + + ICalGLib.Component.kind_is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibComponentkind_is_valid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_component_kind_is_valid (
    +  const ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks if a ICalComponentKind is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if kind id a ICalComponent but not the I_CAL_NO_COMPONENT, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Component.kind_to_string.html b/static/libical-glib/type_func.Component.kind_to_string.html new file mode 100644 index 00000000..87bacf0c --- /dev/null +++ b/static/libical-glib/type_func.Component.kind_to_string.html @@ -0,0 +1,226 @@ + + + + + + ICalGLib.Component.kind_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibComponentkind_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_component_kind_to_string (
    +  ICalComponentKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a ICalComponentKind to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalComponentKind

    +

    A ICalComponentKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of kind.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Datetimeperiod.new_default.html b/static/libical-glib/type_func.Datetimeperiod.new_default.html new file mode 100644 index 00000000..cfe32596 --- /dev/null +++ b/static/libical-glib/type_func.Datetimeperiod.new_default.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Datetimeperiod.new_default + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibDatetimeperiodnew_default

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    icaldatetimeperiodtype
    +i_cal_datetimeperiod_new_default (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new default ICalDatetimeperiod.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: icaldatetimeperiodtype

    +

    The newly created ICalDatetimeperiod.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Geo.new_default.html b/static/libical-glib/type_func.Geo.new_default.html new file mode 100644 index 00000000..aa556647 --- /dev/null +++ b/static/libical-glib/type_func.Geo.new_default.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Geo.new_default + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibGeonew_default

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    icalgeotype
    +i_cal_geo_new_default (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new default ICalGeo.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: icalgeotype

    +

    The newly created ICalGeo.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Object.construct.html b/static/libical-glib/type_func.Object.construct.html new file mode 100644 index 00000000..5cb66647 --- /dev/null +++ b/static/libical-glib/type_func.Object.construct.html @@ -0,0 +1,303 @@ + + + + + + ICalGLib.Object.construct + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibObjectconstruct

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gpointer
    +i_cal_object_construct (
    +  GType object_type,
    +  gpointer native,
    +  GDestroyNotify native_destroy_func,
    +  gboolean is_global_memory,
    +  GObject* owner
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates an ICalObject descendant of type type and initialize private members +of it. The descendants should call this function in their _new() function, or use +corresponding properties during the construction time. This should not be mixed, +either use properties or this function.

    +

    The is_global_memory defines whether the returned object is a singleton, +in which case the object is owned by the libical-glib and should not be freed, +or, when FALSE, the returned object is a newly created object and the caller +is responsible to free it with g_object_unref().

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    object_type
    +
    +

    Type: GType

    +

    A GType of an ICalObject descendant to construct.

    + + + + + + + + + + +
    +
    + +
    native
    +
    +

    Type: gpointer

    +

    A native libical structure.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + +
    native_destroy_func
    +
    +

    Type: GDestroyNotify

    +

    A function to be called on native when it should be freed.

    + + + + + + + + + + +
    +
    + +
    is_global_memory
    +
    +

    Type: gboolean

    +

    Whether native is a global shared memory structure.

    + + + + + + + + + + +
    +
    + +
    owner
    +
    +

    Type: GObject

    +

    An owner of native.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gpointer

    +

    An ICalObject descendant of type type.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Object.free_global_objects.html b/static/libical-glib/type_func.Object.free_global_objects.html new file mode 100644 index 00000000..aa6e6b66 --- /dev/null +++ b/static/libical-glib/type_func.Object.free_global_objects.html @@ -0,0 +1,167 @@ + + + + + + ICalGLib.Object.free_global_objects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibObjectfree_global_objects

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_object_free_global_objects (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees all global objects. Any references to them are invalidated +by this call, unless they had been g_object_ref()-ed manually.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Parameter.kind_from_string.html b/static/libical-glib/type_func.Parameter.kind_from_string.html new file mode 100644 index 00000000..c78e248b --- /dev/null +++ b/static/libical-glib/type_func.Parameter.kind_from_string.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Parameter.kind_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParameterkind_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalParameterKind
    +i_cal_parameter_kind_from_string (
    +  const gchar* string
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string to the ICalParameterKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    string
    +
    +

    Type: const gchar*

    +

    The string representation of the ICalParameter.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalParameterKind

    +

    The ICalParameterKind converted from string.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Parameter.kind_is_valid.html b/static/libical-glib/type_func.Parameter.kind_is_valid.html new file mode 100644 index 00000000..9287028e --- /dev/null +++ b/static/libical-glib/type_func.Parameter.kind_is_valid.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Parameter.kind_is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParameterkind_is_valid

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_parameter_kind_is_valid (
    +  const ICalParameterKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether ICalParameterKind is valid.

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if valid, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Parameter.kind_to_string.html b/static/libical-glib/type_func.Parameter.kind_to_string.html new file mode 100644 index 00000000..6faa2c91 --- /dev/null +++ b/static/libical-glib/type_func.Parameter.kind_to_string.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Parameter.kind_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParameterkind_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_parameter_kind_to_string (
    +  ICalParameterKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalParameter to the string representation.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalParameterKind

    +

    The ICalParameterKind to be converted.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of kind.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Parameter.value_to_value_kind.html b/static/libical-glib/type_func.Parameter.value_to_value_kind.html new file mode 100644 index 00000000..786e8ccf --- /dev/null +++ b/static/libical-glib/type_func.Parameter.value_to_value_kind.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Parameter.value_to_value_kind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParametervalue_to_value_kind

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValueKind
    +i_cal_parameter_value_to_value_kind (
    +  ICalParameterValue value
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalParameterValue to ICalValueKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    value
    +
    +

    Type: ICalParameterValue

    +

    A ICalParameterValue.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValueKind

    +

    ICalValueKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Parser.parse_string.html b/static/libical-glib/type_func.Parser.parse_string.html new file mode 100644 index 00000000..cea73e91 --- /dev/null +++ b/static/libical-glib/type_func.Parser.parse_string.html @@ -0,0 +1,222 @@ + + + + + + ICalGLib.Parser.parse_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibParserparse_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalComponent*
    +i_cal_parser_parse_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Parses the string into a ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string to be parsed.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalComponent

    +

    The ICalComponent parsed from str.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.enum_to_string.html b/static/libical-glib/type_func.Property.enum_to_string.html new file mode 100644 index 00000000..5fde9588 --- /dev/null +++ b/static/libical-glib/type_func.Property.enum_to_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.enum_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertyenum_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_property_enum_to_string (
    +  gint e
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the enum to string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    e
    +
    +

    Type: gint

    +

    The enum to be converted.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The string representation of e.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_and_string_to_enum.html b/static/libical-glib/type_func.Property.kind_and_string_to_enum.html new file mode 100644 index 00000000..b4451c02 --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_and_string_to_enum.html @@ -0,0 +1,262 @@ + + + + + + ICalGLib.Property.kind_and_string_to_enum + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_and_string_to_enum

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_kind_and_string_to_enum (
    +  const gint kind,
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts an integer and string into an enum.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: const gint

    +

    The kind.

    + + + + + + + + + + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The enum.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_from_string.html b/static/libical-glib/type_func.Property.kind_from_string.html new file mode 100644 index 00000000..7830e278 --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_from_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.kind_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyKind
    +i_cal_property_kind_from_string (
    +  const gchar* string
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the string to ICalPropertyKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    string
    +
    +

    Type: const gchar*

    +

    A string representing ICalPropertyKind.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyKind

    +

    The ICalPropertyKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_has_property.html b/static/libical-glib/type_func.Property.kind_has_property.html new file mode 100644 index 00000000..6129e710 --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_has_property.html @@ -0,0 +1,262 @@ + + + + + + ICalGLib.Property.kind_has_property + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_has_property

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_property_kind_has_property (
    +  ICalPropertyKind kind,
    +  gint e
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the enum belongs to the ICalPropertyKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + +
    e
    +
    +

    Type: gint

    +

    The enum to be checked.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_is_valid.html b/static/libical-glib/type_func.Property.kind_is_valid.html new file mode 100644 index 00000000..43b81f4c --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_is_valid.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.kind_is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_is_valid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_property_kind_is_valid (
    +  const ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether ICalPropertyKind is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    The ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if valid, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_to_string.html b/static/libical-glib/type_func.Property.kind_to_string.html new file mode 100644 index 00000000..b0be3b65 --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_to_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.kind_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_kind_to_string (
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalPropertyKind to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of kind.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.kind_to_value_kind.html b/static/libical-glib/type_func.Property.kind_to_value_kind.html new file mode 100644 index 00000000..3c2f37ae --- /dev/null +++ b/static/libical-glib/type_func.Property.kind_to_value_kind.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.kind_to_value_kind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertykind_to_value_kind

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValueKind
    +i_cal_property_kind_to_value_kind (
    +  ICalPropertyKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalPropertyKind to ICalValueKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalPropertyKind

    +

    A ICalPropertyKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValueKind

    +

    The ICalValueKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.method_from_string.html b/static/libical-glib/type_func.Property.method_from_string.html new file mode 100644 index 00000000..5c0b9ee7 --- /dev/null +++ b/static/libical-glib/type_func.Property.method_from_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.method_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertymethod_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyMethod
    +i_cal_property_method_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the string to ICalPropertyKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyMethod

    +

    The ICalPropertyMethod.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.method_to_string.html b/static/libical-glib/type_func.Property.method_to_string.html new file mode 100644 index 00000000..0d6da602 --- /dev/null +++ b/static/libical-glib/type_func.Property.method_to_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.method_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertymethod_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_method_to_string (
    +  ICalPropertyMethod method
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalPropertyMethod to string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    method
    +
    +

    Type: ICalPropertyMethod

    +

    The ICalPropertyMethod.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of ICalPropertyMethod.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.recurrence_is_excluded.html b/static/libical-glib/type_func.Property.recurrence_is_excluded.html new file mode 100644 index 00000000..86d2aa6b --- /dev/null +++ b/static/libical-glib/type_func.Property.recurrence_is_excluded.html @@ -0,0 +1,281 @@ + + + + + + ICalGLib.Property.recurrence_is_excluded + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertyrecurrence_is_excluded

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_property_recurrence_is_excluded (
    +  ICalComponent* comp,
    +  ICalTime* dtstart,
    +  ICalTime* recurtime
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decides if this recurrence is acceptable. This function decides if a specific recurrence value is excluded +by EXRULE or EXDATE properties.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    A ICalComponent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    dtstart
    +
    +

    Type: ICalTime

    +

    The base dtstart value for this component.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    recurtime
    +
    +

    Type: ICalTime

    +

    The time to test against.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.status_from_string.html b/static/libical-glib/type_func.Property.status_from_string.html new file mode 100644 index 00000000..ec9fdc42 --- /dev/null +++ b/static/libical-glib/type_func.Property.status_from_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.status_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertystatus_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyStatus
    +i_cal_property_status_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the string to ICalPropertyKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyStatus

    +

    The ICalPropertyStatus.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Property.status_to_string.html b/static/libical-glib/type_func.Property.status_to_string.html new file mode 100644 index 00000000..ae85055f --- /dev/null +++ b/static/libical-glib/type_func.Property.status_to_string.html @@ -0,0 +1,244 @@ + + + + + + ICalGLib.Property.status_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibPropertystatus_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_property_status_to_string (
    +  ICalPropertyStatus method
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalPropertyStatus to string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    method
    +
    +

    Type: ICalPropertyStatus

    +

    The ICalPropertyStatus.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of ICalPropertyStatus.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.day_day_of_week.html b/static/libical-glib/type_func.Recurrence.day_day_of_week.html new file mode 100644 index 00000000..bea580d1 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.day_day_of_week.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.day_day_of_week + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceday_day_of_week

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceWeekday
    +i_cal_recurrence_day_day_of_week (
    +  gshort day
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decodes a day to a weekday in a week.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    day
    +
    +

    Type: gshort

    +

    The encoded day which represents the day of the week and Nth day of the week.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The decoded weekday with Monday to be 1.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.day_position.html b/static/libical-glib/type_func.Recurrence.day_position.html new file mode 100644 index 00000000..576f7513 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.day_position.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.day_position + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceday_position

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_recurrence_day_position (
    +  gshort day
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decodes a day to a position of the weekday.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    day
    +
    +

    Type: gshort

    +

    The encoded day which represents the day of the week and Nth day of the week.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The decoded day of the week. 0 == any of day of week. 1 == first, 2 = second, -2 == second to last, etc.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.encode_day.html b/static/libical-glib/type_func.Recurrence.encode_day.html new file mode 100644 index 00000000..25d6fa62 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.encode_day.html @@ -0,0 +1,269 @@ + + + + + + ICalGLib.Recurrence.encode_day + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceencode_day

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_recurrence_encode_day (
    +  ICalRecurrenceWeekday weekday,
    +  gint position
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Encodes the weekday and position into a single value, which can by split by i_cal_recurrence_day_day_of_week() +and i_cal_recurrence_day_position().

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    weekday
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The ICalRecurrenceWeekday to use.

    + + + + + + + + + + +
    +
    + +
    position
    +
    +

    Type: gint

    +

    The position to use. 0 == any of day of week. 1 == first, 2 = second, -2 == second to last, etc.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    Encoded weekday and position into a single value.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.encode_month.html b/static/libical-glib/type_func.Recurrence.encode_month.html new file mode 100644 index 00000000..adcdaab2 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.encode_month.html @@ -0,0 +1,269 @@ + + + + + + ICalGLib.Recurrence.encode_month + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceencode_month

    +
    + +
    +
    +

    unstable since: 3.0.5

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gshort
    +i_cal_recurrence_encode_month (
    +  gint month,
    +  gboolean is_leap
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Encodes the month and the is_leap flag into a single value, which can be split by i_cal_recurrence_month_is_leap() +and i_cal_recurrence_month_month().

    +
    + +
    + +

    Available since: 3.0.5

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    month
    +
    +

    Type: gint

    +

    The month to be encoded.

    + + + + + + + + + + +
    +
    + +
    is_leap
    +
    +

    Type: gboolean

    +

    TRUE, when the month is leap, FALSE otherwise.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gshort

    +

    Encoded month and is_leap.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.frequency_from_string.html b/static/libical-glib/type_func.Recurrence.frequency_from_string.html new file mode 100644 index 00000000..c3f2c7e2 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.frequency_from_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.frequency_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencefrequency_from_string

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceFrequency
    +i_cal_recurrence_frequency_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string representation to an enum representation for the frequency.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string representation of the frequency.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceFrequency

    +

    The enum representation of the frequency.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.frequency_to_string.html b/static/libical-glib/type_func.Recurrence.frequency_to_string.html new file mode 100644 index 00000000..57bd1200 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.frequency_to_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.frequency_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencefrequency_to_string

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_recurrence_frequency_to_string (
    +  ICalRecurrenceFrequency kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts an enum representation to a string representation for the frequency.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalRecurrenceFrequency

    +

    The frequency enum.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of frequency.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.month_is_leap.html b/static/libical-glib/type_func.Recurrence.month_is_leap.html new file mode 100644 index 00000000..62580364 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.month_is_leap.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.month_is_leap + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencemonth_is_leap

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_recurrence_month_is_leap (
    +  gshort month
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decodes a month and check whether it is a leap month.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    month
    +
    +

    Type: gshort

    +

    The month to be decoded.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether this month is a leap month.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.month_month.html b/static/libical-glib/type_func.Recurrence.month_month.html new file mode 100644 index 00000000..db4bea58 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.month_month.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.month_month + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencemonth_month

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_recurrence_month_month (
    +  gshort month
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Decode a month from an encoded value by i_cal_recurrence_encode_month().

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    month
    +
    +

    Type: gshort

    +

    The month to be decoded.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The actual month number regardless of the leap flag.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.new_default.html b/static/libical-glib/type_func.Recurrence.new_default.html new file mode 100644 index 00000000..be9bb4b4 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.new_default.html @@ -0,0 +1,216 @@ + + + + + + ICalGLib.Recurrence.new_default + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencenew_default

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    icalrecurrencetype*
    +i_cal_recurrence_new_default (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + +

    + +
    + No description available. +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: icalrecurrencetype*

    +

    The default value.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.rscale_is_supported.html b/static/libical-glib/type_func.Recurrence.rscale_is_supported.html new file mode 100644 index 00000000..f1166da6 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.rscale_is_supported.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.Recurrence.rscale_is_supported + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencerscale_is_supported

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_recurrence_rscale_is_supported (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether rscale is supported.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether rscale is supported.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.rscale_supported_calendars.html b/static/libical-glib/type_func.Recurrence.rscale_supported_calendars.html new file mode 100644 index 00000000..bca4e34c --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.rscale_supported_calendars.html @@ -0,0 +1,218 @@ + + + + + + ICalGLib.Recurrence.rscale_supported_calendars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrencerscale_supported_calendars

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalArray*
    +i_cal_recurrence_rscale_supported_calendars (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets an array of calendars supporting rscale (currently always return NULL).

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalArray

    +

    Array of calendars. Currently always NULL.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.skip_from_string.html b/static/libical-glib/type_func.Recurrence.skip_from_string.html new file mode 100644 index 00000000..f643f9ba --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.skip_from_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.skip_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceskip_from_string

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceSkip
    +i_cal_recurrence_skip_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string representation to an enum representation for the skip.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string representation of the skip.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceSkip

    +

    The enum representation of the skip.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.skip_to_string.html b/static/libical-glib/type_func.Recurrence.skip_to_string.html new file mode 100644 index 00000000..ad518808 --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.skip_to_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.skip_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceskip_to_string

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_recurrence_skip_to_string (
    +  ICalRecurrenceSkip kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts an enum representation to a string representation for the skip.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalRecurrenceSkip

    +

    The frequency enum.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of skip.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.weekday_from_string.html b/static/libical-glib/type_func.Recurrence.weekday_from_string.html new file mode 100644 index 00000000..1eb438ec --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.weekday_from_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.weekday_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceweekday_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalRecurrenceWeekday
    +i_cal_recurrence_weekday_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string representation to an enum representation for the weekday.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    The string representation of the weekday.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The enum representation of the weekday.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Recurrence.weekday_to_string.html b/static/libical-glib/type_func.Recurrence.weekday_to_string.html new file mode 100644 index 00000000..929e0cde --- /dev/null +++ b/static/libical-glib/type_func.Recurrence.weekday_to_string.html @@ -0,0 +1,250 @@ + + + + + + ICalGLib.Recurrence.weekday_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibRecurrenceweekday_to_string

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_recurrence_weekday_to_string (
    +  ICalRecurrenceWeekday kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts an enum representation to a string representation for the weekday.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalRecurrenceWeekday

    +

    The frequency enum.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of weekday.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Reqstat.new_default.html b/static/libical-glib/type_func.Reqstat.new_default.html new file mode 100644 index 00000000..b29f1f82 --- /dev/null +++ b/static/libical-glib/type_func.Reqstat.new_default.html @@ -0,0 +1,190 @@ + + + + + + ICalGLib.Reqstat.new_default + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibReqstatnew_default

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    icalreqstattype
    +i_cal_reqstat_new_default (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Creates a new default ICalReqstat.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: icalreqstattype

    +

    The newly created ICalReqstat.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Time.days_in_month.html b/static/libical-glib/type_func.Time.days_in_month.html new file mode 100644 index 00000000..440748f4 --- /dev/null +++ b/static/libical-glib/type_func.Time.days_in_month.html @@ -0,0 +1,246 @@ + + + + + + ICalGLib.Time.days_in_month + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimedays_in_month

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_days_in_month (
    +  gint month,
    +  gint year
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the number of days in the target month in the target year.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    month
    +
    +

    Type: gint

    +

    The target month.

    + + + + + + + + + + +
    +
    + +
    year
    +
    +

    Type: gint

    +

    The target year.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    The number of days in the target month in the target year.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Time.days_in_year.html b/static/libical-glib/type_func.Time.days_in_year.html new file mode 100644 index 00000000..a1e2c9ea --- /dev/null +++ b/static/libical-glib/type_func.Time.days_in_year.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Time.days_in_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimedays_in_year

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gint
    +i_cal_time_days_in_year (
    +  gint year
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the number of days in this year.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    year
    +
    +

    Type: gint

    +

    The target year.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gint

    +

    Days in this year.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Time.days_is_leap_year.html b/static/libical-glib/type_func.Time.days_is_leap_year.html new file mode 100644 index 00000000..ffaec82e --- /dev/null +++ b/static/libical-glib/type_func.Time.days_is_leap_year.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Time.days_is_leap_year + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimedays_is_leap_year

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_time_days_is_leap_year (
    +  gint year
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether a year is a leap year.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    year
    +
    +

    Type: gint

    +

    The target year.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether the year is a leap year.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Time.timezone_expand_vtimezone.html b/static/libical-glib/type_func.Time.timezone_expand_vtimezone.html new file mode 100644 index 00000000..32773196 --- /dev/null +++ b/static/libical-glib/type_func.Time.timezone_expand_vtimezone.html @@ -0,0 +1,238 @@ + + + + + + ICalGLib.Time.timezone_expand_vtimezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimetimezone_expand_vtimezone

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_time_timezone_expand_vtimezone (
    +  ICalComponent* comp,
    +  gint end_year,
    +  ICalArray* changes
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Applies a list of timezone changes on the array of components until the end year.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    comp
    +
    +

    Type: ICalComponent

    +

    The ICalComponent.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    end_year
    +
    +

    Type: gint

    +

    The end year.

    + + + + + + + + + + +
    +
    + +
    changes
    +
    +

    Type: ICalArray

    +

    The changes to be applies.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.array_append_from_vtimezone.html b/static/libical-glib/type_func.Timezone.array_append_from_vtimezone.html new file mode 100644 index 00000000..09946afd --- /dev/null +++ b/static/libical-glib/type_func.Timezone.array_append_from_vtimezone.html @@ -0,0 +1,254 @@ + + + + + + ICalGLib.Timezone.array_append_from_vtimezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonearray_append_from_vtimezone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_array_append_from_vtimezone (
    +  ICalArray* timezones,
    +  ICalComponent* child
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Populate the array of timezones with a component.

    +

    note The timezones assumes ownership of the +child, thus make sure you pass an unowned ICalComponent.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    timezones
    +
    +

    Type: ICalArray

    +

    The timezones to be populated.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    child
    +
    +

    Type: ICalComponent

    +

    The component to be appended to timezones.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.array_destroy.html b/static/libical-glib/type_func.Timezone.array_destroy.html new file mode 100644 index 00000000..3e29f50b --- /dev/null +++ b/static/libical-glib/type_func.Timezone.array_destroy.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.Timezone.array_destroy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonearray_destroy

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_array_destroy (
    +  icalarray* zones_array
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The destructor of the icalarray of icaltimezone elements to fully destroy the native object.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zones_array
    +
    +

    Type: icalarray*

    +

    The icalarray created by i_cal_timezone_array_new() to be freed.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.array_element_at.html b/static/libical-glib/type_func.Timezone.array_element_at.html new file mode 100644 index 00000000..8cba73aa --- /dev/null +++ b/static/libical-glib/type_func.Timezone.array_element_at.html @@ -0,0 +1,278 @@ + + + + + + ICalGLib.Timezone.array_element_at + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonearray_element_at

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_array_element_at (
    +  ICalArray* timezones,
    +  guint index
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the ICalTimezone at specified position in array.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    timezones
    +
    +

    Type: ICalArray

    +

    The array to be visited.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + +
    index
    +
    +

    Type: guint

    +

    The index.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The ICalTimezone at the position index in timezones.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.array_free.html b/static/libical-glib/type_func.Timezone.array_free.html new file mode 100644 index 00000000..02f44216 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.array_free.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.Timezone.array_free + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonearray_free

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_array_free (
    +  ICalArray* timezones
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees an array of timezones.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    timezones
    +
    +

    Type: ICalArray

    +

    Free an array.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.destroy.html b/static/libical-glib/type_func.Timezone.destroy.html new file mode 100644 index 00000000..49dfade2 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.destroy.html @@ -0,0 +1,235 @@ + + + + + + ICalGLib.Timezone.destroy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonedestroy

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_destroy (
    +  icaltimezone* zone
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    The destructor of the type ICalTimezone to fully destroy the object by providing 1 as the second argument +of i_cal_time_zone_free. The method is used as a default destructor for introspection.

    +
    + +
    + +

    Available since: 1.0

    + +

    This function is not directly available to language bindings.

    + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    zone
    +
    +

    Type: icaltimezone*

    +

    The ICalTimezone to be freed.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.free_builtin_timezones.html b/static/libical-glib/type_func.Timezone.free_builtin_timezones.html new file mode 100644 index 00000000..6dd1cec0 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.free_builtin_timezones.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Timezone.free_builtin_timezones + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonefree_builtin_timezones

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_free_builtin_timezones (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees any builtin timezone information.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.free_zone_directory.html b/static/libical-glib/type_func.Timezone.free_zone_directory.html new file mode 100644 index 00000000..0ae15e8f --- /dev/null +++ b/static/libical-glib/type_func.Timezone.free_zone_directory.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Timezone.free_zone_directory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonefree_zone_directory

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_free_zone_directory (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees memory dedicated to the zonefile directory.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_builtin_timezone.html b/static/libical-glib/type_func.Timezone.get_builtin_timezone.html new file mode 100644 index 00000000..d59fea70 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_builtin_timezone.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.Timezone.get_builtin_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_builtin_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_get_builtin_timezone (
    +  const gchar* location
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a single builtin timezone, given its Olson city name.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    location
    +
    +

    Type: const gchar*

    +

    The location representing the timezone.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The builtin ICalTimezone with the name of location.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The return value can be NULL.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_offset.html b/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_offset.html new file mode 100644 index 00000000..78d10dd0 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_offset.html @@ -0,0 +1,278 @@ + + + + + + ICalGLib.Timezone.get_builtin_timezone_from_offset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_builtin_timezone_from_offset

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_get_builtin_timezone_from_offset (
    +  gint offset,
    +  const gchar* tzname
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a single builtin timezone, given its offset.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    offset
    +
    +

    Type: gint

    +

    The offset used to get the ICalTimezone.

    + + + + + + + + + + +
    +
    + +
    tzname
    +
    +

    Type: const gchar*

    +

    The reference ICalTimezone name.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    No description available.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_tzid.html b/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_tzid.html new file mode 100644 index 00000000..2f30c7df --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_builtin_timezone_from_tzid.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.Timezone.get_builtin_timezone_from_tzid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_builtin_timezone_from_tzid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_get_builtin_timezone_from_tzid (
    +  const gchar* tzid
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a single builtin timezone, given its TZID.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    tzid
    +
    +

    Type: const gchar*

    +

    The tzid name.

    + + + + + + + + + + +
    The argument can be NULL.
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    No description available.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_builtin_timezones.html b/static/libical-glib/type_func.Timezone.get_builtin_timezones.html new file mode 100644 index 00000000..e845554c --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_builtin_timezones.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Timezone.get_builtin_timezones + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_builtin_timezones

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalArray*
    +i_cal_timezone_get_builtin_timezones (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns a list of builtin timezones.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalArray

    +

    An ICalArray of the builtin ICalTimezone objects.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_builtin_tzdata.html b/static/libical-glib/type_func.Timezone.get_builtin_tzdata.html new file mode 100644 index 00000000..38a8592e --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_builtin_tzdata.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Timezone.get_builtin_tzdata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_builtin_tzdata

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_timezone_get_builtin_tzdata (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets whether to use builtin timezones files.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    Whether to use builtin timezones files.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_location_from_vtimezone.html b/static/libical-glib/type_func.Timezone.get_location_from_vtimezone.html new file mode 100644 index 00000000..a0bdc043 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_location_from_vtimezone.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.Timezone.get_location_from_vtimezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_location_from_vtimezone

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_timezone_get_location_from_vtimezone (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the location of the vtimezone in component.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    component
    +
    +

    Type: ICalComponent

    +

    The ICalComponent to be queried.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The location of vtimezone.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_tznames_from_vtimezone.html b/static/libical-glib/type_func.Timezone.get_tznames_from_vtimezone.html new file mode 100644 index 00000000..94a6aaae --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_tznames_from_vtimezone.html @@ -0,0 +1,260 @@ + + + + + + ICalGLib.Timezone.get_tznames_from_vtimezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_tznames_from_vtimezone

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_timezone_get_tznames_from_vtimezone (
    +  ICalComponent* component
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the name of the vtimezone in component.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    component
    +
    +

    Type: ICalComponent

    +

    The ICalComponent to be queried.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The name of vtimezone.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_utc_timezone.html b/static/libical-glib/type_func.Timezone.get_utc_timezone.html new file mode 100644 index 00000000..733779c6 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_utc_timezone.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Timezone.get_utc_timezone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_utc_timezone

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalTimezone*
    +i_cal_timezone_get_utc_timezone (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Returns the UTC timezone.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalTimezone

    +

    The utc ICalTimezone.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.get_zone_directory.html b/static/libical-glib/type_func.Timezone.get_zone_directory.html new file mode 100644 index 00000000..94d0f6f4 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.get_zone_directory.html @@ -0,0 +1,228 @@ + + + + + + ICalGLib.Timezone.get_zone_directory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneget_zone_directory

    +
    + +
    +
    +

    unstable since: 3.0.17

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_timezone_get_zone_directory (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Gets the directory to look for the zonefiles.

    +
    + +
    + +

    Available since: 3.0.17

    + + + + +
    + + +
    + + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The path to look for the zonefiles.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.release_zone_tab.html b/static/libical-glib/type_func.Timezone.release_zone_tab.html new file mode 100644 index 00000000..1ad3245d --- /dev/null +++ b/static/libical-glib/type_func.Timezone.release_zone_tab.html @@ -0,0 +1,202 @@ + + + + + + ICalGLib.Timezone.release_zone_tab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezonerelease_zone_tab

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_release_zone_tab (
    +  void
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Frees memory dedicated to the zonefile directory.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.set_builtin_tzdata.html b/static/libical-glib/type_func.Timezone.set_builtin_tzdata.html new file mode 100644 index 00000000..3b21d482 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.set_builtin_tzdata.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.Timezone.set_builtin_tzdata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneset_builtin_tzdata

    +
    + +
    +
    +

    since: 2.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_set_builtin_tzdata (
    +  gboolean set
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets whether to use builtin timezones files.

    +
    + +
    + +

    Available since: 2.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    set
    +
    +

    Type: gboolean

    +

    Whether to use builtin timezones files.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.set_tzid_prefix.html b/static/libical-glib/type_func.Timezone.set_tzid_prefix.html new file mode 100644 index 00000000..a844e729 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.set_tzid_prefix.html @@ -0,0 +1,236 @@ + + + + + + ICalGLib.Timezone.set_tzid_prefix + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneset_tzid_prefix

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_set_tzid_prefix (
    +  const gchar* new_prefix
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the prefix to be used for tzid’s generated from system tzdata. Must be globally unique (such as +a domain name owned by the developer of the calling application), and begin and end with forward slashes. +Do not change or de-allocate the string buffer after calling this.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    new_prefix
    +
    +

    Type: const gchar*

    +

    The ICalTimezone to be set.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Timezone.set_zone_directory.html b/static/libical-glib/type_func.Timezone.set_zone_directory.html new file mode 100644 index 00000000..5c257e83 --- /dev/null +++ b/static/libical-glib/type_func.Timezone.set_zone_directory.html @@ -0,0 +1,234 @@ + + + + + + ICalGLib.Timezone.set_zone_directory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibTimezoneset_zone_directory

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    void
    +i_cal_timezone_set_zone_directory (
    +  const gchar* path
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Sets the directory to look for the zonefiles.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    path
    +
    +

    Type: const gchar*

    +

    The path to look for the zonefiles.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.decode_ical_string.html b/static/libical-glib/type_func.Value.decode_ical_string.html new file mode 100644 index 00000000..4ac71ae3 --- /dev/null +++ b/static/libical-glib/type_func.Value.decode_ical_string.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.decode_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValuedecode_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_value_decode_ical_string (
    +  const gchar* szText
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Extracts the original character string encoded by the above function.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    szText
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The decoded string. NULL if fail.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.encode_ical_string.html b/static/libical-glib/type_func.Value.encode_ical_string.html new file mode 100644 index 00000000..3d27303c --- /dev/null +++ b/static/libical-glib/type_func.Value.encode_ical_string.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.encode_ical_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValueencode_ical_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gchar*
    +i_cal_value_encode_ical_string (
    +  const gchar* szText
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Encodes a character string in ical format, escape certain characters, etc.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    szText
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gchar*

    +

    The encoded string. NULL if fail.

    +
    +
    + + + + + + + +
    The caller of the function takes ownership of the data, and is responsible for freeing it.
    The return value can be NULL.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.kind_from_string.html b/static/libical-glib/type_func.Value.kind_from_string.html new file mode 100644 index 00000000..7626a56d --- /dev/null +++ b/static/libical-glib/type_func.Value.kind_from_string.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.kind_from_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValuekind_from_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalValueKind
    +i_cal_value_kind_from_string (
    +  const gchar* str
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a string to ICalValueKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    str
    +
    +

    Type: const gchar*

    +

    A string.

    + + + + + + + + + + +
    The data is owned by the caller of the function.
    The value is a NUL terminated UTF-8 string.
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalValueKind

    +

    A ICalValueKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.kind_is_valid.html b/static/libical-glib/type_func.Value.kind_is_valid.html new file mode 100644 index 00000000..e080c4e4 --- /dev/null +++ b/static/libical-glib/type_func.Value.kind_is_valid.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.kind_is_valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValuekind_is_valid

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    gboolean
    +i_cal_value_kind_is_valid (
    +  const ICalValueKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Checks whether the ICalValueKind is valid.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalValueKind

    +

    The ICalValueKind to be checked.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: gboolean

    +

    1 if yes, 0 if not.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.kind_to_property_kind.html b/static/libical-glib/type_func.Value.kind_to_property_kind.html new file mode 100644 index 00000000..522c3ce1 --- /dev/null +++ b/static/libical-glib/type_func.Value.kind_to_property_kind.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.kind_to_property_kind + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValuekind_to_property_kind

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    ICalPropertyKind
    +i_cal_value_kind_to_property_kind (
    +  ICalValueKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts a ICalValueKind to a ICalPropertyKind.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalValueKind

    +

    A ICalValueKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: ICalPropertyKind

    +

    The ICalPropertyKind.

    +
    +
    + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/static/libical-glib/type_func.Value.kind_to_string.html b/static/libical-glib/type_func.Value.kind_to_string.html new file mode 100644 index 00000000..d3f95ecf --- /dev/null +++ b/static/libical-glib/type_func.Value.kind_to_string.html @@ -0,0 +1,232 @@ + + + + + + ICalGLib.Value.kind_to_string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

    Function

    +

    ICalGLibValuekind_to_string

    +
    + +
    +
    +

    since: 1.0

    +
    +
    +

    + Declaration + + + [src] + +

    + +
    +
    const gchar*
    +i_cal_value_kind_to_string (
    +  const ICalValueKind kind
    +)
    +
    +
    +
    +
    + +
    +

    + Description + + + [src] + +

    + +
    +

    Converts the ICalValueKind to a string.

    +
    + +
    + +

    Available since: 1.0

    + + + + +
    + + +
    + + +
    +

    + Parameters + +

    + +
    +
    + +
    kind
    +
    +

    Type: ICalValueKind

    +

    A ICalValueKind.

    + + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + +
    +

    + Return value + +

    + +
    +
    +
    +

    Type: const gchar*

    +

    The string representation of ICalValueKind.

    +
    +
    + + + + + + + +
    The data is owned by the called function.
    The value is a NUL terminated UTF-8 string.
    +
    +
    +
    +
    + +
    +
    + + + + + + + +
    + + \ No newline at end of file diff --git a/static/libical-glib/urlmap.js b/static/libical-glib/urlmap.js new file mode 100644 index 00000000..deae96b9 --- /dev/null +++ b/static/libical-glib/urlmap.js @@ -0,0 +1,9 @@ +// SPDX-FileCopyrightText: 2021 GNOME Foundation +// SPDX-License-Identifier: LGPL-2.1-or-later + +// A map between namespaces and base URLs for their online documentation +baseURLs = [ + [ 'GLib', 'https://docs.gtk.org/glib/' ], + [ 'GObject', 'https://docs.gtk.org/gobject/' ], + [ 'Gio', 'https://docs.gtk.org/gio/' ], +] diff --git a/themes/adidoks b/themes/adidoks new file mode 160000 index 00000000..5c698271 --- /dev/null +++ b/themes/adidoks @@ -0,0 +1 @@ +Subproject commit 5c698271c460046034605b743a15196b12e32887