HOME  NEWS  FORUM  DOWNLOAD  LINK
OpenCOBOL - an open-source COBOL compiler
Main Menu
Download
Documentation
Development
Who's Online
20 user(s) are online (10 user(s) are browsing Forum)

Members: 0
Guests: 20

more...
Powered by
SourceForge

Xoops

Creative Commons

OpenCOBOL Forum Index
   OpenCOBOL
     GUICOBOL 1.4 OPENSOURCE available at www.tp-srl.it
Register To Post

Flat Previous Topic | Next Topic
Poster Thread
federico
Posted on: 2011/8/26 16:02
Home away from home
Joined: 2010/2/7
From:
Posts: 220
GUICOBOL 1.4 OPENSOURCE available at www.tp-srl.it

Hi all, since I used first time opencobol I thought it was a great and powerful product and
just to help (I hope I did...) the cobol comunity I wrote the tp-cobol-debugger
that I hope someone has tried and used for development.

But going ahead I realized the OpenCobol has absolutely need to work also with a gui and just
to have some ideas I looked at GTK and other gui library utilities.

After some test I decided to use GTK library and I started
to project a opencobol gui integrated environment.


I opted for the use of object orientation syntax and I wrote some (sucessfull) test.


the goal of the produc it giving a wysiwyg editor to write cobol with gui objects.

and start with a form giving the programmer the opportunity to paint gui objects and write cobol
procedures with the event using a simple grammar.

this is an example:


        IDENTIFICATION DIVISION.
        PROGRAM-ID.    test1.
        ENVIRONMENT DIVISION.
        DATA DIVISION.
        WORKING-STORAGE SECTION.

                 copy "global".

        PROCEDURE DIVISION.


                 invoke gtk-form "Opened"

                 move "test form" to "title" of gtk-form.

                 invoke gtk-form "Closed" using "ExitProcedure"

                 invoke gtk-form "execute".


                 STOP RUN.

        end program lancio1.

        identification division.
        program-id. ExitProcedure
        data division.
        working-storage section.

	77 formname		pic x(100) value space.

            copy "global".


        procedure division.

		  move "title" of gtk-form to formaname.

                  display "just leaving" formname.



                  invoke gtk-form "terminate".

        exit program.
        end program ExitProcedure.






this example open a form ..just put the "test form" for windows title and when the customer clicked
the closed "x" it shows... just leaving and close the windows form.


the property are simple accessible using the move and the name into the ".
the invoke use the ooc sintax also



The environment I am using it running on unix also so I think the product will be used with unix or linux

Actually I wrote the class preprocesso and I am becoing to prepare the editor and ide.

I would like to open the cobol sources by using a good (and callable) editor able to view the cobol sintax
during the editing...
I am looking for some opensource products

Has someone found one that I could use/try ?

Thanks for your attention.

Federico
Flat Previous Topic | Next Topic

Subject Poster Date
 » GUICOBOL 1.4 OPENSOURCE available at www.tp-srl.it federico 2011/8/26 16:02
     Re: GUICOBOL package for OPENCOBOL btiffin 2011/8/27 7:06
       Re: GUICOBOL package for OPENCOBOL aouizerate 2011/8/27 8:18
         Re: GUICOBOL package for OPENCOBOL federico 2011/8/29 22:49
           Re: GUICOBOL package for OPENCOBOL btiffin 2011/8/30 2:37
             Re: GUICOBOL package for OPENCOBOL federico 2011/8/30 18:45
       Re: GUICOBOL package for OPENCOBOL federico 2012/2/26 18:40
     Re: GUICOBOL package for OPENCOBOL mwilliams 2011/8/31 1:55
       Re: GUICOBOL package for OPENCOBOL federico 2011/8/31 6:13
         Re: GUICOBOL package for OPENCOBOL federico 2011/9/11 12:26
           Re: GUICOBOL package for OPENCOBOL aouizerate 2011/9/13 6:48
             Re: GUICOBOL package for OPENCOBOL federico 2011/9/13 8:17
               Re: GUICOBOL package for OPENCOBOL aouizerate 2011/9/13 8:38
                 Re: GUICOBOL package for OPENCOBOL federico 2011/9/13 9:59
                 Re: GUICOBOL package for OPENCOBOL federico 2011/9/15 6:13
           Re: GUICOBOL package for OPENCOBOL federico 2011/9/25 8:11
     Re: GUICOBOL package for OPENCOBOL areymond 2011/9/17 16:37
       Re: GUICOBOL package for OPENCOBOL federico 2011/9/19 14:40
         Re: GUICOBOL package for OPENCOBOL federico 2011/9/24 13:34
           Re: GUICOBOL package for OPENCOBOL areymond 2011/9/27 11:06
             Re: GUICOBOL package for OPENCOBOL federico 2011/9/27 12:37
               Re: GUICOBOL package for OPENCOBOL ssamayoa 2011/9/27 15:56
                 Re: GUICOBOL package for OPENCOBOL federico 2011/9/27 16:37
               Re: GUICOBOL package for OPENCOBOL federico 2011/10/5 5:27
                 Re: GUICOBOL package for OPENCOBOL btiffin 2011/10/6 0:29
                   Re: GUICOBOL package for OPENCOBOL federico 2011/10/6 5:37
                     Re: GUICOBOL package for OPENCOBOL btiffin 2011/10/6 17:07
                       Re: GUICOBOL package for OPENCOBOL (with vote ...) federico 2011/10/8 5:50
                         Re: GUICOBOL package for OPENCOBOL (with polls...) federico 2011/10/15 10:06
                           Re: GUICOBOL package for OPENCOBOL (with polls...) federico 2011/10/22 21:38
                             Re: GUICOBOL package for OPENCOBOL (with polls...) federico 2011/10/27 22:59
                               Re: GUICOBOL package for OPENCOBOL (with polls...) federico 2011/10/31 16:19
                                 Re: GUICOBOL package for OPENCOBOL (with polls...) jwl 2011/10/31 20:00
                                   Re: GUICOBOL package for OPENCOBOL (with polls...) aouizerate 2011/11/1 8:55
                                     BINARY GUICOBOL package for OPENCOBOL federico 2011/11/1 14:14
                                       Re: BINARY GUICOBOL package for OPENCOBOL aouizerate 2011/11/2 21:00
                                         Re: BINARY GUICOBOL package for OPENCOBOL federico 2011/11/3 22:40
                                           Re: BINARY GUICOBOL package for OPENCOBOL federico 2011/11/11 5:42
                                             Re: BINARY GUICOBOL package for OPENCOBOL aouizerate 2011/11/18 16:38
                                               LATEST 0.1.1 GUICOBOL EXPERIMENTA PACKAGE for OPENCOBOL AVAILABLE federico 2011/11/20 23:42
                                                 Re: LATEST 0.1.1 GUICOBOL EXPERIMENTA PACKAGE for OPENCOBOL AVAILABLE federico 2011/11/27 19:59
                                                   Re: LATEST 0.1.1 GUICOBOL EXPERIMENTA PACKAGE for OPENCOBOL AVAILABLE aouizerate 2011/11/28 17:01
                                                     LATEST 0.12 OPENSOURCE GUICOBOL EXPERIMENTA for OPENCOBOL AVAILABLE AT www.tp-srl.it federico 2011/12/10 9:09
                                                       Re: LATEST 0.12 OPENSOURCE GUICOBOL EXPERIMENTA for OPENCOBOL AVAILABLE AT www.tp-srl.it aouizerate 2011/12/16 21:36
                                                         uploaded latest 0.1.3 opensource GUICOBOL experimental for opencobol available at www.tp-srl.it federico 2011/12/25 8:08
     GUICOBOL 1.4 OPENSOURCE available at www.tp-srl.it federico 2012/1/29 16:46

Register To Post
 
Copyright (C) 2005 The OpenCOBOL Project. All rights reserved.
Powered by Xoops2 | PHP | MySQL | Apache
ocean-net