/usr/include/evolution-data-server/libedataserverui/e-webdav-discover-widget.h is in libedataserverui1.2-dev 3.18.5-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | /*
* Copyright (C) 2015 Red Hat, Inc. (www.redhat.com)
*
* This library is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
#if !defined (__LIBEDATASERVERUI_H_INSIDE__) && !defined (LIBEDATASERVERUI_COMPILATION)
#error "Only <libedataserverui/libedataserverui.h> should be included directly."
#endif
#ifndef E_WEBDAV_DISCOVER_WIDGET_H
#define E_WEBDAV_DISCOVER_WIDGET_H
#include <gio/gio.h>
#include <gtk/gtk.h>
#include <libedataserver/libedataserver.h>
#include <libedataserverui/libedataserverui.h>
G_BEGIN_DECLS
GtkWidget * e_webdav_discover_content_new (ECredentialsPrompter *credentials_prompter,
ESource *source,
const gchar *base_url,
guint supports_filter);
GtkTreeSelection *
e_webdav_discover_content_get_tree_selection
(GtkWidget *content);
gboolean e_webdav_discover_content_get_multiselect
(GtkWidget *content);
void e_webdav_discover_content_set_multiselect
(GtkWidget *content,
gboolean multiselect);
const gchar * e_webdav_discover_content_get_base_url (GtkWidget *content);
void e_webdav_discover_content_set_base_url (GtkWidget *content,
const gchar *base_url);
gboolean e_webdav_discover_content_get_selected (GtkWidget *content,
gint index,
gchar **out_href,
guint *out_supports,
gchar **out_display_name,
gchar **out_color);
gchar * e_webdav_discover_content_get_user_address
(GtkWidget *content);
void e_webdav_discover_content_refresh (GtkWidget *content,
const gchar *display_name,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean e_webdav_discover_content_refresh_finish
(GtkWidget *content,
GAsyncResult *result,
GError **error);
void e_webdav_discover_content_show_error (GtkWidget *content,
const GError *error);
GtkDialog * e_webdav_discover_dialog_new (GtkWindow *parent,
const gchar *title,
ECredentialsPrompter *credentials_prompter,
ESource *source,
const gchar *base_url,
guint supports_filter);
GtkWidget * e_webdav_discover_dialog_get_content (GtkDialog *dialog);
void e_webdav_discover_dialog_refresh (GtkDialog *dialog);
G_END_DECLS
#endif /* E_WEBDAV_DISCOVER_WIDGET_H */
|