Searched refs:is (Results 276 - 300 of 2313) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dbufferdc.tex15 everything is in fact first drawn on an in-memory buffer (a
17 associated wxDC, only once, when this object is destroyed. wxBufferedDC itself
18 is typically associated with \helpref{wxClientDC}{wxclientdc}, if you want to
29 There is another possible use for wxBufferedDC is to use it to maintain a
76 flushed to this DC when this object is destroyed. You may pass NULL
79 \docparam{area}{The size of the bitmap to be used for buffering (this bitmap is
80 created internally when it is not given explicitly).}
82 \docparam{buffer}{Explicitly provided bitmap to be used for buffering: this is
84 time but it also requires more memory as the bitmap is neve
[all...]
H A Ddataobj.tex15 dragged and dropped. The important thing about wxDataObject is that this is a
21 A supported format, incidentally, is exactly the format in which the data can
31 Get = 0x01, // format is supported by GetDataHere()
32 Set = 0x02 // format is supported by SetData()
39 Not surprisingly, being 'smart' comes at a price of added complexity. This is
47 \helpref{wxDataObjectSimple}{wxdataobjectsimple} is
49 as HTML or text) and \helpref{wxDataObjectComposite}{wxdataobjectcomposite} is
59 to support one format and your data is either text, bitmap or list of files.}
60 \twocolitem{{\bf 2. Use wxDataObjectSimple}}{Deriving from wxDataObjectSimple is th
[all...]
H A Dhtwinprs.tex8 This class is derived from \helpref{wxHtmlParser}{wxhtmlparser} and
9 its main goal is to parse HTML input so that it can be displayed in
15 The product of parsing is a wxHtmlCell (resp. wxHtmlContainer) object.
38 {\it wndIface} parameter ({\it wndIface} is a pointer to interface object for
66 If the font was already created only a pointer is returned.
85 Returns (average) char height in standard font. It is used as DC-independent metrics.
94 Returns average char width in standard font. It is used as DC-independent metrics.
128 Returns true if actual font is bold, false otherwise.
140 Returns true if actual font is fixed face, false otherwise.
146 Returns true if actual font is itali
[all...]
H A Ddocument.tex4 data. It is part of the document/view framework supported by wxWidgets,
52 Document title. The document title is used for an associated
53 frame (if any), and is usually constructed by the framework from
61 variable when the document is created. If several document templates are
62 created that use the same document type, this variable is used in wxDocManager::CreateView
89 If the view is not already in the list of views, adds the view and calls OnChangedViewList.
104 in turns calls wxDocument::OnChangedViewList, whose default implemention is to
144 Gets the filename associated with this document, or "" if none is
161 function uses the title, or if there is no title, uses the filename; or if no
171 Gets the title for this document. The document title is use
[all...]
H A Drenderer.tex14 First, a brief introduction to wxRenderer and why it is needed.
17 controls - this is what we mean when we say that it is a ``native'' framework.
24 appearance is different under different platforms while the lines are always
27 This is why we have renderers: wxRenderer is a class which virtualizes the
29 button, without caring about exactly how this is done. Of course, as we
34 which are used by the generic controls. There is always a default global
40 \item \arg{win} is the window being drawn. It is normall
[all...]
H A Dcombopopup.tex33 Default constructor. It is recommended that internal variables
35 (because \helpref{m\_combo}{wxcombopopupmcombo} is not valid in constructor).
42 Parent \helpref{wxComboCtrl}{wxcomboctrl}. This protected member variable is
43 prepared automatically before \helpref{Init}{wxcombopopupinit} is called.
81 Called each time popup is about to be shown.
105 its internal variables. This method is called immediately
125 until the popup is shown for the first time. It is more
126 efficient, but on the other hand it is often more convenient
157 special processing when popup is hidde
[all...]
H A Dsemaphor.tex14 wxSemaphore is a counter limiting the number of threads concurrently accessing
15 a shared resource. This counter is always between $0$ and the maximum value
16 specified during the semaphore creation. When the counter is strictly greater
27 is reserved, the semaphore should be acquired by calling
28 \helpref{Wait}{wxsemaphorewait} and each time a room is freed it should be
46 there is no upper limit. If maxcount is $1$, the semaphore behaves exactly as a
49 {\it initialcount} is the initial value of the semaphore which must be between
50 $0$ and {\it maxcount} (if it is not set to $0$).
56 Destructor is no
[all...]
H A Dspinctrl.tex38 of the spinctrl is updated}
44 {\tt EVT\_TEXT} is generated, like for the \helpref{wxTextCtrl}{wxtextctrl}.
46 When the use enters text into the text area, the text is not
48 key). The value is then adjusted to the range and a
50 is different from the last value sent.
78 \docparam{pos}{Window position. If the position (-1, -1) is specified then a default position is chosen.}
80 \docparam{size}{Window size. If the default size (-1, -1) is specified then a default size is chosen.}
129 {\it from} (inclusive) and {\it to} (exclusive). This is simila
[all...]
H A Dthreadh.tex3 The wxThreadHelper class is a mix-in class that manages a single background
8 that is needed when the original object in the main thread needs to
65 Creates a new thread. The thread object is created in the suspended state, and you
78 \twocolitem{{\bf wxTHREAD\_RUNNING}}{The thread is already running.}
85 This is the entry point of the thread. This function is pure virtual and must
88 The returned value is the thread exit code which is only useful for
89 joinable threads and is the value returned by
92 This function is calle
[all...]
H A Dtstream.tex21 wxStreams is divided in two main parts:
29 wxStreamBase is the base definition of a stream. It defines, for example,
34 wxStreamBuffer is a cache manager for wxStreamBase: it manages a stream buffer
38 wxInputStream is the base class for read-only streams. It implements Read,
40 wxOutputStream does the same thing but it is for write-only streams.
42 wxFilterIn/OutputStream is the base class definition for stream filtering.
45 For example, wxZLibInputStream is an inline stream decompressor.
54 Usage is simple. We can take the example of wxFileInputStream and here is some sample
63 // Ok, read some bytes ... nb_datas is expresse
[all...]
H A Dtthreads.tex18 thread API), however it is still a non-trivial undertaking especially for large
20 an existing one) it is worth asking oneself if there is no easier and safer way
22 really make sense (classical example is a server application which launches a
26 dialog example it is far better to do the calculations in the
31 If you do decide to use threads in your application, it is strongly recommended
33 it {\it is} possible for many different threads to call GUI functions at once
34 (all the threads created in the sample access GUI), but it is a very poor design
36 several worker threads which communicate with the main one using events is much
45 sending events from one thread to another. However there is n
[all...]
H A Danimatctrl.tex13 This is a static control which displays an animation.
14 wxAnimationCtrl API is simple as possible and won't give you full control on the
17 This control is useful to display a (small) animation while doing a long task
20 It is only available if \texttt{wxUSE\_ANIMATIONCTRL} is set to $1$ (the default).
40 is called. If this style flag is given, the control will not change its size}
99 of the animation is displayed.
125 Returns \true if the animation is being played.
141 The animation is alway
[all...]
H A Dhash.tex3 {\bf Please note} that this class is retained for backward compatibility
20 Below is an example of using a hash table.
33 A hash table is implemented as an array of pointers to lists. When no
35 this array (default size is 1000). When a data item is added, an
36 integer is constructed from the integer or string key that is within the
37 bounds of the array. If the array element is NULL, a new (keyed) list is
38 created for the element. Then the data object is appende
[all...]
H A Dtempfile.tex5 existing file. The name is explained by the fact that it may be also used as
10 approach is not very safe because during the regeneration of the file bad things
11 may happen: the program may find that there is an internal error preventing it
17 wxTempFile addresses this problem by creating a temporary file which is meant to
18 replace the original file - but only after it is fully written. So, if the user
21 file there is no problem - in fact, wxTempFile will {\bf not} replace the old
72 {\it strName} is the name of file to be replaced. The temporary file is always
73 created in the directory where {\it strName} is. In particular, if
74 {\it strName} doesn't include the path, it is create
[all...]
H A Dpen.tex14 A pen is a drawing tool for drawing outlines. It is used for drawing
56 characteristics, and there is the consequent danger that a large number
65 efficiency problems. If an instance of this class is changed it will create
106 the style is wxDOT, wxLONG\_DASH, wxSHORT\_DASH, wxDOT\_DASH, or wxUSER\_DASH.}
116 \twocolitem{{\bf wxTRANSPARENT}}{No pen is used.}
134 support {\it very} different subsets of the styles above - there is no
137 If the named colour form is used, an appropriate {\bf wxColour} structure
138 is found in the colour database.
163 the application should try to clean up all pens itself. This is becaus
[all...]
H A Dtabview.tex5 Please note that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
6 This class is retained for backward compatibility.
42 {\it id} is the application-chosen identifier for the tab, which will be used in subsequent tab operations.
44 {\it label} is the label to give the tab.
48 A new layer (row) is started when the current layer has been filled up with tabs.
58 {\it noTabs} is the number of tabs which should take up the full width
64 The new tab width is returned.
70 Clears the tabs, deleting them if {\it deleteTabs} is true.
95 Returns the brush used to draw in the background colour. It is set when
96 SetBackgroundColour is calle
[all...]
H A Dtlog.tex14 This is a general overview of logging classes provided by wxWidgets. The word
21 First of all, no knowledge of {\it wxLog} classes is needed to use them. For
28 \item{\bf wxLogFatalError} which is like {\it wxLogError}, but also
32 \item{\bf wxLogError} is the function to use for error messages, i.e. the
33 messages that must be shown to the user. The default processing is to pop up a
37 \item{\bf wxLogMessage} is for all normal, informational messages. They also
39 \item{\bf wxLogVerbose} is for verbose output. Normally, it is suppressed, but
41 progress (another, but possibly confusing name for the same function is {\bf
43 \item{\bf wxLogStatus} is fo
[all...]
H A Dcursor.tex3 A cursor is a small bitmap usually used for denoting where the mouse
4 pointer is, with a picture that might indicate the interpretation of a
8 wxCursor} object are catered for, and this is an occasion where
13 The wxWidgets convention is to set the cursor for a window, as in X,
15 global \helpref{::wxSetCursor}{wxsetcursor} is also available for MS Windows use.
56 Constructs a cursor by passing an array of bits (Motif and GTK+ only). {\it maskBits} is used only under
60 If either {\it hotSpotX} or {\it hotSpotY} is -1, the hotspot will be the centre of the cursor image (Motif only).
77 Constructs a cursor from a wxImage. If the cursor is monochrome on the current
83 is larger than 32x32 it is resize
[all...]
H A Dhtparser.tex13 It is independent from wxHtmlWindow and can be used as stand-alone parser
19 wxHtmlParser instance. The reason is that the handler may contain
53 This method is called each time new tag is about to be added.
57 Default (wxHtmlParser) behaviour is this:
70 all objects of this class! (Static front-end to AddTagHandler is provided
81 This method is called by \helpref{DoParsing}{wxhtmlparserdoparsing}
82 each time a part of text is parsed. {\it txt} is NOT only one word, it is
[all...]
H A Dttoolbar.tex8 The toolbar is a popular user interface component and contains a set of bitmap
14 out the classes. This is because there are a number of different toolbar
19 For each platform, the symbol {\bf wxToolBar} is defined to be one of the
22 The following is a summary of the toolbar classes and their differences.
25 \item {\bf wxToolBarBase.} This is a base class with pure virtual functions,
28 functionality. A simple 3D effect for buttons is possible, but it is not consistent
33 the current Windows colour settings: the buttons are grey. This is the default wxToolBar
38 No absolute positioning is supported but you can specify the number
40 Tooltips are supported. {\bf OnRightClick} is no
[all...]
H A Dzipstrm.tex153 When reading a zip from a stream that is seekable,
157 becomes available when the entry is opened, either by calling
176 the zipper is permitted to store them after the entry's data. In that
188 returns NULL and Eof() is true:
257 If \helpref{IsMadeByUnix()}{wxzipentryismadebyunix} is true then the
277 The extra field is used to store platform or application specific
302 within the archive. If the third parameter is provided, the bool pointed
303 to is set to indicate whether the name looks like a directory name
321 The extra field is used to store platform or application specific
343 If \helpref{IsMadeByUnix()}{wxzipentryismadebyunix} is tru
[all...]
H A Dctrlsub.tex14 This class is an abstract base class for some wxWidgets controls which contain
28 client data (and only it) will be deleted when an item is
29 \helpref{deleted}{wxcontrolwithitemsdelete} or the entire control is
30 \helpref{cleared}{wxcontrolwithitemsclear} (which also happens when it is
32 data of the same type (typed or untyped), if any. This type is determined by
76 When appending a single item, the return value is the index of the newly added
77 item which may be different from the last one if the control is sorted (e.g.
86 {\it Clear()} also deletes the client data of the existing items if it is owned
94 will be also deleted if it is owned by the control.
96 Note that it is a
[all...]
H A Dhthlpfrm.tex8 This class is used by \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}
10 It is an internal class and should not be used directly - except for the case
36 toolbar. {\it toolBar} is a pointer to the toolbar and {\it style} is the style
39 wxToolBar::Realize is called immediately after returning from this function.
81 This class is used by \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}
83 It is an internal class and should not be used directly - except for the case
109 toolbar. {\it toolBar} is a pointer to the toolbar and {\it style} is the style
112 wxToolBar::Realize is calle
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/lib/
H A Ddiv64.S10 * This program is free software; you can redistribute it and/or modify
32 * Note: Calling convention is totally non standard for optimal code.
33 * This is meant to be used by do_div() from include/asm/div64.h only.
50 bls 9f @ divisor is 0 or 1
52 beq 8f @ divisor is power of 2
60 @ The aligned divisor is stored in yl preserving the original.
61 @ The bit position is stored in ip.
114 @ The top part of remainder became zero. If carry is set
115 @ (the 33th bit) this is a false positive so resume the loop.
116 @ Otherwise, if lower part is als
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dudev_rules.c5 * This program is free software; you can redistribute it and/or modify it
9 * This program is distributed in the hope that it will be useful, but
149 /* see if this is a comment */
639 dbg("%s is true (matching value)", key_name);
643 dbg("%s is true (non-matching value)", key_name);
683 dbg("ENV{'%s'} is not set, treat as empty", key_name);
722 dbg("TEST key is true");
842 dbg("PROGRAM is false");
857 dbg("result is '%s'", result);
863 dbg("PROGRAM key is tru
[all...]

Completed in 246 milliseconds

<<11121314151617181920>>