Open source my WGI, a GUI lib based entirely OIOIC


 
Thread Tools Search this Thread
Top Forums Programming Open source my WGI, a GUI lib based entirely OIOIC
# 1  
Old 12-11-2009
Open source my WGI, a GUI lib based entirely OIOIC

What WGI? WGI is doing what MFC has done, to encapsulate API, BUT WGI uses OIOIC, instead of C++.

to download WGI 1.0.2 source code: Downloads - oic-wgi - Project Hosting on Google Code

node WDialog ---> corresponding MFC's CDialog
node WMenu ---> corresponding MFC's CMenu
node WButton ---> corresponding MFC's CButton
node WStatic ---> corresponding MFC's CStatic
node WEdit ---> corresponding MFC's CEdit and CIPAddressCtrl
node WScrollBar ---> corresponding MFC's CScrollBar
node WSlider ---> corresponding MFC's CSlider and CProgressCtrl
node WComboBox ---> corresponding MFC's CComboBox and CComboBoxEx
other are base node.

Image

Image

Image
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Solaris

Cannot open module /usr/lib/security

Dear All After powering on my Netra120 Solaris server and waiting for all of the installed processes to be started , when trying for login I am getting : "can not open module /usr/lib/security/pam_authtok_get.so.1" Can you please let me know what has happened to my server and how can I reach... (3 Replies)
Discussion started by: hadimotamedi
3 Replies

2. Shell Programming and Scripting

Cron job fails with [DataDirect][ODBC lib] Connection not open error

Hi, When run the script directly...it executes as expected. But when put it in crontab the job fails with this error: Connection not open 08003: Connection not open Unable to connect to the database... how come it is not able to connect when cron job fires?... Do I need to... (7 Replies)
Discussion started by: nuthakki
7 Replies

3. Programming

Open source my OIOIC, a completely new object-oriented mechanism for the C.

OIOIC is a completely new object-oriented mechanism for the C programming language. Please download the "OIOIC-Primer-2nd-Edition-English.tar.gz". (the English version of << OIOIC Primer >> ) http://code.google.com/p/oioic/downloads/list Welcome your advice! Using OIOIC, you can describe... (7 Replies)
Discussion started by: pervise.zhao
7 Replies

4. Solaris

messages error can not open module /usr/lib/security/pam_unix_session.so.1

Hi, I always receive the following intermittent error on the /var/adm/messages, can someone help me please on what to do and what to check for these errors to disappear? What can be the problem with my ftp? Please see details of solaris below. Thanks in advance! SunOS 5.10 Generic_127111-08... (4 Replies)
Discussion started by: ayhanne
4 Replies

5. Solaris

/usr/lib/snmp/snmpdx: can't open the file - Error Messages while rebooting

I have an X4500 server running solaris 10 and when I reboot my system it displays the following errors messages. Could someone help me with this ??? NOTICE: pci8086,1011 - e1000g : Adapter 100Mbps full duplex copper link is up. Nov 8 17:41:46 /usr/lib/snmp/snmpdx: can't open the file Nov 8... (2 Replies)
Discussion started by: bharu_sri
2 Replies

6. UNIX and Linux Applications

Linux based Open Source ERP System - CK-ERP

Hi, folks, I have developed CK-ERP, which is an open source accounting / MRP / ERP / CRM system that runs on top of multiple middlewares. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Details about and... (0 Replies)
Discussion started by: chiukay
0 Replies
Login or Register to Ask a Question
TWIG(1) 						      General Commands Manual							   TWIG(1)

NAME
twig - tree-manipulation language SYNOPSIS
twig [ -sASC ] [ -w suffix ] file.mt DESCRIPTION
Twig converts a tree-specification scheme consisting of pattern-action rules with associated costs into C functions that can be called to manipulate input trees. The C functions first find a minimum-cost covering of an input tree using a dynamic programming algorithm and then execute the actions associated with the patterns used in the covering. The tree-specification scheme may allow several coverings for an input tree, but the dynamic programming algorithm resolves any ambiguities by selecting a cheapest covering. The input file containing the tree-specification scheme must have the suffix Twig produces two output files: walker.c, which becomes the source file for the tree matcher, and symbols.h, which contains the definitions for the node and label symbols used in the source file. To build walker.c, twig uses an internal template file, by default one appropriate for use with fprintf(2). The options are -A Use a template file for ANSI/POSIX source files. -C Use a template file for files that use libc's print(2) routines. -S Use a template file for files that use fprintf(2). -s Do not produce a symbols.h file. -w suffix Use the template file /sys/lib/twig/walker.suffix. FILES
/sys/lib/twig System area for template files. SOURCE
/sys/src/cmd/twig SEE ALSO
yacc(1) S. W. K. Tjiang, ``The Twig Reference Manual'', Computing Science Technical Report No. 120, AT&T Bell Laboratories, Murray Hill, N.J. A. V. Aho, M. Ganapathi, and S. W. K. Tjiang, ``Code generation using tree matching and dynamic programming.'' BUGS
When tree matching fails, the debugging output is cryptic. TWIG(1)