Regenerated FL docs; applied patch [ #511363 ] Dialogs no longer need wx.rc
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -16,7 +16,7 @@ top to bottom.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbar.h>
|
||||
<wx/fl/dyntbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ No base class
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -212,3 +212,48 @@ MyFrame::~MyFrame()
|
||||
}
|
||||
\end{verbatim}
|
||||
|
||||
\section{Controlling dragging behaviour}\label{controllingdragbehav}
|
||||
|
||||
Various pane-dragging behaviours are supported. FL can
|
||||
show an outline of where the window would be docked
|
||||
if you stopped dragging at that point.
|
||||
|
||||
This is a list of properties of interest in the cbCommonPaneProperties
|
||||
structure:
|
||||
|
||||
\begin{verbatim}
|
||||
bool mRealTimeUpdatesOn; // default: ON
|
||||
bool mOutOfPaneDragOn; // default: ON
|
||||
bool mExactDockPredictionOn; // default: OFF
|
||||
bool mNonDestructFrictionOn; // default: OFF
|
||||
\end{verbatim}
|
||||
|
||||
To get behaviour similar to Microsoft's DevStudio drag-ghost behaviour,
|
||||
mRealTimeUpdatesOn have to be set to FALSE, for example:
|
||||
|
||||
\begin{verbatim}
|
||||
cbCommonPaneProperties props;
|
||||
....
|
||||
....
|
||||
props.mRealTimeUpdatesOn = FALSE;
|
||||
fl->SetPaneProperties( props, wxALL_PANES );
|
||||
\end{verbatim}
|
||||
|
||||
{\it mOutOfPaneDragOn} specifies whether bars can be dragged
|
||||
away from this pane. (Note: this may not currently be working.)
|
||||
|
||||
{\it mExactDockPredictionOn} is only relevant when {\it mRealTimeUpdatesOn} is FALSE,
|
||||
and then the hint rectangle behaves a little jumpily. It tries to show
|
||||
exatly how the bar would look and where it would be docked if the dragging finished right
|
||||
now, i.e. the final position, with all the 'friction-physics' calculated.
|
||||
Otherwise the hint flies smothly above the surface only hinting whether the bar
|
||||
will be docked vertically or horizontally if dropped now.
|
||||
This is a feature you won't find anywhere else!
|
||||
|
||||
{\it mNonDestructFirctionOn} causes the bars not being dragged
|
||||
to stay where they are, while the currently dragged one is 'diving'
|
||||
through the underlaying panes, docking itself in and out in real time.
|
||||
Otherwise the stationary bars would be pushed around messing up the composition permanently.
|
||||
This flag is irelevant when {\it mRealTimeUpdatesOn} is FALSE, as the ghost-rect
|
||||
does not do any docking until the drag finishes.
|
||||
|
||||
|
@@ -19,7 +19,7 @@ Locking for multithreaded applications is not yet implemented.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<antiflickpl.h>
|
||||
<wx/fl/antiflickpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -19,7 +19,7 @@ Specific handlers can be hooked up to specific types of bar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Plugin class implementing bar dragging.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<bardragpl.h>
|
||||
<wx/fl/bardragpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ around fixed and flexible bars, similar to those in Microsoft DevStudio 6.x
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<barhintspl.h>
|
||||
<wx/fl/barhintspl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ Holds and manages bar information.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ option is turned on.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ and forwarding them to the frame layout.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ cbCloseBox is a window close button, used in a wxToolWindow titlebar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ cbCollapseBox is a window collapse button, used in a wxToolWindow titlebar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -3,13 +3,12 @@
|
||||
% controlbar.h at 21/Jan/02 21:14:14
|
||||
%
|
||||
|
||||
|
||||
\section{\class{cbCommonPaneProperties}}\label{cbcommonpaneproperties}
|
||||
|
||||
|
||||
A structure holding configuration options,
|
||||
which are usually the same for all panes in
|
||||
a frame layout.
|
||||
a frame layout. For an explanation of the data members, please
|
||||
see \helpref{Controlling dragging behaviour}{controllingdragbehav}.
|
||||
|
||||
\wxheading{Derived from}
|
||||
|
||||
@@ -17,7 +16,43 @@ a frame layout.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
\begin{verbatim}
|
||||
class cbCommonPaneProperties : public wxObject
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS( cbCommonPaneProperties )
|
||||
|
||||
// Look-and-feel configuration
|
||||
|
||||
bool mRealTimeUpdatesOn; // default: ON
|
||||
bool mOutOfPaneDragOn; // default: ON
|
||||
bool mExactDockPredictionOn; // default: OFF
|
||||
bool mNonDestructFrictionOn; // default: OFF
|
||||
|
||||
bool mShow3DPaneBorderOn; // default: ON
|
||||
|
||||
// The following properties are reserved for the "future"
|
||||
|
||||
bool mBarFloatingOn; // default: OFF
|
||||
bool mRowProportionsOn; // default: OFF
|
||||
bool mColProportionsOn; // default: ON
|
||||
bool mBarCollapseIconsOn; // default: OFF
|
||||
bool mBarDragHintsOn; // default: OFF
|
||||
|
||||
// Minimal dimensions for not-fixed bars in this pane (16x16 default)
|
||||
|
||||
wxSize mMinCBarDim;
|
||||
|
||||
// Width/height of resizing sash
|
||||
|
||||
int mResizeHandleSize;
|
||||
|
||||
// Default constructor.
|
||||
|
||||
cbCommonPaneProperties(void);
|
||||
};
|
||||
\end{verbatim}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar customization events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for layout customization events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ Holds and manages information about bar dimensions.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ cbDockBox is a window dock button, used in a wxToolWindow titlebar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ along one of the four edges of the parent frame.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar decoration drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar handles drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for hint-rectangle drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for pane background drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for pane decoration drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for row background drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for row decoration drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for row handles drawing events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Dynamic toolbar dimension handler.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbarhnd.h>
|
||||
<wx/fl/dyntbarhnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for finish drawing in area events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ implementing floating toolbars.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -83,7 +83,7 @@ in some special cases of 'overlapping anomalies'.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<gcupdatesmgr.h>
|
||||
<wx/fl/gcupdatesmgr.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Internal helper class.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<rowdragpl.h>
|
||||
<wx/fl/rowdragpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ A plugin to draw animated hints when the user drags a pane.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<hintanimpl.h>
|
||||
<wx/fl/hintanimpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ A private helper class.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<hintanimpl.h>
|
||||
<wx/fl/hintanimpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar insertion events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for single row layout events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for multiple rows layout events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse left double click events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse left down events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse left up events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ titlebar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse motion events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -20,7 +20,7 @@ would be enough for the frame layout to function properly
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<panedrawpl.h>
|
||||
<wx/fl/panedrawpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -18,7 +18,7 @@ this plugin is hooked).
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ This is not a dynamically-creatable class.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar removal events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar resize events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for row resize events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse right down events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for mouse right up events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -18,7 +18,7 @@ of the toolbar rows in Netscape Communicator 4.xx.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<rowdragpl.h>
|
||||
<wx/fl/rowdragpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ Holds and manages information about bar rows.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ requests sent from a frame layout.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<rowlayoutpl.h>
|
||||
<wx/fl/rowlayoutpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -17,7 +17,7 @@ and horizontal/vertical alignment of the bar.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<cbcustom.h>
|
||||
<wx/fl/cbcustom.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ the areas of frame layout that actually need to be updated.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<updatesmgr.h>
|
||||
<wx/fl/updatesmgr.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for bar window resize events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for start-bar-dragging events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Class for start drawing in area events.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -17,7 +17,7 @@ auxiliary information to be used by its updating algorithm.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -17,7 +17,7 @@ to implement a custom updating strategy.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ wxDynamicToolBar manages containment and layout of tool windows.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbar.h>
|
||||
<wx/fl/dyntbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ This class holds dynamic toolbar item information.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbar.h>
|
||||
<wx/fl/dyntbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -17,7 +17,7 @@ parent frame.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<controlbar.h>
|
||||
<wx/fl/controlbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ No base class
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<garbagec.h>
|
||||
<wx/fl/garbagec.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -12,7 +12,7 @@ No base class
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<garbagec.h>
|
||||
<wx/fl/garbagec.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ No base class
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbar.h>
|
||||
<wx/fl/dyntbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -40,23 +40,23 @@ $(DOCDIR)/winhelp/fl.hlp: $(THISDIR)/fl.rtf $(THISDIR)/fl.hpj
|
||||
move fl.cnt $(DOCDIR)\winhelp\fl.cnt
|
||||
cd $(THISDIR)
|
||||
|
||||
$(THISDIR)/fl.rtf: $(THISDIR)/classes.tex $(THISDIR)/body.tex $(THISDIR)/topics.tex $(THISDIR)/manual.tex
|
||||
$(THISDIR)/fl.rtf: $(THISDIR)/classes.tex $(THISDIR)/body.tex $(THISDIR)/topics.tex $(THISDIR)/fl.tex
|
||||
cd $(THISDIR)
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)/manual.tex $(THISDIR)/fl.rtf -twice -winhelp
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)/fl.tex $(THISDIR)/fl.rtf -twice -winhelp
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)/pdf/fl.rtf: $(THISDIR)/classes.tex $(THISDIR)/body.tex $(THISDIR)/topics.tex $(THISDIR)/manual.tex
|
||||
$(DOCDIR)/pdf/fl.rtf: $(THISDIR)/classes.tex $(THISDIR)/body.tex $(THISDIR)/topics.tex $(THISDIR)/fl.tex
|
||||
cd $(THISDIR)
|
||||
-copy *.wmf $(DOCDIR)\pdf
|
||||
-copy *.bmp $(DOCDIR)\pdf
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)/manual.tex $(DOCDIR)/pdf/fl.rtf -twice -rtf
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)/fl.tex $(DOCDIR)/pdf/fl.rtf -twice -rtf
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)\html\fl\fl.htm: $(THISDIR)\classes.tex $(THISDIR)\body.tex $(THISDIR)/topics.tex $(THISDIR)\manual.tex
|
||||
$(DOCDIR)\html\fl\fl.htm: $(THISDIR)\classes.tex $(THISDIR)\body.tex $(THISDIR)/topics.tex $(THISDIR)\fl.tex
|
||||
cd $(THISDIR)
|
||||
-mkdir $(DOCDIR)\html\fl
|
||||
copy *.gif $(DOCDIR)\html\fl
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)\manual.tex $(DOCDIR)\html\fl\fl.htm -twice -html
|
||||
-start $(WAITFLAG) tex2rtf $(THISDIR)\fl.tex $(DOCDIR)\html\fl\fl.htm -twice -html
|
||||
-erase $(DOCDIR)\html\fl\*.con
|
||||
-erase $(DOCDIR)\html\fl\*.ref
|
||||
-erase $(THISDIR)\*.con
|
||||
@@ -84,10 +84,10 @@ $(DOCDIR)\htb\fl.htb: $(DOCDIR)\html\fl\fl.htm
|
||||
cd $(THISDIR)
|
||||
|
||||
# In order to force document reprocessing
|
||||
touchmanual:
|
||||
-touch $(WXDIR)\contrib\docs\latex\fl\manual.tex
|
||||
touchfl:
|
||||
-touch $(WXDIR)\contrib\docs\latex\fl\fl.tex
|
||||
|
||||
updatedocs: touchmanual alldocs
|
||||
updatedocs: touchfl alldocs
|
||||
|
||||
cleandocs:
|
||||
-erase $(DOCDIR)\winhelp\fl.hlp
|
||||
@@ -101,7 +101,7 @@ cleandocs:
|
||||
|
||||
# Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
|
||||
# Office StartUp folder, and PDFMaker should be installed.
|
||||
#updatepdf: # touchmanual pdfrtf
|
||||
#updatepdf: # touchfl pdfrtf
|
||||
# start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\fl.rtf /mGeneratePDF"
|
||||
|
||||
|
||||
|
@@ -15,7 +15,7 @@ No base class
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<hintanimpl.h>
|
||||
<wx/fl/hintanimpl.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ in the implementation of dynamic toolbars.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<newbmpbtn.h>
|
||||
<wx/fl/newbmpbtn.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ Tool layout item.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<dyntbar.h>
|
||||
<wx/fl/dyntbar.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
@@ -16,7 +16,7 @@ can be used to implement small floating windows.
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<toolwnd.h>
|
||||
<wx/fl/toolwnd.h>
|
||||
|
||||
\wxheading{Data structures}
|
||||
|
||||
|
Reference in New Issue
Block a user