Searched refs:icon (Results 101 - 125 of 265) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dframe.cpp848 const wxIcon& icon = GetIcon(); local
849 HICON hIcon = icon.Ok() ? GetHiconOf(icon)
1085 const wxIcon& icon = GetIcon(); local
1086 HICON hIcon = icon.Ok() ? GetHiconOf(icon)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/x11/
H A Dbitmap.h108 // copies the contents and mask of the given (colour) icon to the bitmap
109 virtual bool CopyFromIcon(const wxIcon& icon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dsettings.tex131 \twocolitem{{\bf wxSYS\_ICON\_X}}{The default width of an icon.}
132 \twocolitem{{\bf wxSYS\_ICON\_Y}}{The default height of an icon.}
133 \twocolitem{{\bf wxSYS\_ICONSPACING\_X}}{Width of a grid cell for items in large icon view,
135 \twocolitem{{\bf wxSYS\_ICONSPACING\_Y}}{Height of a grid cell for items in large icon view,
143 \twocolitem{{\bf wxSYS\_SMALLICON\_X}}{Recommended width of a small icon (in window captions, and small icon view).}
144 \twocolitem{{\bf wxSYS\_SMALLICON\_Y}}{Recommended height of a small icon (in window captions, and small icon view).}
H A Dtlw.tex67 Returns the standard icon of the window. The icon will be invalid if it hadn't
83 Use \helpref{GetIcon}{wxtoplevelwindowgeticon} to get the main icon of the
212 window icon in the taskbar, and for wxGTK with task bars supporting it.
228 \func{void}{SetIcon}{\param{const wxIcon\& }{icon}}
230 Sets the icon for this window.
234 \docparam{icon}{The icon to associate with this window.}
238 The window takes a `copy' of {\it icon}, but since it uses reference
239 counting, the copy is very quick. It is safe to delete {\it icon} afte
[all...]
H A Ddroptrgt.tex111 from the side of the drop source, typically in form of changing the icon.
131 from the side of the drop source, typically in form of changing the icon.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dbitmap.h78 // copies the contents and mask of the given (colour) icon to the bitmap
79 virtual bool CopyFromIcon(const wxIcon& icon);
H A Dtoplevel.h50 virtual void SetIcon(const wxIcon& icon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dbitmap.h92 // copies the contents and mask of the given (colour) icon to the bitmap
93 virtual bool CopyFromIcon(const wxIcon& icon);
H A Dtoplevel.h50 virtual void SetIcon(const wxIcon& icon);
H A Dmdi.h157 // no icon
158 virtual void SetIcon(const wxIcon& icon)
159 { wxTopLevelWindowBase::SetIcon(icon); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Drelocate.cc72 const QIcon folderIcon = iconProvider.icon( QFileIconProvider::Folder );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/dfb/
H A Dbitmap.cpp237 bool wxBitmap::CopyFromIcon(const wxIcon& icon) argument
239 *this = *((wxBitmap*)(&icon));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dtipdlg.cpp34 #include "wx/icon.h"
263 wxIcon icon = wxArtProvider::GetIcon(wxART_TIP, wxART_CMN_DIALOG); local
264 wxStaticBitmap *bmp = new wxStaticBitmap(this, wxID_ANY, icon);
H A Dtoolbkg.cpp22 #include "wx/icon.h"
352 // TODO: make sure all platforms can convert between icon and bitmap,
353 // and/or test whether the image is a bitmap or an icon.
357 // On Windows, we can lose information by using GetBitmap, so extract icon instead
358 wxIcon icon = GetImageList()->GetIcon(imageId);
360 bitmap.CopyFromIcon(icon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/deprecated/treelay/
H A Dtreelay.cpp51 // Give it an icon
53 wxIcon icon(_T("tree_icn"));
54 frame->SetIcon(icon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dtoplevel.h147 // get the frame icon
153 // set the frame icon
154 virtual void SetIcon(const wxIcon& icon) { m_icons = wxIconBundle( icon ); } argument
298 // the frame icon
H A Dbitmap.h167 // copies the contents and mask of the given (colour) icon to the bitmap
168 virtual bool CopyFromIcon(const wxIcon& icon) = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dtoplevel.cpp372 void wxTopLevelWindowX11::DoSetIcon(const wxIcon& icon) argument
374 if (icon.Ok() && GetMainWindow())
379 wmHints->icon_pixmap = (Pixmap) icon.GetPixmap();
383 if (icon.GetMask())
386 wmHints->icon_mask = (Pixmap) icon.GetMask()->GetBitmap();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dmdi.cpp19 #include "wx/icon.h"
531 // Set icon
532 void wxMDIChildFrame::SetIcon(const wxIcon& icon) argument
534 m_icons = wxIconBundle( icon );
536 if (icon.Ok())
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/widgets/
H A Dnotebook.cpp89 BookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist, const char* icon[]);
195 BookWidgetsPage::BookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist, const char* icon[]) argument
196 :WidgetsPage(book, imaglist, icon)
H A Dwidgets.h94 const char* icon[]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/
H A Dmain.c54 #include "tr-icon.h"
81 gpointer icon; member in struct:cbdata
701 /* set up the icon */
714 cbdata->icon != NULL );
792 if( cbdata->icon != NULL )
880 if( cbdata->icon )
881 g_object_unref( cbdata->icon );
1100 if( show && !cbdata->icon )
1101 cbdata->icon = gtr_icon_new( cbdata->core );
1102 else if( !show && cbdata->icon ) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dmimetmac.cpp27 #include "wx/icon.h"
87 bool wxFileTypeImpl::GetIcon(wxIconLocation *WXUNUSED(icon)) const
89 // no such file type or no value or incorrect icon entry
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msdos/
H A Dmimetype.cpp29 #include "wx/icon.h"
91 bool wxFileTypeImpl::GetIcon(wxIconLocation *WXUNUSED(icon)) const
93 // no such file type or no value or incorrect icon entry
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/aLinkCreator/src/
H A Dalcframe.cpp77 // Give it an icon
79 wxIcon icon(wxT("alc"));
81 wxIcon icon;
82 icon.CopyFromBitmap(AlcPix::getPixmap(wxT("alc")));
84 SetIcon (icon);

Completed in 147 milliseconds

1234567891011