summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/FileBrowser.h
blob: 5e86355f8d786ff554e4872d6e00362b84d5ec16 (plain) (blame)
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
//
// "$Id: FileBrowser.h 4926 2006-04-10 21:03:29Z fabien $"
//
// FileBrowser definitions.
//
// Copyright 1999-2006 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 on the following page:
//
//     http://www.fltk.org/str.php
//

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

#ifndef fltk_FileBrowser_h
#define fltk_FileBrowser_h

#include <fltk/Browser.h>
#include <fltk/FileIcon.h>
#include <fltk/filename.h>

namespace fltk {


//
// FileBrowser class...
//

class FL_API FileBrowser : public Browser
{
  int		filetype_;
  const char	*directory_;
  float		icon_size_;
  const char	*pattern_;

public:
  enum { FILES, DIRECTORIES };

  FileBrowser(int, int, int, int, const char * = 0);

  float		icon_size() const { 
    return (icon_size_ <0?  (2.0f* textsize()) : icon_size_); 
  }
  void 		icon_size(float f) { icon_size_ = f; redraw(); };

  void	filter(const char *pattern);
  const char	*filter() const { return (pattern_); };

  int		load(const char *directory, File_Sort_F *sort = (File_Sort_F*) fltk::numericsort);

  float		textsize() const { return (Browser::textsize()); };
  void		textsize(float s) { Browser::textsize(s); icon_size_ = (uchar)(3 * s / 2); };

  int		filetype() const { return (filetype_); };
  void		filetype(int t) { filetype_ = t; };
  const char *  directory() const {return directory_;}

  // adding or inserting a line into the fileBrowser
  void insert(int n, const char* label, FileIcon* icon);
  void insert(int n, const char* label, void* data){Menu::insert(n, label,data);}
  void add(const char * line, FileIcon* icon);

  // Showing or not showing the hidden files, that's the question:
public:
  // sets this flag if you want to see the hidden files in the browser
  void	    show_hidden(bool show) { show_hidden_= show; }
  bool	    show_hidden() const {return show_hidden_;}
private:
    bool		show_hidden_;
};

}

#endif // !_Fl_File_Browser_H_

//
// End of "$Id: FileBrowser.h 4926 2006-04-10 21:03:29Z fabien $".
//