• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:factory

11 For example, given a filename you can search for a factory that will
15 factory = wxArchiveClassFactory::Find(filename, wxSTREAM_FILEEXT);
16 if (factory)
17 stream = factory->NewStream(new wxFFileInputStream(filename));
22 for a factory by MIME type or wxFileSystem protocol.
74 Returns true if this factory can handle the given protocol, MIME type
85 A static member that finds a factory that can handle a given protocol, MIME
86 type or file extension. Returns a pointer to the class factory if found, or
87 NULL otherwise. It does not give away ownership of the factory.
105 const wxArchiveClassFactory *factory = wxArchiveClassFactory::GetFirst();
107 while (factory) {
108 list << factory->GetProtocol() << _T("\n");
109 factory = factory->GetNext();
114 GetFirst()/GetNext() return a pointer to a factory or NULL if no more
115 are available. They do not give away ownership of the factory.
131 Returns the wxFileSystem protocol supported by this factory. Equivalent
140 factory, as an array of null terminated strings. It does not give away
143 For example, to list the file extensions a factory supports:
149 for (p = factory->GetProtocols(wxSTREAM_FILEEXT); *p; p++)
183 Adds this class factory to the list returned
188 add a static instance of its factory class.
190 It can also be used to change the order of a factory already in the list,
194 The list does not take ownership of the factory.
201 Removes this class factory from the list returned
207 The list does not own the factories, so removing a factory does not delete it.