File: ui.py

package info (click to toggle)
metview-python 1.16.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,896 kB
  • sloc: python: 11,306; makefile: 84; ansic: 51; sh: 7
file content (41 lines) | stat: -rw-r--r-- 915 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# (C) Copyright 2017- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
#
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

import metview as mv

# this module is meant to expose some ui specific functions


def dialog(*args):
    res = mv._dialog(*args)
    return {k: v for k, v in res.items() if not k.startswith("_")}


def any(**kwargs):
    return mv._any(**kwargs)


def colour(**kwargs):
    return mv._colour(**kwargs)


def icon(**kwargs):
    return mv._icon(**kwargs)


def option_menu(**kwargs):
    return mv._option_menu(**kwargs)


def slider(**kwargs):
    return mv._slider(**kwargs)


def toggle(**kwargs):
    return mv._toggle(**kwargs)