aboutsummaryrefslogtreecommitdiff
path: root/src/lib/FL/Fl_Native_File_Chooser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/FL/Fl_Native_File_Chooser.cxx')
-rw-r--r--src/lib/FL/Fl_Native_File_Chooser.cxx44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/lib/FL/Fl_Native_File_Chooser.cxx b/src/lib/FL/Fl_Native_File_Chooser.cxx
new file mode 100644
index 0000000..cdc4c27
--- /dev/null
+++ b/src/lib/FL/Fl_Native_File_Chooser.cxx
@@ -0,0 +1,44 @@
1//
2// Fl_Native_File_Chooser.cxx -- FLTK native OS file chooser widget
3//
4// Copyright 2004 by Greg Ercolano.
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Library General Public
8// License as published by the Free Software Foundation; either
9// version 2 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Library General Public License for more details.
15//
16// You should have received a copy of the GNU Library General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19// USA.
20//
21// Use Windows' chooser
22#ifdef WINDOWS
23#ifndef _WIN32
24#define _WIN32
25#endif
26#endif
27#ifdef DARWIN
28#define __APPLE__
29#endif
30
31#ifdef _WIN32
32#include "Fl_Native_File_Chooser_WIN32.cxx"
33#endif
34
35// Use Apple's chooser
36#ifdef __APPLE__
37#include "Fl_Native_File_Chooser_MAC.cxx"
38#endif
39
40// All else falls back to FLTK's own chooser
41#if ! defined(__APPLE__) && !defined(_WIN32)
42#include "Fl_Native_File_Chooser_FLTK.cxx"
43#endif
44