2001-08-02 01:24:49 +04:00
|
|
|
//
|
2005-02-05 21:26:21 +03:00
|
|
|
// "$Id$"
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2001-08-02 20:17:04 +04:00
|
|
|
// FileBrowser definitions.
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1999-2010 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.
|
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_File_Browser widget . */
|
|
|
|
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
// Include necessary header files...
|
|
|
|
//
|
|
|
|
|
2001-09-29 18:38:59 +04:00
|
|
|
#ifndef _Fl_File_Browser_H_
|
|
|
|
# define _Fl_File_Browser_H_
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2001-08-02 20:17:04 +04:00
|
|
|
# include "Fl_Browser.H"
|
2001-09-29 18:38:59 +04:00
|
|
|
# include "Fl_File_Icon.H"
|
2002-05-02 18:31:10 +04:00
|
|
|
# include "filename.H"
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
|
|
|
|
//
|
2001-09-29 18:38:59 +04:00
|
|
|
// Fl_File_Browser class...
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/** The Fl_File_Browser widget displays a list of filenames, optionally with file-specific icons. */
|
2011-01-24 20:04:22 +03:00
|
|
|
class FL_EXPORT Fl_File_Browser : public Fl_Browser {
|
|
|
|
|
2001-09-04 17:13:29 +04:00
|
|
|
int filetype_;
|
2001-08-02 01:24:49 +04:00
|
|
|
const char *directory_;
|
|
|
|
uchar iconsize_;
|
|
|
|
const char *pattern_;
|
|
|
|
|
2001-08-02 20:17:04 +04:00
|
|
|
int full_height() const;
|
2001-08-02 01:24:49 +04:00
|
|
|
int item_height(void *) const;
|
|
|
|
int item_width(void *) const;
|
|
|
|
void item_draw(void *, int, int, int, int) const;
|
|
|
|
int incr_height() const { return (item_height(0)); }
|
|
|
|
|
|
|
|
public:
|
2001-09-29 18:38:59 +04:00
|
|
|
enum { FILES, DIRECTORIES };
|
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
The constructor creates the Fl_File_Browser widget at the specified position and size.
|
|
|
|
The destructor destroys the widget and frees all memory that has been allocated.
|
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
Fl_File_Browser(int, int, int, int, const char * = 0);
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/** Sets or gets the size of the icons. The default size is 20 pixels. */
|
2002-11-19 19:37:36 +03:00
|
|
|
uchar iconsize() const { return (iconsize_); };
|
2008-09-14 16:45:42 +04:00
|
|
|
/** Sets or gets the size of the icons. The default size is 20 pixels. */
|
2002-11-19 19:37:36 +03:00
|
|
|
void iconsize(uchar s) { iconsize_ = s; redraw(); };
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Sets or gets the filename filter. The pattern matching uses
|
|
|
|
the fl_filename_match()
|
|
|
|
function in FLTK.
|
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
void filter(const char *pattern);
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Sets or gets the filename filter. The pattern matching uses
|
|
|
|
the fl_filename_match()
|
|
|
|
function in FLTK.
|
|
|
|
*/
|
2002-11-19 19:37:36 +03:00
|
|
|
const char *filter() const { return (pattern_); };
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Loads the specified directory into the browser. If icons have been
|
|
|
|
loaded then the correct icon is associated with each file in the list.
|
|
|
|
|
|
|
|
<P>The sort argument specifies a sort function to be used with
|
|
|
|
fl_filename_list().
|
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
int load(const char *directory, Fl_File_Sort_F *sort = fl_numericsort);
|
2001-08-02 01:24:49 +04:00
|
|
|
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize textsize() const { return Fl_Browser::textsize(); };
|
|
|
|
void textsize(Fl_Fontsize s) { Fl_Browser::textsize(s); iconsize_ = (uchar)(3 * s / 2); };
|
2001-09-04 17:13:29 +04:00
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Sets or gets the file browser type, FILES or
|
|
|
|
DIRECTORIES. When set to FILES, both
|
|
|
|
files and directories are shown. Otherwise only directories are
|
|
|
|
shown.
|
|
|
|
*/
|
2002-11-19 19:37:36 +03:00
|
|
|
int filetype() const { return (filetype_); };
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Sets or gets the file browser type, FILES or
|
|
|
|
DIRECTORIES. When set to FILES, both
|
|
|
|
files and directories are shown. Otherwise only directories are
|
|
|
|
shown.
|
|
|
|
*/
|
2005-02-05 21:26:21 +03:00
|
|
|
void filetype(int t) { filetype_ = t; };
|
2001-08-02 01:24:49 +04:00
|
|
|
};
|
|
|
|
|
2001-09-29 18:38:59 +04:00
|
|
|
#endif // !_Fl_File_Browser_H_
|
2001-08-02 01:24:49 +04:00
|
|
|
|
|
|
|
//
|
2005-02-05 21:26:21 +03:00
|
|
|
// End of "$Id$".
|
2001-08-02 01:24:49 +04:00
|
|
|
//
|