1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 #ifndef _PTQUEUE_HXX 28 #define _PTQUEUE_HXX 29 30 //Leider vertragen wir es nicht so gut, wenn wir mehr als ein Paint 31 //gleichzeitig verarbeiten sollen. Insbesondere beim Drucken kommt dies 32 //leider haeufig vor. 33 //SwRootFrm::Paint() stellt fest, dass es zum zweitenmal gerufen wird, und 34 //traegt das Rechteck sowie die dazugehoerige Shell in den PaintCollector ein. 35 //Diejenigen stellen, die moeglicherweise das doppelte Paint "Verursachen" 36 //brauchen nur noch zum richtigen Zeitpunkt die gesammelten Paints verarbeiten. 37 //Derzeit bietet sich der Druckvorgang an, und zwar nach dem Druck von jeweils 38 //einer Seite. 39 40 //Das Invalidieren der Windows direkt aus dem RootFrm::Paint hat sich als nicht 41 //erfolgreich erwiesen, weil die Paints dann in den allermeisten Faellen 42 //wiederum zu einem sehr unguenstigen Zeitpunkt ankommen. 43 //Nach dem Druck jeder Seite ein Update auf alle Fenster auszuloesen scheint 44 //auch nicht angeraten, weil einerseits die edit-Windows nicht im direkten 45 //Zugriff sind und anderseits das notwendige Update je nach Plattform extrem 46 //teuer werden kann. 47 48 class SwQueuedPaint; 49 class ViewShell; 50 class SwRect; 51 52 class SwPaintQueue 53 { 54 public: 55 static SwQueuedPaint *pQueue; 56 57 static void Add( ViewShell *pSh, const SwRect &rNew ); 58 static void Remove( ViewShell *pSh ); 59 static void Repaint(); 60 }; 61 62 #endif 63