X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FQtx%2FQtxLogoMgr.h;h=eababf2b8d1d9485c7527fd30abfd9ac5ddda8d3;hb=cc14dfe0c087d1459c8b593ad7d262ddec495603;hp=bc18c9d36bac19b6270a7ac99bd2aff0cacc7a1e;hpb=c6b331268096596311d266faca1dba7b5db03e76;p=modules%2Fgui.git diff --git a/src/Qtx/QtxLogoMgr.h b/src/Qtx/QtxLogoMgr.h index bc18c9d36..eababf2b8 100644 --- a/src/Qtx/QtxLogoMgr.h +++ b/src/Qtx/QtxLogoMgr.h @@ -1,12 +1,39 @@ -#ifndef QTX_LOGOMGR_H -#define QTX_LOGOMGR_H +// Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + +// File: QtxLogoMgr.h +// Author: Sergey TELKOV +// +#ifndef QTXLOGOMGR_H +#define QTXLOGOMGR_H #include "Qtx.h" -class QMenuBar; +#include +#include +#include -#include -#include +class QMenuBar; +class QMovie; #ifdef WIN32 #pragma warning( disable : 4251 ) @@ -16,34 +43,42 @@ class QTX_EXPORT QtxLogoMgr : public QObject { Q_OBJECT + class LogoBox; + public: QtxLogoMgr( QMenuBar* ); virtual ~QtxLogoMgr(); int count() const; + void insert( const QString&, QMovie*, const int = -1 ); void insert( const QString&, const QPixmap&, const int = -1 ); void remove( const QString& ); void clear(); + void startAnimation( const QString& = QString() ); + void stopAnimation( const QString& = QString() ); + void pauseAnimation( const bool, const QString& = QString() ); + QMenuBar* menuBar() const; private: - void generate(); - int find( const QString& ) const; + typedef struct { QString id; QPixmap pix; QMovie* mov; } LogoInfo; + typedef QList LogoList; private: - typedef struct { QString id; QPixmap pix; } LogoInfo; - typedef QValueList LogoList; + void generate(); + int find( const QString& ) const; + LogoInfo& insert( const QString&, const int ); + void movies( const QString&, QList& ) const; private: - int myId; - QMenuBar* myMenus; - LogoList myLogos; + LogoBox* myBox; //!< widget containing logox + LogoList myLogos; //!< list of logo data }; #ifdef WIN32 #pragma warning( default : 4251 ) #endif -#endif +#endif // QTXLOGOMGR_H