X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=applications%2Fbuild%2Fja-jp%2Fformdesigner%2Ftests%2Fwebview%2FwebviewView.ring;fp=applications%2Fbuild%2Fja-jp%2Fformdesigner%2Ftests%2Fwebview%2FwebviewView.ring;h=46710d8a5bbf7580e05c7b56595491ec5910ff09;hb=c261394ba4a07ecae2c8c9dab7b37b6de7bfa6db;hp=0000000000000000000000000000000000000000;hpb=6e38943e5a70728b29bc63d57ef3fe96e4565653;p=ring-lang-081%2Fring.git diff --git a/applications/build/ja-jp/formdesigner/tests/webview/webviewView.ring b/applications/build/ja-jp/formdesigner/tests/webview/webviewView.ring new file mode 100644 index 0000000..46710d8 --- /dev/null +++ b/applications/build/ja-jp/formdesigner/tests/webview/webviewView.ring @@ -0,0 +1,42 @@ +# Form/Window View - Generated Source Code File +# Generated by the Ring 1.11 Form Designer +# Date : 17/09/2019 +# Time : 20:33:13 + +Load "stdlibcore.ring" +Load "guilib.ring" + +import System.GUI + +if IsMainSourceFile() { + new App { + StyleFusion() + new webviewView { win.show() } + exec() + } +} + +class webviewView from WindowsViewParent + win = new MainWindow() { + move(0,85) + resize(822,400) + setWindowTitle("WebView") + setstylesheet("background-color:;") + WebView1 = new webview(win) { + move(13,17) + resize(793,339) + setstylesheet("color:black;background-color:;") + oFont = new qfont("",0,0,0) + oFont.fromstring("Arial") + setfont(oFont) + oFont.delete() + loadpage(new qURL("http://www.ring-lang.sf.net")) + setloadProgressEvent ("") + setloadStartedEvent ("") + setselectionChangedEvent ("") + seturlChangedEvent ("") + + } + } + +# End of the Generated Source Code File... \ No newline at end of file