claws-mail/src/common/progressindicator.h
Christoph Hohmann 1e54657b1c 0.8.10claws76
* src/mainwindow.[ch]
* src/common/Makefile.am
* src/common/progressindicator.[ch]
        add UI independent progress indicator handling

* src/news.[ch]
        use new progress indicator for message info fetching

* src/common/hooks.h
        code cleanup
2003-03-03 20:45:57 +00:00

49 lines
1.4 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2003 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef PROCESSINDICATOR_H
#define PROCESSINDICATOR_H
#include <glib.h>
#define PROGRESSINDICATOR_HOOKLIST "progressindicator_hooklist"
typedef struct _ProgressData ProgressData;
typedef enum {
PROGRESS_COMMAND_START,
PROGRESS_COMMAND_SET_PERCENTAGE,
PROGRESS_COMMAND_STOP,
} ProgressCommand;
typedef enum {
PROGRESS_TYPE_NETWORK,
} ProgressType;
struct _ProgressData {
ProgressCommand cmd;
ProgressType type;
gfloat value;
};
void progressindicator_start(ProgressType type);
void progressindicator_set_percentage(ProgressType type, gfloat percent);
void progressindicator_stop(ProgressType type);
#endif /* PROCESSINDICATOR_H */