X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSTD%2FSTD_MDIDesktop.h;h=b1e07d1365ba203edb1021763d5a23b949c5f3d4;hb=da3d94e2700b8f44175da5a82a8bd85dc8abe8ef;hp=e4746b1b935c8c379d7c2ef09b42af59a70c617d;hpb=ead62d73ff5a862b5ef4746bc602d254a9ca8e28;p=modules%2Fgui.git diff --git a/src/STD/STD_MDIDesktop.h b/src/STD/STD_MDIDesktop.h index e4746b1b9..b1e07d136 100755 --- a/src/STD/STD_MDIDesktop.h +++ b/src/STD/STD_MDIDesktop.h @@ -1,3 +1,25 @@ +// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, 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 +// + #ifndef STD_MDIDESKTOP_H #define STD_MDIDESKTOP_H @@ -5,12 +27,10 @@ #include -class QtxAction; -class QPopupMenu; -class QWorkspace; +class QtxWorkspace; class QtxWorkspaceAction; -#if defined WNT +#if defined WIN32 #pragma warning( disable: 4251 ) #endif @@ -26,31 +46,31 @@ public: virtual ~STD_MDIDesktop(); virtual SUIT_ViewWindow* activeWindow() const; - virtual QPtrList windows() const; + virtual QList windows() const; void windowOperation( const int ); void setWindowOperations( const int, ... ); - void setWindowOperations( const QValueList& ); + void setWindowOperations( const QList& ); - QWorkspace* workspace() const; + QtxWorkspace* workspace() const; private slots: void onWindowActivated( QWidget* ); protected: void createActions(); - virtual QWidget* parentArea() const; + virtual void addWindow( QWidget* ); private: int operationFlag( const int ) const; private: - QWorkspace* myWorkspace; + QtxWorkspace* myWorkspace; QtxWorkspaceAction* myWorkspaceAction; }; -#if defined WNT +#if defined WIN32 #pragma warning( default: 4251 ) #endif