2001-08-02 01:24:49 +04:00
|
|
|
//
|
2004-04-11 08:39:01 +04:00
|
|
|
// "$Id: Fl_File_Icon.H,v 1.1.2.10 2004/04/11 04:38:54 easysw Exp $"
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2001-09-29 18:38:59 +04:00
|
|
|
// Fl_File_Icon definitions.
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2004-04-11 08:39:01 +04:00
|
|
|
// Copyright 1999-2004 by Michael Sweet.
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2001-08-02 20:17:04 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Include necessary header files...
|
|
|
|
//
|
|
|
|
|
2001-09-29 18:38:59 +04:00
|
|
|
#ifndef _Fl_Fl_File_Icon_H_
|
|
|
|
# define _Fl_Fl_File_Icon_H_
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2001-08-02 20:17:04 +04:00
|
|
|
# include "Fl.H"
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
|
2001-10-29 06:44:33 +03:00
|
|
|
//
|
|
|
|
// Special color value for the icon color.
|
|
|
|
//
|
|
|
|
|
|
|
|
# define FL_ICON_COLOR (Fl_Color)0xffffffff
|
|
|
|
|
|
|
|
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2001-09-29 18:38:59 +04:00
|
|
|
// Fl_File_Icon class...
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_File_Icon //// Icon data
|
2001-08-02 01:24:49 +04:00
|
|
|
{
|
2002-08-14 20:49:38 +04:00
|
|
|
static Fl_File_Icon *first_; // Pointer to first icon/filetype
|
2001-09-29 18:38:59 +04:00
|
|
|
Fl_File_Icon *next_; // Pointer to next icon/filetype
|
2001-08-02 01:24:49 +04:00
|
|
|
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
|
2001-08-02 20:17:04 +04:00
|
|
|
DIRECTORY // Only directories
|
2001-08-02 01:24:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum // Data opcodes
|
|
|
|
{
|
|
|
|
END, // End of primitive/icon
|
2001-10-29 06:44:33 +03:00
|
|
|
COLOR, // Followed by color value (2 shorts)
|
2001-08-02 01:24:49 +04:00
|
|
|
LINE, // Start of line
|
|
|
|
CLOSEDLINE, // Start of closed line
|
|
|
|
POLYGON, // Start of polygon
|
2001-10-29 06:44:33 +03:00
|
|
|
OUTLINEPOLYGON, // Followed by outline color (2 shorts)
|
2001-08-02 01:24:49 +04:00
|
|
|
VERTEX // Followed by scaled X,Y
|
|
|
|
};
|
|
|
|
|
2002-08-14 20:49:38 +04:00
|
|
|
Fl_File_Icon(const char *p, int t, int nd = 0, short *d = 0);
|
|
|
|
~Fl_File_Icon();
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2002-11-19 19:37:36 +03:00
|
|
|
short *add(short d);
|
|
|
|
short *add_color(Fl_Color c)
|
|
|
|
{ short *d = add((short)COLOR); add((short)(c >> 16)); add((short)c); return (d); }
|
|
|
|
short *add_vertex(int x, int y)
|
|
|
|
{ short *d = add((short)VERTEX); add((short)x); add((short)y); return (d); }
|
|
|
|
short *add_vertex(float x, float y)
|
|
|
|
{ short *d = add((short)VERTEX); add((short)(x * 10000.0));
|
|
|
|
add((short)(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);
|
2002-08-14 20:49:38 +04:00
|
|
|
static void labeltype(const Fl_Label *o, int x, int y, int w, int h, Fl_Align a);
|
2002-11-19 19:37:36 +03:00
|
|
|
void load(const char *f);
|
2002-08-14 20:49:38 +04:00
|
|
|
int load_fti(const char *fti);
|
|
|
|
int load_image(const char *i);
|
2002-11-19 19:37:36 +03:00
|
|
|
Fl_File_Icon *next() { return (next_); }
|
|
|
|
const char *pattern() { return (pattern_); }
|
|
|
|
int size() { return (num_data_); }
|
|
|
|
int type() { return (type_); }
|
|
|
|
short *value() { return (data_); }
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2002-08-14 20:49:38 +04:00
|
|
|
static Fl_File_Icon *find(const char *filename, int filetype = ANY);
|
2001-09-29 18:38:59 +04:00
|
|
|
static Fl_File_Icon *first() { return (first_); }
|
2002-08-14 20:49:38 +04:00
|
|
|
static void load_system_icons(void);
|
2001-08-02 01:24:49 +04:00
|
|
|
};
|
|
|
|
|
2001-09-29 18:38:59 +04:00
|
|
|
#endif // !_Fl_Fl_File_Icon_H_
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
//
|
2004-04-11 08:39:01 +04:00
|
|
|
// End of "$Id: Fl_File_Icon.H,v 1.1.2.10 2004/04/11 04:38:54 easysw Exp $".
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|