fontfactoryinterface.h
00001 /********************************************************************** 00002 ** Copyright (C) 2000 Trolltech AS. All rights reserved. 00003 ** 00004 ** This file is part of Qtopia Environment. 00005 ** 00006 ** This file may be distributed and/or modified under the terms of the 00007 ** GNU General Public License version 2 as published by the Free Software 00008 ** Foundation and appearing in the file LICENSE.GPL included in the 00009 ** packaging of this file. 00010 ** 00011 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00012 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00013 ** 00014 ** See http://www.trolltech.com/gpl/ for GPL licensing information. 00015 ** 00016 ** Contact info@trolltech.com if any conditions of this licensing are 00017 ** not clear to you. 00018 ** 00019 **********************************************************************/ 00020 #ifndef FONTFACTORYINTERFACE_H 00021 #define FONTFACTORYINTERFACE_H 00022 00023 #include <qnamespace.h> 00024 #include <qstring.h> 00025 #include <qpe/qcom.h> 00026 00027 class QFontFactory; 00028 00029 #ifndef QT_NO_COMPONENT 00030 // {7F194DD6-FAA3-498F-8F30-9C297A570DFA} 00031 #ifndef IID_FontFactory 00032 #define IID_FontFactory QUuid( 0x7f194dd6, 0xfaa3, 0x498f, 0x8f, 0x30, 0x9c, 0x29, 0x7a, 0x57, 0x0d, 0xfa) 00033 #endif 00034 #endif 00035 00036 00051 struct FontFactoryInterface : public QUnknownInterface 00052 { 00053 virtual QFontFactory *fontFactory() = 0; 00054 }; 00055 00056 #endif
