File indexing completed on 2024-04-28 04:37:19

0001 /*
0002     SPDX-FileCopyrightText: 2016 René J.V. Bertin <rjvbertin@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef MACDOCKPROGRESSVIEW_H
0008 
0009 namespace KDevelop
0010 {
0011 
0012 class MacDockProgressView
0013 {
0014 public:
0015     static void setRange(int min, int max);
0016 
0017     static void setProgress(int value);
0018 
0019     static void setProgressVisible(bool visible);
0020 };
0021 
0022 }
0023 
0024 #define MACDOCKPROGRESSVIEW_H
0025 #endif