KiCad PCB EDA Suite
Loading...
Searching...
No Matches
progress_reporter.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2017 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * Author: Tomasz Wlostowski <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef PROGRESS_REPORTER_H
24#define PROGRESS_REPORTER_H
25
26#include <kicommon.h>
27#include <wx/wx.h>
28
36{
37public:
38
41
43
45 { }
46
50 virtual void SetNumPhases( int aNumPhases ) = 0;
51 virtual void AddPhases( int aNumPhases ) = 0;
52
56 virtual void BeginPhase( int aPhase ) = 0;
57
61 virtual void AdvancePhase() = 0;
62
66 virtual void AdvancePhase( const wxString& aMessage ) = 0;
67
71 virtual void Report( const wxString& aMessage ) = 0;
72
76 virtual void SetCurrentProgress( double aProgress ) = 0;
77
82 virtual void SetMaxProgress( int aMaxProgress ) = 0;
83
87 virtual void AdvanceProgress() = 0;
88
96 virtual bool KeepRefreshing( bool aWait = false ) = 0;
97
105 virtual void SetTitle( const wxString& aTitle ) = 0;
106
107 virtual bool IsCancelled() const = 0;
108};
109
110
111#endif
virtual bool IsCancelled() const =0
virtual void AddPhases(int aNumPhases)=0
virtual bool KeepRefreshing(bool aWait=false)=0
Update the UI (if any).
virtual void SetNumPhases(int aNumPhases)=0
Set the number of phases.
PROGRESS_REPORTER(const PROGRESS_REPORTER &)=delete
virtual void Report(const wxString &aMessage)=0
Display aMessage in the progress bar dialog.
virtual void BeginPhase(int aPhase)=0
Initialize the aPhase virtual zone of the dialog progress bar.
virtual void AdvancePhase()=0
Use the next available virtual zone of the dialog progress bar.
virtual void SetTitle(const wxString &aTitle)=0
Change the title displayed on the window caption.
virtual void AdvanceProgress()=0
Increment the progress bar length (inside the current virtual zone).
virtual void AdvancePhase(const wxString &aMessage)=0
Use the next available virtual zone of the dialog progress bar and updates the message.
virtual void SetCurrentProgress(double aProgress)=0
Set the progress value to aProgress (0..1).
virtual void SetMaxProgress(int aMaxProgress)=0
Fix the value that gives the 100 percent progress bar length (inside the current virtual zone).
#define KICOMMON_API
Definition kicommon.h:27