00001 /* ============================================================ 00002 * File : constants.h 00003 * Description : 00004 * 00005 00006 * This program is free software; you can redistribute it 00007 * and/or modify it under the terms of the GNU General 00008 * Public License as published bythe Free Software Foundation; 00009 * either version 2, or (at your option) 00010 * any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * ============================================================ */ 00018 00019 00020 #ifndef CONSTANTS_H 00021 #define CONSTANTS_H 00022 00023 #include <qstring.h> 00024 00025 static const QString IMAGE_FILENAMES( 00026 "*.jpg *.JPG *.jpeg *.JPEG *.png *.PNG " 00027 "*.tif *.TIF *.tiff *.TIFF *.bmp *.BMP *.gif *.GIF"); 00028 static const QString MOVIE_FILENAMES( 00029 "*.avi *.AVI *.mpg *.MPG *.mpeg *.MPEG *.mov *.MOV *.wmv *.WMV"); 00030 static const QString MEDIA_FILENAMES = 00031 IMAGE_FILENAMES + QString(" ") + MOVIE_FILENAMES; 00032 00033 #endif /* CONSTANTS_H */
1.5.5