Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <vcl/idle.hxx>
21 : #include <vcl/timer.hxx>
22 : #include "svdata.hxx"
23 :
24 26805562 : void Idle::Invoke()
25 : {
26 26805562 : maIdleHdl.Call( this );
27 26805562 : }
28 :
29 0 : Idle& Idle::operator=( const Idle& rIdle )
30 : {
31 0 : Scheduler::operator=(rIdle);
32 0 : maIdleHdl = rIdle.maIdleHdl;
33 0 : return *this;
34 : }
35 :
36 206911 : Idle::Idle( const sal_Char *pDebugName ) : Scheduler( pDebugName )
37 : {
38 206911 : }
39 :
40 0 : Idle::Idle( const Idle& rIdle ) : Scheduler(rIdle)
41 : {
42 0 : maIdleHdl = rIdle.maIdleHdl;
43 0 : }
44 :
45 26900071 : void Idle::Start()
46 : {
47 26900071 : Scheduler::Start();
48 26900071 : ImplSVData* pSVData = ImplGetSVData();
49 26900071 : Timer::ImplStartTimer( pSVData, 0 );
50 26900071 : }
51 :
52 35880073 : bool Idle::ReadyForSchedule( bool bTimer )
53 : {
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 35880073 : return true; // !bTimer
58 : }
59 :
60 35850559 : sal_uInt64 Idle::UpdateMinPeriod( sal_uInt64 /* nMinPeriod */, sal_uInt64 /* nTime */ )
61 : {
62 35850559 : return 1;
63 : }
64 :
65 :
66 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|