Update of /cvsroot/wnd/wnd/wnd_doc/doc/controls/window classes/dialog
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6712
Modified Files:
dialog.dtpl
Log Message:
bit of this and a bit of that
Index: dialog.dtpl
===================================================================
RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/controls/window classes/dialog/dialog.dtpl,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** dialog.dtpl 29 Apr 2005 15:19:20 -0000 1.1.1.1
--- dialog.dtpl 23 Jul 2005 20:09:21 -0000 1.2
***************
*** 89,92 ****
--- 89,93 ----
template. tools\\dlgeditor folder contains some modules to create
one of these templates.
+
</P>
***************
*** 94,97 ****
--- 95,99 ----
+
::folder:: Dialog methods
Dialogs support the following methods:
***************
*** 99,102 ****
--- 101,120 ----
<a HREF="||method-ctrl||">Common methods</a>
+
+ ::item:: GetTemplate
+ <code>GetTemplate()</code><br>
+ <P>Returns the template used to create the dialog or None.
+ <br><br>
+ <a HREF="../Dialog.html">Dialog</a> and <a HREF="../DialogFromTemplate.html">DialogFromTemplate</a>
+ instances are based on templates in memory, so for a instance of these
+ classes return value should always be non None
+ </P>
+
+ ::item:: GetDlgProc
+ <code>GetTemplate()</code><br>
+ <P>Returns a pointer to the dialogproc of the dialog
+ </P>
+
+
::item:: onINITDIALOG
<code>onINITDIALOG(hwnd, msg, wp, lp)</code><br>
***************
*** 141,145 ****
!
--- 159,165 ----
! ::item:: GetDlgItem
! <code>GetDlgItem(ID)</code><br>
! <P>Returns the hwnd of a dialog item given its ID
***************
*** 259,268 ****
</P>
! # ::item::
! # <code></code><br>
! # <P>
! # <br><br>
! #
! # </P>
--- 279,288 ----
</P>
! ::item:: GetMainWindow
! <code>GetMainWindow()</code><br>
! <P>Returns the hwnd of the mainwindow of the process or 0
! <br><br>
!
! </P>
***************
*** 398,401 ****
--- 418,434 ----
<br><br>
+
+ <DT>'prop_querysiblings'
+ <DD>send by a property sheet in response to a call to the 'QuerySiblings' method of property sheets<br>
+ wp=any application defined value<br>
+ lp=any application defined value
+ <br><br>
+ You may return a nonzero value here to return it to the property
+ sheet and stop the property sheet from sending the message to
+ subsequent siblings. All othe rreturn values will return zero
+ to the property sheet
+ <br><br>
+
+
<DT>'syscolorchanged'
<DD>the system notifies you, a system color has changed.
***************
*** 652,658 ****
<TR>
<TD>'dialoglike'</TD>
! <TD>enables modal-dialog-like keyboard handling for a main
! window or a modeless dialog box.
! This style can not be changed at runtime</TD>
</TR>
<TR>
--- 685,696 ----
<TR>
<TD>'dialoglike'</TD>
! <TD>Use this style to enables modal dialogbox like keyboard handling for
! modeless dialog boxes.
! <br>
! To make the keyboard interface work the modeless dialog must be a child
! of a mainwindow and the mainwindow must have the 'dialoglike' style set aswell.
! 'modal' dialogboxes provide a standard keyboard interface by default.
! <br>
! This style can not be changed at runtime.</TD>
</TR>
<TR>
|