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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
//
// "$Id: FileIcon.h,v 1.8 2000/01/04 13:45:51 mike Exp $"
//
// FileIcon definitions.
//
// Copyright 1997-2000 by Easy Software Products.
//
// These coded instructions, statements, and computer programs are the
// property of Easy Software Products and are protected by Federal
// copyright law. Distribution and use rights are outlined in the file
// "COPYING" which should have been included with this file. If this
// file is missing or damaged please contact Easy Software Products
// at:
//
// Attn: ESP Licensing Information
// Easy Software Products
// 44141 Airport View Drive, Suite 204
// Hollywood, Maryland 20636-3111 USA
//
// Voice: (301) 373-9600
// EMail: info@easysw.com
// WWW: http://www.easysw.com
//
//
// Include necessary header files...
//
#ifndef _GUI_FILEICON_H_
# define _GUI_FILEICON_H_
# include <FL/Fl.H>
//
// FileIcon class...
//
class FileIcon //// Icon data
{
static FileIcon *first_; // Pointer to first icon/filetype
FileIcon *next_; // Pointer to next icon/filetype
const char *pattern_; // Pattern string
int type_; // Match only if directory or file?
int num_data_; // Number of data elements
int alloc_data_; // Number of allocated elements
short *data_; // Icon data
public:
enum // File types
{
ANY, // Any kind of file
PLAIN, // Only plain files
FIFO, // Only named pipes
DEVICE, // Only character and block devices
LINK, // Only symbolic links
DIRECTORY // Only directories
};
enum // Data opcodes
{
END, // End of primitive/icon
COLOR, // Followed by color index
LINE, // Start of line
CLOSEDLINE, // Start of closed line
POLYGON, // Start of polygon
OUTLINEPOLYGON, // Followed by outline color
VERTEX // Followed by scaled X,Y
};
FileIcon(const char *p, int t, int nd = 0, short *d = 0);
~FileIcon();
short *add(short d);
short *add_color(short c)
{ short *d = add(COLOR); add(c); return (d); }
short *add_vertex(int x, int y)
{ short *d = add(VERTEX); add(x); add(y); return (d); }
short *add_vertex(float x, float y)
{ short *d = add(VERTEX); add((int)(x * 10000.0));
add((int)(y * 10000.0)); return (d); }
void clear() { num_data_ = 0; }
void draw(int x, int y, int w, int h, Fl_Color ic, int active = 1);
void label(Fl_Widget *w);
static void labeltype(const Fl_Label *o, int x, int y, int w, int h, Fl_Align a);
void load(const char *f);
void load_fti(const char *fti);
void load_xpm(const char *xpm);
const char *pattern() { return (pattern_); }
int size() { return (num_data_); }
int type() { return (type_); }
short *value() { return (data_); }
static FileIcon *find(const char *filename, int filetype = ANY);
static FileIcon *first() { return (first_); }
static void load_system_icons(void);
};
#define _FL_ICON_LABEL FL_FREE_LABELTYPE
#if FL_MAJOR_VERSION == 1 && FL_MINOR_VERSION == 0
// FLTK 1.0.x defined these functions without the "fl_" prefix.
#define fl_contrast contrast
#define fl_inactive inactive
#endif
#endif // !_GUI_FILEICON_H_
//
// End of "$Id: FileIcon.h,v 1.8 2000/01/04 13:45:51 mike Exp $".
//
|