Update of /cvsroot/wnd/wnd/wnd_doc/doc/tools/dlgeditor/dlgeditor
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7727
Modified Files:
dlgeditor.dtpl
Log Message:
bit of this and a bit of that
Index: dlgeditor.dtpl
===================================================================
RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/tools/dlgeditor/dlgeditor/dlgeditor.dtpl,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** dlgeditor.dtpl 29 Apr 2005 15:15:20 -0000 1.1.1.1
--- dlgeditor.dtpl 23 Jul 2005 20:13:37 -0000 1.2
***************
*** 6,12 ****
<code class=import>defined in: wnd.tools.dlgeditor.dlgeditor</code><br><br>
<code>DlgEditor()</code><br>
! Still bare bones dialog editor to create Dialog templates you can save to file
or whatever. The styles for the controls are pased here as strings
like with any other control in the framework.
--- 6,19 ----
<code class=import>defined in: wnd.tools.dlgeditor.dlgeditor</code><br><br>
<code>DlgEditor()</code><br>
! Still bare bones dialog editor based on DLGTEMPLATEEX and
! DLGITEMTEMPLATEEX structures.
! <br>
! To create Dialog templates you can save to file
or whatever. The styles for the controls are pased here as strings
like with any other control in the framework.
+ <br><br>
+ DlgEditor instances support the following methods:
+ <br>
+ <a HREF="DlgEditor methods.html">DlgEditor methods</a>
***************
*** 53,62 ****
-
::folder:: DlgEditor methods
::item:: BeginTemplate
! <codeBeginTemplate(classname, ID, title, x, y, w, h, *styles)</code><br>
<P>Starts a new template beginning with the main form.
<br><br>
--- 60,68 ----
::folder:: DlgEditor methods
::item:: BeginTemplate
! <code>BeginTemplate(classname, ID, title, x, y, w, h, font, *styles)</code><br>
<P>Starts a new template beginning with the main form.
<br><br>
***************
*** 70,74 ****
<DD>size and position of the main form
<DT>font
! <DD>a four-tuple(face-name, size, weight (0-1000), italic (1 or 0))
<DT>styles
<DD>the styles of the mainform.
--- 76,80 ----
<DD>size and position of the main form
<DT>font
! <DD>a four-tuple(face-name, size, weight (0-1000), italic (1 or 0)) or None
<DT>styles
<DD>the styles of the mainform.
***************
*** 114,117 ****
--- 120,125 ----
You can pass the hwnd of the parent window and an lParam to
the dialogbox if you like.
+ <br>Return value<br>
+ the hwnd of the dialogbox or None if something goes wrong
</P>
***************
*** 153,154 ****
--- 161,164 ----
</P>
+
+
|