/*************************************************************************** sq_library.h - description ------------------- begin : ðÎÄ éÀÎ 27 2005 copyright : (C) 2005 by Baryshev Dmitry email : ksquirrel.iv@gmail.com ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef SQ_LIBRARY_H #define SQ_LIBRARY_H #include #include #include #include #include class TQLibrary; class KTempFile; class fmt_codec_base; /* * SQ_LIBRARY represents a library. It contains all information * needed by other classes, e.g. pointer to codec, mime image, * version string, filter string, etc. * * Used by SQ_LibraryHandler. */ struct SQ_LIBRARY { SQ_LIBRARY() : lib(0), codec(0), codec_il(0), tmp(0), tmp_il(0) {} // pointer to library TQLibrary *lib; // path to a library on disk TQString libpath; // converted regular expression TQRegExp regexp; // filter for a filemanager TQString filter; // path to config file (.ui) TQString config; fmt_settings settings; // regular expression as string TQString regexp_str; TQString mimetype; bool mime_multi; // information on codec TQString quickinfo; // codec's version TQString version; // pointer to a codec fmt_codec_base *codec, *codec_il; // 'create' and 'destroy' functions. // should exist in library! fmt_codec_base* (*codec_create)(); void (*codec_destroy)(fmt_codec_base*); TQPixmap mime; // options for writers. fmt_writeoptionsabs opt; bool writestatic, writeanimated; bool readable; bool canbemultiple, needtempfile; KTempFile *tmp, *tmp_il; }; #endif