paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui-doc/doc contribute.doc,1.2,1.3 mainpage.doc,


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui-doc/doc contribute.doc,1.2,1.3 mainpage.doc,1.1.1.1,1.2
Date: Sat, 04 Jan 2003 13:48:07 -0500

Update of /cvsroot/paragui/paragui-doc/doc
In directory subversions:/tmp/cvs-serv28654/doc

Modified Files:
        contribute.doc mainpage.doc 
Log Message:
doc update



Index: contribute.doc
===================================================================
RCS file: /cvsroot/paragui/paragui-doc/doc/contribute.doc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** contribute.doc      16 Apr 2002 12:57:00 -0000      1.2
--- contribute.doc      4 Jan 2003 18:48:05 -0000       1.3
***************
*** 5,14 ****
  <br>
  <ol>
!       <li>Download the sourcetree via CVS<br>
        <br>
                <i>cvs -d :pserver:address@hidden:/cvsroot/paragui login<br>
                password: none (just hit enter)<br>
                <br>
!               cvs -d :pserver:address@hidden:/cvsroot/paragui -z3 checkout 
paragui<br>
                <br>
                sh autogen.sh<br>
--- 5,14 ----
  <br>
  <ol>
!       <li>Download the stable sourcetree via CVS<br>
        <br>
                <i>cvs -d :pserver:address@hidden:/cvsroot/paragui login<br>
                password: none (just hit enter)<br>
                <br>
!               cvs -d :pserver:address@hidden:/cvsroot/paragui -z3 checkout -r 
devel-1-0 paragui<br>
                <br>
                sh autogen.sh<br>
***************
*** 30,34 ****
                </i>
                <br><br>
!               <li>Send the patchfile via email to <a 
href="mailto:address@hidden";>me</a><br>
                Please give a short (or even longer) description what the patch 
exactly does.<br>
                <br><br>
--- 30,34 ----
                </i>
                <br><br>
!               <li>Send the patchfile via email to <a 
href="mailto:address@hidden";>me</a><br>
                Please give a short (or even longer) description what the patch 
exactly does.<br>
                <br><br>

Index: mainpage.doc
===================================================================
RCS file: /cvsroot/paragui/paragui-doc/doc/mainpage.doc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** mainpage.doc        15 Apr 2002 13:51:04 -0000      1.1.1.1
--- mainpage.doc        4 Jan 2003 18:48:05 -0000       1.2
***************
*** 134,138 ****
        
        \code
-       ./configure
        make
        \endcode
--- 134,137 ----
***************
*** 145,148 ****
--- 144,166 ----
        If you downloaded the documentation tarball the described procedure 
also applies to the tutorials
        included in docs (in the "tutorial" directory).
+ 
+ 
+ \section concept Conceptual overview
+ 
+       \subsection concept_widget Widget organization
+ 
+       Widgets of ParaGUI  organize themselves in widget trees (PG_Rectlist). 
When you create a PG_Widget with another object as parent,
+       it's added to the parent's children list, and is deleted when the 
parent is.
+ 
+       A child normally also becomes a child widget, i.e. it is displayed in 
its parent's coordinate system and is graphically
+       clipped by its parent's boundaries. For example, when the an 
application deletes a message box after it has been closed,
+       the message box's buttons and label are also deleted, just as we'd 
want, because the buttons and label are children of
+       the message box.
+ 
+       You can also delete child objects yourself, and they will remove 
themselves from their parents.
+ 
+ 
+       \subsection concept_widgettypes Widget types
+ 
  
  */





reply via email to

[Prev in Thread] Current Thread [Next in Thread]