pidgin 2.14.14dev
gntlog.h
Go to the documentation of this file.
1
6/* finch
7 *
8 * Finch is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
25 */
26#ifndef _FINCHLOG_H_
27#define _FINCHLOG_H_
28
29#include "log.h"
30#include "account.h"
31#include "gntwidget.h"
32
33typedef struct _FinchLogViewer FinchLogViewer;
34
39 GList *logs;
41 GntWidget *window;
42 GntWidget *tree;
43 GntWidget *text;
44 GntWidget *entry;
46 GntWidget *label;
47 PurpleLogReadFlags flags;
48 char *search;
49};
50
51
52
53void finch_log_show(PurpleLogType type, const char *username, PurpleAccount *account);
54void finch_log_show_contact(PurpleContact *contact);
55
56void finch_syslog_show(void);
57
58/**************************************************************************/
60/**************************************************************************/
66void finch_log_init(void);
67
74
79
82#endif
Account API.
void finch_log_init(void)
Initializes the GNT log subsystem.
void * finch_log_get_handle(void)
Returns the GNT log subsystem handle.
void finch_log_uninit(void)
Uninitializes the GNT log subsystem.
Logging API.
A GNT Log Viewer.
Definition: gntlog.h:38
GList * logs
The list of logs viewed in this viewer
Definition: gntlog.h:39
GntWidget * entry
The search entry, in which search terms are entered
Definition: gntlog.h:44
GntWidget * tree
The tree representing said treestore.
Definition: gntlog.h:42
GntWidget * text
The text to display said logs
Definition: gntlog.h:43
char * search
The string currently being searched for
Definition: gntlog.h:48
GntWidget * window
The viewer's window
Definition: gntlog.h:41
PurpleLogReadFlags flags
The most recently used log flags
Definition: gntlog.h:47
Structure representing an account.
Definition: account.h:170
A contact.
Definition: blist.h:155