Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHOST_TaskbarX11.h « intern « ghost « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c564825f93b8acc82651138cf4a2473918648e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup GHOST
 */
#pragma once

class GHOST_TaskBarX11 {
 public:
  static bool init();
  static void free();

  GHOST_TaskBarX11(const char *name);

  bool is_valid();
  void set_progress(double progress);
  void set_progress_enabled(bool enabled);

 private:
  void *handle;
};