KVIrc 5.2.6
Developer APIs
kvi_fileextensions.h
Go to the documentation of this file.
1#ifndef _KVI_FILEEXTENSIONS_H_
2#define _KVI_FILEEXTENSIONS_H_
3//=============================================================================
4//
5// File : kvi_fileextensions.h
6// Creation date : Tue Dec 26 2006 05:09:22 CEST by Szymon Stefanek
7//
8// This file is part of the KVIrc IRC client distribution
9// Copyright (C) 2006 Szymon Stefanek (pragma at kvirc dot net)
10// Copyright (C) 2008 Elvio Basello (hellvis69 at netsons dot org)
11//
12// This program is FREE software. You can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation; either version 2
15// of the License, or (at your option) any later version.
16//
17// This program is distributed in the HOPE that it will be USEFUL,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20// See the GNU General Public License for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with this program. If not, write to the Free Software Foundation,
24// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25//
26//=============================================================================
27
42#define KVI_FILEEXTENSION_CONFIG ".kvc"
43#define KVI_FILEEXTENSION_SCRIPT ".kvs"
44#define KVI_FILEEXTENSION_THEMEPACKAGE ".kvt"
45#define KVI_FILEEXTENSION_ADDONPACKAGE ".kva"
46
59#ifdef COMPILE_KDE_SUPPORT
60#define KVI_FILTER_CONFIG "*.kvc|KVIrc Config (*.kvc)"
61#define KVI_FILTER_SCRIPT "*.kvs|KVIrc Script (*.kvs)"
62#define KVI_FILTER_THEME "*.kvt|KVIrc Theme (*.kvt)"
63#define KVI_FILTER_ADDON "*.kva|KVIrc Addon (*.kva)"
64#define KVI_FILTER_INI "*.ini|INI File (*.ini)"
65#define KVI_FILTER_IMAGE "*.png *.jpg *.jpeg *.bmp *.gif *.xpm|Image File (*.png *.jpg *.jpeg *.bmp *.gif *.xpm)"
66//#define KVI_FILTER_UI "*.ui|User Interface File (*.ui)"
67#else
68#define KVI_FILTER_CONFIG "KVIrc Config (*.kvc)"
69#define KVI_FILTER_SCRIPT "KVIrc Script (*.kvs)"
70#define KVI_FILTER_THEME "KVIrc Theme (*.kvt)"
71#define KVI_FILTER_ADDON "KVIrc Addon (*.kva)"
72#define KVI_FILTER_INI "INI File (*.ini)"
73#define KVI_FILTER_IMAGE "Image File (*.png *.jpg *.jpeg *.bmp *.gif *.xpm)"
74//#define KVI_FILTER_UI "User Interface File (*.ui)"
75#endif //COMPILE_KDE_SUPPORT
76
77#endif //_KVI_FILEEXTENSIONS_H_