This was a remaining thing from the 'Make calendar views non-UI-blocking' work, to show progress of views in UI. This is currently done by a spinner beside source's name in the ESourceSelector and a tooltip above that row.
164 lines
5.4 KiB
C
164 lines
5.4 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* e-source-selector.h
|
|
*
|
|
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* published by the Free Software Foundation; either the
|
|
*
|
|
* This program 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 General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Author: Ettore Perazzoli <ettore@ximian.com>
|
|
*/
|
|
|
|
#if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
|
|
#error "Only <e-util/e-util.h> should be included directly."
|
|
#endif
|
|
|
|
#ifndef E_SOURCE_SELECTOR_H
|
|
#define E_SOURCE_SELECTOR_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <libedataserver/libedataserver.h>
|
|
|
|
/* Standard GObject macros */
|
|
#define E_TYPE_SOURCE_SELECTOR \
|
|
(e_source_selector_get_type ())
|
|
#define E_SOURCE_SELECTOR(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST \
|
|
((obj), E_TYPE_SOURCE_SELECTOR, ESourceSelector))
|
|
#define E_SOURCE_SELECTOR_CLASS(cls) \
|
|
(G_TYPE_CHECK_CLASS_CAST \
|
|
((cls), E_TYPE_SOURCE_SELECTOR, ESourceSelectorClass))
|
|
#define E_IS_SOURCE_SELECTOR(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE \
|
|
((obj), E_TYPE_SOURCE_SELECTOR))
|
|
#define E_IS_SOURCE_SELECTOR_CLASS(cls) \
|
|
(G_TYPE_CHECK_CLASS_TYPE \
|
|
((cls), E_TYPE_SOURCE_SELECTOR))
|
|
#define E_SOURCE_SELECTOR_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS \
|
|
((obj), E_TYPE_SOURCE_SELECTOR, ESourceSelectorClass))
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _ESourceSelector ESourceSelector;
|
|
typedef struct _ESourceSelectorClass ESourceSelectorClass;
|
|
typedef struct _ESourceSelectorPrivate ESourceSelectorPrivate;
|
|
|
|
struct _ESourceSelector {
|
|
GtkTreeView parent;
|
|
ESourceSelectorPrivate *priv;
|
|
};
|
|
|
|
struct _ESourceSelectorClass {
|
|
GtkTreeViewClass parent_class;
|
|
|
|
/* Methods */
|
|
gboolean (*get_source_selected) (ESourceSelector *selector,
|
|
ESource *source);
|
|
gboolean (*set_source_selected) (ESourceSelector *selector,
|
|
ESource *source,
|
|
gboolean selected);
|
|
|
|
/* Signals */
|
|
void (*selection_changed) (ESourceSelector *selector);
|
|
void (*primary_selection_changed)
|
|
(ESourceSelector *selector);
|
|
gboolean (*popup_event) (ESourceSelector *selector,
|
|
ESource *primary,
|
|
GdkEventButton *event);
|
|
gboolean (*data_dropped) (ESourceSelector *selector,
|
|
GtkSelectionData *data,
|
|
ESource *destination,
|
|
GdkDragAction action,
|
|
guint target_info);
|
|
void (*source_selected) (ESourceSelector *selector,
|
|
ESource *source);
|
|
void (*source_unselected) (ESourceSelector *selector,
|
|
ESource *source);
|
|
|
|
gpointer padding1;
|
|
gpointer padding2;
|
|
gpointer padding3;
|
|
};
|
|
|
|
GType e_source_selector_get_type (void) G_GNUC_CONST;
|
|
GtkWidget * e_source_selector_new (ESourceRegistry *registry,
|
|
const gchar *extension_name);
|
|
ESourceRegistry *
|
|
e_source_selector_get_registry (ESourceSelector *selector);
|
|
const gchar * e_source_selector_get_extension_name
|
|
(ESourceSelector *selector);
|
|
gboolean e_source_selector_get_show_colors
|
|
(ESourceSelector *selector);
|
|
void e_source_selector_set_show_colors
|
|
(ESourceSelector *selector,
|
|
gboolean show_colors);
|
|
gboolean e_source_selector_get_show_icons
|
|
(ESourceSelector *selector);
|
|
void e_source_selector_set_show_icons
|
|
(ESourceSelector *selector,
|
|
gboolean show_icons);
|
|
gboolean e_source_selector_get_show_toggles
|
|
(ESourceSelector *selector);
|
|
void e_source_selector_set_show_toggles
|
|
(ESourceSelector *selector,
|
|
gboolean show_toggles);
|
|
void e_source_selector_select_source (ESourceSelector *selector,
|
|
ESource *source);
|
|
void e_source_selector_unselect_source
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
void e_source_selector_select_exclusive
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
gboolean e_source_selector_source_is_selected
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
GList * e_source_selector_get_selection (ESourceSelector *selector);
|
|
void e_source_selector_edit_primary_selection
|
|
(ESourceSelector *selector);
|
|
ESource * e_source_selector_ref_primary_selection
|
|
(ESourceSelector *selector);
|
|
void e_source_selector_set_primary_selection
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
ESource * e_source_selector_ref_source_by_iter
|
|
(ESourceSelector *selector,
|
|
GtkTreeIter *iter);
|
|
ESource * e_source_selector_ref_source_by_path
|
|
(ESourceSelector *selector,
|
|
GtkTreePath *path);
|
|
void e_source_selector_queue_write (ESourceSelector *selector,
|
|
ESource *source);
|
|
void e_source_selector_update_row (ESourceSelector *selector,
|
|
ESource *source);
|
|
void e_source_selector_update_all_rows
|
|
(ESourceSelector *selector);
|
|
void e_source_selector_set_source_tooltip
|
|
(ESourceSelector *selector,
|
|
ESource *source,
|
|
const gchar *tooltip);
|
|
gchar * e_source_selector_dup_source_tooltip
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
void e_source_selector_set_source_is_busy
|
|
(ESourceSelector *selector,
|
|
ESource *source,
|
|
gboolean is_busy);
|
|
gboolean e_source_selector_get_source_is_busy
|
|
(ESourceSelector *selector,
|
|
ESource *source);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* E_SOURCE_SELECTOR_H */
|