1 /* vi: set sw=4 ts=4 wrap ai: */
2 /*
3  * fm-widget-view.h: This file is part of caja.
4  *
5  * Copyright (C) 2019 Wu Xiaotian <yetist@gmail.com>
6  * Copyright (C) 2019-2021 The MATE developers
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  * */
22 
23 #ifndef __FM_WIDGET_VIEW_H__
24 #define __FM_WIDGET_VIEW_H__  1
25 
26 #include "fm-directory-view.h"
27 
28 G_BEGIN_DECLS
29 
30 #define FM_WIDGET_VIEW_ID                "OAFIID:Caja_File_Manager_Widget_View"
31 #define FM_TYPE_WIDGET_VIEW              (fm_widget_view_get_type ())
32 G_DECLARE_FINAL_TYPE (FMWidgetView, fm_widget_view, FM, WIDGET_VIEW, FMDirectoryView)
33 
34 FMWidgetView* fm_widget_view_new      (void);
35 void          fm_widget_view_register (void);
36 
37 G_END_DECLS
38 
39 #endif /* __FM_WIDGET_VIEW_H__ */
40