1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* GTK - The GIMP Toolkit 3 * Copyright (C) 2015 Red Hat, Inc 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 17 */ 18 19 #ifndef __GTK_FILE_FILTER_PRIVATE_H__ 20 #define __GTK_FILE_FILTER_PRIVATE_H__ 21 22 #include <gtk/gtkfilefilter.h> 23 #include <gdk/gdkconfig.h> 24 25 #ifdef GDK_WINDOWING_QUARTZ 26 #import <Foundation/Foundation.h> 27 #endif 28 29 G_BEGIN_DECLS 30 31 char ** _gtk_file_filter_get_as_patterns (GtkFileFilter *filter); 32 33 #ifdef GDK_WINDOWING_QUARTZ 34 NSArray * _gtk_file_filter_get_as_pattern_nsstrings (GtkFileFilter *filter); 35 #endif 36 37 38 G_END_DECLS 39 40 #endif /* __GTK_FILE_FILTER_PRIVATE_H__ */ 41