xref: /aosp_15_r20/external/sonivox/jet_tools/JetCreator/JetHelp.py (revision f81fb7c475c4b71ff83bdcc517de2a8c174e4e5c)
1*f81fb7c4SAndroid Build Coastguard Worker"""
2*f81fb7c4SAndroid Build Coastguard Worker File:
3*f81fb7c4SAndroid Build Coastguard Worker JetHelp.py
4*f81fb7c4SAndroid Build Coastguard Worker
5*f81fb7c4SAndroid Build Coastguard Worker Contents and purpose:
6*f81fb7c4SAndroid Build Coastguard Worker Displays the help text
7*f81fb7c4SAndroid Build Coastguard Worker
8*f81fb7c4SAndroid Build Coastguard Worker Copyright (c) 2008 Android Open Source Project
9*f81fb7c4SAndroid Build Coastguard Worker
10*f81fb7c4SAndroid Build Coastguard Worker Licensed under the Apache License, Version 2.0 (the "License");
11*f81fb7c4SAndroid Build Coastguard Worker you may not use this file except in compliance with the License.
12*f81fb7c4SAndroid Build Coastguard Worker You may obtain a copy of the License at
13*f81fb7c4SAndroid Build Coastguard Worker
14*f81fb7c4SAndroid Build Coastguard Worker      http://www.apache.org/licenses/LICENSE-2.0
15*f81fb7c4SAndroid Build Coastguard Worker
16*f81fb7c4SAndroid Build Coastguard Worker Unless required by applicable law or agreed to in writing, software
17*f81fb7c4SAndroid Build Coastguard Worker distributed under the License is distributed on an "AS IS" BASIS,
18*f81fb7c4SAndroid Build Coastguard Worker WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19*f81fb7c4SAndroid Build Coastguard Worker See the License for the specific language governing permissions and
20*f81fb7c4SAndroid Build Coastguard Worker limitations under the License.
21*f81fb7c4SAndroid Build Coastguard Worker"""
22*f81fb7c4SAndroid Build Coastguard Worker
23*f81fb7c4SAndroid Build Coastguard Workerimport wx
24*f81fb7c4SAndroid Build Coastguard Workerimport wx.html
25*f81fb7c4SAndroid Build Coastguard Workerfrom JetDefs import *
26*f81fb7c4SAndroid Build Coastguard Worker
27*f81fb7c4SAndroid Build Coastguard Workerapp = wx.PySimpleApp()
28*f81fb7c4SAndroid Build Coastguard Workerframe = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600))
29*f81fb7c4SAndroid Build Coastguard Workerhtml1 = wx.html.HtmlWindow(frame, -1)
30*f81fb7c4SAndroid Build Coastguard Workerhtml1.LoadPage(JetDefs.MAIN_HELPFILE)
31*f81fb7c4SAndroid Build Coastguard Workerframe.Center()
32*f81fb7c4SAndroid Build Coastguard Workerframe.Show()
33*f81fb7c4SAndroid Build Coastguard Workerapp.MainLoop()
34