diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 14:46:13 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-23 14:46:13 +0800 |
commit | b106b13525048195d99bcbde31e0e535972cbab4 (patch) | |
tree | 87b999777762c5bcea16a9430fbb94cc560de8c0 /shell/Evolution-Icon.idl | |
parent | 72ca61d74b9942040638b628a6f1358e02d23d42 (diff) | |
download | gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar.gz gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar.bz2 gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar.lz gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar.xz gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.tar.zst gsoc2013-evolution-b106b13525048195d99bcbde31e0e535972cbab4.zip |
Implemented an Evolution::Activity interface for keeping track of
background tasks. The Activity interface is added to the shell, and
the status of the various tasks is now displayed in a task bar widget
at the bottom of the EShellView.
I also implemented a simple test component to test all this stuff.
svn path=/trunk/; revision=10434
Diffstat (limited to 'shell/Evolution-Icon.idl')
-rw-r--r-- | shell/Evolution-Icon.idl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/shell/Evolution-Icon.idl b/shell/Evolution-Icon.idl new file mode 100644 index 0000000000..f8a3d66817 --- /dev/null +++ b/shell/Evolution-Icon.idl @@ -0,0 +1,23 @@ +/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Icon definition. + * + * Authors: + * Ettore Perazzoli <ettore@ximian.com> + * + * Copyright (C) 2000, 2001 Ximian, Inc. + */ + +module GNOME { +module Evolution { + +struct Icon { + short width, height; + boolean hasAlpha; + sequence <octet> rgba_data; // Row-by-row, left-to-right, top-to-bottom RGBA bytes +}; +typedef sequence <Icon> AnimatedIcon; + +}; +}; + |