OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / formdesigner / source / controls / qdatetimeedit.ring
diff --git a/applications/formdesigner/source/controls/qdatetimeedit.ring b/applications/formdesigner/source/controls/qdatetimeedit.ring
new file mode 100644 (file)
index 0000000..3a8a5ae
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+**     Project : Form Designer 
+**     File Purpose :  QDateTimeEdit Control
+**     Date : 2017.04.29
+**     Author :  Mahmoud Fayed <msfclipper@yahoo.com>
+*/
+
+package formdesigner
+
+class FormDesigner_QDateTimeEdit from QLineEdit
+
+       CreateCommonAttributes()
+       CreateMoveResizeCornersAttributes()
+
+       func DisplayProperties oDesigner
+               DisplayCommonProperties(oDesigner)
+               # Set the object name
+                       setText(oDesigner.oModel.GetObjectName(self))
+
+       func UpdateProperties oDesigner,nRow,nCol,cValue
+               UpdateCommonProperties(oDesigner,nRow,nCol,cValue)
+               # Set the object name
+                       setText(oDesigner.oModel.GetObjectName(self))
+