Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > af7a4b7f1ee5a4a084c41b9005da5527 > files > 1611

libfox1.1_46-devel-1.1.46-1mdk.i586.rpm

<html>
<head>
<link rel="stylesheet" href="page.css" type="text/css">
<title>fox-toolkit.org - Documentation</title>
</head>
<body bgcolor=#ffffff link=#990033 vlink=#990033 alink=#990033 text=#000000>
<font face='verdana,sans-serif' size=2 >

<!---- TOPIC TITLE WITH LOGO--->
<table border=0 cellpadding= cellspacing=2 width=100% ><tr><td><a href='http://www.fox-toolkit.org/doc.html'><img src='../art/foxlogo_small.jpg' border=0></a></td><td width=100% valign=bottom><font face='verdana,sans-serif' size=2 ><b>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a>
<br><img src='../art/line.gif' width=100% height=1></b></font></td></tr></table>
<p>
<!--- TOPIC TITLE WITH LOGO --->
<!-- Generated by Doxygen 1.3.3 -->
<h1>FXWizard.h</h1><div class="fragment"><pre>00001 <span class="comment">/********************************************************************************</span>
00002 <span class="comment">*                                                                               *</span>
00003 <span class="comment">*                           W i z a r d   W i d g e t                           *</span>
00004 <span class="comment">*                                                                               *</span>
00005 <span class="comment">*********************************************************************************</span>
00006 <span class="comment">* Copyright (C) 2002,2004 by Jeroen van der Zijp.   All Rights Reserved.        *</span>
00007 <span class="comment">*********************************************************************************</span>
00008 <span class="comment">* This library is free software; you can redistribute it and/or                 *</span>
00009 <span class="comment">* modify it under the terms of the GNU Lesser General Public                    *</span>
00010 <span class="comment">* License as published by the Free Software Foundation; either                  *</span>
00011 <span class="comment">* version 2.1 of the License, or (at your option) any later version.            *</span>
00012 <span class="comment">*                                                                               *</span>
00013 <span class="comment">* This library is distributed in the hope that it will be useful,               *</span>
00014 <span class="comment">* but WITHOUT ANY WARRANTY; without even the implied warranty of                *</span>
00015 <span class="comment">* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU             *</span>
00016 <span class="comment">* Lesser General Public License for more details.                               *</span>
00017 <span class="comment">*                                                                               *</span>
00018 <span class="comment">* You should have received a copy of the GNU Lesser General Public              *</span>
00019 <span class="comment">* License along with this library; if not, write to the Free Software           *</span>
00020 <span class="comment">* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.    *</span>
00021 <span class="comment">*********************************************************************************</span>
00022 <span class="comment">* $Id: FXWizard.h,v 1.6 2004/02/08 17:17:34 fox Exp $                           *</span>
00023 <span class="comment">********************************************************************************/</span>
00024 <span class="preprocessor">#ifndef FXWIZARD_H</span>
00025 <span class="preprocessor"></span><span class="preprocessor">#define FXWIZARD_H</span>
00026 <span class="preprocessor"></span>
00027 <span class="preprocessor">#ifndef FXDIALOGBOX_H</span>
00028 <span class="preprocessor"></span><span class="preprocessor">#include "FXDialogBox.h"</span>
00029 <span class="preprocessor">#endif</span>
00030 <span class="preprocessor"></span>
00031 <span class="keyword">namespace </span>FX {
00032 
00033 
00034 <span class="keyword">class </span>FXImage;
00035 <span class="keyword">class </span>FXIcon;
00036 <span class="keyword">class </span>FXImageFrame;
00037 <span class="keyword">class </span>FXButton;
00038 <span class="keyword">class </span>FXSwitcher;
00039 
00040 <span class="comment"></span>
00041 <span class="comment">/**</span>
00042 <span class="comment">* A Wizard widget guides the user through a number of panels</span>
00043 <span class="comment">* in a predefined sequence; each step must be completed before</span>
00044 <span class="comment">* moving on to the next step.</span>
00045 <span class="comment">* For example, a Wizard may be used to install software components,</span>
00046 <span class="comment">* and ask various questions at each step in the installation.</span>
00047 <span class="comment">*/</span>
<a name="l00048"></a><a class="code" href="classFX_1_1FXWizard.html">00048</a> <span class="keyword">class </span>FXAPI FXWizard : <span class="keyword">public</span> <a class="code" href="classFX_1_1FXDialogBox.html">FXDialogBox</a> {
00049   FXDECLARE(FXWizard)
00050 <span class="keyword">protected</span>:
00051   <a class="code" href="classFX_1_1FXHorizontalFrame.html">FXHorizontalFrame</a> *buttons;           <span class="comment">// Button frame</span>
00052   <a class="code" href="classFX_1_1FXImageFrame.html">FXImageFrame</a>      *sidebar;           <span class="comment">// Sidebar comprising image</span>
00053   <a class="code" href="classFX_1_1FXButton.html">FXButton</a>          *advance;           <span class="comment">// Advance to next stage</span>
00054   <a class="code" href="classFX_1_1FXButton.html">FXButton</a>          *retreat;           <span class="comment">// Retreat to last stage</span>
00055   <a class="code" href="classFX_1_1FXButton.html">FXButton</a>          *finish;            <span class="comment">// Finish panel</span>
00056   <a class="code" href="classFX_1_1FXButton.html">FXButton</a>          *cancel;            <span class="comment">// Cancel button</span>
00057   <a class="code" href="classFX_1_1FXSwitcher.html">FXSwitcher</a>        *panels;            <span class="comment">// Sub panels</span>
00058   <a class="code" href="classFX_1_1FXIcon.html">FXIcon</a>            *finishicon;
00059   <a class="code" href="classFX_1_1FXIcon.html">FXIcon</a>            *nexticon;
00060   <a class="code" href="classFX_1_1FXIcon.html">FXIcon</a>            *backicon;
00061 <span class="keyword">protected</span>:
00062   FXWizard(){}
00063   <span class="keywordtype">void</span> construct();
00064 <span class="keyword">private</span>:
00065   FXWizard(<span class="keyword">const</span> FXWizard&amp;);
<a name="l00066"></a><a class="code" href="classFX_1_1FXWizard.html#a2">00066</a>   FXWizard &amp;operator=(<span class="keyword">const</span> FXWizard&amp;);
00067 <span class="keyword">public</span>:
00068   <span class="keywordtype">long</span> onUpdFinish(<a class="code" href="classFX_1_1FXObject.html">FXObject</a>*,FXSelector,<span class="keywordtype">void</span>*);
<a name="l00069"></a><a class="code" href="classFX_1_1FXWizard.html#a3">00069</a>   <span class="keywordtype">long</span> onCmdNext(<a class="code" href="classFX_1_1FXObject.html">FXObject</a>*,FXSelector,<span class="keywordtype">void</span>*);
00070   <span class="keywordtype">long</span> onUpdNext(<a class="code" href="classFX_1_1FXObject.html">FXObject</a>*,FXSelector,<span class="keywordtype">void</span>*);
00071   <span class="keywordtype">long</span> onCmdBack(<a class="code" href="classFX_1_1FXObject.html">FXObject</a>*,FXSelector,<span class="keywordtype">void</span>*);
<a name="l00072"></a><a class="code" href="classFX_1_1FXWizard.html#a4">00072</a>   <span class="keywordtype">long</span> onUpdBack(<a class="code" href="classFX_1_1FXObject.html">FXObject</a>*,FXSelector,<span class="keywordtype">void</span>*);
00073 <span class="keyword">public</span>:
00074   <span class="keyword">enum</span> {
<a name="l00075"></a><a class="code" href="classFX_1_1FXWizard.html#a5">00075</a>     ID_NEXT=FXDialogBox::ID_LAST,
00076     ID_BACK,
00077     ID_LAST
<a name="l00078"></a><a class="code" href="classFX_1_1FXWizard.html#a6">00078</a>     };
00079 <span class="keyword">public</span>:
00080 <span class="comment"></span>
<a name="l00081"></a><a class="code" href="classFX_1_1FXWizard.html#a7">00081</a> <span class="comment">  /// Construct free-floating Wizard</span>
00082 <span class="comment"></span>  FXWizard(<a class="code" href="classFX_1_1FXApp.html">FXApp</a>* a,<span class="keyword">const</span> <a class="code" href="classFX_1_1FXString.html">FXString</a>&amp; name,<a class="code" href="classFX_1_1FXImage.html">FXImage</a> *image,FXuint opts=DECOR_TITLE|DECOR_BORDER|DECOR_RESIZE,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=10,FXint pr=10,FXint pt=10,FXint pb=10,FXint hs=10,FXint vs=10);
00083 <span class="comment"></span>
00084 <span class="comment">  /// Construct Wizard which will always float over the owner window</span>
00085 <span class="comment"></span>  FXWizard(<a class="code" href="classFX_1_1FXWindow.html">FXWindow</a>* owner,<span class="keyword">const</span> <a class="code" href="classFX_1_1FXString.html">FXString</a>&amp; name,<a class="code" href="classFX_1_1FXImage.html">FXImage</a> *image,FXuint opts=DECOR_TITLE|DECOR_BORDER|DECOR_RESIZE,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=10,FXint pr=10,FXint pt=10,FXint pb=10,FXint hs=10,FXint vs=10);
00086 <span class="comment"></span>
00087 <span class="comment">  /// Return a pointer to the button frame</span>
00088 <span class="comment"></span>  <a class="code" href="classFX_1_1FXHorizontalFrame.html">FXHorizontalFrame</a> *buttonFrame()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> buttons; }
00089 <span class="comment"></span>
00090 <span class="comment">  /// Return a pointer to the "Advance" button</span>
00091 <span class="comment"></span>  FXButton *advanceButton()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> advance; }
00092 <span class="comment"></span>
00093 <span class="comment">  /// Return a pointer to the "Retreat" button</span>
00094 <span class="comment"></span>  FXButton *retreatButton()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> retreat; }
00095 <span class="comment"></span>
00096 <span class="comment">  /// Return a pointer to the "Finish" button</span>
00097 <span class="comment"></span>  FXButton *finishButton()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> finish; }
00098 <span class="comment"></span>
00099 <span class="comment">  /// Return a pointer to the "Cancel" button</span>
00100 <span class="comment"></span>  FXButton *cancelButton()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> cancel; }
00101 <span class="comment"></span>
00102 <span class="comment">  /// Return the container used as parent for the subpanels</span>
00103 <span class="comment"></span>  FXSwitcher *getContainer()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> panels; }
00104 <span class="comment"></span>
00105 <span class="comment">  /// Change the image being displayed</span>
00106 <span class="comment"></span>  <span class="keywordtype">void</span> setImage(FXImage* img);
00107 <span class="comment"></span>
00108 <span class="comment">  /// Return the current image</span>
00109 <span class="comment"></span>  FXImage* getImage() <span class="keyword">const</span>;
00110 <span class="comment"></span>
00111 <span class="comment">  /// Return number of panels</span>
00112 <span class="comment"></span>  FXint getNumPanels() <span class="keyword">const</span>;
00113 <span class="comment"></span>
00114 <span class="comment">  /// Bring the child window at index to the top</span>
00115 <span class="comment"></span>  <span class="keywordtype">void</span> setCurrentPanel(FXint index);
00116 <span class="comment"></span>
00117 <span class="comment">  /// Return the index of the child window currently on top</span>
00118 <span class="comment"></span>  FXint getCurrentPanel() <span class="keyword">const</span>;
00119 <span class="comment"></span>
00120 <span class="comment">  /// Save to stream</span>
00121 <span class="comment"></span>  <span class="keyword">virtual</span> <span class="keywordtype">void</span> save(FXStream&amp; store) <span class="keyword">const</span>;
00122 <span class="comment"></span>
00123 <span class="comment">  /// Load from stream</span>
00124 <span class="comment"></span>  <span class="keyword">virtual</span> <span class="keywordtype">void</span> load(FXStream&amp; store);
00125 
00126   <span class="comment">// Destroy</span>
00127   <span class="keyword">virtual</span> ~FXWizard();
00128   };
00129 
00130 }
00131 
00132 <span class="preprocessor">#endif</span>
</pre></div></font>

<!--- COPYRIGHT -->
<p>
<table width=100% cellpadding=0 cellspacing=0><tr><td width=100% valign=top id=HEADLINE align=right>
<img src='../art/line.gif' width=100% height=1><font size=-1>
Copyright &copy; 1997-2004 Jeroen van der Zijp</font>
</td></tr></table>
</p>
<!--- COPYRIGHT -->
</body>
</html>