Ocean
Loading...
Searching...
No Matches
Taskbar.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_PLATFORM_WIN_TASKBAR_H
9#define META_OCEAN_PLATFORM_WIN_TASKBAR_H
10
12
13namespace Ocean
14{
15
16namespace Platform
17{
18
19namespace Win
20{
21
22/**
23 * This class provides windows taskbar functionalities.
24 * @ingroup platformwin
25 */
26class OCEAN_PLATFORM_WIN_EXPORT Taskbar
27{
28 public:
29
30 /**
31 * Shows the task bar.
32 * @return True, if succeeded
33 */
34 static bool show();
35
36 /**
37 * Hides the task bar.
38 * @return True, if succeeded
39 */
40 static bool hide();
41};
42
43}
44
45}
46
47}
48
49#endif // META_OCEAN_PLATFORM_WIN_TASKBAR_H
This class provides windows taskbar functionalities.
Definition Taskbar.h:27
static bool hide()
Hides the task bar.
static bool show()
Shows the task bar.
The namespace covering the entire Ocean framework.
Definition Accessor.h:15