OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / formdesigner / source / controls / qdatetimeedit.ring
1 /*
2 **      Project : Form Designer 
3 **      File Purpose :  QDateTimeEdit Control
4 **      Date : 2017.04.29
5 **      Author :  Mahmoud Fayed <msfclipper@yahoo.com>
6 */
7
8 package formdesigner
9
10 class FormDesigner_QDateTimeEdit from QLineEdit
11
12         CreateCommonAttributes()
13         CreateMoveResizeCornersAttributes()
14
15         func DisplayProperties oDesigner
16                 DisplayCommonProperties(oDesigner)
17                 # Set the object name
18                         setText(oDesigner.oModel.GetObjectName(self))
19
20         func UpdateProperties oDesigner,nRow,nCol,cValue
21                 UpdateCommonProperties(oDesigner,nRow,nCol,cValue)
22                 # Set the object name
23                         setText(oDesigner.oModel.GetObjectName(self))
24