1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
* ion/mod_query/listing.h
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#ifndef ION_MOD_QUERY_LISTING_H
#define ION_MOD_QUERY_LISTING_H
#include <ioncore/common.h>
#include <ioncore/gr.h>
#include <ioncore/rectangle.h>
INTRSTRUCT(WListing);
INTRSTRUCT(WListingItemInfo);
DECLSTRUCT(WListingItemInfo){
int len;
int n_parts;
int *part_lens;
};
DECLSTRUCT(WListing){
char **strs;
WListingItemInfo *iteminfos;
int nstrs;
int selected_str;
int ncol, nrow, nitemcol, visrow;
int firstitem, firstoff;
int itemw, itemh, toth;
bool onecol;
};
extern void init_listing(WListing *l);
extern void setup_listing(WListing *l, char **strs, int nstrs, bool onecol);
extern void deinit_listing(WListing *l);
extern void fit_listing(GrBrush *brush, const WRectangle *geom, WListing *l);
extern void draw_listing(GrBrush *brush, const WRectangle *geom, WListing *l,
bool complete, GrAttr selattr);
extern bool scrollup_listing(WListing *l);
extern bool scrolldown_listing(WListing *l);
extern bool listing_select(WListing *l, int i);
#endif /* ION_MOD_QUERY_LISTING_H */
|