Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 2ca3dd961f661bb8229f3ab32372f816 > files > 289

PythonCard-0.8.2-7.fc14.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
                               
  <meta http-equiv="content-type"
 content="text/html; charset=ISO-8859-1">
                               
  <meta name="author" content="Dan Shafer">
  <title>Font Dialog</title>
</head>
  <body>
               
<h1>Font Dialog</h1>
        <img src="images/dialogsfig6.png" alt="Find Dialog Sample"
 width="437" height="344">
          <br>
        <br>
               
<h2>Creating the Dialog</h2>
        Create a Font Dialog by calling dialog.fontDialog with one required
 argument  and one optional argument as shown in the following table:<br>
<br>
<table cellpadding="2" cellspacing="2" border="1" width="80%">
  <tbody>
    <tr>
      <td valign="top"><b>Argument</b><br>
      </td>
      <td valign="top"><b>Data Type/Notes</b><br>
      </td>
    </tr>
    <tr>
      <td valign="top">self<br>
      </td>
      <td valign="top">the window (background) that is the parent    for
  the  dialog<br>
      </td>
    </tr>
    <tr>
      <td valign="top">OPTIONAL aFont<br>
      </td>
      <td valign="top">Python dictionary containing a complete font description
to be used as the default starting point for the dialog. See description
of return value of "font" in table below for details.<br>
      </td>
    </tr>
  </tbody>
</table>
<br>
   <br>
        <b>Example:<br>
        <br>
        </b>Above dialog was created with this line of code:<br>
        <br>
       <code> result = dialog.fontDialog(self)<br>
       </code> <br>
                 
<h2>Interacting With the Dialog</h2>
        The fontDialog component returns three values, stored as elements 
 of the  Python dictionary called "results" returned by all PythonCard dialogs. 
  These  results are as shown in the following table.<br>
        <br>
               
<table cellpadding="2" cellspacing="2" border="1" width="50%">
          <tbody>
            <tr>
              <td valign="top"><b>Name of value</b><br>
                </td>
              <td valign="top"><b>Description</b><br>
              </td>
            </tr>
            <tr>
              <td valign="top">accepted<br>
              </td>
              <td valign="top">True = user clicked OK<br>
          False = user clicked Cancel<br>
              </td>
            </tr>
            <tr>
              <td valign="top">color<br>
              </td>
              <td valign="top">Tuple of three elements containing the red,
 blue,  and green values representing the color (i.e., RGB format)<br>
                </td>
            </tr>
       <tr>
         <td valign="top">font<br>
         </td>
         <td valign="top">Python dictionary object with keys style, faceName, 
 family, and size. All elements of dictionary are strings except for size, 
 which is an integer.<br>
         </td>
       </tr>
                               
  </tbody>        
</table>
        <br>
       <b>Example:<br>
       <br>
       The sample dialog shown at the top of this page returns the following
  results:<br>
        <br>
       </b>accepted: True<br>
   color: (0, 0, 0)<br>
   font: {'style': 'bold', 'faceName': 'Arial', 'family': 'sansSerif', 'size': 
 12}<br>
       <br>
       <br>
        &nbsp; <br>
        <br>
         <br>
           <br>
     <br>
   <br>
</body>
</html>