1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
26 maIdleHdl
.Call( this );
29 Idle
& Idle::operator=( const Idle
& rIdle
)
31 Scheduler::operator=(rIdle
);
32 maIdleHdl
= rIdle
.maIdleHdl
;
36 Idle::Idle( const sal_Char
*pDebugName
) : Scheduler( pDebugName
)
40 Idle::Idle( const Idle
& rIdle
) : Scheduler(rIdle
)
42 maIdleHdl
= rIdle
.maIdleHdl
;
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
57 return true; // !bTimer
60 sal_uInt64
Idle::UpdateMinPeriod( sal_uInt64 nMinPeriod
, sal_uInt64
/* nTime */ )
63 case SchedulerPriority::HIGHEST
:
64 case SchedulerPriority::HIGH
:
65 case SchedulerPriority::RESIZE
:
66 case SchedulerPriority::REPAINT
:
67 nMinPeriod
= 1; // don't wait.
70 // FIXME: tdf#92036 workaround, I should be 1 too - wait 5ms
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */