OpenSecurity/bin/ui/__init__.py
author Oliver Maurhart <oliver.maurhart@ait.ac.at>
Wed, 29 Oct 2014 15:18:22 +0100
changeset 240 d7ef04254e9c
parent 134 f1c1c06c947d
permissions -rw-r--r--
lizenz fixed in all files
     1 #!/bin/env python
     2 # -*- coding: utf-8 -*-
     3 
     4 # ------------------------------------------------------------
     5 # ui/__init__.py
     6 # 
     7 # python package file for ui
     8 #
     9 # Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
    10 #
    11 # Copyright 2013-2014 X-Net and AIT Austrian Institute of Technology
    12 # 
    13 # 
    14 #     X-Net Services GmbH
    15 #     Elisabethstrasse 1
    16 #     4020 Linz
    17 #     AUSTRIA
    18 #     https://www.x-net.at
    19 # 
    20 #     AIT Austrian Institute of Technology
    21 #     Donau City Strasse 1
    22 #     1220 Wien
    23 #     AUSTRIA
    24 #     http://www.ait.ac.at
    25 # 
    26 # 
    27 # Licensed under the Apache License, Version 2.0 (the "License");
    28 # you may not use this file except in compliance with the License.
    29 # You may obtain a copy of the License at
    30 # 
    31 #    http://www.apache.org/licenses/LICENSE-2.0
    32 # 
    33 # Unless required by applicable law or agreed to in writing, software
    34 # distributed under the License is distributed on an "AS IS" BASIS,
    35 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    36 # See the License for the specific language governing permissions and
    37 # limitations under the License.
    38 # ------------------------------------------------------------
    39 
    40 
    41 # ------------------------------------------------------------
    42 # imports
    43 
    44 from about_dialog import AboutDialog
    45 from configure_dialog import ConfigureDialog
    46 from credentials_dialog import CredentialsDialog
    47 from keyfile_dialog import KeyfileDialog
    48 from launch_dialog import LaunchDialog
    49 from notification_dialog import NotificationDialog
    50 from password_dialog import  PasswordDialog
    51 
    52 # ------------------------------------------------------------
    53 # vars
    54 __all__ = [
    55     'AboutDialog',
    56     'ConfigureDialog',
    57     'CredentialsDialog',
    58     'KeyfileDialog',
    59     'LaunchDialog',
    60     'NotificationDialog',
    61     'PasswordDialog'
    62     ]