2015-01-14 08:29:37 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_VCL_IDLE_HXX
|
|
|
|
#define INCLUDED_VCL_IDLE_HXX
|
|
|
|
|
|
|
|
#include <tools/link.hxx>
|
2015-02-26 07:33:59 +00:00
|
|
|
#include <vcl/scheduler.hxx>
|
2015-01-14 08:29:37 +01:00
|
|
|
|
2015-02-26 07:33:59 +00:00
|
|
|
class VCL_DLLPUBLIC Idle : public Scheduler
|
2015-01-14 08:29:37 +01:00
|
|
|
{
|
|
|
|
protected:
|
2015-05-05 09:59:27 +02:00
|
|
|
Link<Idle *, void> maIdleHdl; // Callback Link
|
2015-01-14 08:29:37 +01:00
|
|
|
|
|
|
|
public:
|
2015-06-10 12:08:00 +01:00
|
|
|
Idle( const sal_Char *pDebugName = NULL );
|
2015-01-14 08:29:37 +01:00
|
|
|
Idle( const Idle& rIdle );
|
|
|
|
|
2015-06-10 18:32:58 +02:00
|
|
|
virtual void Start() SAL_OVERRIDE;
|
2015-06-10 12:08:00 +01:00
|
|
|
|
2015-01-14 08:29:37 +01:00
|
|
|
/// Make it possible to associate a callback with this idle handler
|
2015-02-26 07:33:59 +00:00
|
|
|
/// of course, you can also sub-class and override 'Invoke'
|
2015-05-05 09:59:27 +02:00
|
|
|
void SetIdleHdl( const Link<Idle *, void>& rLink ) { maIdleHdl = rLink; }
|
|
|
|
const Link<Idle *, void>& GetIdleHdl() const { return maIdleHdl; }
|
2015-06-10 12:08:00 +01:00
|
|
|
virtual void Invoke() SAL_OVERRIDE;
|
|
|
|
virtual bool ReadyForSchedule( bool bTimer ) SAL_OVERRIDE;
|
|
|
|
virtual sal_uInt64 UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 nTime ) SAL_OVERRIDE;
|
2015-02-26 07:33:59 +00:00
|
|
|
Idle& operator=( const Idle& rIdle );
|
2015-01-14 08:29:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDED_VCL_IDLE_HXX
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|