OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / formdesigner / source / formdesigner.ring
diff --git a/applications/formdesigner/source/formdesigner.ring b/applications/formdesigner/source/formdesigner.ring
new file mode 100644 (file)
index 0000000..26fde2a
--- /dev/null
@@ -0,0 +1,140 @@
+/*
+**     Project : Form Designer 
+**     File Purpose :  Main File
+**     Date : 2017.02.17
+**     Author :  Mahmoud Fayed <msfclipper@yahoo.com>
+*/
+
+
+/*
+       API : Using the Form Designer in Another Application 
+             Like Ring Notepad
+
+       The Form Designer check for the next methods 
+       In the Parent Application (Optional Methods) 
+       See : formdesigner/filesystem/filesystem.ring 
+               GetActiveFolder()               
+               OpenFile(cControllerFile)       
+               ClearActiveFormFile()   
+       see : formdesigner/codegenerator.ring 
+               GenerateControllerClass()
+       
+       The Parent Application can use the next methods in the Form Designer 
+               OpenFile(cFormFileName)
+               SaveIfOnlyFileIsOpened()
+
+*/
+
+
+# Load Standard Libraries
+       load "guilib.ring"
+       load "stdlibcore.ring"
+
+# Load The Translation File
+       load "translation/english.ring"
+
+# Load Main Window Files 
+       load "mainwindow/qwidget.ring"
+       load "mainwindow/formdesignercontroller.ring"
+       load "mainwindow/formdesignermodel.ring"
+       load "mainwindow/formdesignerview.ring"
+       load "mainwindow/formdesignergeneral.ring"
+
+# Load Sub Windows/Systems
+       load "menubardesigner/menubardesignerController.ring"
+       load "windowflags/windowflagsController.ring"
+       load "windowobjects/windowobjectscontroller.ring"
+       load "objectsorder/objectsorderController.ring"
+       load "selobjects/selobjectsController.ring"
+
+# Load Controls
+       load "controls/qlabel.ring"
+       load "controls/qpushbutton.ring"
+       load "controls/qlineedit.ring"
+       load "controls/qtextedit.ring"
+       load "controls/qlistwidget.ring"
+       load "controls/qcheckbox.ring"
+       load "controls/qimage.ring"
+       load "controls/qslider.ring"
+       load "controls/qprogressbar.ring"
+       load "controls/qspinbox.ring"
+       load "controls/qcombobox.ring"
+       load "controls/qdatetimeedit.ring"
+       load "controls/qtablewidget.ring"
+       load "controls/qtreewidget.ring"
+       load "controls/qradiobutton.ring"
+       load "controls/qwebview.ring"
+       load "controls/qdial.ring"
+       load "controls/qvideowidget.ring"
+       load "controls/qframe3.ring"
+       load "controls/qlcdnumber.ring"
+       load "controls/qhyperlink.ring"
+       load "controls/qtimer.ring"
+       load "controls/qallevents.ring"
+       load "controls/qlayout.ring"
+       load "controls/qtabwidget.ring"
+       load "controls/qstatusbar.ring"
+       load "controls/qtoolbar.ring"
+
+# Common/Shared Classes between controls
+       load "common/commonattributesmethods.ring"
+       load "common/moveresizecorners.ring"
+       load "common/objectcorners.ring"
+
+# Load File System
+       load "filesystem/filesystem.ring"
+       load "filesystem/codegenerator.ring"
+
+# Access the package classes
+       import formdesigner
+
+# Prepare Controls Classes
+       for cClassName in [
+               :FormDesigner_QLabel,
+               :FormDesigner_QPushButton,
+               :FormDesigner_QLineEdit,
+               :FormDesigner_QTextEdit,
+               :FormDesigner_QListWidget,
+               :FormDesigner_QCheckBox,
+               :FormDesigner_QImage,
+               :FormDesigner_QSlider,
+               :FormDesigner_QProgressbar,
+               :FormDesigner_QSpinBox,
+               :FormDesigner_QComboBox,
+               :FormDesigner_QDateTimeEdit,
+               :FormDesigner_QTableWidget,
+               :FormDesigner_QTreeWidget,
+               :FormDesigner_QRadioButton,
+               :FormDesigner_QWebView,
+               :FormDesigner_QDial,
+               :FormDesigner_QVideoWidget,
+               :FormDesigner_QFrame3,
+               :FormDesigner_QLCDNumber,
+               :FormDesigner_QHyperLink,
+               :FormDesigner_QTimer,
+               :FormDesigner_QAllEvents,
+               :FormDesigner_QLayout,
+               :FormDesigner_QTabWidget,
+               :FormDesigner_QStatusBar,
+               :FormDesigner_QToolbar
+       ] {
+               mergemethods(cClassName,:MoveResizeCorners)
+               mergemethods(cClassName,:CommonAttributesMethods)
+       }
+
+# Constants and Public Variables
+       C_AFTERCOMMON  = 8                      # Index After common properties
+       $cCurrentDir = CurrentDir() + "/"
+
+# Start the Application
+       oFDApp = new qApp {
+               if IsMainSourceFile() { # Because oFDApp is used in other classes 
+                       $FDSubApp = False
+                       StyleFusion()
+                       Open_Window(:FormDesignerController)
+                       exec()
+               else 
+                       $FDSubApp = True
+               }
+       }
+