summaryrefslogtreecommitdiff
path: root/FL/Fl_File_Icon.H
blob: fc8096fe1412f7d8ab0878b18943275ca1039e32 (plain)
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
113
//
// "$Id: Fl_File_Icon.H,v 1.1.2.6 2002/05/10 00:18:37 easysw Exp $"
//
// Fl_File_Icon definitions.
//
// Copyright 1999-2002 by Michael Sweet.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library 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
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

//
// Include necessary header files...
//

#ifndef _Fl_Fl_File_Icon_H_
#  define _Fl_Fl_File_Icon_H_

#  include "Fl.H"


//
// Special color value for the icon color.
//

#  define FL_ICON_COLOR (Fl_Color)0xffffffff


//
// Fl_File_Icon class...
//

class Fl_File_Icon			//// Icon data
{
  FL_EXPORT static Fl_File_Icon *first_;	// Pointer to first icon/filetype
  Fl_File_Icon	*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 value (2 shorts)
    LINE,			// Start of line
    CLOSEDLINE,			// Start of closed line
    POLYGON,			// Start of polygon
    OUTLINEPOLYGON,		// Followed by outline color (2 shorts)
    VERTEX			// Followed by scaled X,Y
  };

  FL_EXPORT Fl_File_Icon(const char *p, int t, int nd = 0, short *d = 0);
  FL_EXPORT ~Fl_File_Icon();

  FL_EXPORT short	*add(short d);
  short			*add_color(Fl_Color c)
			{ short *d = add(COLOR); add(c >> 16); 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; }
  FL_EXPORT void	draw(int x, int y, int w, int h, Fl_Color ic, int active = 1);
  FL_EXPORT void	label(Fl_Widget *w);
  FL_EXPORT static void	labeltype(const Fl_Label *o, int x, int y, int w, int h, Fl_Align a);
  FL_EXPORT void	load(const char *f);
  FL_EXPORT int		load_fti(const char *fti);
  FL_EXPORT int		load_image(const char *i);
  Fl_File_Icon		*next() { return (next_); }
  const char		*pattern() { return (pattern_); }
  int			size() { return (num_data_); }
  int			type() { return (type_); }
  short			*value() { return (data_); }

  FL_EXPORT static Fl_File_Icon *find(const char *filename, int filetype = ANY);
  static Fl_File_Icon *first() { return (first_); }
  FL_EXPORT static void	load_system_icons(void);
};

#endif // !_Fl_Fl_File_Icon_H_

//
// End of "$Id: Fl_File_Icon.H,v 1.1.2.6 2002/05/10 00:18:37 easysw Exp $".
//