OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / build / ja-jp / formdesigner / tests / sayhello / sayhelloView.ring
diff --git a/applications/build/ja-jp/formdesigner/tests/sayhello/sayhelloView.ring b/applications/build/ja-jp/formdesigner/tests/sayhello/sayhelloView.ring
new file mode 100644 (file)
index 0000000..bffe580
--- /dev/null
@@ -0,0 +1,85 @@
+# Form/Window View - Generated Source Code File 
+# Generated by the Ring 1.11 Form Designer
+# Date : 17/09/2019
+# Time : 20:30:25
+
+Load "stdlibcore.ring"
+Load "guilib.ring"
+
+import System.GUI
+
+if IsMainSourceFile() { 
+       new App {
+               StyleFusion()
+               new sayhelloView { win.show() } 
+               exec()
+       }
+}
+
+class sayhelloView from WindowsViewParent
+       win = new MainWindow() { 
+               move(32,77)
+               resize(414,204)
+               setWindowTitle("Say Hello")
+               setstylesheet("background-color:;") 
+               Label1 = new label(win) {
+                       move(9,34)
+                       resize(107,40)
+                       setstylesheet("color:black;background-color:;")
+                       oFont = new qfont("",0,0,0)
+                       oFont.fromstring("Arial")
+                       setfont(oFont)
+                       oFont.delete()
+                       setText("Enter your name ?")
+                       setAlignment(Qt_AlignRight |  Qt_AlignVCenter)
+               }
+               LineEdit1 = new lineedit(win) {
+                       move(142,35)
+                       resize(254,40)
+                       setstylesheet("color:black;background-color:;")
+                       oFont = new qfont("",0,0,0)
+                       oFont.fromstring("Arial")
+                       setfont(oFont)
+                       oFont.delete()
+                       setText("")
+                       setTextChangedEvent("")
+                       setcursorPositionChangedEvent("")
+                       seteditingFinishedEvent("")
+                       setreturnPressedEvent("")
+                       setselectionChangedEvent("")
+                       settextEditedEvent("")
+                       
+               }
+               Button1 = new pushbutton(win) {
+                       move(9,102)
+                       resize(109,35)
+                       setstylesheet("color:black;background-color:;")
+                       oFont = new qfont("",0,0,0)
+                       oFont.fromstring("Arial")
+                       setfont(oFont)
+                       oFont.delete()
+                       setText("Say Hello")
+                       setClickEvent(Method(:SayHello))
+                       setBtnImage(Button1,"")
+                       
+               }
+               LineEdit2 = new lineedit(win) {
+                       move(142,102)
+                       resize(254,40)
+                       setstylesheet("color:black;background-color:;")
+                       oFont = new qfont("",0,0,0)
+                       oFont.fromstring("Arial")
+                       setfont(oFont)
+                       oFont.delete()
+                       setText("")
+                       setTextChangedEvent("")
+                       setcursorPositionChangedEvent("")
+                       seteditingFinishedEvent("")
+                       setreturnPressedEvent("")
+                       setselectionChangedEvent("")
+                       settextEditedEvent("")
+                       
+               }
+       }
+
+# End of the Generated Source Code File...
\ No newline at end of file