~ubuntu-branches/ubuntu/saucy/irssi-plugin-otr/saucy-proposed

« back to all changes in this revision

Viewing changes to irssi-headers/fe-text/statusbar-item.h

  • Committer: Bazaar Package Importer
  • Author(s): David Spreen
  • Date: 2009-02-16 16:33:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090216163328-huzenu0s2j3uvlk3
Tags: 0.3-1
* New upstream release.
* First upload to unstable after 0.2. Introduces xchat-otr
  to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef IRSSI_STATUSBAR_ITEM_H
 
2
#define IRSSI_STATUSBAR_ITEM_H
 
3
 
 
4
struct SBAR_ITEM_REC;
 
5
 
 
6
typedef void (*STATUSBAR_FUNC) (struct SBAR_ITEM_REC *item, int get_size_only);
 
7
 
 
8
void statusbar_item_register(const char *name, const char *value,
 
9
                             STATUSBAR_FUNC func);
 
10
void statusbar_item_unregister(const char *name);
 
11
void statusbar_item_set_size(struct SBAR_ITEM_REC *item, int min_size, int max_size);
 
12
void statusbar_item_default_handler(struct SBAR_ITEM_REC *item, int get_size_only,
 
13
                                    const char *str, const char *data,
 
14
                                    int escape_vars);
 
15
void statusbar_items_redraw(const char *name);
 
16
 
 
17
#endif