Branch libreoffice-5-0-4
[LibreOffice.git] / vcl / source / app / idle.cxx
blob901c44e74cabff89accd46993d66978d1aefe32c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <vcl/idle.hxx>
21 #include <vcl/timer.hxx>
22 #include "svdata.hxx"
24 void Idle::Invoke()
26 maIdleHdl.Call( this );
29 Idle& Idle::operator=( const Idle& rIdle )
31 Scheduler::operator=(rIdle);
32 maIdleHdl = rIdle.maIdleHdl;
33 return *this;
36 Idle::Idle( const sal_Char *pDebugName ) : Scheduler( pDebugName )
40 Idle::Idle( const Idle& rIdle ) : Scheduler(rIdle)
42 maIdleHdl = rIdle.maIdleHdl;
45 void Idle::Start()
47 Scheduler::Start();
48 ImplSVData* pSVData = ImplGetSVData();
49 Timer::ImplStartTimer( pSVData, 0 );
52 bool Idle::ReadyForSchedule( bool bTimer )
54 // tdf#91727 - We need to re-work this to allow only UI idle handlers
55 // and not timeouts to be processed in some limited scenarios
56 (void)bTimer;
57 return true; // !bTimer
60 sal_uInt64 Idle::UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 /* nTime */ )
62 switch (mePriority) {
63 case SchedulerPriority::HIGHEST:
64 case SchedulerPriority::HIGH:
65 case SchedulerPriority::RESIZE:
66 case SchedulerPriority::REPAINT:
67 nMinPeriod = 1; // don't wait.
68 break;
69 default:
70 // FIXME: tdf#92036 workaround, I should be 1 too - wait 5ms
71 if (nMinPeriod > 5)
72 nMinPeriod = 5;
73 break;
75 return nMinPeriod;
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */